2025-08-26T20:25:50.0426332Z Current runner version: '2.328.0' 2025-08-26T20:25:50.0433598Z Runner name: 'i-0d7df880c5a372abc' 2025-08-26T20:25:50.0434773Z Runner group name: 'default' 2025-08-26T20:25:50.0436164Z Machine name: 'EC2AMAZ-TE6SPGV' 2025-08-26T20:25:50.0439187Z ##[group]GITHUB_TOKEN Permissions 2025-08-26T20:25:50.0441705Z Contents: read 2025-08-26T20:25:50.0442285Z Metadata: read 2025-08-26T20:25:50.0442856Z ##[endgroup] 2025-08-26T20:25:50.0445100Z Secret source: Actions 2025-08-26T20:25:50.0445843Z Prepare workflow directory 2025-08-26T20:25:50.1752733Z Prepare all required actions 2025-08-26T20:25:50.1793860Z Getting action download info 2025-08-26T20:25:50.5443303Z Download action repository 'pytorch/test-infra@main' (SHA:0192d56cb596bb73b125bd368553908cc5c513f0) 2025-08-26T20:32:16.4252137Z Download action repository 'pytorch/pytorch@main' (SHA:a4fb65701b1b6408a949529442f26248b40f139b) 2025-08-26T20:38:57.8407849Z Download action repository 'nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-08-26T20:38:58.0348883Z Download action repository 'seemethere/download-artifact-s3@1da556a7aa0a088e3153970611f6c432d58e80e6' (SHA:1da556a7aa0a088e3153970611f6c432d58e80e6) 2025-08-26T20:38:58.8163258Z Getting action download info 2025-08-26T20:38:58.9375539Z Download action repository 'actions/checkout@v4' (SHA:08eba0b27e820071cde6df949e0beb9ba4906955) 2025-08-26T20:38:59.2903952Z Uses: pytorch/pytorch/.github/workflows/_win-test.yml@refs/heads/main (262640fd220236042fbf4443cc163c8838c84c3d) 2025-08-26T20:38:59.2908287Z ##[group] Inputs 2025-08-26T20:38:59.2908660Z build-environment: win-vs2022-cpu-py3 2025-08-26T20:38:59.2908979Z cuda-version: cpu 2025-08-26T20:38:59.2910111Z 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-08-26T20:38:59.2911318Z sync-tag: 2025-08-26T20:38:59.2912100Z timeout-minutes: 240 2025-08-26T20:38:59.2912706Z disable-monitor: false 2025-08-26T20:38:59.2912991Z monitor-log-interval: 5 2025-08-26T20:38:59.2913324Z monitor-data-collect-interval: 1 2025-08-26T20:38:59.2913640Z ##[endgroup] 2025-08-26T20:38:59.2914092Z Complete job name: win-vs2022-cpu-py3 / test (default, 1, 3, windows.4xlarge.nonephemeral) 2025-08-26T20:38:59.4332374Z ##[group]Run git config --global core.longpaths true 2025-08-26T20:38:59.4333006Z git config --global core.longpaths true 2025-08-26T20:38:59.4333450Z git config --global core.symlinks true 2025-08-26T20:38:59.4333758Z  2025-08-26T20:38:59.4334119Z # https://git-scm.com/docs/git-fsmonitor--daemon. The daemon could lock 2025-08-26T20:38:59.4334691Z # the directory on Windows and prevent GHA from checking out as reported 2025-08-26T20:38:59.4335168Z # in https://github.com/actions/checkout/issues/1018 2025-08-26T20:38:59.4335632Z git config --global core.fsmonitor false 2025-08-26T20:38:59.4360477Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T20:38:59.4361178Z env: 2025-08-26T20:38:59.4361383Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:38:59.4361620Z ##[endgroup] 2025-08-26T20:39:00.4810650Z ##[group]Run pytorch/test-infra/.github/actions/cleanup-runner@main 2025-08-26T20:39:00.4811200Z env: 2025-08-26T20:39:00.4811400Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:39:00.4811645Z ##[endgroup] 2025-08-26T20:39:00.5266426Z ##[group]Run # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-08-26T20:39:00.5267220Z # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-08-26T20:39:00.5267902Z # Below is the list of commands that could lock $GITHUB_WORKSPACE gathered from sysinternals 2025-08-26T20:39:00.5269880Z # handle tool 2025-08-26T20:39:00.5270220Z $processes = "python", "ninja", "cl", "nvcc", "cmd", "sccache", "git" 2025-08-26T20:39:00.5270712Z Foreach ($process In $processes) { 2025-08-26T20:39:00.5271005Z  Try { 2025-08-26T20:39:00.5271571Z  # https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/stop-process 2025-08-26T20:39:00.5272300Z  Get-Process -Name $process -ErrorAction Stop | Stop-Process -Force 2025-08-26T20:39:00.5272703Z  } 2025-08-26T20:39:00.5272899Z  Catch { 2025-08-26T20:39:00.5273219Z  Write-Output "No leftover $process process, continuing" 2025-08-26T20:39:00.5273604Z  Write-Output $_ 2025-08-26T20:39:00.5273838Z  } 2025-08-26T20:39:00.5274016Z } 2025-08-26T20:39:00.5274190Z  2025-08-26T20:39:00.5274660Z # Try it again https://stackoverflow.com/questions/40585754/powershell-wont-terminate-hung-process 2025-08-26T20:39:00.5275241Z # for hung processes 2025-08-26T20:39:00.5275523Z Foreach ($process In $processes) { 2025-08-26T20:39:00.5275812Z  Try { 2025-08-26T20:39:00.5276207Z  (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process}%'").terminate() 2025-08-26T20:39:00.5276670Z  } 2025-08-26T20:39:00.5276858Z  Catch { 2025-08-26T20:39:00.5277074Z  Write-Output $_ 2025-08-26T20:39:00.5277304Z  } 2025-08-26T20:39:00.5277494Z } 2025-08-26T20:39:00.5277660Z  2025-08-26T20:39:00.5277830Z Try { 2025-08-26T20:39:00.5278063Z  # Print all the processes for debugging 2025-08-26T20:39:00.5278527Z  Wmic Path Win32_Process Get Caption,Processid,Commandline | Format-List 2025-08-26T20:39:00.5278951Z } 2025-08-26T20:39:00.5279124Z Catch { 2025-08-26T20:39:00.5279522Z  # Better to write out whatever exception thrown to help debugging any potential issue 2025-08-26T20:39:00.5280062Z  Write-Output $_ 2025-08-26T20:39:00.5280296Z } 2025-08-26T20:39:00.5296157Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-26T20:39:00.5296642Z env: 2025-08-26T20:39:00.5296841Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:39:00.5297081Z ##[endgroup] 2025-08-26T20:39:00.9085902Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-26T20:39:00.9147088Z Finished 2025-08-26T20:39:00.9650821Z No leftover python process, continuing 2025-08-26T20:39:01.0104622Z Get-Process : Cannot find a process with the name "python". Verify the process name and call the cmdlet again. 2025-08-26T20:39:01.0105368Z At C:\actions-runner\_work\_temp\8629f8ea-940b-4932-bba7-95986d5d7dbc.ps1:9 char:5 2025-08-26T20:39:01.0106088Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-26T20:39:01.0106571Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T20:39:01.0107114Z + CategoryInfo : ObjectNotFound: (python:String) [Get-Process], ProcessCommandException 2025-08-26T20:39:01.0107949Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-26T20:39:01.0108550Z 2025-08-26T20:39:01.0124595Z No leftover ninja process, continuing 2025-08-26T20:39:01.0132927Z Get-Process : Cannot find a process with the name "ninja". Verify the process name and call the cmdlet again. 2025-08-26T20:39:01.0133670Z At C:\actions-runner\_work\_temp\8629f8ea-940b-4932-bba7-95986d5d7dbc.ps1:9 char:5 2025-08-26T20:39:01.0134235Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-26T20:39:01.0134665Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T20:39:01.0135216Z + CategoryInfo : ObjectNotFound: (ninja:String) [Get-Process], ProcessCommandException 2025-08-26T20:39:01.0136935Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-26T20:39:01.0137551Z 2025-08-26T20:39:01.0149310Z No leftover cl process, continuing 2025-08-26T20:39:01.0159499Z Get-Process : Cannot find a process with the name "cl". Verify the process name and call the cmdlet again. 2025-08-26T20:39:01.0160233Z At C:\actions-runner\_work\_temp\8629f8ea-940b-4932-bba7-95986d5d7dbc.ps1:9 char:5 2025-08-26T20:39:01.0160810Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-26T20:39:01.0161231Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T20:39:01.0161712Z + CategoryInfo : ObjectNotFound: (cl:String) [Get-Process], ProcessCommandException 2025-08-26T20:39:01.0162581Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-26T20:39:01.0163189Z 2025-08-26T20:39:01.0174493Z No leftover nvcc process, continuing 2025-08-26T20:39:01.0184218Z Get-Process : Cannot find a process with the name "nvcc". Verify the process name and call the cmdlet again. 2025-08-26T20:39:01.0184930Z At C:\actions-runner\_work\_temp\8629f8ea-940b-4932-bba7-95986d5d7dbc.ps1:9 char:5 2025-08-26T20:39:01.0185529Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-26T20:39:01.0185987Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T20:39:01.0186480Z + CategoryInfo : ObjectNotFound: (nvcc:String) [Get-Process], ProcessCommandException 2025-08-26T20:39:01.0187341Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-26T20:39:01.0187943Z 2025-08-26T20:39:01.0220558Z No leftover sccache process, continuing 2025-08-26T20:39:01.0230112Z Get-Process : Cannot find a process with the name "sccache". Verify the process name and call the cmdlet again. 2025-08-26T20:39:01.0230911Z At C:\actions-runner\_work\_temp\8629f8ea-940b-4932-bba7-95986d5d7dbc.ps1:9 char:5 2025-08-26T20:39:01.0231510Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-26T20:39:01.0231924Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T20:39:01.0232470Z + CategoryInfo : ObjectNotFound: (sccache:String) [Get-Process], ProcessCommandException 2025-08-26T20:39:01.0233317Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-26T20:39:01.0233936Z 2025-08-26T20:39:01.0243041Z No leftover git process, continuing 2025-08-26T20:39:01.0253345Z Get-Process : Cannot find a process with the name "git". Verify the process name and call the cmdlet again. 2025-08-26T20:39:01.0254080Z At C:\actions-runner\_work\_temp\8629f8ea-940b-4932-bba7-95986d5d7dbc.ps1:9 char:5 2025-08-26T20:39:01.0254668Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-26T20:39:01.0255105Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T20:39:01.0255597Z + CategoryInfo : ObjectNotFound: (git:String) [Get-Process], ProcessCommandException 2025-08-26T20:39:01.0256408Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-26T20:39:01.0257018Z 2025-08-26T20:39:01.2580859Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-08-26T20:39:01.2581903Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-26T20:39:01.2582716Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-26T20:39:01.2583229Z At C:\actions-runner\_work\_temp\8629f8ea-940b-4932-bba7-95986d5d7dbc.ps1:21 char:6 2025-08-26T20:39:01.2583839Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T20:39:01.2584306Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T20:39:01.2584783Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-26T20:39:01.2585718Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-26T20:39:01.2586328Z 2025-08-26T20:39:01.2610038Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-08-26T20:39:01.2610952Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-26T20:39:01.2611599Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-26T20:39:01.2612062Z At C:\actions-runner\_work\_temp\8629f8ea-940b-4932-bba7-95986d5d7dbc.ps1:21 char:6 2025-08-26T20:39:01.2612610Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T20:39:01.2613049Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T20:39:01.2613475Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-26T20:39:01.2614192Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-26T20:39:01.2614747Z 2025-08-26T20:39:01.2638957Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-08-26T20:39:01.2639881Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-26T20:39:01.2640498Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-26T20:39:01.2640968Z At C:\actions-runner\_work\_temp\8629f8ea-940b-4932-bba7-95986d5d7dbc.ps1:21 char:6 2025-08-26T20:39:01.2641547Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T20:39:01.2641975Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T20:39:01.2642419Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-26T20:39:01.2643120Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-26T20:39:01.2643685Z 2025-08-26T20:39:01.2668117Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-08-26T20:39:01.2669017Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-26T20:39:01.2669668Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-26T20:39:01.2670144Z At C:\actions-runner\_work\_temp\8629f8ea-940b-4932-bba7-95986d5d7dbc.ps1:21 char:6 2025-08-26T20:39:01.2670865Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T20:39:01.2671448Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T20:39:01.2671920Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-26T20:39:01.2672616Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-26T20:39:01.2673192Z 2025-08-26T20:39:01.2697508Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-08-26T20:39:01.2698451Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-26T20:39:01.2699269Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-26T20:39:01.2699754Z At C:\actions-runner\_work\_temp\8629f8ea-940b-4932-bba7-95986d5d7dbc.ps1:21 char:6 2025-08-26T20:39:01.2700325Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T20:39:01.2700763Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T20:39:01.2701200Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-26T20:39:01.2701894Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-26T20:39:01.2702469Z 2025-08-26T20:39:01.2724237Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-08-26T20:39:01.2725094Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-26T20:39:01.2725702Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-26T20:39:01.2726169Z At C:\actions-runner\_work\_temp\8629f8ea-940b-4932-bba7-95986d5d7dbc.ps1:21 char:6 2025-08-26T20:39:01.2726730Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T20:39:01.2727159Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T20:39:01.2727709Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-26T20:39:01.2728442Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-26T20:39:01.2729048Z 2025-08-26T20:39:01.2750867Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-08-26T20:39:01.2751728Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-26T20:39:01.2752325Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-26T20:39:01.2752787Z At C:\actions-runner\_work\_temp\8629f8ea-940b-4932-bba7-95986d5d7dbc.ps1:21 char:6 2025-08-26T20:39:01.2753400Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T20:39:01.2753838Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T20:39:01.2754265Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-26T20:39:01.2754968Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-26T20:39:01.2755530Z 2025-08-26T20:39:02.0996910Z Caption CommandLine ProcessId 2025-08-26T20:39:02.0997513Z 2025-08-26T20:39:02.0997868Z System Idle Process 0 2025-08-26T20:39:02.0998313Z 2025-08-26T20:39:02.0999585Z System 4 2025-08-26T20:39:02.0999998Z 2025-08-26T20:39:02.1000409Z Registry 168 2025-08-26T20:39:02.1000809Z 2025-08-26T20:39:02.1001730Z smss.exe 408 2025-08-26T20:39:02.1003304Z 2025-08-26T20:39:02.1003623Z csrss.exe 528 2025-08-26T20:39:02.1004031Z 2025-08-26T20:39:02.1004373Z csrss.exe 604 2025-08-26T20:39:02.1004815Z 2025-08-26T20:39:02.1005123Z wininit.exe 628 2025-08-26T20:39:02.1005550Z 2025-08-26T20:39:02.1006401Z winlogon.exe winlogon.exe 676 2025-08-26T20:39:02.1006867Z 2025-08-26T20:39:02.1007260Z services.exe 748 2025-08-26T20:39:02.1007908Z 2025-08-26T20:39:02.1009596Z lsass.exe C:\Windows\system32\lsass.exe 768 2025-08-26T20:39:02.1010131Z 2025-08-26T20:39:02.1010680Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s PlugPlay 892 2025-08-26T20:39:02.1011430Z 2025-08-26T20:39:02.1012422Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p 916 2025-08-26T20:39:02.1013005Z 2025-08-26T20:39:02.1013460Z fontdrvhost.exe "fontdrvhost.exe" 940 2025-08-26T20:39:02.1014353Z 2025-08-26T20:39:02.1014996Z fontdrvhost.exe "fontdrvhost.exe" 948 2025-08-26T20:39:02.1015506Z 2025-08-26T20:39:02.1015975Z svchost.exe C:\Windows\system32\svchost.exe -k RPCSS -p 128 2025-08-26T20:39:02.1016533Z 2025-08-26T20:39:02.1017025Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s LSM 460 2025-08-26T20:39:02.1017623Z 2025-08-26T20:39:02.1018589Z svchost.exe C:\Windows\System32\svchost.exe -k termsvcs -s TermService 472 2025-08-26T20:39:02.1019219Z 2025-08-26T20:39:02.1020291Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService 1116 2025-08-26T20:39:02.1021291Z 2025-08-26T20:39:02.1021895Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s EventLog 1264 2025-08-26T20:39:02.1022698Z 2025-08-26T20:39:02.1023026Z dwm.exe "dwm.exe" 1288 2025-08-26T20:39:02.1023436Z 2025-08-26T20:39:02.1023933Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s nsi 1340 2025-08-26T20:39:02.1024570Z 2025-08-26T20:39:02.1025164Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s Dhcp 1368 2025-08-26T20:39:02.1026206Z 2025-08-26T20:39:02.1027006Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s gpsvc 1376 2025-08-26T20:39:02.1027590Z 2025-08-26T20:39:02.1029451Z NVDisplay.Container.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\Display.NvContainer\NVDisplay.Container.exe -s NVDisplay.ContainerLocalSystem -f C:\ProgramData\NVIDIA\NVDisplay.ContainerLocalSystem.log -l 3 -d C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\Display.NvContainer\plugins\LocalSystem -r -p 30000 -cfg NVDisplay.ContainerLocalSystem\LocalSystem /ert 1448 2025-08-26T20:39:02.1031435Z 2025-08-26T20:39:02.1032397Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s NlaSvc 1464 2025-08-26T20:39:02.1033211Z 2025-08-26T20:39:02.1033808Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Schedule 1500 2025-08-26T20:39:02.1034415Z 2025-08-26T20:39:02.1034923Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s netprofm 1572 2025-08-26T20:39:02.1035623Z 2025-08-26T20:39:02.1036276Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s TimeBrokerSvc 1640 2025-08-26T20:39:02.1037015Z 2025-08-26T20:39:02.1037586Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s ProfSvc 1728 2025-08-26T20:39:02.1038677Z 2025-08-26T20:39:02.1039200Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s Themes 1736 2025-08-26T20:39:02.1039784Z 2025-08-26T20:39:02.1040314Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s EventSystem 1744 2025-08-26T20:39:02.1040963Z 2025-08-26T20:39:02.1041436Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s SENS 1852 2025-08-26T20:39:02.1042012Z 2025-08-26T20:39:02.1042677Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p 1888 2025-08-26T20:39:02.1043344Z 2025-08-26T20:39:02.1044309Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s Dnscache 1896 2025-08-26T20:39:02.1045124Z 2025-08-26T20:39:02.1046227Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s ShellHWDetection 2000 2025-08-26T20:39:02.1046878Z 2025-08-26T20:39:02.1047554Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s WinHttpAutoProxySvc 2024 2025-08-26T20:39:02.1048317Z 2025-08-26T20:39:02.1048849Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s FontCache 1496 2025-08-26T20:39:02.1049572Z 2025-08-26T20:39:02.1050647Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetworkFirewall -p 2064 2025-08-26T20:39:02.1051333Z 2025-08-26T20:39:02.1051917Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s LanmanWorkstation 2104 2025-08-26T20:39:02.1052592Z 2025-08-26T20:39:02.1053207Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s UmRdpService 2236 2025-08-26T20:39:02.1053949Z 2025-08-26T20:39:02.1054827Z spoolsv.exe C:\Windows\System32\spoolsv.exe 2372 2025-08-26T20:39:02.1055437Z 2025-08-26T20:39:02.1056364Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UserManager 2392 2025-08-26T20:39:02.1057194Z 2025-08-26T20:39:02.1057725Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s CryptSvc 2504 2025-08-26T20:39:02.1058366Z 2025-08-26T20:39:02.1058963Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s SysMain 2512 2025-08-26T20:39:02.1059669Z 2025-08-26T20:39:02.1060198Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork -p 2528 2025-08-26T20:39:02.1060828Z 2025-08-26T20:39:02.1061332Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Winmgmt 2536 2025-08-26T20:39:02.1062413Z 2025-08-26T20:39:02.1063025Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -s W32Time 2552 2025-08-26T20:39:02.1063653Z 2025-08-26T20:39:02.1064252Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s TrkWks 2560 2025-08-26T20:39:02.1064947Z 2025-08-26T20:39:02.1065738Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s WpnService 2568 2025-08-26T20:39:02.1066352Z 2025-08-26T20:39:02.1066877Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s WinRM 2576 2025-08-26T20:39:02.1067873Z 2025-08-26T20:39:02.1068686Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -s CertPropSvc 2824 2025-08-26T20:39:02.1069309Z 2025-08-26T20:39:02.1069804Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s SessionEnv 2868 2025-08-26T20:39:02.1070419Z 2025-08-26T20:39:02.1070886Z sshd.exe C:\Windows\System32\OpenSSH\sshd.exe 2996 2025-08-26T20:39:02.1071411Z 2025-08-26T20:39:02.1072076Z IpOverUsbSvc.exe "C:\Program Files (x86)\Common Files\Microsoft Shared\Phone Tools\CoreCon\11.0\bin\IpOverUsbSvc.exe" 3020 2025-08-26T20:39:02.1072846Z 2025-08-26T20:39:02.1073852Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\NVWMI\nvWmi64.exe 3040 2025-08-26T20:39:02.1074920Z 2025-08-26T20:39:02.1075436Z svchost.exe C:\Windows\System32\svchost.exe -k smbsvcs -s LanmanServer 3048 2025-08-26T20:39:02.1076066Z 2025-08-26T20:39:02.1076852Z svchost.exe C:\Windows\System32\svchost.exe -k NetSvcs -p -s iphlpsvc 3084 2025-08-26T20:39:02.1077466Z 2025-08-26T20:39:02.1078099Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkServiceNetworkRestricted -p -s PolicyAgent 3552 2025-08-26T20:39:02.1078908Z 2025-08-26T20:39:02.1079594Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 3692 2025-08-26T20:39:02.1080505Z 2025-08-26T20:39:02.1081125Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s lmhosts 3436 2025-08-26T20:39:02.1081830Z 2025-08-26T20:39:02.1082361Z LogonUI.exe "LogonUI.exe" /flags:0x2 /state0:0xa3a7b855 /state1:0x41c64e6d 4784 2025-08-26T20:39:02.1082973Z 2025-08-26T20:39:02.1084711Z NVDisplay.Container.exe "C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\Display.NvContainer\NVDisplay.Container.exe" -f %ProgramData%\NVIDIA\DisplaySessionContainer%d.log -d C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\Display.NvContainer\plugins\Session -r -l 3 -p 30000 -cfg NVDisplay.ContainerLocalSystem\Session /ert -c 5064 2025-08-26T20:39:02.1087173Z 2025-08-26T20:39:02.1087916Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\NVWMI\nvWmi64.exe -spawnprovider 3680 2025-08-26T20:39:02.1088767Z 2025-08-26T20:39:02.1304629Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s LicenseManager 624 2025-08-26T20:39:02.1305426Z 2025-08-26T20:39:02.1305806Z vds.exe C:\Windows\System32\vds.exe 2836 2025-08-26T20:39:02.1306426Z 2025-08-26T20:39:02.1306972Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNoNetwork -p -s DPS 3908 2025-08-26T20:39:02.1307621Z 2025-08-26T20:39:02.1308254Z MicrosoftEdgeUpdate.exe "C:\Program Files (x86)\Microsoft\EdgeUpdate\MicrosoftEdgeUpdate.exe" /c 4060 2025-08-26T20:39:02.1308987Z 2025-08-26T20:39:02.1309385Z msdtc.exe C:\Windows\System32\msdtc.exe 1412 2025-08-26T20:39:02.1309887Z 2025-08-26T20:39:02.1310575Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s WdiSystemHost 2660 2025-08-26T20:39:02.1311313Z 2025-08-26T20:39:02.1311909Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s PcaSvc 4140 2025-08-26T20:39:02.1312597Z 2025-08-26T20:39:02.1313191Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s UALSVC 4716 2025-08-26T20:39:02.1313889Z 2025-08-26T20:39:02.1314462Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UsoSvc 4780 2025-08-26T20:39:02.1315043Z 2025-08-26T20:39:02.1315550Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s CDPSvc 4536 2025-08-26T20:39:02.1316350Z 2025-08-26T20:39:02.1317108Z start-amazon-cloudwatch-agent.exe "C:\Program Files\Amazon\AmazonCloudWatchAgent\start-amazon-cloudwatch-agent.exe" 228 2025-08-26T20:39:02.1317943Z 2025-08-26T20:39:02.1319616Z 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 4576 2025-08-26T20:39:02.1321332Z 2025-08-26T20:39:02.1321765Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 3972 2025-08-26T20:39:02.1322278Z 2025-08-26T20:39:02.1322843Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p 3976 2025-08-26T20:39:02.1323519Z 2025-08-26T20:39:02.1324056Z svchost.exe C:\Windows\system32\svchost.exe -k appmodel -p -s StateRepository 132 2025-08-26T20:39:02.1324694Z 2025-08-26T20:39:02.1325110Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 2956 2025-08-26T20:39:02.1325634Z 2025-08-26T20:39:02.1326205Z Runner.Listener.exe "C:\actions-runner\\bin\Runner.Listener.exe" run 3388 2025-08-26T20:39:02.1326860Z 2025-08-26T20:39:02.1327403Z amazon-ssm-agent.exe "C:\Program Files\Amazon\SSM\amazon-ssm-agent.exe" 3416 2025-08-26T20:39:02.1328090Z 2025-08-26T20:39:02.1328610Z ssm-agent-worker.exe "C:\Program Files\Amazon\SSM\ssm-agent-worker.exe" 4476 2025-08-26T20:39:02.1329233Z 2025-08-26T20:39:02.1329649Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 1940 2025-08-26T20:39:02.1330177Z 2025-08-26T20:39:02.1330719Z Runner.Worker.exe "C:\actions-runner\bin\Runner.Worker.exe" spawnclient 2124 2168 4900 2025-08-26T20:39:02.1331358Z 2025-08-26T20:39:02.1331784Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4860 2025-08-26T20:39:02.1332310Z 2025-08-26T20:39:02.1332727Z taskhostw.exe taskhostw.exe /RuntimeWide 912 2025-08-26T20:39:02.1333244Z 2025-08-26T20:39:02.1333933Z ngentask.exe "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\NGenTask.exe" /RuntimeWide /StopEvent:540 1512 2025-08-26T20:39:02.1334657Z 2025-08-26T20:39:02.1335082Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4344 2025-08-26T20:39:02.1335597Z 2025-08-26T20:39:02.1336222Z ngentask.exe "C:\Windows\Microsoft.NET\Framework\v4.0.30319\NGenTask.exe" /RuntimeWide /StopEvent:100 3544 2025-08-26T20:39:02.1336987Z 2025-08-26T20:39:02.1337402Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4268 2025-08-26T20:39:02.1337923Z 2025-08-26T20:39:02.1338432Z TrustedInstaller.exe C:\Windows\servicing\TrustedInstaller.exe 4904 2025-08-26T20:39:02.1339067Z 2025-08-26T20:39:02.1339889Z TiWorker.exe C:\Windows\winsxs\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.17763.7557_none_56db325b9926b2f1\TiWorker.exe -Embedding 4048 2025-08-26T20:39:02.1340949Z 2025-08-26T20:39:02.1341496Z CompatTelRunner.exe "C:\Windows\system32\compattelrunner.exe" -maintenance 3560 2025-08-26T20:39:02.1342152Z 2025-08-26T20:39:02.1342577Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 1260 2025-08-26T20:39:02.1343110Z 2025-08-26T20:39:02.1343766Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s DsSvc 3840 2025-08-26T20:39:02.1344477Z 2025-08-26T20:39:02.1345138Z ngen.exe "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\ngen.exe" ExecuteQueuedItems /LegacyServiceBehavior 4876 2025-08-26T20:39:02.1346434Z 2025-08-26T20:39:02.1347226Z ngen.exe "C:\Windows\Microsoft.NET\Framework\v4.0.30319\ngen.exe" ExecuteQueuedItems /LegacyServiceBehavior 5056 2025-08-26T20:39:02.1348083Z 2025-08-26T20:39:02.1348762Z CompatTelRunner.exe C:\Windows\system32\CompatTelRunner.exe -m:invagent.dll -f:RunUpdate -cv:to+02GP3NUC28APJ.5 3252 2025-08-26T20:39:02.1349530Z 2025-08-26T20:39:02.1350389Z mscorsvw.exe C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscorsvw.exe -StartupEvent 65c -InterruptEvent 0 -NGENProcess 610 -Pipe 678 -Comment "NGen Worker Process" 2128 2025-08-26T20:39:02.1351387Z 2025-08-26T20:39:02.1352224Z powershell.exe "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE" -command ". 'C:\actions-runner\_work\_temp\8629f8ea-940b-4932-bba7-95986d5d7dbc.ps1'" 4964 2025-08-26T20:39:02.1353139Z 2025-08-26T20:39:02.1353746Z WMIC.exe "C:\Windows\System32\Wbem\WMIC.exe" Path Win32_Process Get Caption,Processid,Commandline 124 2025-08-26T20:39:02.1354459Z 2025-08-26T20:39:02.1354910Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 1664 2025-08-26T20:39:02.1355456Z 2025-08-26T20:39:02.1355460Z 2025-08-26T20:39:02.1355463Z 2025-08-26T20:39:02.1646418Z ##[group]Run pytorch/test-infra/.github/actions/setup-ssh@main 2025-08-26T20:39:02.1646836Z with: 2025-08-26T20:39:02.1647520Z github-secret: *** 2025-08-26T20:39:02.1650030Z 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 tests locally, change working folder to \actions-runner\_work\pytorch\pytorch\test, Activate miniconda and Visual Studio environment and set PYTHON_PATH, 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 set PYTHONPATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build 2025-08-26T20:39:02.1652902Z activate-with-label: false 2025-08-26T20:39:02.1653152Z label: with-ssh 2025-08-26T20:39:02.1653355Z remove-existing-keys: true 2025-08-26T20:39:02.1653636Z fail-silently: true 2025-08-26T20:39:02.1653839Z env: 2025-08-26T20:39:02.1654014Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:39:02.1654240Z ##[endgroup] 2025-08-26T20:39:02.3295990Z Please see https://github.com/pytorch/pytorch/wiki/Debugging-using-with-ssh-for-Github-Actions for more info. 2025-08-26T20:39:02.3298770Z Not on pull request and ciflow reference could not be extracted, skipping adding ssh keys 2025-08-26T20:39:02.3542049Z ##[group]Run pytorch/pytorch/.github/actions/checkout-pytorch@main 2025-08-26T20:39:02.3542463Z with: 2025-08-26T20:39:02.3542657Z no-sudo: true 2025-08-26T20:39:02.3542856Z submodules: recursive 2025-08-26T20:39:02.3543063Z fetch-depth: 0 2025-08-26T20:39:02.3543249Z env: 2025-08-26T20:39:02.3543416Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:39:02.3543659Z ##[endgroup] 2025-08-26T20:39:02.3656227Z ##[group]Run echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-08-26T20:39:02.3657127Z echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-08-26T20:39:02.3677019Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T20:39:02.3677463Z env: 2025-08-26T20:39:02.3677647Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:39:02.3677924Z ##[endgroup] 2025-08-26T20:39:02.4812717Z ##[group]Run # Use all available CPUs for fetching 2025-08-26T20:39:02.4813116Z # Use all available CPUs for fetching 2025-08-26T20:39:02.4813419Z cd "${GITHUB_WORKSPACE}" 2025-08-26T20:39:02.4813728Z git config --global fetch.parallel 0 2025-08-26T20:39:02.4814068Z git config --global submodule.fetchJobs 0 2025-08-26T20:39:02.4814386Z  2025-08-26T20:39:02.4814702Z # Clean workspace. The default checkout action should also do this, but 2025-08-26T20:39:02.4815142Z # do it here as well just in case 2025-08-26T20:39:02.4815430Z if [[ -d .git ]]; then 2025-08-26T20:39:02.4815685Z  if [ -z "${NO_SUDO}" ]; then 2025-08-26T20:39:02.4815968Z  sudo git clean -ffdx 2025-08-26T20:39:02.4816205Z  else 2025-08-26T20:39:02.4816405Z  git clean -ffdx 2025-08-26T20:39:02.4816622Z  fi 2025-08-26T20:39:02.4816803Z fi 2025-08-26T20:39:02.4852954Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T20:39:02.4853405Z env: 2025-08-26T20:39:02.4853582Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:39:02.4853807Z NO_SUDO: true 2025-08-26T20:39:02.4853997Z ##[endgroup] 2025-08-26T20:39:02.6386989Z ##[group]Run actions/checkout@v4 2025-08-26T20:39:02.6387279Z with: 2025-08-26T20:39:02.6387480Z ref: 262640fd220236042fbf4443cc163c8838c84c3d 2025-08-26T20:39:02.6387775Z fetch-depth: 0 2025-08-26T20:39:02.6387991Z submodules: recursive 2025-08-26T20:39:02.6388204Z show-progress: false 2025-08-26T20:39:02.6388431Z repository: pytorch/pytorch 2025-08-26T20:39:02.6388776Z token: *** 2025-08-26T20:39:02.6388974Z ssh-strict: true 2025-08-26T20:39:02.6389169Z ssh-user: git 2025-08-26T20:39:02.6389408Z persist-credentials: true 2025-08-26T20:39:02.6389634Z clean: true 2025-08-26T20:39:02.6389841Z sparse-checkout-cone-mode: true 2025-08-26T20:39:02.6390095Z fetch-tags: false 2025-08-26T20:39:02.6390310Z lfs: false 2025-08-26T20:39:02.6390582Z set-safe-directory: true 2025-08-26T20:39:02.6390809Z env: 2025-08-26T20:39:02.6390979Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:39:02.6391194Z ##[endgroup] 2025-08-26T20:39:02.7709967Z Syncing repository: pytorch/pytorch 2025-08-26T20:39:02.7711357Z ##[group]Getting Git version info 2025-08-26T20:39:02.7712561Z Working directory is 'C:\actions-runner\_work\pytorch\pytorch' 2025-08-26T20:39:02.7797258Z [command]"C:\Program Files\Git\cmd\git.exe" version 2025-08-26T20:39:02.8004849Z git version 2.50.1.windows.1 2025-08-26T20:39:02.8051472Z ##[endgroup] 2025-08-26T20:39:02.8063205Z Copying 'C:\Users\runneruser\.gitconfig' to 'C:\actions-runner\_work\_temp\704c28eb-df0c-4dab-855a-bb5d5635fc6a\.gitconfig' 2025-08-26T20:39:02.8081045Z Temporarily overriding HOME='C:\actions-runner\_work\_temp\704c28eb-df0c-4dab-855a-bb5d5635fc6a' before making global git config changes 2025-08-26T20:39:02.8083434Z Adding repository directory to the temporary git global config as a safe directory 2025-08-26T20:39:02.8091446Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add safe.directory C:\actions-runner\_work\pytorch\pytorch 2025-08-26T20:39:02.8348501Z Deleting the contents of 'C:\actions-runner\_work\pytorch\pytorch' 2025-08-26T20:39:02.8354953Z ##[group]Initializing the repository 2025-08-26T20:39:02.8365917Z [command]"C:\Program Files\Git\cmd\git.exe" init C:\actions-runner\_work\pytorch\pytorch 2025-08-26T20:39:02.8734958Z Initialized empty Git repository in C:/actions-runner/_work/pytorch/pytorch/.git/ 2025-08-26T20:39:02.8786161Z [command]"C:\Program Files\Git\cmd\git.exe" remote add origin https://github.com/pytorch/pytorch 2025-08-26T20:39:02.9038855Z ##[endgroup] 2025-08-26T20:39:02.9039351Z ##[group]Disabling automatic garbage collection 2025-08-26T20:39:02.9051718Z [command]"C:\Program Files\Git\cmd\git.exe" config --local gc.auto 0 2025-08-26T20:39:02.9283340Z ##[endgroup] 2025-08-26T20:39:02.9283744Z ##[group]Setting up auth 2025-08-26T20:39:02.9298866Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp core\.sshCommand 2025-08-26T20:39:02.9551874Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :\"" 2025-08-26T20:39:03.8011680Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-08-26T20:39:03.8254072Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :\"" 2025-08-26T20:39:04.2229130Z [command]"C:\Program Files\Git\cmd\git.exe" config --local http.https://github.com/.extraheader "AUTHORIZATION: basic ***" 2025-08-26T20:39:04.2488085Z ##[endgroup] 2025-08-26T20:39:04.2488502Z ##[group]Fetching the repository 2025-08-26T20:39:04.2502442Z [command]"C:\Program Files\Git\cmd\git.exe" -c protocol.version=2 fetch --prune --no-recurse-submodules origin +refs/heads/*:refs/remotes/origin/* +refs/tags/*:refs/tags/* 2025-08-26T20:39:58.4536793Z From https://github.com/pytorch/pytorch 2025-08-26T20:39:58.4537264Z * [new branch] 160583 -> origin/160583 2025-08-26T20:39:58.4537770Z * [new branch] 2.6.0.dev20241004+ -> origin/2.6.0.dev20241004+ 2025-08-26T20:39:58.4538314Z * [new branch] 5addvllmbuild -> origin/5addvllmbuild 2025-08-26T20:39:58.4538937Z * [new branch] AaronWang04_addmmfusion_perftest -> origin/AaronWang04_addmmfusion_perftest 2025-08-26T20:39:58.4539631Z * [new branch] HDCharles-2.6.0-release-notes -> origin/HDCharles-2.6.0-release-notes 2025-08-26T20:39:58.4540227Z * [new branch] ISSUE-154849 -> origin/ISSUE-154849 2025-08-26T20:39:58.4540851Z * [new branch] JackCaoG/dynamo_make_fx_non_core_aten_ops -> origin/JackCaoG/dynamo_make_fx_non_core_aten_ops 2025-08-26T20:39:58.4541540Z * [new branch] PR-AOTInductorNoneBug -> origin/PR-AOTInductorNoneBug 2025-08-26T20:39:58.4542128Z * [new branch] PR-AOTInductorNoneBugFix -> origin/PR-AOTInductorNoneBugFix 2025-08-26T20:39:58.4543257Z * [new branch] PR-FixConfigsIssue -> origin/PR-FixConfigsIssue 2025-08-26T20:39:58.4543806Z * [new branch] PR-NoneBugFix-viable -> origin/PR-NoneBugFix-viable 2025-08-26T20:39:58.4544380Z * [new branch] PR-ResetToZero -> origin/PR-ResetToZero 2025-08-26T20:39:58.4544966Z * [new branch] Update-Flash-Packaging -> origin/Update-Flash-Packaging 2025-08-26T20:39:58.4545461Z * [new branch] VLA_exp -> origin/VLA_exp 2025-08-26T20:39:58.4546709Z * [new branch] add-missing-args-normalization -> origin/add-missing-args-normalization 2025-08-26T20:39:58.4547386Z * [new branch] add-user-guide-structure -> origin/add-user-guide-structure 2025-08-26T20:39:58.4547901Z * [new branch] addVllmPin -> origin/addVllmPin 2025-08-26T20:39:58.4548424Z * [new branch] add_compile_benchmarking -> origin/add_compile_benchmarking 2025-08-26T20:39:58.4548972Z * [new branch] add_windows_testing_back -> origin/add_windows_testing_back 2025-08-26T20:39:58.4549491Z * [new branch] addbuildvllm -> origin/addbuildvllm 2025-08-26T20:39:58.4550015Z * [new branch] addmm-heuristic -> origin/addmm-heuristic 2025-08-26T20:39:58.4550542Z * [new branch] addsimde -> origin/addsimde 2025-08-26T20:39:58.4551029Z * [new branch] adi/acl_upgrade -> origin/adi/acl_upgrade 2025-08-26T20:39:58.4551480Z * [new branch] adi/test -> origin/adi/test 2025-08-26T20:39:58.4552094Z * [new branch] adi/test_bgemm -> origin/adi/test_bgemm 2025-08-26T20:39:58.4552587Z * [new branch] adi/test_fusions -> origin/adi/test_fusions 2025-08-26T20:39:58.4553081Z * [new branch] adi/test_onednn_v3.9 -> origin/adi/test_onednn_v3.9 2025-08-26T20:39:58.4553630Z * [new branch] adi/test_presve_change -> origin/adi/test_presve_change 2025-08-26T20:39:58.4554119Z * [new branch] adi/test_timm -> origin/adi/test_timm 2025-08-26T20:39:58.4554621Z * [new branch] adi/testpresve_change -> origin/adi/testpresve_change 2025-08-26T20:39:58.4555157Z * [new branch] aditew01/test/vec_bf16 -> origin/aditew01/test/vec_bf16 2025-08-26T20:39:58.4555720Z * [new branch] ah-globalfeedback-hook -> origin/ah-globalfeedback-hook 2025-08-26T20:39:58.4556333Z * [new branch] alt-disable -> origin/alt-disable 2025-08-26T20:39:58.4556883Z * [new branch] angelayi/aoti_additional_files -> origin/angelayi/aoti_additional_files 2025-08-26T20:39:58.4557493Z * [new branch] angelayi/aoti_inductor_fx -> origin/angelayi/aoti_inductor_fx 2025-08-26T20:39:58.4558153Z * [new branch] angelayi/assert_tensor_metadata_device -> origin/angelayi/assert_tensor_metadata_device 2025-08-26T20:39:58.4558808Z * [new branch] angelayi/benchmark -> origin/angelayi/benchmark 2025-08-26T20:39:58.4559338Z * [new branch] angelayi/benchmark2 -> origin/angelayi/benchmark2 2025-08-26T20:39:58.4559965Z * [new branch] angelayi/change_pytree_serialization -> origin/angelayi/change_pytree_serialization 2025-08-26T20:39:58.4560607Z * [new branch] angelayi/cpp_loader -> origin/angelayi/cpp_loader 2025-08-26T20:39:58.4561161Z * [new branch] angelayi/custom_op_subgraph -> origin/angelayi/custom_op_subgraph 2025-08-26T20:39:58.4561760Z * [new branch] angelayi/customop -> origin/angelayi/customop 2025-08-26T20:39:58.4562367Z * [new branch] angelayi/is_symbolic_tracing -> origin/angelayi/is_symbolic_tracing 2025-08-26T20:39:58.4563074Z * [new branch] angelayi/logging.bak -> origin/angelayi/logging.bak 2025-08-26T20:39:58.4563605Z * [new branch] angelayi/logging2 -> origin/angelayi/logging2 2025-08-26T20:39:58.4970497Z * [new branch] angelayi/no_so_weight -> origin/angelayi/no_so_weight 2025-08-26T20:39:58.4971098Z * [new branch] angelayi/opoverload -> origin/angelayi/opoverload 2025-08-26T20:39:58.4971635Z * [new branch] angelayi/pytree -> origin/angelayi/pytree 2025-08-26T20:39:58.4972307Z * [new branch] angelayi/save_error -> origin/angelayi/save_error 2025-08-26T20:39:58.4973065Z * [new branch] angelayi/scan_layers -> origin/angelayi/scan_layers 2025-08-26T20:39:58.4973782Z * [new branch] angelayi/symint_input -> origin/angelayi/symint_input 2025-08-26T20:39:58.4974418Z * [new branch] angelayi/tensor_nn_module_meta -> origin/angelayi/tensor_nn_module_meta 2025-08-26T20:39:58.4975013Z * [new branch] angelayi/test_cpp -> origin/angelayi/test_cpp 2025-08-26T20:39:58.4975516Z * [new branch] angelayi/torch_size -> origin/angelayi/torch_size 2025-08-26T20:39:58.4976027Z * [new branch] aoti-cuda-alloc -> origin/aoti-cuda-alloc 2025-08-26T20:39:58.4976529Z * [new branch] aoti_weight_sharing -> origin/aoti_weight_sharing 2025-08-26T20:39:58.4977050Z * [new branch] arsh/symint_mm_ind_decomp -> origin/arsh/symint_mm_ind_decomp 2025-08-26T20:39:58.4977719Z * [new branch] atalman-inductor-perf-cu124 -> origin/atalman-inductor-perf-cu124 2025-08-26T20:39:58.4978410Z * [new branch] atalman-inductor-perf-cu124.1 -> origin/atalman-inductor-perf-cu124.1 2025-08-26T20:39:58.4979004Z * [new branch] atalman-patch-1 -> origin/atalman-patch-1 2025-08-26T20:39:58.4979490Z * [new branch] atalman-patch-2 -> origin/atalman-patch-2 2025-08-26T20:39:58.4979996Z * [new branch] atalman-patch-3 -> origin/atalman-patch-3 2025-08-26T20:39:58.4980490Z * [new branch] atalman-patch-4 -> origin/atalman-patch-4 2025-08-26T20:39:58.4980996Z * [new branch] atalman_inductor_2.3.0 -> origin/atalman_inductor_2.3.0 2025-08-26T20:39:58.4981544Z * [new branch] atalman_inductor_2.3.1 -> origin/atalman_inductor_2.3.1 2025-08-26T20:39:58.4982141Z * [new branch] atalman_inductor_2.4.0 -> origin/atalman_inductor_2.4.0 2025-08-26T20:39:58.4982686Z * [new branch] atalman_inductor_2.4.x -> origin/atalman_inductor_2.4.x 2025-08-26T20:39:58.4983390Z * [new branch] autoupdate-transformers-pin-via-pr -> origin/autoupdate-transformers-pin-via-pr 2025-08-26T20:39:58.4984067Z * [new branch] backupvllm -> origin/backupvllm 2025-08-26T20:39:58.4984542Z * [new branch] bahuang/test -> origin/bahuang/test 2025-08-26T20:39:58.4984987Z * [new branch] base/1.5 -> origin/base/1.5 2025-08-26T20:39:58.4985555Z * [new branch] batching_sdpa_efficient_attention -> origin/batching_sdpa_efficient_attention 2025-08-26T20:39:58.4986217Z * [new branch] bc-lint-config -> origin/bc-lint-config 2025-08-26T20:39:58.4986750Z * [new branch] bc-lint-test-new-config -> origin/bc-lint-test-new-config 2025-08-26T20:39:58.4987292Z * [new branch] benchmark-updates -> origin/benchmark-updates 2025-08-26T20:39:58.4987890Z * [new branch] benchmarker_compat_with_do_bench -> origin/benchmarker_compat_with_do_bench 2025-08-26T20:39:58.4988488Z * [new branch] benchmarking-script -> origin/benchmarking-script 2025-08-26T20:39:58.4989073Z * [new branch] bertmaher/pinbump26 -> origin/bertmaher/pinbump26 2025-08-26T20:39:58.4989790Z * [new branch] bertrand/cutlass -> origin/bertrand/cutlass 2025-08-26T20:39:58.4990258Z * [new branch] bf/cg-log -> origin/bf/cg-log 2025-08-26T20:39:58.4990731Z * [new branch] bf/cg-remove-check -> origin/bf/cg-remove-check 2025-08-26T20:39:58.4991231Z * [new branch] bf/cg-skip-1-kernel -> origin/bf/cg-skip-1-kernel 2025-08-26T20:39:58.4991726Z * [new branch] bf/cudagraph -> origin/bf/cudagraph 2025-08-26T20:39:58.4992469Z * [new branch] bf/cudagraph-disable-input-mutation -> origin/bf/cudagraph-disable-input-mutation 2025-08-26T20:39:58.4993457Z * [new branch] bf/cudagraph-enable-input-mutation-support-benchmark -> origin/bf/cudagraph-enable-input-mutation-support-benchmark 2025-08-26T20:39:58.4994348Z * [new branch] bf/cudagraph-partition -> origin/bf/cudagraph-partition 2025-08-26T20:39:58.4994986Z * [new branch] bf/default-recompile-reason -> origin/bf/default-recompile-reason 2025-08-26T20:39:58.4995629Z * [new branch] bf/donated-buffer-bench -> origin/bf/donated-buffer-bench 2025-08-26T20:39:58.4996178Z * [new branch] bf/pa-non-divisible -> origin/bf/pa-non-divisible 2025-08-26T20:39:58.4996683Z * [new branch] bf/partition-doc -> origin/bf/partition-doc 2025-08-26T20:39:58.4997223Z * [new branch] bf/partition-move-cpu -> origin/bf/partition-move-cpu 2025-08-26T20:39:58.5359692Z * [new branch] bf/partition-turn-on -> origin/bf/partition-turn-on 2025-08-26T20:39:58.5360280Z * [new branch] bf/remove-check-55b0c39d -> origin/bf/remove-check-55b0c39d 2025-08-26T20:39:58.5360792Z * [new branch] bf/rope -> origin/bf/rope 2025-08-26T20:39:58.5361245Z * [new branch] bf/skip-asserts -> origin/bf/skip-asserts 2025-08-26T20:39:58.5361731Z * [new branch] bf16adamw -> origin/bf16adamw 2025-08-26T20:39:58.5362244Z * [new branch] bisect_perf_hf_T5_3acc6eac492 -> origin/bisect_perf_hf_T5_3acc6eac492 2025-08-26T20:39:58.5362846Z * [new branch] bisect_perf_hf_T5_3fcf66f61fb -> origin/bisect_perf_hf_T5_3fcf66f61fb 2025-08-26T20:39:58.5363431Z * [new branch] bisect_perf_hf_T5_4009d154129 -> origin/bisect_perf_hf_T5_4009d154129 2025-08-26T20:39:58.5363994Z * [new branch] bisect_perf_hf_T5_40d0740e73d -> origin/bisect_perf_hf_T5_40d0740e73d 2025-08-26T20:39:58.5364567Z * [new branch] bisect_perf_hf_T5_5268754e -> origin/bisect_perf_hf_T5_5268754e 2025-08-26T20:39:58.5365118Z * [new branch] bisect_perf_hf_T5_7d89a8d385c -> origin/bisect_perf_hf_T5_7d89a8d385c 2025-08-26T20:39:58.5365702Z * [new branch] bisect_perf_hf_T5_b7a25c1ee7c -> origin/bisect_perf_hf_T5_b7a25c1ee7c 2025-08-26T20:39:58.5366288Z * [new branch] bisect_perf_hf_T5_c25b201583f -> origin/bisect_perf_hf_T5_c25b201583f 2025-08-26T20:39:58.5366864Z * [new branch] bisect_perf_hf_T5_c93e57efac0 -> origin/bisect_perf_hf_T5_c93e57efac0 2025-08-26T20:39:58.5367446Z * [new branch] bisect_perf_hf_T5_ca9813ea149 -> origin/bisect_perf_hf_T5_ca9813ea149 2025-08-26T20:39:58.5368000Z * [new branch] bisect_perf_hf_T5_d65f194a -> origin/bisect_perf_hf_T5_d65f194a 2025-08-26T20:39:58.5368560Z * [new branch] bisect_perf_hf_T5_da94ab0b -> origin/bisect_perf_hf_T5_da94ab0b 2025-08-26T20:39:58.5369141Z * [new branch] bisect_perf_hf_T5_da94ab0b_new -> origin/bisect_perf_hf_T5_da94ab0b_new 2025-08-26T20:39:58.5369734Z * [new branch] bisect_perf_hf_T5_db4e8a1d8a8 -> origin/bisect_perf_hf_T5_db4e8a1d8a8 2025-08-26T20:39:58.5370364Z * [new branch] bisect_perf_hf_T5_e0d97e936a2 -> origin/bisect_perf_hf_T5_e0d97e936a2 2025-08-26T20:39:58.5371173Z * [new branch] bisect_perf_hf_T5_f23621ec563 -> origin/bisect_perf_hf_T5_f23621ec563 2025-08-26T20:39:58.5371761Z * [new branch] bowbao/bench_updates_stage -> origin/bowbao/bench_updates_stage 2025-08-26T20:39:58.5372314Z * [new branch] bowbao/dort_rewriter -> origin/bowbao/dort_rewriter 2025-08-26T20:39:58.5372808Z * [new branch] bowbao/wip_prs -> origin/bowbao/wip_prs 2025-08-26T20:39:58.5373385Z * [new branch] bowenbao/partial_min_max_reduce -> origin/bowenbao/partial_min_max_reduce 2025-08-26T20:39:58.5374658Z * [new branch] brister/always_wrapper_ir -> origin/brister/always_wrapper_ir 2025-08-26T20:39:58.5375247Z * [new branch] brister/break_tensorbox -> origin/brister/break_tensorbox 2025-08-26T20:39:58.5375810Z * [new branch] brister/flatten_contig -> origin/brister/flatten_contig 2025-08-26T20:39:58.5376356Z * [new branch] brister/fx_custom_triton -> origin/brister/fx_custom_triton 2025-08-26T20:39:58.5376921Z * [new branch] brister/tensor_box_output -> origin/brister/tensor_box_output 2025-08-26T20:39:58.5377492Z * [new branch] brister/test_block_ptr_same -> origin/brister/test_block_ptr_same 2025-08-26T20:39:58.5378165Z * [new branch] brister/tiled_reduction_no_numel_check -> origin/brister/tiled_reduction_no_numel_check 2025-08-26T20:39:58.5378766Z * [new branch] c57382a49 -> origin/c57382a49 2025-08-26T20:39:58.5379205Z * [new branch] ca_0431d47eaa -> origin/ca_0431d47eaa 2025-08-26T20:39:58.5379674Z * [new branch] ca_fix_0431d47eaa -> origin/ca_fix_0431d47eaa 2025-08-26T20:39:58.5380637Z * [new branch] camyll/revert-94bc900da97ad7f3c35b3b819bb53b23c74b581a-for-release-2.8 -> origin/camyll/revert-94bc900da97ad7f3c35b3b819bb53b23c74b581a-for-release-2.8 2025-08-26T20:39:58.5381686Z * [new branch] camyllh/test_setup_hooks_push -> origin/camyllh/test_setup_hooks_push 2025-08-26T20:39:58.5382448Z * [new branch] cherry-pick-149654-by-pytorch_bot_bot_ -> origin/cherry-pick-149654-by-pytorch_bot_bot_ 2025-08-26T20:39:58.5383213Z * [new branch] cherry-pick-151939-by-pytorch_bot_bot_ -> origin/cherry-pick-151939-by-pytorch_bot_bot_ 2025-08-26T20:39:58.5383986Z * [new branch] cherry-pick-154174-by-pytorch_bot_bot_ -> origin/cherry-pick-154174-by-pytorch_bot_bot_ 2025-08-26T20:39:58.5384744Z * [new branch] cherry-pick-155896-by-pytorch_bot_bot_ -> origin/cherry-pick-155896-by-pytorch_bot_bot_ 2025-08-26T20:39:58.5675573Z * [new branch] cherry-pick-156260-by-pytorch_bot_bot_ -> origin/cherry-pick-156260-by-pytorch_bot_bot_ 2025-08-26T20:39:58.5676448Z * [new branch] cherry-pick-156719-by-pytorch_bot_bot_ -> origin/cherry-pick-156719-by-pytorch_bot_bot_ 2025-08-26T20:39:58.5677246Z * [new branch] cherry-pick-156888-by-pytorch_bot_bot_ -> origin/cherry-pick-156888-by-pytorch_bot_bot_ 2025-08-26T20:39:58.5678017Z * [new branch] cherry-pick-157453-by-pytorch_bot_bot_ -> origin/cherry-pick-157453-by-pytorch_bot_bot_ 2025-08-26T20:39:58.5678806Z * [new branch] cherry-pick-157513-by-pytorch_bot_bot_ -> origin/cherry-pick-157513-by-pytorch_bot_bot_ 2025-08-26T20:39:58.5679553Z * [new branch] cherry-pick-157558-by-pytorch_bot_bot_ -> origin/cherry-pick-157558-by-pytorch_bot_bot_ 2025-08-26T20:39:58.5680335Z * [new branch] cherry-pick-157598-by-pytorch_bot_bot_ -> origin/cherry-pick-157598-by-pytorch_bot_bot_ 2025-08-26T20:39:58.5681090Z * [new branch] cherry-pick-157630-by-pytorch_bot_bot_ -> origin/cherry-pick-157630-by-pytorch_bot_bot_ 2025-08-26T20:39:58.5681901Z * [new branch] cherry-pick-157695-by-pytorch_bot_bot_ -> origin/cherry-pick-157695-by-pytorch_bot_bot_ 2025-08-26T20:39:58.5682906Z * [new branch] cherry-pick-157732-by-pytorch_bot_bot_ -> origin/cherry-pick-157732-by-pytorch_bot_bot_ 2025-08-26T20:39:58.5683660Z * [new branch] cherry-pick-157733-by-pytorch_bot_bot_ -> origin/cherry-pick-157733-by-pytorch_bot_bot_ 2025-08-26T20:39:58.5684428Z * [new branch] cherry-pick-157985-by-pytorch_bot_bot_ -> origin/cherry-pick-157985-by-pytorch_bot_bot_ 2025-08-26T20:39:58.5685180Z * [new branch] cherry-pick-157993-by-pytorch_bot_bot_ -> origin/cherry-pick-157993-by-pytorch_bot_bot_ 2025-08-26T20:39:58.5686061Z * [new branch] cherry-pick-158064-by-pytorch_bot_bot_ -> origin/cherry-pick-158064-by-pytorch_bot_bot_ 2025-08-26T20:39:58.5686837Z * [new branch] cherry-pick-158152-by-pytorch_bot_bot_ -> origin/cherry-pick-158152-by-pytorch_bot_bot_ 2025-08-26T20:39:58.5687636Z * [new branch] cherry-pick-158301-by-pytorch_bot_bot_ -> origin/cherry-pick-158301-by-pytorch_bot_bot_ 2025-08-26T20:39:58.5688448Z * [new branch] cherry-pick-158537-by-pytorch_bot_bot_ -> origin/cherry-pick-158537-by-pytorch_bot_bot_ 2025-08-26T20:39:58.5689212Z * [new branch] cherry-pick-159181-by-pytorch_bot_bot_ -> origin/cherry-pick-159181-by-pytorch_bot_bot_ 2025-08-26T20:39:58.5689973Z * [new branch] cherry-pick-159969-by-pytorch_bot_bot_ -> origin/cherry-pick-159969-by-pytorch_bot_bot_ 2025-08-26T20:39:58.5690736Z * [new branch] cherry-pick-160586-by-pytorch_bot_bot_ -> origin/cherry-pick-160586-by-pytorch_bot_bot_ 2025-08-26T20:39:58.5691649Z * [new branch] cherrypick-e4e2701429c17078c3c475382a8b1fa4c8a8cefc -> origin/cherrypick-e4e2701429c17078c3c475382a8b1fa4c8a8cefc 2025-08-26T20:39:58.5692441Z * [new branch] chilli/flex_vllm -> origin/chilli/flex_vllm 2025-08-26T20:39:58.5692928Z * [new branch] cleantest1 -> origin/cleantest1 2025-08-26T20:39:58.5693615Z * [new branch] cleanup-inductor-benchmark-images -> origin/cleanup-inductor-benchmark-images 2025-08-26T20:39:58.5694244Z * [new branch] codex-testing -> origin/codex-testing 2025-08-26T20:39:58.5694884Z * [new branch] codex/add-metadata-field-for-file-path -> origin/codex/add-metadata-field-for-file-path 2025-08-26T20:39:58.5695821Z * [new branch] codex/add-test-for-inductor-local-cache-behavior -> origin/codex/add-test-for-inductor-local-cache-behavior 2025-08-26T20:39:58.5696918Z * [new branch] codex/create-test-for-tensor-memory-leak-in-cudagraph -> origin/codex/create-test-for-tensor-memory-leak-in-cudagraph 2025-08-26T20:39:58.5697829Z * [new branch] codex/fix-issue-121219-in-pytorch -> origin/codex/fix-issue-121219-in-pytorch 2025-08-26T20:39:58.5698529Z * [new branch] codex/fix-issue-160415-in-pytorch -> origin/codex/fix-issue-160415-in-pytorch 2025-08-26T20:39:58.5699427Z * [new branch] codex/fix-noqengine-quantized-engine-support -> origin/codex/fix-noqengine-quantized-engine-support 2025-08-26T20:39:58.5700286Z * [new branch] codex/fix-pin_memory-error-handling -> origin/codex/fix-pin_memory-error-handling 2025-08-26T20:39:58.5701032Z * [new branch] codex/propose-fix-for-issue-160332 -> origin/codex/propose-fix-for-issue-160332 2025-08-26T20:39:58.5701891Z * [new branch] codex/refactor-lintrunner-config-to-use-uv-run -> origin/codex/refactor-lintrunner-config-to-use-uv-run 2025-08-26T20:39:58.5702954Z * [new branch] codex/remove-allow-untyped-defs-and-fix-type-errors -> origin/codex/remove-allow-untyped-defs-and-fix-type-errors 2025-08-26T20:39:58.6083423Z * [new branch] codex/verify-torch-output-and-log-results -> origin/codex/verify-torch-output-and-log-results 2025-08-26T20:39:58.6084266Z * [new branch] compile_fsdp2_disable_stream_and_event -> origin/compile_fsdp2_disable_stream_and_event 2025-08-26T20:39:58.6085080Z * [new branch] context_test -> origin/context_test 2025-08-26T20:39:58.6085567Z * [new branch] copilot/fix-157446 -> origin/copilot/fix-157446 2025-08-26T20:39:58.6086091Z * [new branch] copilot/fix-159257 -> origin/copilot/fix-159257 2025-08-26T20:39:58.6086574Z * [new branch] copy_graph -> origin/copy_graph 2025-08-26T20:39:58.6087052Z * [new branch] cpio/fix_new_ami_tests -> origin/cpio/fix_new_ami_tests 2025-08-26T20:39:58.6087714Z * [new branch] csl/always_produce_xml -> origin/csl/always_produce_xml 2025-08-26T20:39:58.6088263Z * [new branch] csl/build_test_more_procs -> origin/csl/build_test_more_procs 2025-08-26T20:39:58.6088831Z * [new branch] csl/build_test_more_procs2 -> origin/csl/build_test_more_procs2 2025-08-26T20:39:58.6089400Z * [new branch] csl/disable_flaky_cpp_test -> origin/csl/disable_flaky_cpp_test 2025-08-26T20:39:58.6089955Z * [new branch] csl/disable_periodic_test -> origin/csl/disable_periodic_test 2025-08-26T20:39:58.6090529Z * [new branch] csl/executorch_docker_fail -> origin/csl/executorch_docker_fail 2025-08-26T20:39:58.6091055Z * [new branch] csl/fix_check_alerts -> origin/csl/fix_check_alerts 2025-08-26T20:39:58.6091541Z * [new branch] csl/katex -> origin/csl/katex 2025-08-26T20:39:58.6092030Z * [new branch] csl/larger_runner -> origin/csl/larger_runner 2025-08-26T20:39:58.6092542Z * [new branch] csl/lintrunner_stuff -> origin/csl/lintrunner_stuff 2025-08-26T20:39:58.6093060Z * [new branch] csl/mps_sharding -> origin/csl/mps_sharding 2025-08-26T20:39:58.6093557Z * [new branch] csl/multistage_docker -> origin/csl/multistage_docker 2025-08-26T20:39:58.6094099Z * [new branch] csl/name_link_check_job -> origin/csl/name_link_check_job 2025-08-26T20:39:58.6094636Z * [new branch] csl/no_keep_goin_rocm -> origin/csl/no_keep_goin_rocm 2025-08-26T20:39:58.6095129Z * [new branch] csl/not_600_timeout -> origin/csl/not_600_timeout 2025-08-26T20:39:58.6095709Z * [new branch] csl/remove_unused_docker_images -> origin/csl/remove_unused_docker_images 2025-08-26T20:39:58.6096261Z * [new branch] csl/revert_open -> origin/csl/revert_open 2025-08-26T20:39:58.6096746Z * [new branch] csl/skip_build -> origin/csl/skip_build 2025-08-26T20:39:58.6097310Z * [new branch] csl/test_cuda_build_large_runner -> origin/csl/test_cuda_build_large_runner 2025-08-26T20:39:58.6097875Z * [new branch] csl/unused_docker -> origin/csl/unused_docker 2025-08-26T20:39:58.6098366Z * [new branch] csl/win_sccache -> origin/csl/win_sccache 2025-08-26T20:39:58.6098844Z * [new branch] cublasltrelax2 -> origin/cublasltrelax2 2025-08-26T20:39:58.6099330Z * [new branch] cublasrelax2 -> origin/cublasrelax2 2025-08-26T20:39:58.6099816Z * [new branch] cudnnsdparefactor -> origin/cudnnsdparefactor 2025-08-26T20:39:58.6100343Z * [new branch] custom_lowering_dict -> origin/custom_lowering_dict 2025-08-26T20:39:58.6100850Z * [new branch] czhuge_muon_dev -> origin/czhuge_muon_dev 2025-08-26T20:39:58.6101326Z * [new branch] d4l3k/delete_hook -> origin/d4l3k/delete_hook 2025-08-26T20:39:58.6101797Z * [new branch] dcp_zoc -> origin/dcp_zoc 2025-08-26T20:39:58.6102269Z * [new branch] delete-quant-docs -> origin/delete-quant-docs 2025-08-26T20:39:58.6103186Z * [new branch] dependabot/pip/dot-ci/docker/ci_commit_pins/main/transformers-4.55.2 -> origin/dependabot/pip/dot-ci/docker/ci_commit_pins/main/transformers-4.55.2 2025-08-26T20:39:58.6104588Z * [new branch] dependabot/pip/dot-ci/docker/ci_commit_pins/main/transformers-4.55.3 -> origin/dependabot/pip/dot-ci/docker/ci_commit_pins/main/transformers-4.55.3 2025-08-26T20:39:58.6105873Z * [new branch] dependabot/pip/dot-ci/docker/ci_commit_pins/main/transformers-4.55.4 -> origin/dependabot/pip/dot-ci/docker/ci_commit_pins/main/transformers-4.55.4 2025-08-26T20:39:58.6107157Z * [new branch] dependabot/pip/dot-ci/docker/protobuf-5.29.5 -> origin/dependabot/pip/dot-ci/docker/protobuf-5.29.5 2025-08-26T20:39:58.6108147Z * [new branch] dependabot/pip/dot-github/requirements/protobuf-5.29.5 -> origin/dependabot/pip/dot-github/requirements/protobuf-5.29.5 2025-08-26T20:39:58.6108982Z * [new branch] desertfire/test_cpp_wrapper -> origin/desertfire/test_cpp_wrapper 2025-08-26T20:39:58.6748321Z * [new branch] desertfire/triton-cpu-for-aarch64 -> origin/desertfire/triton-cpu-for-aarch64 2025-08-26T20:39:58.6749046Z * [new branch] dev/joona/MPSNDArrayAdd -> origin/dev/joona/MPSNDArrayAdd 2025-08-26T20:39:58.6749669Z * [new branch] dev/joona/Unranked -> origin/dev/joona/Unranked 2025-08-26T20:39:58.6750218Z * [new branch] dev/joona/cat -> origin/dev/joona/cat 2025-08-26T20:39:58.6750733Z * [new branch] dev/joona/cat_remove_graph -> origin/dev/joona/cat_remove_graph 2025-08-26T20:39:58.6751318Z * [new branch] dev/joona/embeddingbag -> origin/dev/joona/embeddingbag 2025-08-26T20:39:58.6751902Z * [new branch] dev/joona/getTensorsString -> origin/dev/joona/getTensorsString 2025-08-26T20:39:58.6752618Z * [new branch] dev/joona/maxpool2dwithindices_errmsg -> origin/dev/joona/maxpool2dwithindices_errmsg 2025-08-26T20:39:58.6753353Z * [new branch] dev/joona/mps_linear_macos14 -> origin/dev/joona/mps_linear_macos14 2025-08-26T20:39:58.6753901Z * [new branch] dev/joona/sdpa -> origin/dev/joona/sdpa 2025-08-26T20:39:58.6754484Z * [new branch] dev/joona/synchronize_benchmark -> origin/dev/joona/synchronize_benchmark 2025-08-26T20:39:58.6755137Z * [new branch] dev/joona/topk_newapi -> origin/dev/joona/topk_newapi 2025-08-26T20:39:58.6755697Z * [new branch] dev/joona/type_inf -> origin/dev/joona/type_inf 2025-08-26T20:39:58.6756211Z * [new branch] dev/joona/upsize3d -> origin/dev/joona/upsize3d 2025-08-26T20:39:58.6756685Z * [new branch] disable -> origin/disable 2025-08-26T20:39:58.6757141Z * [new branch] e2e-baseline -> origin/e2e-baseline 2025-08-26T20:39:58.6757640Z * [new branch] eigen_for_sparse_addmm_v2 -> origin/eigen_for_sparse_addmm_v2 2025-08-26T20:39:58.6758211Z * [new branch] embg/test_inductor_ci_128B -> origin/embg/test_inductor_ci_128B 2025-08-26T20:39:58.6758787Z * [new branch] embg/test_inductor_ci_base -> origin/embg/test_inductor_ci_base 2025-08-26T20:39:58.6759368Z * [new branch] embg/test_inductor_ci_control -> origin/embg/test_inductor_ci_control 2025-08-26T20:39:58.6759969Z * [new branch] embg/triton_l2_prefetch_128B -> origin/embg/triton_l2_prefetch_128B 2025-08-26T20:39:58.6760547Z * [new branch] embg/triton_l2_prefetch_256B -> origin/embg/triton_l2_prefetch_256B 2025-08-26T20:39:58.6761203Z * [new branch] enable-b200-benchmark -> origin/enable-b200-benchmark 2025-08-26T20:39:58.6761720Z * [new branch] eqy-patch-1 -> origin/eqy-patch-1 2025-08-26T20:39:58.6762174Z * [new branch] eqy-patch-2 -> origin/eqy-patch-2 2025-08-26T20:39:58.6762637Z * [new branch] eqy-patch-3 -> origin/eqy-patch-3 2025-08-26T20:39:58.6763270Z * [new branch] eqy-patch-4 -> origin/eqy-patch-4 2025-08-26T20:39:58.6763814Z * [new branch] example-convert-torch.nn -> origin/example-convert-torch.nn 2025-08-26T20:39:58.6764385Z * [new branch] exclamaforte/amd-ma -> origin/exclamaforte/amd-ma 2025-08-26T20:39:58.6765054Z * [new branch] exclamaforte/bump-transformer-version -> origin/exclamaforte/bump-transformer-version 2025-08-26T20:39:58.6765835Z * [new branch] exclamaforte/clear-feedback-savers -> origin/exclamaforte/clear-feedback-savers 2025-08-26T20:39:58.6767333Z * [new branch] exclamaforte/combo-kernels-perf-run -> origin/exclamaforte/combo-kernels-perf-run 2025-08-26T20:39:58.6768126Z * [new branch] exclamaforte/debug-autotuner-profile -> origin/exclamaforte/debug-autotuner-profile 2025-08-26T20:39:58.6768848Z * [new branch] exclamaforte/do_bench_refactor -> origin/exclamaforte/do_bench_refactor 2025-08-26T20:39:58.6769534Z * [new branch] exclamaforte/enable-mem-dep-fusion -> origin/exclamaforte/enable-mem-dep-fusion 2025-08-26T20:39:58.6770319Z * [new branch] exclamaforte/fix-exhaustive-autotuning -> origin/exclamaforte/fix-exhaustive-autotuning 2025-08-26T20:39:58.6771114Z * [new branch] exclamaforte/fix-trace-parsing-fx-svg -> origin/exclamaforte/fix-trace-parsing-fx-svg 2025-08-26T20:39:58.6771959Z * [new branch] exclamaforte/force-pointwise-cat-perf-run -> origin/exclamaforte/force-pointwise-cat-perf-run 2025-08-26T20:39:58.6772803Z * [new branch] exclamaforte/fusion-data -> origin/exclamaforte/fusion-data 2025-08-26T20:39:58.6773439Z * [new branch] exclamaforte/gemm-benchmark-run -> origin/exclamaforte/gemm-benchmark-run 2025-08-26T20:39:58.6774124Z * [new branch] exclamaforte/gemm-export-model -> origin/exclamaforte/gemm-export-model 2025-08-26T20:39:58.6774746Z * [new branch] exclamaforte/gemm-model -> origin/exclamaforte/gemm-model 2025-08-26T20:39:58.6775499Z * [new branch] exclamaforte/gemm-model-all-data-collection -> origin/exclamaforte/gemm-model-all-data-collection 2025-08-26T20:39:58.7164523Z * [new branch] exclamaforte/gemm-to-amd -> origin/exclamaforte/gemm-to-amd 2025-08-26T20:39:58.7165138Z * [new branch] exclamaforte/just-gemm-model -> origin/exclamaforte/just-gemm-model 2025-08-26T20:39:58.7165894Z * [new branch] exclamaforte/just-gemm-model-no-refactor -> origin/exclamaforte/just-gemm-model-no-refactor 2025-08-26T20:39:58.7166644Z * [new branch] exclamaforte/memory-counter -> origin/exclamaforte/memory-counter 2025-08-26T20:39:58.7167366Z * [new branch] exclamaforte/profiler-combo -> origin/exclamaforte/profiler-combo 2025-08-26T20:39:58.7168054Z * [new branch] exclamaforte/test_cpp_wrapper_mode -> origin/exclamaforte/test_cpp_wrapper_mode 2025-08-26T20:39:58.7168806Z * [new branch] exclamaforte/update-autotune-configs -> origin/exclamaforte/update-autotune-configs 2025-08-26T20:39:58.7169614Z * [new branch] exclamaforte/update-autotune-configs-2 -> origin/exclamaforte/update-autotune-configs-2 2025-08-26T20:39:58.7170344Z * [new branch] exclamforte/gemm-model-final -> origin/exclamforte/gemm-model-final 2025-08-26T20:39:58.7170861Z * [new branch] exec -> origin/exec 2025-08-26T20:39:58.7171364Z * [new branch] experimental-mosaic -> origin/experimental-mosaic 2025-08-26T20:39:58.7171893Z * [new branch] export-D58091437 -> origin/export-D58091437 2025-08-26T20:39:58.7172408Z * [new branch] export-D61047529 -> origin/export-D61047529 2025-08-26T20:39:58.7172900Z * [new branch] export-D70112642 -> origin/export-D70112642 2025-08-26T20:39:58.7173547Z * [new branch] export-D71412006 -> origin/export-D71412006 2025-08-26T20:39:58.7174038Z * [new branch] export-D72483950 -> origin/export-D72483950 2025-08-26T20:39:58.7174508Z * [new branch] export-D73042989 -> origin/export-D73042989 2025-08-26T20:39:58.7174988Z * [new branch] export-D75183591 -> origin/export-D75183591 2025-08-26T20:39:58.7175469Z * [new branch] export-D75605373 -> origin/export-D75605373 2025-08-26T20:39:58.7176050Z * [new branch] export-D75617432 -> origin/export-D75617432 2025-08-26T20:39:58.7176525Z * [new branch] export-D75659965 -> origin/export-D75659965 2025-08-26T20:39:58.7176988Z * [new branch] export-D76080931 -> origin/export-D76080931 2025-08-26T20:39:58.7177458Z * [new branch] export-D76463347 -> origin/export-D76463347 2025-08-26T20:39:58.7177936Z * [new branch] export-D76797250 -> origin/export-D76797250 2025-08-26T20:39:58.7178409Z * [new branch] export-D76885271 -> origin/export-D76885271 2025-08-26T20:39:58.7178882Z * [new branch] export-D76885620 -> origin/export-D76885620 2025-08-26T20:39:58.7179351Z * [new branch] export-D76936623 -> origin/export-D76936623 2025-08-26T20:39:58.7179832Z * [new branch] export-D76958268 -> origin/export-D76958268 2025-08-26T20:39:58.7180304Z * [new branch] export-D78308105 -> origin/export-D78308105 2025-08-26T20:39:58.7180778Z * [new branch] export-D78375400 -> origin/export-D78375400 2025-08-26T20:39:58.7181252Z * [new branch] export-D78431305 -> origin/export-D78431305 2025-08-26T20:39:58.7181716Z * [new branch] export-D78580107 -> origin/export-D78580107 2025-08-26T20:39:58.7182195Z * [new branch] export-D78822171 -> origin/export-D78822171 2025-08-26T20:39:58.7182659Z * [new branch] export-D78822351 -> origin/export-D78822351 2025-08-26T20:39:58.7183133Z * [new branch] export-D78822507 -> origin/export-D78822507 2025-08-26T20:39:58.7183605Z * [new branch] export-D78826994 -> origin/export-D78826994 2025-08-26T20:39:58.7184070Z * [new branch] export-D78894142 -> origin/export-D78894142 2025-08-26T20:39:58.7184552Z * [new branch] export-D78894324 -> origin/export-D78894324 2025-08-26T20:39:58.7185021Z * [new branch] export-D78929245 -> origin/export-D78929245 2025-08-26T20:39:58.7185495Z * [new branch] export-D78934925 -> origin/export-D78934925 2025-08-26T20:39:58.7185967Z * [new branch] export-D78953203 -> origin/export-D78953203 2025-08-26T20:39:58.7186497Z * [new branch] export-D78953229 -> origin/export-D78953229 2025-08-26T20:39:58.7186974Z * [new branch] export-D78957093 -> origin/export-D78957093 2025-08-26T20:39:58.7187444Z * [new branch] export-D78957389 -> origin/export-D78957389 2025-08-26T20:39:58.7187923Z * [new branch] export-D78979812 -> origin/export-D78979812 2025-08-26T20:39:58.7188386Z * [new branch] export-D78996107 -> origin/export-D78996107 2025-08-26T20:39:58.7188871Z * [new branch] export-D79026433 -> origin/export-D79026433 2025-08-26T20:39:58.7598508Z * [new branch] export-D79230339 -> origin/export-D79230339 2025-08-26T20:39:58.7598996Z * [new branch] export-D79319835 -> origin/export-D79319835 2025-08-26T20:39:58.7599469Z * [new branch] export-D79328456 -> origin/export-D79328456 2025-08-26T20:39:58.7600137Z * [new branch] export-D79534608 -> origin/export-D79534608 2025-08-26T20:39:58.7600607Z * [new branch] export-D79647167 -> origin/export-D79647167 2025-08-26T20:39:58.7601082Z * [new branch] export-D79751098 -> origin/export-D79751098 2025-08-26T20:39:58.7601552Z * [new branch] export-D79785974 -> origin/export-D79785974 2025-08-26T20:39:58.7602026Z * [new branch] export-D80025417 -> origin/export-D80025417 2025-08-26T20:39:58.7602611Z * [new branch] export-D80120333 -> origin/export-D80120333 2025-08-26T20:39:58.7603088Z * [new branch] export-D80214882 -> origin/export-D80214882 2025-08-26T20:39:58.7603564Z * [new branch] export-D80319069 -> origin/export-D80319069 2025-08-26T20:39:58.7604036Z * [new branch] export-D80321215 -> origin/export-D80321215 2025-08-26T20:39:58.7604513Z * [new branch] export-D80503451 -> origin/export-D80503451 2025-08-26T20:39:58.7604980Z * [new branch] export-D80771648 -> origin/export-D80771648 2025-08-26T20:39:58.7605455Z * [new branch] export-D80823877 -> origin/export-D80823877 2025-08-26T20:39:58.7605927Z * [new branch] export-D80948073 -> origin/export-D80948073 2025-08-26T20:39:58.7606393Z * [new branch] export-D80958642 -> origin/export-D80958642 2025-08-26T20:39:58.7606863Z * [new branch] export-D80970483 -> origin/export-D80970483 2025-08-26T20:39:58.7607324Z * [new branch] export-D81054193 -> origin/export-D81054193 2025-08-26T20:39:58.7607793Z * [new branch] export-D81060182 -> origin/export-D81060182 2025-08-26T20:39:58.7608394Z * [new branch] exported-model-train-idempotent -> origin/exported-model-train-idempotent 2025-08-26T20:39:58.7609051Z * [new branch] ezyang/wip-aot-descriptors -> origin/ezyang/wip-aot-descriptors 2025-08-26T20:39:58.7609567Z * [new branch] fa_u8_brgemm -> origin/fa_u8_brgemm 2025-08-26T20:39:58.7610027Z * [new branch] fastmath_baseline -> origin/fastmath_baseline 2025-08-26T20:39:58.7610504Z * [new branch] fbcode/warm -> origin/fbcode/warm 2025-08-26T20:39:58.7610976Z * [new branch] fca -> origin/fca 2025-08-26T20:39:58.7611445Z * [new branch] fca2_ca5984c -> origin/fca2_ca5984c 2025-08-26T20:39:58.7611866Z * [new branch] fca5 -> origin/fca5 2025-08-26T20:39:58.7612404Z * [new branch] feature/function-numa-binding -> origin/feature/function-numa-binding 2025-08-26T20:39:58.7613103Z * [new branch] feature/function-numa-binding-take2 -> origin/feature/function-numa-binding-take2 2025-08-26T20:39:58.7613760Z * [new branch] feature/numa-nproc-fix -> origin/feature/numa-nproc-fix 2025-08-26T20:39:58.7614387Z * [new branch] feature/numa-signpost-serialize -> origin/feature/numa-signpost-serialize 2025-08-26T20:39:58.7615039Z * [new branch] fengyuan/external-proj -> origin/fengyuan/external-proj 2025-08-26T20:39:58.7615740Z * [new branch] fengyuan/out-of-tree-xpu-ops-improve-test -> origin/fengyuan/out-of-tree-xpu-ops-improve-test 2025-08-26T20:39:58.7616605Z * [new branch] fengyuan/out-of-tree-xpu-ops-remove-dtype -> origin/fengyuan/out-of-tree-xpu-ops-remove-dtype 2025-08-26T20:39:58.7617290Z * [new branch] fengyuan/test-xpu -> origin/fengyuan/test-xpu 2025-08-26T20:39:58.7617783Z * [new branch] ffast_math_baseline -> origin/ffast_math_baseline 2025-08-26T20:39:58.7618272Z * [new branch] ffast_math_target -> origin/ffast_math_target 2025-08-26T20:39:58.7618880Z * [new branch] findhao/base_commit -> origin/findhao/base_commit 2025-08-26T20:39:58.7619396Z * [new branch] findhao/base_commit1 -> origin/findhao/base_commit1 2025-08-26T20:39:58.7619910Z * [new branch] findhao/multistream2 -> origin/findhao/multistream2 2025-08-26T20:39:58.7620445Z * [new branch] findhao/multistream5 -> origin/findhao/multistream5 2025-08-26T20:39:58.7620970Z * [new branch] findhao/multistream6 -> origin/findhao/multistream6 2025-08-26T20:39:58.7621601Z * [new branch] findhao/operatorbench3 -> origin/findhao/operatorbench3 2025-08-26T20:39:58.7622168Z * [new branch] findhao/operatorbench5 -> origin/findhao/operatorbench5 2025-08-26T20:39:58.7622707Z * [new branch] findhao/tritonparse -> origin/findhao/tritonparse 2025-08-26T20:39:58.7623178Z * [new branch] fix -> origin/fix 2025-08-26T20:39:58.8050403Z * [new branch] fix-ck-gemm-template-format -> origin/fix-ck-gemm-template-format 2025-08-26T20:39:58.8051003Z * [new branch] fix-config-ignore -> origin/fix-config-ignore 2025-08-26T20:39:58.8051500Z * [new branch] fix-dict-guard -> origin/fix-dict-guard 2025-08-26T20:39:58.8052023Z * [new branch] fix-distributed-warning -> origin/fix-distributed-warning 2025-08-26T20:39:58.8052630Z * [new branch] fix-inductor-periodic-0528 -> origin/fix-inductor-periodic-0528 2025-08-26T20:39:58.8053194Z * [new branch] fix-mps-benchmark -> origin/fix-mps-benchmark 2025-08-26T20:39:58.8053747Z * [new branch] fix-rlease-feature-template -> origin/fix-rlease-feature-template 2025-08-26T20:39:58.8054418Z * [new branch] fix-run-condition-upload-results -> origin/fix-run-condition-upload-results 2025-08-26T20:39:58.8055017Z * [new branch] fix-torchbench -> origin/fix-torchbench 2025-08-26T20:39:58.8055463Z * [new branch] fix_153389 -> origin/fix_153389 2025-08-26T20:39:58.8055931Z * [new branch] fix_fsdp_rs_bucket2 -> origin/fix_fsdp_rs_bucket2 2025-08-26T20:39:58.8056452Z * [new branch] fix_inductor_peridic_tests -> origin/fix_inductor_peridic_tests 2025-08-26T20:39:58.8056954Z * [new branch] fix_ubn_159469 -> origin/fix_ubn_159469 2025-08-26T20:39:58.8057422Z * [new branch] fixes-triage -> origin/fixes-triage 2025-08-26T20:39:58.8057895Z * [new branch] flash_decoding_cpu -> origin/flash_decoding_cpu 2025-08-26T20:39:58.8058365Z * [new branch] flex-flash -> origin/flex-flash 2025-08-26T20:39:58.8058818Z * [new branch] flex-lowering -> origin/flex-lowering 2025-08-26T20:39:58.8059277Z * [new branch] flex-warning -> origin/flex-warning 2025-08-26T20:39:58.8059798Z * [new branch] flex_attention_functorch_grad -> origin/flex_attention_functorch_grad 2025-08-26T20:39:58.8060321Z * [new branch] flex_flash -> origin/flex_flash 2025-08-26T20:39:58.8060805Z * [new branch] flexdecode-gqa-groups -> origin/flexdecode-gqa-groups 2025-08-26T20:39:58.8061390Z * [new branch] fmassa/fix_memeff_sharding_rule -> origin/fmassa/fix_memeff_sharding_rule 2025-08-26T20:39:58.8062037Z * [new branch] fmassa/try_fix_ac_tag_propagation -> origin/fmassa/try_fix_ac_tag_propagation 2025-08-26T20:39:58.8062590Z * [new branch] fsdp2_trace_rules -> origin/fsdp2_trace_rules 2025-08-26T20:39:58.8063045Z * [new branch] fsdpv2_3d -> origin/fsdpv2_3d 2025-08-26T20:39:58.8063479Z * [new branch] fsdpv2_3d_m1 -> origin/fsdpv2_3d_m1 2025-08-26T20:39:58.8064068Z * [new branch] fx_cpp -> origin/fx_cpp 2025-08-26T20:39:58.8064493Z * [new branch] fy/fix-win -> origin/fy/fix-win 2025-08-26T20:39:58.8064959Z * [new branch] gh/AlnisM/1/base -> origin/gh/AlnisM/1/base 2025-08-26T20:39:58.8065446Z * [new branch] gh/AlnisM/1/head -> origin/gh/AlnisM/1/head 2025-08-26T20:39:58.8065915Z * [new branch] gh/CaoE/2/base -> origin/gh/CaoE/2/base 2025-08-26T20:39:58.8066534Z * [new branch] gh/CaoE/2/head -> origin/gh/CaoE/2/head 2025-08-26T20:39:58.8066993Z * [new branch] gh/CaoE/2/orig -> origin/gh/CaoE/2/orig 2025-08-26T20:39:58.8067498Z * [new branch] gh/ColinPeppler/78/base -> origin/gh/ColinPeppler/78/base 2025-08-26T20:39:58.8068074Z * [new branch] gh/ColinPeppler/78/head -> origin/gh/ColinPeppler/78/head 2025-08-26T20:39:58.8068633Z * [new branch] gh/ColinPeppler/78/orig -> origin/gh/ColinPeppler/78/orig 2025-08-26T20:39:58.8069194Z * [new branch] gh/ColinPeppler/79/base -> origin/gh/ColinPeppler/79/base 2025-08-26T20:39:58.8069753Z * [new branch] gh/ColinPeppler/79/head -> origin/gh/ColinPeppler/79/head 2025-08-26T20:39:58.8070296Z * [new branch] gh/ColinPeppler/79/orig -> origin/gh/ColinPeppler/79/orig 2025-08-26T20:39:58.8070824Z * [new branch] gh/EikanWang/67/base -> origin/gh/EikanWang/67/base 2025-08-26T20:39:58.8071336Z * [new branch] gh/EikanWang/67/head -> origin/gh/EikanWang/67/head 2025-08-26T20:39:58.8071847Z * [new branch] gh/EikanWang/80/base -> origin/gh/EikanWang/80/base 2025-08-26T20:39:58.8072364Z * [new branch] gh/EikanWang/80/head -> origin/gh/EikanWang/80/head 2025-08-26T20:39:58.8072869Z * [new branch] gh/EikanWang/80/orig -> origin/gh/EikanWang/80/orig 2025-08-26T20:39:58.8073382Z * [new branch] gh/EikanWang/81/base -> origin/gh/EikanWang/81/base 2025-08-26T20:39:58.8073887Z * [new branch] gh/EikanWang/81/head -> origin/gh/EikanWang/81/head 2025-08-26T20:39:58.8074400Z * [new branch] gh/EikanWang/81/orig -> origin/gh/EikanWang/81/orig 2025-08-26T20:39:58.8521898Z * [new branch] gh/Gasoonjia/1/base -> origin/gh/Gasoonjia/1/base 2025-08-26T20:39:58.8522510Z * [new branch] gh/Gasoonjia/1/head -> origin/gh/Gasoonjia/1/head 2025-08-26T20:39:58.8523026Z * [new branch] gh/H-Huang/131/base -> origin/gh/H-Huang/131/base 2025-08-26T20:39:58.8523519Z * [new branch] gh/H-Huang/131/head -> origin/gh/H-Huang/131/head 2025-08-26T20:39:58.8524003Z * [new branch] gh/H-Huang/131/orig -> origin/gh/H-Huang/131/orig 2025-08-26T20:39:58.8524498Z * [new branch] gh/H-Huang/132/base -> origin/gh/H-Huang/132/base 2025-08-26T20:39:58.8524993Z * [new branch] gh/H-Huang/132/head -> origin/gh/H-Huang/132/head 2025-08-26T20:39:58.8525473Z * [new branch] gh/H-Huang/132/orig -> origin/gh/H-Huang/132/orig 2025-08-26T20:39:58.8525963Z * [new branch] gh/H-Huang/180/base -> origin/gh/H-Huang/180/base 2025-08-26T20:39:58.8526446Z * [new branch] gh/H-Huang/180/head -> origin/gh/H-Huang/180/head 2025-08-26T20:39:58.8526944Z * [new branch] gh/H-Huang/180/orig -> origin/gh/H-Huang/180/orig 2025-08-26T20:39:58.8527434Z * [new branch] gh/H-Huang/182/base -> origin/gh/H-Huang/182/base 2025-08-26T20:39:58.8527912Z * [new branch] gh/H-Huang/182/head -> origin/gh/H-Huang/182/head 2025-08-26T20:39:58.8528403Z * [new branch] gh/H-Huang/182/orig -> origin/gh/H-Huang/182/orig 2025-08-26T20:39:58.8529071Z * [new branch] gh/H-Huang/187/base -> origin/gh/H-Huang/187/base 2025-08-26T20:39:58.8529564Z * [new branch] gh/H-Huang/187/head -> origin/gh/H-Huang/187/head 2025-08-26T20:39:58.8530052Z * [new branch] gh/H-Huang/187/orig -> origin/gh/H-Huang/187/orig 2025-08-26T20:39:58.8530543Z * [new branch] gh/H-Huang/196/base -> origin/gh/H-Huang/196/base 2025-08-26T20:39:58.8531036Z * [new branch] gh/H-Huang/196/head -> origin/gh/H-Huang/196/head 2025-08-26T20:39:58.8531625Z * [new branch] gh/H-Huang/196/orig -> origin/gh/H-Huang/196/orig 2025-08-26T20:39:58.8532124Z * [new branch] gh/H-Huang/197/base -> origin/gh/H-Huang/197/base 2025-08-26T20:39:58.8532612Z * [new branch] gh/H-Huang/197/head -> origin/gh/H-Huang/197/head 2025-08-26T20:39:58.8533132Z * [new branch] gh/H-Huang/197/orig -> origin/gh/H-Huang/197/orig 2025-08-26T20:39:58.8533634Z * [new branch] gh/H-Huang/198/base -> origin/gh/H-Huang/198/base 2025-08-26T20:39:58.8534115Z * [new branch] gh/H-Huang/198/head -> origin/gh/H-Huang/198/head 2025-08-26T20:39:58.8534601Z * [new branch] gh/H-Huang/198/orig -> origin/gh/H-Huang/198/orig 2025-08-26T20:39:58.8535078Z * [new branch] gh/H-Huang/200/base -> origin/gh/H-Huang/200/base 2025-08-26T20:39:58.8535571Z * [new branch] gh/H-Huang/200/head -> origin/gh/H-Huang/200/head 2025-08-26T20:39:58.8536067Z * [new branch] gh/H-Huang/200/orig -> origin/gh/H-Huang/200/orig 2025-08-26T20:39:58.8536549Z * [new branch] gh/H-Huang/201/base -> origin/gh/H-Huang/201/base 2025-08-26T20:39:58.8537040Z * [new branch] gh/H-Huang/201/head -> origin/gh/H-Huang/201/head 2025-08-26T20:39:58.8537525Z * [new branch] gh/H-Huang/201/orig -> origin/gh/H-Huang/201/orig 2025-08-26T20:39:58.8538020Z * [new branch] gh/H-Huang/202/base -> origin/gh/H-Huang/202/base 2025-08-26T20:39:58.8538509Z * [new branch] gh/H-Huang/202/head -> origin/gh/H-Huang/202/head 2025-08-26T20:39:58.8538992Z * [new branch] gh/H-Huang/202/orig -> origin/gh/H-Huang/202/orig 2025-08-26T20:39:58.8539484Z * [new branch] gh/H-Huang/203/base -> origin/gh/H-Huang/203/base 2025-08-26T20:39:58.8539970Z * [new branch] gh/H-Huang/203/head -> origin/gh/H-Huang/203/head 2025-08-26T20:39:58.8540465Z * [new branch] gh/H-Huang/203/orig -> origin/gh/H-Huang/203/orig 2025-08-26T20:39:58.8540958Z * [new branch] gh/H-Huang/204/base -> origin/gh/H-Huang/204/base 2025-08-26T20:39:58.8541437Z * [new branch] gh/H-Huang/204/head -> origin/gh/H-Huang/204/head 2025-08-26T20:39:58.8541938Z * [new branch] gh/H-Huang/204/orig -> origin/gh/H-Huang/204/orig 2025-08-26T20:39:58.8542420Z * [new branch] gh/H-Huang/205/base -> origin/gh/H-Huang/205/base 2025-08-26T20:39:58.8542912Z * [new branch] gh/H-Huang/205/head -> origin/gh/H-Huang/205/head 2025-08-26T20:39:58.8543402Z * [new branch] gh/H-Huang/205/orig -> origin/gh/H-Huang/205/orig 2025-08-26T20:39:58.8543892Z * [new branch] gh/H-Huang/206/base -> origin/gh/H-Huang/206/base 2025-08-26T20:39:58.8544386Z * [new branch] gh/H-Huang/206/head -> origin/gh/H-Huang/206/head 2025-08-26T20:39:58.8544870Z * [new branch] gh/H-Huang/206/orig -> origin/gh/H-Huang/206/orig 2025-08-26T20:39:58.8962505Z * [new branch] gh/H-Huang/207/base -> origin/gh/H-Huang/207/base 2025-08-26T20:39:58.8963077Z * [new branch] gh/H-Huang/207/head -> origin/gh/H-Huang/207/head 2025-08-26T20:39:58.8964146Z * [new branch] gh/H-Huang/207/orig -> origin/gh/H-Huang/207/orig 2025-08-26T20:39:58.8964654Z * [new branch] gh/H-Huang/208/base -> origin/gh/H-Huang/208/base 2025-08-26T20:39:58.8965160Z * [new branch] gh/H-Huang/208/head -> origin/gh/H-Huang/208/head 2025-08-26T20:39:58.8965654Z * [new branch] gh/H-Huang/208/orig -> origin/gh/H-Huang/208/orig 2025-08-26T20:39:58.8966145Z * [new branch] gh/H-Huang/209/base -> origin/gh/H-Huang/209/base 2025-08-26T20:39:58.8966768Z * [new branch] gh/H-Huang/209/head -> origin/gh/H-Huang/209/head 2025-08-26T20:39:58.8967267Z * [new branch] gh/H-Huang/209/orig -> origin/gh/H-Huang/209/orig 2025-08-26T20:39:58.8967751Z * [new branch] gh/H-Huang/210/base -> origin/gh/H-Huang/210/base 2025-08-26T20:39:58.8968246Z * [new branch] gh/H-Huang/210/head -> origin/gh/H-Huang/210/head 2025-08-26T20:39:58.8968752Z * [new branch] gh/H-Huang/210/orig -> origin/gh/H-Huang/210/orig 2025-08-26T20:39:58.8969235Z * [new branch] gh/H-Huang/211/base -> origin/gh/H-Huang/211/base 2025-08-26T20:39:58.8969725Z * [new branch] gh/H-Huang/211/head -> origin/gh/H-Huang/211/head 2025-08-26T20:39:58.8970215Z * [new branch] gh/H-Huang/211/orig -> origin/gh/H-Huang/211/orig 2025-08-26T20:39:58.8970702Z * [new branch] gh/H-Huang/212/base -> origin/gh/H-Huang/212/base 2025-08-26T20:39:58.8971190Z * [new branch] gh/H-Huang/212/head -> origin/gh/H-Huang/212/head 2025-08-26T20:39:58.8971669Z * [new branch] gh/H-Huang/212/orig -> origin/gh/H-Huang/212/orig 2025-08-26T20:39:58.8972196Z * [new branch] gh/IvanKobzarev/111/base -> origin/gh/IvanKobzarev/111/base 2025-08-26T20:39:58.8972793Z * [new branch] gh/IvanKobzarev/111/head -> origin/gh/IvanKobzarev/111/head 2025-08-26T20:39:58.8973373Z * [new branch] gh/IvanKobzarev/111/orig -> origin/gh/IvanKobzarev/111/orig 2025-08-26T20:39:58.8973936Z * [new branch] gh/IvanKobzarev/112/base -> origin/gh/IvanKobzarev/112/base 2025-08-26T20:39:58.8974508Z * [new branch] gh/IvanKobzarev/112/head -> origin/gh/IvanKobzarev/112/head 2025-08-26T20:39:58.8975089Z * [new branch] gh/IvanKobzarev/112/orig -> origin/gh/IvanKobzarev/112/orig 2025-08-26T20:39:58.8975651Z * [new branch] gh/IvanKobzarev/115/base -> origin/gh/IvanKobzarev/115/base 2025-08-26T20:39:58.8976223Z * [new branch] gh/IvanKobzarev/115/head -> origin/gh/IvanKobzarev/115/head 2025-08-26T20:39:58.8976784Z * [new branch] gh/IvanKobzarev/115/orig -> origin/gh/IvanKobzarev/115/orig 2025-08-26T20:39:58.8977357Z * [new branch] gh/IvanKobzarev/116/base -> origin/gh/IvanKobzarev/116/base 2025-08-26T20:39:58.8977930Z * [new branch] gh/IvanKobzarev/116/head -> origin/gh/IvanKobzarev/116/head 2025-08-26T20:39:58.8978492Z * [new branch] gh/IvanKobzarev/116/orig -> origin/gh/IvanKobzarev/116/orig 2025-08-26T20:39:58.8979068Z * [new branch] gh/IvanKobzarev/118/base -> origin/gh/IvanKobzarev/118/base 2025-08-26T20:39:58.8979626Z * [new branch] gh/IvanKobzarev/118/head -> origin/gh/IvanKobzarev/118/head 2025-08-26T20:39:58.8980200Z * [new branch] gh/IvanKobzarev/118/orig -> origin/gh/IvanKobzarev/118/orig 2025-08-26T20:39:58.8980776Z * [new branch] gh/IvanKobzarev/124/base -> origin/gh/IvanKobzarev/124/base 2025-08-26T20:39:58.8981343Z * [new branch] gh/IvanKobzarev/124/head -> origin/gh/IvanKobzarev/124/head 2025-08-26T20:39:58.8981918Z * [new branch] gh/IvanKobzarev/124/orig -> origin/gh/IvanKobzarev/124/orig 2025-08-26T20:39:58.8982590Z * [new branch] gh/IvanKobzarev/126/base -> origin/gh/IvanKobzarev/126/base 2025-08-26T20:39:58.8983171Z * [new branch] gh/IvanKobzarev/126/head -> origin/gh/IvanKobzarev/126/head 2025-08-26T20:39:58.8983753Z * [new branch] gh/IvanKobzarev/126/orig -> origin/gh/IvanKobzarev/126/orig 2025-08-26T20:39:58.8984321Z * [new branch] gh/IvanKobzarev/127/base -> origin/gh/IvanKobzarev/127/base 2025-08-26T20:39:58.8984905Z * [new branch] gh/IvanKobzarev/127/head -> origin/gh/IvanKobzarev/127/head 2025-08-26T20:39:58.8985564Z * [new branch] gh/IvanKobzarev/127/orig -> origin/gh/IvanKobzarev/127/orig 2025-08-26T20:39:58.8986216Z * [new branch] gh/IvanKobzarev/128/base -> origin/gh/IvanKobzarev/128/base 2025-08-26T20:39:58.8986802Z * [new branch] gh/IvanKobzarev/128/head -> origin/gh/IvanKobzarev/128/head 2025-08-26T20:39:58.8987365Z * [new branch] gh/IvanKobzarev/128/orig -> origin/gh/IvanKobzarev/128/orig 2025-08-26T20:39:58.9397702Z * [new branch] gh/IvanKobzarev/132/base -> origin/gh/IvanKobzarev/132/base 2025-08-26T20:39:58.9398350Z * [new branch] gh/IvanKobzarev/132/head -> origin/gh/IvanKobzarev/132/head 2025-08-26T20:39:58.9398933Z * [new branch] gh/IvanKobzarev/132/orig -> origin/gh/IvanKobzarev/132/orig 2025-08-26T20:39:58.9399515Z * [new branch] gh/IvanKobzarev/133/base -> origin/gh/IvanKobzarev/133/base 2025-08-26T20:39:58.9400116Z * [new branch] gh/IvanKobzarev/133/head -> origin/gh/IvanKobzarev/133/head 2025-08-26T20:39:58.9400679Z * [new branch] gh/IvanKobzarev/133/orig -> origin/gh/IvanKobzarev/133/orig 2025-08-26T20:39:58.9401256Z * [new branch] gh/IvanKobzarev/134/base -> origin/gh/IvanKobzarev/134/base 2025-08-26T20:39:58.9401821Z * [new branch] gh/IvanKobzarev/134/head -> origin/gh/IvanKobzarev/134/head 2025-08-26T20:39:58.9402413Z * [new branch] gh/IvanKobzarev/134/orig -> origin/gh/IvanKobzarev/134/orig 2025-08-26T20:39:58.9402990Z * [new branch] gh/IvanKobzarev/135/base -> origin/gh/IvanKobzarev/135/base 2025-08-26T20:39:58.9403552Z * [new branch] gh/IvanKobzarev/135/head -> origin/gh/IvanKobzarev/135/head 2025-08-26T20:39:58.9404124Z * [new branch] gh/IvanKobzarev/135/orig -> origin/gh/IvanKobzarev/135/orig 2025-08-26T20:39:58.9404694Z * [new branch] gh/IvanKobzarev/136/base -> origin/gh/IvanKobzarev/136/base 2025-08-26T20:39:58.9405277Z * [new branch] gh/IvanKobzarev/136/head -> origin/gh/IvanKobzarev/136/head 2025-08-26T20:39:58.9405845Z * [new branch] gh/IvanKobzarev/136/orig -> origin/gh/IvanKobzarev/136/orig 2025-08-26T20:39:58.9406407Z * [new branch] gh/IvanKobzarev/137/base -> origin/gh/IvanKobzarev/137/base 2025-08-26T20:39:58.9406989Z * [new branch] gh/IvanKobzarev/137/head -> origin/gh/IvanKobzarev/137/head 2025-08-26T20:39:58.9407562Z * [new branch] gh/IvanKobzarev/137/orig -> origin/gh/IvanKobzarev/137/orig 2025-08-26T20:39:58.9408139Z * [new branch] gh/IvanKobzarev/138/base -> origin/gh/IvanKobzarev/138/base 2025-08-26T20:39:58.9408712Z * [new branch] gh/IvanKobzarev/138/head -> origin/gh/IvanKobzarev/138/head 2025-08-26T20:39:58.9409272Z * [new branch] gh/IvanKobzarev/138/orig -> origin/gh/IvanKobzarev/138/orig 2025-08-26T20:39:58.9409851Z * [new branch] gh/IvanKobzarev/139/base -> origin/gh/IvanKobzarev/139/base 2025-08-26T20:39:58.9410410Z * [new branch] gh/IvanKobzarev/139/head -> origin/gh/IvanKobzarev/139/head 2025-08-26T20:39:58.9410988Z * [new branch] gh/IvanKobzarev/139/orig -> origin/gh/IvanKobzarev/139/orig 2025-08-26T20:39:58.9411564Z * [new branch] gh/IvanKobzarev/140/base -> origin/gh/IvanKobzarev/140/base 2025-08-26T20:39:58.9412341Z * [new branch] gh/IvanKobzarev/140/head -> origin/gh/IvanKobzarev/140/head 2025-08-26T20:39:58.9412922Z * [new branch] gh/IvanKobzarev/140/orig -> origin/gh/IvanKobzarev/140/orig 2025-08-26T20:39:58.9413487Z * [new branch] gh/IvanKobzarev/141/base -> origin/gh/IvanKobzarev/141/base 2025-08-26T20:39:58.9414066Z * [new branch] gh/IvanKobzarev/141/head -> origin/gh/IvanKobzarev/141/head 2025-08-26T20:39:58.9414644Z * [new branch] gh/IvanKobzarev/141/orig -> origin/gh/IvanKobzarev/141/orig 2025-08-26T20:39:58.9416037Z * [new branch] gh/IvanKobzarev/142/base -> origin/gh/IvanKobzarev/142/base 2025-08-26T20:39:58.9416677Z * [new branch] gh/IvanKobzarev/142/head -> origin/gh/IvanKobzarev/142/head 2025-08-26T20:39:58.9417246Z * [new branch] gh/IvanKobzarev/142/orig -> origin/gh/IvanKobzarev/142/orig 2025-08-26T20:39:58.9417837Z * [new branch] gh/IvanKobzarev/143/base -> origin/gh/IvanKobzarev/143/base 2025-08-26T20:39:58.9418426Z * [new branch] gh/IvanKobzarev/143/head -> origin/gh/IvanKobzarev/143/head 2025-08-26T20:39:58.9418990Z * [new branch] gh/IvanKobzarev/143/orig -> origin/gh/IvanKobzarev/143/orig 2025-08-26T20:39:58.9419577Z * [new branch] gh/NikhilAPatel/1/base -> origin/gh/NikhilAPatel/1/base 2025-08-26T20:39:58.9420139Z * [new branch] gh/NikhilAPatel/1/head -> origin/gh/NikhilAPatel/1/head 2025-08-26T20:39:58.9420706Z * [new branch] gh/NikhilAPatel/2/base -> origin/gh/NikhilAPatel/2/base 2025-08-26T20:39:58.9421260Z * [new branch] gh/NikhilAPatel/2/head -> origin/gh/NikhilAPatel/2/head 2025-08-26T20:39:58.9421816Z * [new branch] gh/NikhilAPatel/4/base -> origin/gh/NikhilAPatel/4/base 2025-08-26T20:39:58.9422388Z * [new branch] gh/NikhilAPatel/4/head -> origin/gh/NikhilAPatel/4/head 2025-08-26T20:39:58.9422945Z * [new branch] gh/NikhilAPatel/8/base -> origin/gh/NikhilAPatel/8/base 2025-08-26T20:39:58.9423497Z * [new branch] gh/NikhilAPatel/8/head -> origin/gh/NikhilAPatel/8/head 2025-08-26T20:39:58.9424044Z * [new branch] gh/NikhilAPatel/8/orig -> origin/gh/NikhilAPatel/8/orig 2025-08-26T20:39:58.9869752Z * [new branch] gh/NikhilAPatel/9/base -> origin/gh/NikhilAPatel/9/base 2025-08-26T20:39:58.9870389Z * [new branch] gh/NikhilAPatel/9/head -> origin/gh/NikhilAPatel/9/head 2025-08-26T20:39:58.9871020Z * [new branch] gh/NikhilAPatel/9/orig -> origin/gh/NikhilAPatel/9/orig 2025-08-26T20:39:58.9871615Z * [new branch] gh/PaliC/1/base -> origin/gh/PaliC/1/base 2025-08-26T20:39:58.9872147Z * [new branch] gh/PaliC/1/head -> origin/gh/PaliC/1/head 2025-08-26T20:39:58.9872784Z * [new branch] gh/PaliC/1/orig -> origin/gh/PaliC/1/orig 2025-08-26T20:39:58.9873313Z * [new branch] gh/PaliC/12/base -> origin/gh/PaliC/12/base 2025-08-26T20:39:58.9873862Z * [new branch] gh/PaliC/12/head -> origin/gh/PaliC/12/head 2025-08-26T20:39:58.9874450Z * [new branch] gh/PaliC/12/orig -> origin/gh/PaliC/12/orig 2025-08-26T20:39:58.9874962Z * [new branch] gh/PaliC/13/base -> origin/gh/PaliC/13/base 2025-08-26T20:39:58.9875559Z * [new branch] gh/PaliC/13/head -> origin/gh/PaliC/13/head 2025-08-26T20:39:58.9876182Z * [new branch] gh/PaliC/13/orig -> origin/gh/PaliC/13/orig 2025-08-26T20:39:58.9876743Z * [new branch] gh/PaliC/14/base -> origin/gh/PaliC/14/base 2025-08-26T20:39:58.9877275Z * [new branch] gh/PaliC/14/head -> origin/gh/PaliC/14/head 2025-08-26T20:39:58.9878005Z * [new branch] gh/PaliC/14/orig -> origin/gh/PaliC/14/orig 2025-08-26T20:39:58.9878544Z * [new branch] gh/PaliC/16/base -> origin/gh/PaliC/16/base 2025-08-26T20:39:58.9879054Z * [new branch] gh/PaliC/16/head -> origin/gh/PaliC/16/head 2025-08-26T20:39:58.9879599Z * [new branch] gh/PaliC/16/orig -> origin/gh/PaliC/16/orig 2025-08-26T20:39:58.9880139Z * [new branch] gh/PaliC/17/base -> origin/gh/PaliC/17/base 2025-08-26T20:39:58.9880776Z * [new branch] gh/PaliC/17/head -> origin/gh/PaliC/17/head 2025-08-26T20:39:58.9881337Z * [new branch] gh/PaliC/17/orig -> origin/gh/PaliC/17/orig 2025-08-26T20:39:58.9881855Z * [new branch] gh/PaliC/18/base -> origin/gh/PaliC/18/base 2025-08-26T20:39:58.9882394Z * [new branch] gh/PaliC/18/head -> origin/gh/PaliC/18/head 2025-08-26T20:39:58.9882935Z * [new branch] gh/PaliC/18/orig -> origin/gh/PaliC/18/orig 2025-08-26T20:39:58.9883447Z * [new branch] gh/PaliC/19/base -> origin/gh/PaliC/19/base 2025-08-26T20:39:58.9883996Z * [new branch] gh/PaliC/19/head -> origin/gh/PaliC/19/head 2025-08-26T20:39:58.9904558Z * [new branch] gh/PaliC/19/orig -> origin/gh/PaliC/19/orig 2025-08-26T20:39:58.9905245Z * [new branch] gh/PaliC/2/base -> origin/gh/PaliC/2/base 2025-08-26T20:39:58.9905795Z * [new branch] gh/PaliC/2/head -> origin/gh/PaliC/2/head 2025-08-26T20:39:58.9906363Z * [new branch] gh/PaliC/2/orig -> origin/gh/PaliC/2/orig 2025-08-26T20:39:58.9906877Z * [new branch] gh/PaliC/20/base -> origin/gh/PaliC/20/base 2025-08-26T20:39:58.9907386Z * [new branch] gh/PaliC/20/head -> origin/gh/PaliC/20/head 2025-08-26T20:39:58.9907893Z * [new branch] gh/PaliC/20/orig -> origin/gh/PaliC/20/orig 2025-08-26T20:39:58.9908408Z * [new branch] gh/PaliC/21/base -> origin/gh/PaliC/21/base 2025-08-26T20:39:58.9908903Z * [new branch] gh/PaliC/21/head -> origin/gh/PaliC/21/head 2025-08-26T20:39:58.9909402Z * [new branch] gh/PaliC/21/orig -> origin/gh/PaliC/21/orig 2025-08-26T20:39:58.9909904Z * [new branch] gh/PaliC/22/base -> origin/gh/PaliC/22/base 2025-08-26T20:39:58.9910397Z * [new branch] gh/PaliC/22/head -> origin/gh/PaliC/22/head 2025-08-26T20:39:58.9910893Z * [new branch] gh/PaliC/22/orig -> origin/gh/PaliC/22/orig 2025-08-26T20:39:58.9911385Z * [new branch] gh/PaliC/23/base -> origin/gh/PaliC/23/base 2025-08-26T20:39:58.9911884Z * [new branch] gh/PaliC/23/head -> origin/gh/PaliC/23/head 2025-08-26T20:39:58.9912380Z * [new branch] gh/PaliC/23/orig -> origin/gh/PaliC/23/orig 2025-08-26T20:39:58.9912866Z * [new branch] gh/PaliC/24/base -> origin/gh/PaliC/24/base 2025-08-26T20:39:58.9913365Z * [new branch] gh/PaliC/24/head -> origin/gh/PaliC/24/head 2025-08-26T20:39:58.9913847Z * [new branch] gh/PaliC/24/orig -> origin/gh/PaliC/24/orig 2025-08-26T20:39:58.9914385Z * [new branch] gh/PaulZhang12/17/base -> origin/gh/PaulZhang12/17/base 2025-08-26T20:39:58.9914945Z * [new branch] gh/PaulZhang12/17/head -> origin/gh/PaulZhang12/17/head 2025-08-26T20:39:58.9915510Z * [new branch] gh/PaulZhang12/20/base -> origin/gh/PaulZhang12/20/base 2025-08-26T20:39:59.0334901Z * [new branch] gh/PaulZhang12/20/head -> origin/gh/PaulZhang12/20/head 2025-08-26T20:39:59.0335604Z * [new branch] gh/PaulZhang12/20/orig -> origin/gh/PaulZhang12/20/orig 2025-08-26T20:39:59.0336367Z * [new branch] gh/PaulZhang12/21/base -> origin/gh/PaulZhang12/21/base 2025-08-26T20:39:59.0336934Z * [new branch] gh/PaulZhang12/21/head -> origin/gh/PaulZhang12/21/head 2025-08-26T20:39:59.0337474Z * [new branch] gh/PaulZhang12/21/orig -> origin/gh/PaulZhang12/21/orig 2025-08-26T20:39:59.0338032Z * [new branch] gh/PaulZhang12/22/base -> origin/gh/PaulZhang12/22/base 2025-08-26T20:39:59.0338571Z * [new branch] gh/PaulZhang12/22/head -> origin/gh/PaulZhang12/22/head 2025-08-26T20:39:59.0339249Z * [new branch] gh/PaulZhang12/22/orig -> origin/gh/PaulZhang12/22/orig 2025-08-26T20:39:59.0339802Z * [new branch] gh/SamGinzburg/11/base -> origin/gh/SamGinzburg/11/base 2025-08-26T20:39:59.0340353Z * [new branch] gh/SamGinzburg/11/head -> origin/gh/SamGinzburg/11/head 2025-08-26T20:39:59.0340987Z * [new branch] gh/Sidharth123-cpu/24/base -> origin/gh/Sidharth123-cpu/24/base 2025-08-26T20:39:59.0341668Z * [new branch] gh/Sidharth123-cpu/25/base -> origin/gh/Sidharth123-cpu/25/base 2025-08-26T20:39:59.0342286Z * [new branch] gh/Sidharth123-cpu/26/base -> origin/gh/Sidharth123-cpu/26/base 2025-08-26T20:39:59.0342858Z * [new branch] gh/Sidharth123-cpu/27/base -> origin/gh/Sidharth123-cpu/27/base 2025-08-26T20:39:59.0343420Z * [new branch] gh/StrongerXi/1/base -> origin/gh/StrongerXi/1/base 2025-08-26T20:39:59.0343951Z * [new branch] gh/StrongerXi/1/head -> origin/gh/StrongerXi/1/head 2025-08-26T20:39:59.0344486Z * [new branch] gh/StrongerXi/103/base -> origin/gh/StrongerXi/103/base 2025-08-26T20:39:59.0345019Z * [new branch] gh/StrongerXi/103/head -> origin/gh/StrongerXi/103/head 2025-08-26T20:39:59.0345555Z * [new branch] gh/StrongerXi/103/orig -> origin/gh/StrongerXi/103/orig 2025-08-26T20:39:59.0346140Z * [new branch] gh/StrongerXi/133/base -> origin/gh/StrongerXi/133/base 2025-08-26T20:39:59.0346678Z * [new branch] gh/StrongerXi/133/head -> origin/gh/StrongerXi/133/head 2025-08-26T20:39:59.0347268Z * [new branch] gh/StrongerXi/133/orig -> origin/gh/StrongerXi/133/orig 2025-08-26T20:39:59.0347841Z * [new branch] gh/StrongerXi/134/base -> origin/gh/StrongerXi/134/base 2025-08-26T20:39:59.0348462Z * [new branch] gh/StrongerXi/134/head -> origin/gh/StrongerXi/134/head 2025-08-26T20:39:59.0349046Z * [new branch] gh/StrongerXi/134/orig -> origin/gh/StrongerXi/134/orig 2025-08-26T20:39:59.0349656Z * [new branch] gh/StrongerXi/136/base -> origin/gh/StrongerXi/136/base 2025-08-26T20:39:59.0350267Z * [new branch] gh/StrongerXi/136/head -> origin/gh/StrongerXi/136/head 2025-08-26T20:39:59.0350842Z * [new branch] gh/StrongerXi/136/orig -> origin/gh/StrongerXi/136/orig 2025-08-26T20:39:59.0351468Z * [new branch] gh/StrongerXi/137/base -> origin/gh/StrongerXi/137/base 2025-08-26T20:39:59.0352043Z * [new branch] gh/StrongerXi/137/head -> origin/gh/StrongerXi/137/head 2025-08-26T20:39:59.0352649Z * [new branch] gh/StrongerXi/137/orig -> origin/gh/StrongerXi/137/orig 2025-08-26T20:39:59.0353223Z * [new branch] gh/StrongerXi/138/base -> origin/gh/StrongerXi/138/base 2025-08-26T20:39:59.0353840Z * [new branch] gh/StrongerXi/138/head -> origin/gh/StrongerXi/138/head 2025-08-26T20:39:59.0354419Z * [new branch] gh/StrongerXi/138/orig -> origin/gh/StrongerXi/138/orig 2025-08-26T20:39:59.0355033Z * [new branch] gh/StrongerXi/139/base -> origin/gh/StrongerXi/139/base 2025-08-26T20:39:59.0355616Z * [new branch] gh/StrongerXi/139/head -> origin/gh/StrongerXi/139/head 2025-08-26T20:39:59.0356356Z * [new branch] gh/StrongerXi/139/orig -> origin/gh/StrongerXi/139/orig 2025-08-26T20:39:59.0356964Z * [new branch] gh/StrongerXi/140/base -> origin/gh/StrongerXi/140/base 2025-08-26T20:39:59.0357548Z * [new branch] gh/StrongerXi/140/head -> origin/gh/StrongerXi/140/head 2025-08-26T20:39:59.0358167Z * [new branch] gh/StrongerXi/140/orig -> origin/gh/StrongerXi/140/orig 2025-08-26T20:39:59.0358743Z * [new branch] gh/StrongerXi/71/base -> origin/gh/StrongerXi/71/base 2025-08-26T20:39:59.0359459Z * [new branch] gh/StrongerXi/71/head -> origin/gh/StrongerXi/71/head 2025-08-26T20:39:59.0360069Z * [new branch] gh/StrongerXi/72/base -> origin/gh/StrongerXi/72/base 2025-08-26T20:39:59.0360645Z * [new branch] gh/StrongerXi/72/head -> origin/gh/StrongerXi/72/head 2025-08-26T20:39:59.0361254Z * [new branch] gh/XilunWu/133/base -> origin/gh/XilunWu/133/base 2025-08-26T20:39:59.0361767Z * [new branch] gh/XilunWu/133/head -> origin/gh/XilunWu/133/head 2025-08-26T20:39:59.0801103Z * [new branch] gh/XilunWu/133/orig -> origin/gh/XilunWu/133/orig 2025-08-26T20:39:59.0801719Z * [new branch] gh/XilunWu/139/base -> origin/gh/XilunWu/139/base 2025-08-26T20:39:59.0802242Z * [new branch] gh/XilunWu/139/head -> origin/gh/XilunWu/139/head 2025-08-26T20:39:59.0802754Z * [new branch] gh/XilunWu/139/orig -> origin/gh/XilunWu/139/orig 2025-08-26T20:39:59.0803276Z * [new branch] gh/XilunWu/143/base -> origin/gh/XilunWu/143/base 2025-08-26T20:39:59.0803776Z * [new branch] gh/XilunWu/143/head -> origin/gh/XilunWu/143/head 2025-08-26T20:39:59.0804278Z * [new branch] gh/XilunWu/143/orig -> origin/gh/XilunWu/143/orig 2025-08-26T20:39:59.0804798Z * [new branch] gh/XilunWu/144/base -> origin/gh/XilunWu/144/base 2025-08-26T20:39:59.0805322Z * [new branch] gh/XilunWu/144/head -> origin/gh/XilunWu/144/head 2025-08-26T20:39:59.0805816Z * [new branch] gh/XilunWu/144/orig -> origin/gh/XilunWu/144/orig 2025-08-26T20:39:59.0806317Z * [new branch] gh/XilunWu/145/base -> origin/gh/XilunWu/145/base 2025-08-26T20:39:59.0806858Z * [new branch] gh/XilunWu/145/head -> origin/gh/XilunWu/145/head 2025-08-26T20:39:59.0807410Z * [new branch] gh/XilunWu/145/orig -> origin/gh/XilunWu/145/orig 2025-08-26T20:39:59.0807914Z * [new branch] gh/XilunWu/146/base -> origin/gh/XilunWu/146/base 2025-08-26T20:39:59.0808412Z * [new branch] gh/XilunWu/146/head -> origin/gh/XilunWu/146/head 2025-08-26T20:39:59.0808914Z * [new branch] gh/XilunWu/146/orig -> origin/gh/XilunWu/146/orig 2025-08-26T20:39:59.0809411Z * [new branch] gh/XilunWu/147/base -> origin/gh/XilunWu/147/base 2025-08-26T20:39:59.0809923Z * [new branch] gh/XilunWu/147/head -> origin/gh/XilunWu/147/head 2025-08-26T20:39:59.0810424Z * [new branch] gh/XilunWu/147/orig -> origin/gh/XilunWu/147/orig 2025-08-26T20:39:59.0810918Z * [new branch] gh/XilunWu/148/base -> origin/gh/XilunWu/148/base 2025-08-26T20:39:59.0811424Z * [new branch] gh/XilunWu/148/head -> origin/gh/XilunWu/148/head 2025-08-26T20:39:59.0811922Z * [new branch] gh/XilunWu/148/orig -> origin/gh/XilunWu/148/orig 2025-08-26T20:39:59.0812476Z * [new branch] gh/XilunWu/149/base -> origin/gh/XilunWu/149/base 2025-08-26T20:39:59.0813026Z * [new branch] gh/XilunWu/149/head -> origin/gh/XilunWu/149/head 2025-08-26T20:39:59.0813525Z * [new branch] gh/XilunWu/149/orig -> origin/gh/XilunWu/149/orig 2025-08-26T20:39:59.0814206Z * [new branch] gh/XilunWu/150/base -> origin/gh/XilunWu/150/base 2025-08-26T20:39:59.0814703Z * [new branch] gh/XilunWu/150/head -> origin/gh/XilunWu/150/head 2025-08-26T20:39:59.0815217Z * [new branch] gh/XilunWu/150/orig -> origin/gh/XilunWu/150/orig 2025-08-26T20:39:59.0815720Z * [new branch] gh/XilunWu/151/base -> origin/gh/XilunWu/151/base 2025-08-26T20:39:59.0816233Z * [new branch] gh/XilunWu/151/head -> origin/gh/XilunWu/151/head 2025-08-26T20:39:59.0816842Z * [new branch] gh/XilunWu/151/orig -> origin/gh/XilunWu/151/orig 2025-08-26T20:39:59.0817344Z * [new branch] gh/XilunWu/152/base -> origin/gh/XilunWu/152/base 2025-08-26T20:39:59.0817856Z * [new branch] gh/XilunWu/152/head -> origin/gh/XilunWu/152/head 2025-08-26T20:39:59.0818434Z * [new branch] gh/XilunWu/152/orig -> origin/gh/XilunWu/152/orig 2025-08-26T20:39:59.0818942Z * [new branch] gh/XilunWu/153/base -> origin/gh/XilunWu/153/base 2025-08-26T20:39:59.0819448Z * [new branch] gh/XilunWu/153/head -> origin/gh/XilunWu/153/head 2025-08-26T20:39:59.0819945Z * [new branch] gh/XilunWu/153/orig -> origin/gh/XilunWu/153/orig 2025-08-26T20:39:59.0820448Z * [new branch] gh/XilunWu/159/base -> origin/gh/XilunWu/159/base 2025-08-26T20:39:59.0820946Z * [new branch] gh/XilunWu/159/head -> origin/gh/XilunWu/159/head 2025-08-26T20:39:59.0821450Z * [new branch] gh/XilunWu/159/orig -> origin/gh/XilunWu/159/orig 2025-08-26T20:39:59.0821951Z * [new branch] gh/XilunWu/160/base -> origin/gh/XilunWu/160/base 2025-08-26T20:39:59.0822445Z * [new branch] gh/XilunWu/160/head -> origin/gh/XilunWu/160/head 2025-08-26T20:39:59.0822947Z * [new branch] gh/XilunWu/160/orig -> origin/gh/XilunWu/160/orig 2025-08-26T20:39:59.0823439Z * [new branch] gh/XilunWu/161/base -> origin/gh/XilunWu/161/base 2025-08-26T20:39:59.0823990Z * [new branch] gh/XilunWu/161/head -> origin/gh/XilunWu/161/head 2025-08-26T20:39:59.0824529Z * [new branch] gh/XilunWu/161/orig -> origin/gh/XilunWu/161/orig 2025-08-26T20:39:59.0825028Z * [new branch] gh/XilunWu/162/base -> origin/gh/XilunWu/162/base 2025-08-26T20:39:59.1258803Z * [new branch] gh/XilunWu/162/head -> origin/gh/XilunWu/162/head 2025-08-26T20:39:59.1259452Z * [new branch] gh/XilunWu/162/orig -> origin/gh/XilunWu/162/orig 2025-08-26T20:39:59.1259978Z * [new branch] gh/XilunWu/163/base -> origin/gh/XilunWu/163/base 2025-08-26T20:39:59.1260491Z * [new branch] gh/XilunWu/163/head -> origin/gh/XilunWu/163/head 2025-08-26T20:39:59.1261009Z * [new branch] gh/XilunWu/163/orig -> origin/gh/XilunWu/163/orig 2025-08-26T20:39:59.1261514Z * [new branch] gh/XilunWu/164/base -> origin/gh/XilunWu/164/base 2025-08-26T20:39:59.1262014Z * [new branch] gh/XilunWu/164/head -> origin/gh/XilunWu/164/head 2025-08-26T20:39:59.1262525Z * [new branch] gh/XilunWu/164/orig -> origin/gh/XilunWu/164/orig 2025-08-26T20:39:59.1263018Z * [new branch] gh/XilunWu/165/base -> origin/gh/XilunWu/165/base 2025-08-26T20:39:59.1263530Z * [new branch] gh/XilunWu/165/head -> origin/gh/XilunWu/165/head 2025-08-26T20:39:59.1264033Z * [new branch] gh/XilunWu/165/orig -> origin/gh/XilunWu/165/orig 2025-08-26T20:39:59.1264527Z * [new branch] gh/XilunWu/166/base -> origin/gh/XilunWu/166/base 2025-08-26T20:39:59.1265071Z * [new branch] gh/XilunWu/166/head -> origin/gh/XilunWu/166/head 2025-08-26T20:39:59.1265794Z * [new branch] gh/XilunWu/166/orig -> origin/gh/XilunWu/166/orig 2025-08-26T20:39:59.1266354Z * [new branch] gh/XilunWu/167/base -> origin/gh/XilunWu/167/base 2025-08-26T20:39:59.1266855Z * [new branch] gh/XilunWu/167/head -> origin/gh/XilunWu/167/head 2025-08-26T20:39:59.1267355Z * [new branch] gh/XilunWu/167/orig -> origin/gh/XilunWu/167/orig 2025-08-26T20:39:59.1267880Z * [new branch] gh/XuehaiPan/14/base -> origin/gh/XuehaiPan/14/base 2025-08-26T20:39:59.1268520Z * [new branch] gh/XuehaiPan/14/head -> origin/gh/XuehaiPan/14/head 2025-08-26T20:39:59.1269054Z * [new branch] gh/XuehaiPan/14/orig -> origin/gh/XuehaiPan/14/orig 2025-08-26T20:39:59.1269605Z * [new branch] gh/XuehaiPan/179/base -> origin/gh/XuehaiPan/179/base 2025-08-26T20:39:59.1270136Z * [new branch] gh/XuehaiPan/179/head -> origin/gh/XuehaiPan/179/head 2025-08-26T20:39:59.1270729Z * [new branch] gh/XuehaiPan/179/orig -> origin/gh/XuehaiPan/179/orig 2025-08-26T20:39:59.1271291Z * [new branch] gh/XuehaiPan/189/base -> origin/gh/XuehaiPan/189/base 2025-08-26T20:39:59.1271823Z * [new branch] gh/XuehaiPan/189/head -> origin/gh/XuehaiPan/189/head 2025-08-26T20:39:59.1272370Z * [new branch] gh/XuehaiPan/189/orig -> origin/gh/XuehaiPan/189/orig 2025-08-26T20:39:59.1272897Z * [new branch] gh/XuehaiPan/227/base -> origin/gh/XuehaiPan/227/base 2025-08-26T20:39:59.1273424Z * [new branch] gh/XuehaiPan/227/head -> origin/gh/XuehaiPan/227/head 2025-08-26T20:39:59.1273945Z * [new branch] gh/XuehaiPan/227/orig -> origin/gh/XuehaiPan/227/orig 2025-08-26T20:39:59.1274472Z * [new branch] gh/XuehaiPan/231/base -> origin/gh/XuehaiPan/231/base 2025-08-26T20:39:59.1275005Z * [new branch] gh/XuehaiPan/231/head -> origin/gh/XuehaiPan/231/head 2025-08-26T20:39:59.1275528Z * [new branch] gh/XuehaiPan/231/orig -> origin/gh/XuehaiPan/231/orig 2025-08-26T20:39:59.1276056Z * [new branch] gh/XuehaiPan/232/base -> origin/gh/XuehaiPan/232/base 2025-08-26T20:39:59.1276661Z * [new branch] gh/XuehaiPan/232/head -> origin/gh/XuehaiPan/232/head 2025-08-26T20:39:59.1277199Z * [new branch] gh/XuehaiPan/232/orig -> origin/gh/XuehaiPan/232/orig 2025-08-26T20:39:59.1277732Z * [new branch] gh/XuehaiPan/249/base -> origin/gh/XuehaiPan/249/base 2025-08-26T20:39:59.1278254Z * [new branch] gh/XuehaiPan/249/head -> origin/gh/XuehaiPan/249/head 2025-08-26T20:39:59.1278784Z * [new branch] gh/XuehaiPan/249/orig -> origin/gh/XuehaiPan/249/orig 2025-08-26T20:39:59.1279305Z * [new branch] gh/XuehaiPan/253/base -> origin/gh/XuehaiPan/253/base 2025-08-26T20:39:59.1279840Z * [new branch] gh/XuehaiPan/253/head -> origin/gh/XuehaiPan/253/head 2025-08-26T20:39:59.1280363Z * [new branch] gh/XuehaiPan/253/orig -> origin/gh/XuehaiPan/253/orig 2025-08-26T20:39:59.1280890Z * [new branch] gh/XuehaiPan/254/base -> origin/gh/XuehaiPan/254/base 2025-08-26T20:39:59.1281420Z * [new branch] gh/XuehaiPan/254/head -> origin/gh/XuehaiPan/254/head 2025-08-26T20:39:59.1281988Z * [new branch] gh/XuehaiPan/254/orig -> origin/gh/XuehaiPan/254/orig 2025-08-26T20:39:59.1282561Z * [new branch] gh/XuehaiPan/255/base -> origin/gh/XuehaiPan/255/base 2025-08-26T20:39:59.1283088Z * [new branch] gh/XuehaiPan/255/head -> origin/gh/XuehaiPan/255/head 2025-08-26T20:39:59.1691586Z * [new branch] gh/XuehaiPan/255/orig -> origin/gh/XuehaiPan/255/orig 2025-08-26T20:39:59.1692407Z * [new branch] gh/XuehaiPan/257/base -> origin/gh/XuehaiPan/257/base 2025-08-26T20:39:59.1692934Z * [new branch] gh/XuehaiPan/257/head -> origin/gh/XuehaiPan/257/head 2025-08-26T20:39:59.1693484Z * [new branch] gh/XuehaiPan/257/orig -> origin/gh/XuehaiPan/257/orig 2025-08-26T20:39:59.1694013Z * [new branch] gh/XuehaiPan/271/base -> origin/gh/XuehaiPan/271/base 2025-08-26T20:39:59.1694533Z * [new branch] gh/XuehaiPan/271/head -> origin/gh/XuehaiPan/271/head 2025-08-26T20:39:59.1695194Z * [new branch] gh/XuehaiPan/271/orig -> origin/gh/XuehaiPan/271/orig 2025-08-26T20:39:59.1695713Z * [new branch] gh/XuehaiPan/290/base -> origin/gh/XuehaiPan/290/base 2025-08-26T20:39:59.1696243Z * [new branch] gh/XuehaiPan/290/head -> origin/gh/XuehaiPan/290/head 2025-08-26T20:39:59.1696777Z * [new branch] gh/XuehaiPan/290/orig -> origin/gh/XuehaiPan/290/orig 2025-08-26T20:39:59.1697300Z * [new branch] gh/XuehaiPan/343/base -> origin/gh/XuehaiPan/343/base 2025-08-26T20:39:59.1697832Z * [new branch] gh/XuehaiPan/343/head -> origin/gh/XuehaiPan/343/head 2025-08-26T20:39:59.1698353Z * [new branch] gh/XuehaiPan/343/orig -> origin/gh/XuehaiPan/343/orig 2025-08-26T20:39:59.1698880Z * [new branch] gh/XuehaiPan/347/base -> origin/gh/XuehaiPan/347/base 2025-08-26T20:39:59.1699398Z * [new branch] gh/XuehaiPan/347/head -> origin/gh/XuehaiPan/347/head 2025-08-26T20:39:59.1699926Z * [new branch] gh/XuehaiPan/347/orig -> origin/gh/XuehaiPan/347/orig 2025-08-26T20:39:59.1700443Z * [new branch] gh/XuehaiPan/348/base -> origin/gh/XuehaiPan/348/base 2025-08-26T20:39:59.1700957Z * [new branch] gh/XuehaiPan/348/head -> origin/gh/XuehaiPan/348/head 2025-08-26T20:39:59.1701489Z * [new branch] gh/XuehaiPan/348/orig -> origin/gh/XuehaiPan/348/orig 2025-08-26T20:39:59.1702011Z * [new branch] gh/XuehaiPan/350/base -> origin/gh/XuehaiPan/350/base 2025-08-26T20:39:59.1702536Z * [new branch] gh/XuehaiPan/350/head -> origin/gh/XuehaiPan/350/head 2025-08-26T20:39:59.1703059Z * [new branch] gh/XuehaiPan/350/orig -> origin/gh/XuehaiPan/350/orig 2025-08-26T20:39:59.1703581Z * [new branch] gh/XuehaiPan/356/base -> origin/gh/XuehaiPan/356/base 2025-08-26T20:39:59.1704117Z * [new branch] gh/XuehaiPan/356/head -> origin/gh/XuehaiPan/356/head 2025-08-26T20:39:59.1704640Z * [new branch] gh/XuehaiPan/356/orig -> origin/gh/XuehaiPan/356/orig 2025-08-26T20:39:59.1705167Z * [new branch] gh/XuehaiPan/357/base -> origin/gh/XuehaiPan/357/base 2025-08-26T20:39:59.1705696Z * [new branch] gh/XuehaiPan/357/head -> origin/gh/XuehaiPan/357/head 2025-08-26T20:39:59.1706274Z * [new branch] gh/XuehaiPan/357/orig -> origin/gh/XuehaiPan/357/orig 2025-08-26T20:39:59.1706804Z * [new branch] gh/XuehaiPan/358/base -> origin/gh/XuehaiPan/358/base 2025-08-26T20:39:59.1707351Z * [new branch] gh/XuehaiPan/358/head -> origin/gh/XuehaiPan/358/head 2025-08-26T20:39:59.1707880Z * [new branch] gh/XuehaiPan/358/orig -> origin/gh/XuehaiPan/358/orig 2025-08-26T20:39:59.1708423Z * [new branch] gh/XuehaiPan/359/base -> origin/gh/XuehaiPan/359/base 2025-08-26T20:39:59.1708968Z * [new branch] gh/XuehaiPan/359/head -> origin/gh/XuehaiPan/359/head 2025-08-26T20:39:59.1709498Z * [new branch] gh/XuehaiPan/359/orig -> origin/gh/XuehaiPan/359/orig 2025-08-26T20:39:59.1710039Z * [new branch] gh/XuehaiPan/360/base -> origin/gh/XuehaiPan/360/base 2025-08-26T20:39:59.1710644Z * [new branch] gh/XuehaiPan/360/head -> origin/gh/XuehaiPan/360/head 2025-08-26T20:39:59.1711342Z * [new branch] gh/XuehaiPan/360/orig -> origin/gh/XuehaiPan/360/orig 2025-08-26T20:39:59.1711880Z * [new branch] gh/XuehaiPan/365/base -> origin/gh/XuehaiPan/365/base 2025-08-26T20:39:59.1712403Z * [new branch] gh/XuehaiPan/365/head -> origin/gh/XuehaiPan/365/head 2025-08-26T20:39:59.1712936Z * [new branch] gh/XuehaiPan/365/orig -> origin/gh/XuehaiPan/365/orig 2025-08-26T20:39:59.1713451Z * [new branch] gh/XuehaiPan/366/base -> origin/gh/XuehaiPan/366/base 2025-08-26T20:39:59.1714081Z * [new branch] gh/XuehaiPan/366/head -> origin/gh/XuehaiPan/366/head 2025-08-26T20:39:59.1714616Z * [new branch] gh/XuehaiPan/369/base -> origin/gh/XuehaiPan/369/base 2025-08-26T20:39:59.1715152Z * [new branch] gh/XuehaiPan/369/head -> origin/gh/XuehaiPan/369/head 2025-08-26T20:39:59.1715688Z * [new branch] gh/XuehaiPan/369/orig -> origin/gh/XuehaiPan/369/orig 2025-08-26T20:39:59.1716262Z * [new branch] gh/XuehaiPan/370/base -> origin/gh/XuehaiPan/370/base 2025-08-26T20:39:59.2132573Z * [new branch] gh/XuehaiPan/370/head -> origin/gh/XuehaiPan/370/head 2025-08-26T20:39:59.2133176Z * [new branch] gh/XuehaiPan/370/orig -> origin/gh/XuehaiPan/370/orig 2025-08-26T20:39:59.2133706Z * [new branch] gh/XuehaiPan/371/base -> origin/gh/XuehaiPan/371/base 2025-08-26T20:39:59.2134266Z * [new branch] gh/XuehaiPan/371/head -> origin/gh/XuehaiPan/371/head 2025-08-26T20:39:59.2134793Z * [new branch] gh/XuehaiPan/371/orig -> origin/gh/XuehaiPan/371/orig 2025-08-26T20:39:59.2135338Z * [new branch] gh/XuehaiPan/377/base -> origin/gh/XuehaiPan/377/base 2025-08-26T20:39:59.2135867Z * [new branch] gh/XuehaiPan/377/head -> origin/gh/XuehaiPan/377/head 2025-08-26T20:39:59.2136421Z * [new branch] gh/XuehaiPan/377/orig -> origin/gh/XuehaiPan/377/orig 2025-08-26T20:39:59.2136959Z * [new branch] gh/XuehaiPan/378/base -> origin/gh/XuehaiPan/378/base 2025-08-26T20:39:59.2137524Z * [new branch] gh/XuehaiPan/378/head -> origin/gh/XuehaiPan/378/head 2025-08-26T20:39:59.2138106Z * [new branch] gh/XuehaiPan/378/orig -> origin/gh/XuehaiPan/378/orig 2025-08-26T20:39:59.2138642Z * [new branch] gh/XuehaiPan/379/base -> origin/gh/XuehaiPan/379/base 2025-08-26T20:39:59.2139188Z * [new branch] gh/XuehaiPan/379/head -> origin/gh/XuehaiPan/379/head 2025-08-26T20:39:59.2139731Z * [new branch] gh/XuehaiPan/379/orig -> origin/gh/XuehaiPan/379/orig 2025-08-26T20:39:59.2140263Z * [new branch] gh/XuehaiPan/380/base -> origin/gh/XuehaiPan/380/base 2025-08-26T20:39:59.2140807Z * [new branch] gh/XuehaiPan/380/head -> origin/gh/XuehaiPan/380/head 2025-08-26T20:39:59.2141340Z * [new branch] gh/XuehaiPan/380/orig -> origin/gh/XuehaiPan/380/orig 2025-08-26T20:39:59.2141879Z * [new branch] gh/XuehaiPan/381/base -> origin/gh/XuehaiPan/381/base 2025-08-26T20:39:59.2142426Z * [new branch] gh/XuehaiPan/381/head -> origin/gh/XuehaiPan/381/head 2025-08-26T20:39:59.2142961Z * [new branch] gh/XuehaiPan/382/base -> origin/gh/XuehaiPan/382/base 2025-08-26T20:39:59.2143538Z * [new branch] gh/XuehaiPan/382/head -> origin/gh/XuehaiPan/382/head 2025-08-26T20:39:59.2144119Z * [new branch] gh/XuehaiPan/382/orig -> origin/gh/XuehaiPan/382/orig 2025-08-26T20:39:59.2144669Z * [new branch] gh/XuehaiPan/383/base -> origin/gh/XuehaiPan/383/base 2025-08-26T20:39:59.2145204Z * [new branch] gh/XuehaiPan/383/head -> origin/gh/XuehaiPan/383/head 2025-08-26T20:39:59.2145942Z * [new branch] gh/XuehaiPan/383/orig -> origin/gh/XuehaiPan/383/orig 2025-08-26T20:39:59.2146537Z * [new branch] gh/XuehaiPan/384/base -> origin/gh/XuehaiPan/384/base 2025-08-26T20:39:59.2147071Z * [new branch] gh/XuehaiPan/384/head -> origin/gh/XuehaiPan/384/head 2025-08-26T20:39:59.2147613Z * [new branch] gh/XuehaiPan/384/orig -> origin/gh/XuehaiPan/384/orig 2025-08-26T20:39:59.2148162Z * [new branch] gh/ZhiweiYan-96/39/base -> origin/gh/ZhiweiYan-96/39/base 2025-08-26T20:39:59.2148853Z * [new branch] gh/ZhiweiYan-96/39/head -> origin/gh/ZhiweiYan-96/39/head 2025-08-26T20:39:59.2149511Z * [new branch] gh/ZhiweiYan-96/39/orig -> origin/gh/ZhiweiYan-96/39/orig 2025-08-26T20:39:59.2150060Z * [new branch] gh/ZhiweiYan-96/44/base -> origin/gh/ZhiweiYan-96/44/base 2025-08-26T20:39:59.2150616Z * [new branch] gh/ZhiweiYan-96/44/head -> origin/gh/ZhiweiYan-96/44/head 2025-08-26T20:39:59.2151161Z * [new branch] gh/ZhiweiYan-96/45/base -> origin/gh/ZhiweiYan-96/45/base 2025-08-26T20:39:59.2151709Z * [new branch] gh/ZhiweiYan-96/45/head -> origin/gh/ZhiweiYan-96/45/head 2025-08-26T20:39:59.2152264Z * [new branch] gh/ZhiweiYan-96/49/base -> origin/gh/ZhiweiYan-96/49/base 2025-08-26T20:39:59.2152800Z * [new branch] gh/ZhiweiYan-96/49/head -> origin/gh/ZhiweiYan-96/49/head 2025-08-26T20:39:59.2153353Z * [new branch] gh/ZhiweiYan-96/62/base -> origin/gh/ZhiweiYan-96/62/base 2025-08-26T20:39:59.2153900Z * [new branch] gh/ZhiweiYan-96/62/head -> origin/gh/ZhiweiYan-96/62/head 2025-08-26T20:39:59.2154459Z * [new branch] gh/ZhiweiYan-96/64/base -> origin/gh/ZhiweiYan-96/64/base 2025-08-26T20:39:59.2155057Z * [new branch] gh/ZhiweiYan-96/64/head -> origin/gh/ZhiweiYan-96/64/head 2025-08-26T20:39:59.2155641Z * [new branch] gh/ZhiweiYan-96/64/orig -> origin/gh/ZhiweiYan-96/64/orig 2025-08-26T20:39:59.2156200Z * [new branch] gh/ZhiweiYan-96/65/base -> origin/gh/ZhiweiYan-96/65/base 2025-08-26T20:39:59.2156741Z * [new branch] gh/ZhiweiYan-96/65/head -> origin/gh/ZhiweiYan-96/65/head 2025-08-26T20:39:59.2157293Z * [new branch] gh/ZhiweiYan-96/65/orig -> origin/gh/ZhiweiYan-96/65/orig 2025-08-26T20:39:59.2157852Z * [new branch] gh/ZhiweiYan-96/66/base -> origin/gh/ZhiweiYan-96/66/base 2025-08-26T20:39:59.2598312Z * [new branch] gh/ZhiweiYan-96/66/head -> origin/gh/ZhiweiYan-96/66/head 2025-08-26T20:39:59.2598913Z * [new branch] gh/ZhiweiYan-96/67/base -> origin/gh/ZhiweiYan-96/67/base 2025-08-26T20:39:59.2599461Z * [new branch] gh/ZhiweiYan-96/67/head -> origin/gh/ZhiweiYan-96/67/head 2025-08-26T20:39:59.2600017Z * [new branch] gh/ZhiweiYan-96/68/base -> origin/gh/ZhiweiYan-96/68/base 2025-08-26T20:39:59.2600591Z * [new branch] gh/ZhiweiYan-96/68/head -> origin/gh/ZhiweiYan-96/68/head 2025-08-26T20:39:59.2601128Z * [new branch] gh/ZhiweiYan-96/68/orig -> origin/gh/ZhiweiYan-96/68/orig 2025-08-26T20:39:59.2601678Z * [new branch] gh/aakhundov/1/base -> origin/gh/aakhundov/1/base 2025-08-26T20:39:59.2602205Z * [new branch] gh/aakhundov/1/head -> origin/gh/aakhundov/1/head 2025-08-26T20:39:59.2602735Z * [new branch] gh/aakhundov/2/base -> origin/gh/aakhundov/2/base 2025-08-26T20:39:59.2603257Z * [new branch] gh/aakhundov/2/head -> origin/gh/aakhundov/2/head 2025-08-26T20:39:59.2603782Z * [new branch] gh/aditew01/openblas -> origin/gh/aditew01/openblas 2025-08-26T20:39:59.2604316Z * [new branch] gh/aditew01/sbgemm -> origin/gh/aditew01/sbgemm 2025-08-26T20:39:59.2604990Z * [new branch] gh/aditew01/vecbf16 -> origin/gh/aditew01/vecbf16 2025-08-26T20:39:59.2605738Z * [new branch] gh/alexbrauckmann/paddedtensor_faketensor_init -> origin/gh/alexbrauckmann/paddedtensor_faketensor_init 2025-08-26T20:39:59.2606506Z * [new branch] gh/alexsamardzic/8/base -> origin/gh/alexsamardzic/8/base 2025-08-26T20:39:59.2607067Z * [new branch] gh/alexsamardzic/8/head -> origin/gh/alexsamardzic/8/head 2025-08-26T20:39:59.2607625Z * [new branch] gh/alexsamardzic/8/orig -> origin/gh/alexsamardzic/8/orig 2025-08-26T20:39:59.2608261Z * [new branch] gh/amjames/18/base -> origin/gh/amjames/18/base 2025-08-26T20:39:59.2608772Z * [new branch] gh/amjames/18/head -> origin/gh/amjames/18/head 2025-08-26T20:39:59.2609284Z * [new branch] gh/amjames/18/orig -> origin/gh/amjames/18/orig 2025-08-26T20:39:59.2609796Z * [new branch] gh/andrewor14/35/base -> origin/gh/andrewor14/35/base 2025-08-26T20:39:59.2610343Z * [new branch] gh/andrewor14/35/head -> origin/gh/andrewor14/35/head 2025-08-26T20:39:59.2610868Z * [new branch] gh/andrewor14/35/orig -> origin/gh/andrewor14/35/orig 2025-08-26T20:39:59.2611398Z * [new branch] gh/andrewor14/50/base -> origin/gh/andrewor14/50/base 2025-08-26T20:39:59.2611919Z * [new branch] gh/andrewor14/50/head -> origin/gh/andrewor14/50/head 2025-08-26T20:39:59.2612432Z * [new branch] gh/andrewor14/50/orig -> origin/gh/andrewor14/50/orig 2025-08-26T20:39:59.2612962Z * [new branch] gh/andyanwang/1/base -> origin/gh/andyanwang/1/base 2025-08-26T20:39:59.2613530Z * [new branch] gh/andyanwang/1/head -> origin/gh/andyanwang/1/head 2025-08-26T20:39:59.2614101Z * [new branch] gh/andyanwang/1/orig -> origin/gh/andyanwang/1/orig 2025-08-26T20:39:59.2614655Z * [new branch] gh/andyanwang/13/base -> origin/gh/andyanwang/13/base 2025-08-26T20:39:59.2615177Z * [new branch] gh/andyanwang/13/head -> origin/gh/andyanwang/13/head 2025-08-26T20:39:59.2615711Z * [new branch] gh/andyanwang/13/orig -> origin/gh/andyanwang/13/orig 2025-08-26T20:39:59.2616239Z * [new branch] gh/andyanwang/2/base -> origin/gh/andyanwang/2/base 2025-08-26T20:39:59.2616770Z * [new branch] gh/andyanwang/2/head -> origin/gh/andyanwang/2/head 2025-08-26T20:39:59.2617294Z * [new branch] gh/andyanwang/2/orig -> origin/gh/andyanwang/2/orig 2025-08-26T20:39:59.2617813Z * [new branch] gh/andyanwang/28/base -> origin/gh/andyanwang/28/base 2025-08-26T20:39:59.2618340Z * [new branch] gh/andyanwang/28/head -> origin/gh/andyanwang/28/head 2025-08-26T20:39:59.2618856Z * [new branch] gh/andyanwang/28/orig -> origin/gh/andyanwang/28/orig 2025-08-26T20:39:59.2619428Z * [new branch] gh/andyanwang/3/base -> origin/gh/andyanwang/3/base 2025-08-26T20:39:59.2619988Z * [new branch] gh/andyanwang/3/head -> origin/gh/andyanwang/3/head 2025-08-26T20:39:59.2620516Z * [new branch] gh/andyanwang/3/orig -> origin/gh/andyanwang/3/orig 2025-08-26T20:39:59.2621045Z * [new branch] gh/andyanwang/30/base -> origin/gh/andyanwang/30/base 2025-08-26T20:39:59.2621564Z * [new branch] gh/andyanwang/30/orig -> origin/gh/andyanwang/30/orig 2025-08-26T20:39:59.2622106Z * [new branch] gh/andyanwang/31/base -> origin/gh/andyanwang/31/base 2025-08-26T20:39:59.2622633Z * [new branch] gh/andyanwang/31/orig -> origin/gh/andyanwang/31/orig 2025-08-26T20:39:59.2623160Z * [new branch] gh/andyanwang/32/base -> origin/gh/andyanwang/32/base 2025-08-26T20:39:59.3044850Z * [new branch] gh/andyanwang/32/head -> origin/gh/andyanwang/32/head 2025-08-26T20:39:59.3045567Z * [new branch] gh/andyanwang/32/orig -> origin/gh/andyanwang/32/orig 2025-08-26T20:39:59.3046102Z * [new branch] gh/andyanwang/35/base -> origin/gh/andyanwang/35/base 2025-08-26T20:39:59.3046638Z * [new branch] gh/andyanwang/35/head -> origin/gh/andyanwang/35/head 2025-08-26T20:39:59.3047167Z * [new branch] gh/andyanwang/35/orig -> origin/gh/andyanwang/35/orig 2025-08-26T20:39:59.3047824Z * [new branch] gh/andyanwang/36/base -> origin/gh/andyanwang/36/base 2025-08-26T20:39:59.3048348Z * [new branch] gh/andyanwang/36/head -> origin/gh/andyanwang/36/head 2025-08-26T20:39:59.3048871Z * [new branch] gh/andyanwang/36/orig -> origin/gh/andyanwang/36/orig 2025-08-26T20:39:59.3049395Z * [new branch] gh/andyanwang/37/base -> origin/gh/andyanwang/37/base 2025-08-26T20:39:59.3049931Z * [new branch] gh/andyanwang/37/head -> origin/gh/andyanwang/37/head 2025-08-26T20:39:59.3050459Z * [new branch] gh/andyanwang/37/orig -> origin/gh/andyanwang/37/orig 2025-08-26T20:39:59.3050979Z * [new branch] gh/andyanwang/38/base -> origin/gh/andyanwang/38/base 2025-08-26T20:39:59.3051505Z * [new branch] gh/andyanwang/38/head -> origin/gh/andyanwang/38/head 2025-08-26T20:39:59.3052020Z * [new branch] gh/andyanwang/38/orig -> origin/gh/andyanwang/38/orig 2025-08-26T20:39:59.3052543Z * [new branch] gh/andyanwang/39/base -> origin/gh/andyanwang/39/base 2025-08-26T20:39:59.3053077Z * [new branch] gh/andyanwang/39/head -> origin/gh/andyanwang/39/head 2025-08-26T20:39:59.3053590Z * [new branch] gh/andyanwang/39/orig -> origin/gh/andyanwang/39/orig 2025-08-26T20:39:59.3054122Z * [new branch] gh/andyanwang/4/base -> origin/gh/andyanwang/4/base 2025-08-26T20:39:59.3054651Z * [new branch] gh/andyanwang/4/head -> origin/gh/andyanwang/4/head 2025-08-26T20:39:59.3055183Z * [new branch] gh/andyanwang/4/orig -> origin/gh/andyanwang/4/orig 2025-08-26T20:39:59.3055710Z * [new branch] gh/andyanwang/40/base -> origin/gh/andyanwang/40/base 2025-08-26T20:39:59.3056231Z * [new branch] gh/andyanwang/40/head -> origin/gh/andyanwang/40/head 2025-08-26T20:39:59.3056759Z * [new branch] gh/andyanwang/40/orig -> origin/gh/andyanwang/40/orig 2025-08-26T20:39:59.3057275Z * [new branch] gh/angelayi/106/base -> origin/gh/angelayi/106/base 2025-08-26T20:39:59.3057799Z * [new branch] gh/angelayi/106/head -> origin/gh/angelayi/106/head 2025-08-26T20:39:59.3058328Z * [new branch] gh/angelayi/106/orig -> origin/gh/angelayi/106/orig 2025-08-26T20:39:59.3058841Z * [new branch] gh/angelayi/107/base -> origin/gh/angelayi/107/base 2025-08-26T20:39:59.3059355Z * [new branch] gh/angelayi/107/head -> origin/gh/angelayi/107/head 2025-08-26T20:39:59.3059863Z * [new branch] gh/angelayi/108/base -> origin/gh/angelayi/108/base 2025-08-26T20:39:59.3060374Z * [new branch] gh/angelayi/108/head -> origin/gh/angelayi/108/head 2025-08-26T20:39:59.3060888Z * [new branch] gh/angelayi/108/orig -> origin/gh/angelayi/108/orig 2025-08-26T20:39:59.3061397Z * [new branch] gh/angelayi/109/base -> origin/gh/angelayi/109/base 2025-08-26T20:39:59.3061908Z * [new branch] gh/angelayi/109/head -> origin/gh/angelayi/109/head 2025-08-26T20:39:59.3062415Z * [new branch] gh/angelayi/109/orig -> origin/gh/angelayi/109/orig 2025-08-26T20:39:59.3062929Z * [new branch] gh/angelayi/110/base -> origin/gh/angelayi/110/base 2025-08-26T20:39:59.3063545Z * [new branch] gh/angelayi/110/head -> origin/gh/angelayi/110/head 2025-08-26T20:39:59.3064063Z * [new branch] gh/angelayi/110/orig -> origin/gh/angelayi/110/orig 2025-08-26T20:39:59.3064582Z * [new branch] gh/angelayi/111/base -> origin/gh/angelayi/111/base 2025-08-26T20:39:59.3065092Z * [new branch] gh/angelayi/111/head -> origin/gh/angelayi/111/head 2025-08-26T20:39:59.3065611Z * [new branch] gh/angelayi/111/orig -> origin/gh/angelayi/111/orig 2025-08-26T20:39:59.3066273Z * [new branch] gh/angelayi/112/base -> origin/gh/angelayi/112/base 2025-08-26T20:39:59.3066800Z * [new branch] gh/angelayi/112/head -> origin/gh/angelayi/112/head 2025-08-26T20:39:59.3067317Z * [new branch] gh/angelayi/112/orig -> origin/gh/angelayi/112/orig 2025-08-26T20:39:59.3067829Z * [new branch] gh/angelayi/113/base -> origin/gh/angelayi/113/base 2025-08-26T20:39:59.3068358Z * [new branch] gh/angelayi/113/head -> origin/gh/angelayi/113/head 2025-08-26T20:39:59.3068868Z * [new branch] gh/angelayi/113/orig -> origin/gh/angelayi/113/orig 2025-08-26T20:39:59.3478905Z * [new branch] gh/angelayi/114/base -> origin/gh/angelayi/114/base 2025-08-26T20:39:59.3479436Z * [new branch] gh/angelayi/114/head -> origin/gh/angelayi/114/head 2025-08-26T20:39:59.3479966Z * [new branch] gh/angelayi/114/orig -> origin/gh/angelayi/114/orig 2025-08-26T20:39:59.3480488Z * [new branch] gh/angelayi/115/base -> origin/gh/angelayi/115/base 2025-08-26T20:39:59.3481000Z * [new branch] gh/angelayi/115/head -> origin/gh/angelayi/115/head 2025-08-26T20:39:59.3481517Z * [new branch] gh/angelayi/115/orig -> origin/gh/angelayi/115/orig 2025-08-26T20:39:59.3482054Z * [new branch] gh/anijain2305/753/base -> origin/gh/anijain2305/753/base 2025-08-26T20:39:59.3482604Z * [new branch] gh/anijain2305/753/head -> origin/gh/anijain2305/753/head 2025-08-26T20:39:59.3483165Z * [new branch] gh/anijain2305/753/orig -> origin/gh/anijain2305/753/orig 2025-08-26T20:39:59.3483692Z * [new branch] gh/anijain2305/766/base -> origin/gh/anijain2305/766/base 2025-08-26T20:39:59.3484229Z * [new branch] gh/anijain2305/766/head -> origin/gh/anijain2305/766/head 2025-08-26T20:39:59.3484759Z * [new branch] gh/anijain2305/766/orig -> origin/gh/anijain2305/766/orig 2025-08-26T20:39:59.3485295Z * [new branch] gh/anijain2305/790/base -> origin/gh/anijain2305/790/base 2025-08-26T20:39:59.3485835Z * [new branch] gh/anijain2305/790/head -> origin/gh/anijain2305/790/head 2025-08-26T20:39:59.3486370Z * [new branch] gh/anijain2305/790/orig -> origin/gh/anijain2305/790/orig 2025-08-26T20:39:59.3486913Z * [new branch] gh/anijain2305/792/base -> origin/gh/anijain2305/792/base 2025-08-26T20:39:59.3487446Z * [new branch] gh/anijain2305/792/head -> origin/gh/anijain2305/792/head 2025-08-26T20:39:59.3487985Z * [new branch] gh/anijain2305/792/orig -> origin/gh/anijain2305/792/orig 2025-08-26T20:39:59.3488525Z * [new branch] gh/anijain2305/803/base -> origin/gh/anijain2305/803/base 2025-08-26T20:39:59.3489060Z * [new branch] gh/anijain2305/803/head -> origin/gh/anijain2305/803/head 2025-08-26T20:39:59.3489604Z * [new branch] gh/anijain2305/803/orig -> origin/gh/anijain2305/803/orig 2025-08-26T20:39:59.3490133Z * [new branch] gh/anijain2305/804/base -> origin/gh/anijain2305/804/base 2025-08-26T20:39:59.3490672Z * [new branch] gh/anijain2305/804/head -> origin/gh/anijain2305/804/head 2025-08-26T20:39:59.3491359Z * [new branch] gh/anijain2305/804/orig -> origin/gh/anijain2305/804/orig 2025-08-26T20:39:59.3491889Z * [new branch] gh/anijain2305/805/base -> origin/gh/anijain2305/805/base 2025-08-26T20:39:59.3492434Z * [new branch] gh/anijain2305/805/head -> origin/gh/anijain2305/805/head 2025-08-26T20:39:59.3492969Z * [new branch] gh/anijain2305/805/orig -> origin/gh/anijain2305/805/orig 2025-08-26T20:39:59.3493508Z * [new branch] gh/anijain2305/810/base -> origin/gh/anijain2305/810/base 2025-08-26T20:39:59.3494132Z * [new branch] gh/anijain2305/810/head -> origin/gh/anijain2305/810/head 2025-08-26T20:39:59.3494671Z * [new branch] gh/anijain2305/810/orig -> origin/gh/anijain2305/810/orig 2025-08-26T20:39:59.3495215Z * [new branch] gh/anijain2305/812/base -> origin/gh/anijain2305/812/base 2025-08-26T20:39:59.3495751Z * [new branch] gh/anijain2305/812/head -> origin/gh/anijain2305/812/head 2025-08-26T20:39:59.3496300Z * [new branch] gh/anijain2305/812/orig -> origin/gh/anijain2305/812/orig 2025-08-26T20:39:59.3496837Z * [new branch] gh/anijain2305/817/base -> origin/gh/anijain2305/817/base 2025-08-26T20:39:59.3497377Z * [new branch] gh/anijain2305/817/head -> origin/gh/anijain2305/817/head 2025-08-26T20:39:59.3497916Z * [new branch] gh/anijain2305/817/orig -> origin/gh/anijain2305/817/orig 2025-08-26T20:39:59.3498441Z * [new branch] gh/anijain2305/823/base -> origin/gh/anijain2305/823/base 2025-08-26T20:39:59.3498980Z * [new branch] gh/anijain2305/823/head -> origin/gh/anijain2305/823/head 2025-08-26T20:39:59.3499515Z * [new branch] gh/anijain2305/823/orig -> origin/gh/anijain2305/823/orig 2025-08-26T20:39:59.3500056Z * [new branch] gh/anijain2305/829/base -> origin/gh/anijain2305/829/base 2025-08-26T20:39:59.3500604Z * [new branch] gh/anijain2305/829/head -> origin/gh/anijain2305/829/head 2025-08-26T20:39:59.3501134Z * [new branch] gh/anijain2305/829/orig -> origin/gh/anijain2305/829/orig 2025-08-26T20:39:59.3501670Z * [new branch] gh/anijain2305/830/base -> origin/gh/anijain2305/830/base 2025-08-26T20:39:59.3502203Z * [new branch] gh/anijain2305/830/head -> origin/gh/anijain2305/830/head 2025-08-26T20:39:59.3502742Z * [new branch] gh/anijain2305/830/orig -> origin/gh/anijain2305/830/orig 2025-08-26T20:39:59.3901018Z * [new branch] gh/anijain2305/831/base -> origin/gh/anijain2305/831/base 2025-08-26T20:39:59.3901610Z * [new branch] gh/anijain2305/831/head -> origin/gh/anijain2305/831/head 2025-08-26T20:39:59.3902155Z * [new branch] gh/anijain2305/831/orig -> origin/gh/anijain2305/831/orig 2025-08-26T20:39:59.3902686Z * [new branch] gh/anijain2305/832/base -> origin/gh/anijain2305/832/base 2025-08-26T20:39:59.3903238Z * [new branch] gh/anijain2305/832/head -> origin/gh/anijain2305/832/head 2025-08-26T20:39:59.3903781Z * [new branch] gh/anijain2305/832/orig -> origin/gh/anijain2305/832/orig 2025-08-26T20:39:59.3904308Z * [new branch] gh/anijain2305/833/base -> origin/gh/anijain2305/833/base 2025-08-26T20:39:59.3904850Z * [new branch] gh/anijain2305/833/head -> origin/gh/anijain2305/833/head 2025-08-26T20:39:59.3905375Z * [new branch] gh/anijain2305/833/orig -> origin/gh/anijain2305/833/orig 2025-08-26T20:39:59.3905957Z * [new branch] gh/anijain2305/834/base -> origin/gh/anijain2305/834/base 2025-08-26T20:39:59.3906614Z * [new branch] gh/anijain2305/834/head -> origin/gh/anijain2305/834/head 2025-08-26T20:39:59.3907189Z * [new branch] gh/anijain2305/834/orig -> origin/gh/anijain2305/834/orig 2025-08-26T20:39:59.3907901Z * [new branch] gh/anijain2305/835/base -> origin/gh/anijain2305/835/base 2025-08-26T20:39:59.3908443Z * [new branch] gh/anijain2305/835/head -> origin/gh/anijain2305/835/head 2025-08-26T20:39:59.3908977Z * [new branch] gh/anijain2305/835/orig -> origin/gh/anijain2305/835/orig 2025-08-26T20:39:59.3909526Z * [new branch] gh/anijain2305/836/base -> origin/gh/anijain2305/836/base 2025-08-26T20:39:59.3910063Z * [new branch] gh/anijain2305/836/head -> origin/gh/anijain2305/836/head 2025-08-26T20:39:59.3910695Z * [new branch] gh/anijain2305/836/orig -> origin/gh/anijain2305/836/orig 2025-08-26T20:39:59.3911230Z * [new branch] gh/anijain2305/837/base -> origin/gh/anijain2305/837/base 2025-08-26T20:39:59.3911776Z * [new branch] gh/anijain2305/837/head -> origin/gh/anijain2305/837/head 2025-08-26T20:39:59.3912354Z * [new branch] gh/anijain2305/837/orig -> origin/gh/anijain2305/837/orig 2025-08-26T20:39:59.3912981Z * [new branch] gh/anijain2305/838/base -> origin/gh/anijain2305/838/base 2025-08-26T20:39:59.3913538Z * [new branch] gh/anijain2305/838/head -> origin/gh/anijain2305/838/head 2025-08-26T20:39:59.3914065Z * [new branch] gh/anijain2305/838/orig -> origin/gh/anijain2305/838/orig 2025-08-26T20:39:59.3914606Z * [new branch] gh/anijain2305/839/base -> origin/gh/anijain2305/839/base 2025-08-26T20:39:59.3915146Z * [new branch] gh/anijain2305/839/head -> origin/gh/anijain2305/839/head 2025-08-26T20:39:59.3915677Z * [new branch] gh/anijain2305/839/orig -> origin/gh/anijain2305/839/orig 2025-08-26T20:39:59.3916213Z * [new branch] gh/anijain2305/840/base -> origin/gh/anijain2305/840/base 2025-08-26T20:39:59.3916745Z * [new branch] gh/anijain2305/840/head -> origin/gh/anijain2305/840/head 2025-08-26T20:39:59.3917289Z * [new branch] gh/anijain2305/840/orig -> origin/gh/anijain2305/840/orig 2025-08-26T20:39:59.3917826Z * [new branch] gh/anijain2305/841/base -> origin/gh/anijain2305/841/base 2025-08-26T20:39:59.3918399Z * [new branch] gh/anijain2305/841/head -> origin/gh/anijain2305/841/head 2025-08-26T20:39:59.3919019Z * [new branch] gh/anijain2305/841/orig -> origin/gh/anijain2305/841/orig 2025-08-26T20:39:59.3919546Z * [new branch] gh/anijain2305/842/base -> origin/gh/anijain2305/842/base 2025-08-26T20:39:59.3920096Z * [new branch] gh/anijain2305/842/head -> origin/gh/anijain2305/842/head 2025-08-26T20:39:59.3920635Z * [new branch] gh/anijain2305/842/orig -> origin/gh/anijain2305/842/orig 2025-08-26T20:39:59.3921170Z * [new branch] gh/anijain2305/843/base -> origin/gh/anijain2305/843/base 2025-08-26T20:39:59.3921709Z * [new branch] gh/anijain2305/843/head -> origin/gh/anijain2305/843/head 2025-08-26T20:39:59.3922244Z * [new branch] gh/anijain2305/843/orig -> origin/gh/anijain2305/843/orig 2025-08-26T20:39:59.3922784Z * [new branch] gh/anijain2305/844/base -> origin/gh/anijain2305/844/base 2025-08-26T20:39:59.3923324Z * [new branch] gh/anijain2305/844/head -> origin/gh/anijain2305/844/head 2025-08-26T20:39:59.3923860Z * [new branch] gh/anijain2305/844/orig -> origin/gh/anijain2305/844/orig 2025-08-26T20:39:59.3924447Z * [new branch] gh/anijain2305/845/base -> origin/gh/anijain2305/845/base 2025-08-26T20:39:59.3925058Z * [new branch] gh/anijain2305/845/head -> origin/gh/anijain2305/845/head 2025-08-26T20:39:59.3925600Z * [new branch] gh/anijain2305/845/orig -> origin/gh/anijain2305/845/orig 2025-08-26T20:39:59.4330985Z * [new branch] gh/anijain2305/846/base -> origin/gh/anijain2305/846/base 2025-08-26T20:39:59.4332271Z * [new branch] gh/anijain2305/846/head -> origin/gh/anijain2305/846/head 2025-08-26T20:39:59.4332827Z * [new branch] gh/anijain2305/846/orig -> origin/gh/anijain2305/846/orig 2025-08-26T20:39:59.4333410Z * [new branch] gh/anijain2305/847/base -> origin/gh/anijain2305/847/base 2025-08-26T20:39:59.4333993Z * [new branch] gh/anijain2305/847/head -> origin/gh/anijain2305/847/head 2025-08-26T20:39:59.4334536Z * [new branch] gh/anijain2305/847/orig -> origin/gh/anijain2305/847/orig 2025-08-26T20:39:59.4335200Z * [new branch] gh/anijain2305/848/base -> origin/gh/anijain2305/848/base 2025-08-26T20:39:59.4335746Z * [new branch] gh/anijain2305/848/head -> origin/gh/anijain2305/848/head 2025-08-26T20:39:59.4336281Z * [new branch] gh/anijain2305/848/orig -> origin/gh/anijain2305/848/orig 2025-08-26T20:39:59.4336832Z * [new branch] gh/anijain2305/849/base -> origin/gh/anijain2305/849/base 2025-08-26T20:39:59.4337386Z * [new branch] gh/anijain2305/849/head -> origin/gh/anijain2305/849/head 2025-08-26T20:39:59.4337921Z * [new branch] gh/anijain2305/849/orig -> origin/gh/anijain2305/849/orig 2025-08-26T20:39:59.4338460Z * [new branch] gh/anijain2305/850/base -> origin/gh/anijain2305/850/base 2025-08-26T20:39:59.4339033Z * [new branch] gh/anijain2305/850/head -> origin/gh/anijain2305/850/head 2025-08-26T20:39:59.4339619Z * [new branch] gh/anijain2305/850/orig -> origin/gh/anijain2305/850/orig 2025-08-26T20:39:59.4340160Z * [new branch] gh/anijain2305/851/base -> origin/gh/anijain2305/851/base 2025-08-26T20:39:59.4340691Z * [new branch] gh/anijain2305/851/head -> origin/gh/anijain2305/851/head 2025-08-26T20:39:59.4341226Z * [new branch] gh/anijain2305/851/orig -> origin/gh/anijain2305/851/orig 2025-08-26T20:39:59.4341766Z * [new branch] gh/anijain2305/852/base -> origin/gh/anijain2305/852/base 2025-08-26T20:39:59.4342309Z * [new branch] gh/anijain2305/852/head -> origin/gh/anijain2305/852/head 2025-08-26T20:39:59.4342844Z * [new branch] gh/anijain2305/852/orig -> origin/gh/anijain2305/852/orig 2025-08-26T20:39:59.4343382Z * [new branch] gh/anijain2305/853/base -> origin/gh/anijain2305/853/base 2025-08-26T20:39:59.4343924Z * [new branch] gh/anijain2305/853/head -> origin/gh/anijain2305/853/head 2025-08-26T20:39:59.4344461Z * [new branch] gh/anijain2305/853/orig -> origin/gh/anijain2305/853/orig 2025-08-26T20:39:59.4345041Z * [new branch] gh/anijain2305/854/base -> origin/gh/anijain2305/854/base 2025-08-26T20:39:59.4345609Z * [new branch] gh/anijain2305/854/head -> origin/gh/anijain2305/854/head 2025-08-26T20:39:59.4346217Z * [new branch] gh/anijain2305/854/orig -> origin/gh/anijain2305/854/orig 2025-08-26T20:39:59.4346761Z * [new branch] gh/anijain2305/855/base -> origin/gh/anijain2305/855/base 2025-08-26T20:39:59.4347290Z * [new branch] gh/anijain2305/855/head -> origin/gh/anijain2305/855/head 2025-08-26T20:39:59.4347840Z * [new branch] gh/anijain2305/855/orig -> origin/gh/anijain2305/855/orig 2025-08-26T20:39:59.4348385Z * [new branch] gh/anijain2305/856/base -> origin/gh/anijain2305/856/base 2025-08-26T20:39:59.4348927Z * [new branch] gh/anijain2305/856/head -> origin/gh/anijain2305/856/head 2025-08-26T20:39:59.4349464Z * [new branch] gh/anijain2305/856/orig -> origin/gh/anijain2305/856/orig 2025-08-26T20:39:59.4349994Z * [new branch] gh/anijain2305/857/base -> origin/gh/anijain2305/857/base 2025-08-26T20:39:59.4350581Z * [new branch] gh/anijain2305/857/head -> origin/gh/anijain2305/857/head 2025-08-26T20:39:59.4351271Z * [new branch] gh/anijain2305/857/orig -> origin/gh/anijain2305/857/orig 2025-08-26T20:39:59.4351814Z * [new branch] gh/anijain2305/858/base -> origin/gh/anijain2305/858/base 2025-08-26T20:39:59.4352354Z * [new branch] gh/anijain2305/858/head -> origin/gh/anijain2305/858/head 2025-08-26T20:39:59.4352890Z * [new branch] gh/anijain2305/858/orig -> origin/gh/anijain2305/858/orig 2025-08-26T20:39:59.4353430Z * [new branch] gh/anijain2305/859/base -> origin/gh/anijain2305/859/base 2025-08-26T20:39:59.4354046Z * [new branch] gh/anijain2305/859/head -> origin/gh/anijain2305/859/head 2025-08-26T20:39:59.4354592Z * [new branch] gh/anijain2305/859/orig -> origin/gh/anijain2305/859/orig 2025-08-26T20:39:59.4355133Z * [new branch] gh/anjali411/216/base -> origin/gh/anjali411/216/base 2025-08-26T20:39:59.4355662Z * [new branch] gh/anjali411/216/head -> origin/gh/anjali411/216/head 2025-08-26T20:39:59.4356238Z * [new branch] gh/anjali411/216/orig -> origin/gh/anjali411/216/orig 2025-08-26T20:39:59.4786004Z * [new branch] gh/ankitageorge/13/base -> origin/gh/ankitageorge/13/base 2025-08-26T20:39:59.4786666Z * [new branch] gh/ankitageorge/13/head -> origin/gh/ankitageorge/13/head 2025-08-26T20:39:59.4787227Z * [new branch] gh/ankitageorge/13/orig -> origin/gh/ankitageorge/13/orig 2025-08-26T20:39:59.4787803Z * [new branch] gh/ankitageorge/14/base -> origin/gh/ankitageorge/14/base 2025-08-26T20:39:59.4788354Z * [new branch] gh/ankitageorge/14/head -> origin/gh/ankitageorge/14/head 2025-08-26T20:39:59.4788895Z * [new branch] gh/ankitageorge/14/orig -> origin/gh/ankitageorge/14/orig 2025-08-26T20:39:59.4789445Z * [new branch] gh/ankitageorge/15/base -> origin/gh/ankitageorge/15/base 2025-08-26T20:39:59.4790012Z * [new branch] gh/ankitageorge/15/head -> origin/gh/ankitageorge/15/head 2025-08-26T20:39:59.4790558Z * [new branch] gh/ankitageorge/15/orig -> origin/gh/ankitageorge/15/orig 2025-08-26T20:39:59.4791121Z * [new branch] gh/ankitageorge/16/base -> origin/gh/ankitageorge/16/base 2025-08-26T20:39:59.4791708Z * [new branch] gh/ankitageorge/16/head -> origin/gh/ankitageorge/16/head 2025-08-26T20:39:59.4792310Z * [new branch] gh/ankitageorge/16/orig -> origin/gh/ankitageorge/16/orig 2025-08-26T20:39:59.4792871Z * [new branch] gh/ankitageorge/17/base -> origin/gh/ankitageorge/17/base 2025-08-26T20:39:59.4793421Z * [new branch] gh/ankitageorge/17/head -> origin/gh/ankitageorge/17/head 2025-08-26T20:39:59.4793972Z * [new branch] gh/ankitageorge/17/orig -> origin/gh/ankitageorge/17/orig 2025-08-26T20:39:59.4794517Z * [new branch] gh/ankitageorge/18/base -> origin/gh/ankitageorge/18/base 2025-08-26T20:39:59.4795074Z * [new branch] gh/ankitageorge/18/head -> origin/gh/ankitageorge/18/head 2025-08-26T20:39:59.4795622Z * [new branch] gh/ankitageorge/18/orig -> origin/gh/ankitageorge/18/orig 2025-08-26T20:39:59.4796168Z * [new branch] gh/ankitageorge/19/base -> origin/gh/ankitageorge/19/base 2025-08-26T20:39:59.4796738Z * [new branch] gh/ankitageorge/19/head -> origin/gh/ankitageorge/19/head 2025-08-26T20:39:59.4797345Z * [new branch] gh/ankitageorge/19/orig -> origin/gh/ankitageorge/19/orig 2025-08-26T20:39:59.4797940Z * [new branch] gh/ankitageorge/20/base -> origin/gh/ankitageorge/20/base 2025-08-26T20:39:59.4798492Z * [new branch] gh/ankitageorge/20/head -> origin/gh/ankitageorge/20/head 2025-08-26T20:39:59.4799044Z * [new branch] gh/ankitageorge/20/orig -> origin/gh/ankitageorge/20/orig 2025-08-26T20:39:59.4799789Z * [new branch] gh/ankitageorge/21/base -> origin/gh/ankitageorge/21/base 2025-08-26T20:39:59.4800337Z * [new branch] gh/ankitageorge/21/head -> origin/gh/ankitageorge/21/head 2025-08-26T20:39:59.4800897Z * [new branch] gh/ankitageorge/21/orig -> origin/gh/ankitageorge/21/orig 2025-08-26T20:39:59.4801436Z * [new branch] gh/anshul-si/1/base -> origin/gh/anshul-si/1/base 2025-08-26T20:39:59.4801948Z * [new branch] gh/anshul-si/1/head -> origin/gh/anshul-si/1/head 2025-08-26T20:39:59.4803194Z * [new branch] gh/anshul-si/10/base -> origin/gh/anshul-si/10/base 2025-08-26T20:39:59.4803773Z * [new branch] gh/anshul-si/10/head -> origin/gh/anshul-si/10/head 2025-08-26T20:39:59.4804290Z * [new branch] gh/anshul-si/10/orig -> origin/gh/anshul-si/10/orig 2025-08-26T20:39:59.4804819Z * [new branch] gh/anshul-si/11/base -> origin/gh/anshul-si/11/base 2025-08-26T20:39:59.4805322Z * [new branch] gh/anshul-si/11/head -> origin/gh/anshul-si/11/head 2025-08-26T20:39:59.4805834Z * [new branch] gh/anshul-si/11/orig -> origin/gh/anshul-si/11/orig 2025-08-26T20:39:59.4806336Z * [new branch] gh/anshul-si/12/base -> origin/gh/anshul-si/12/base 2025-08-26T20:39:59.4806849Z * [new branch] gh/anshul-si/12/head -> origin/gh/anshul-si/12/head 2025-08-26T20:39:59.4807360Z * [new branch] gh/anshul-si/12/orig -> origin/gh/anshul-si/12/orig 2025-08-26T20:39:59.4807863Z * [new branch] gh/anshul-si/13/base -> origin/gh/anshul-si/13/base 2025-08-26T20:39:59.4808374Z * [new branch] gh/anshul-si/13/head -> origin/gh/anshul-si/13/head 2025-08-26T20:39:59.4808916Z * [new branch] gh/anshul-si/13/orig -> origin/gh/anshul-si/13/orig 2025-08-26T20:39:59.4809464Z * [new branch] gh/anshul-si/14/base -> origin/gh/anshul-si/14/base 2025-08-26T20:39:59.4809966Z * [new branch] gh/anshul-si/14/head -> origin/gh/anshul-si/14/head 2025-08-26T20:39:59.4810490Z * [new branch] gh/anshul-si/14/orig -> origin/gh/anshul-si/14/orig 2025-08-26T20:39:59.4810989Z * [new branch] gh/anshul-si/15/base -> origin/gh/anshul-si/15/base 2025-08-26T20:39:59.4811492Z * [new branch] gh/anshul-si/15/head -> origin/gh/anshul-si/15/head 2025-08-26T20:39:59.5235370Z * [new branch] gh/anshul-si/15/orig -> origin/gh/anshul-si/15/orig 2025-08-26T20:39:59.5235984Z * [new branch] gh/anshul-si/16/base -> origin/gh/anshul-si/16/base 2025-08-26T20:39:59.5236549Z * [new branch] gh/anshul-si/16/head -> origin/gh/anshul-si/16/head 2025-08-26T20:39:59.5237053Z * [new branch] gh/anshul-si/16/orig -> origin/gh/anshul-si/16/orig 2025-08-26T20:39:59.5237583Z * [new branch] gh/anshul-si/17/base -> origin/gh/anshul-si/17/base 2025-08-26T20:39:59.5238086Z * [new branch] gh/anshul-si/17/head -> origin/gh/anshul-si/17/head 2025-08-26T20:39:59.5238583Z * [new branch] gh/anshul-si/17/orig -> origin/gh/anshul-si/17/orig 2025-08-26T20:39:59.5239087Z * [new branch] gh/anshul-si/18/base -> origin/gh/anshul-si/18/base 2025-08-26T20:39:59.5239587Z * [new branch] gh/anshul-si/18/head -> origin/gh/anshul-si/18/head 2025-08-26T20:39:59.5240101Z * [new branch] gh/anshul-si/18/orig -> origin/gh/anshul-si/18/orig 2025-08-26T20:39:59.5240606Z * [new branch] gh/anshul-si/19/base -> origin/gh/anshul-si/19/base 2025-08-26T20:39:59.5241104Z * [new branch] gh/anshul-si/19/head -> origin/gh/anshul-si/19/head 2025-08-26T20:39:59.5241869Z * [new branch] gh/anshul-si/19/orig -> origin/gh/anshul-si/19/orig 2025-08-26T20:39:59.5242428Z * [new branch] gh/anshul-si/2/base -> origin/gh/anshul-si/2/base 2025-08-26T20:39:59.5242935Z * [new branch] gh/anshul-si/2/head -> origin/gh/anshul-si/2/head 2025-08-26T20:39:59.5243437Z * [new branch] gh/anshul-si/20/base -> origin/gh/anshul-si/20/base 2025-08-26T20:39:59.5243933Z * [new branch] gh/anshul-si/20/head -> origin/gh/anshul-si/20/head 2025-08-26T20:39:59.5244555Z * [new branch] gh/anshul-si/20/orig -> origin/gh/anshul-si/20/orig 2025-08-26T20:39:59.5245056Z * [new branch] gh/anshul-si/21/base -> origin/gh/anshul-si/21/base 2025-08-26T20:39:59.5245564Z * [new branch] gh/anshul-si/21/head -> origin/gh/anshul-si/21/head 2025-08-26T20:39:59.5246074Z * [new branch] gh/anshul-si/21/orig -> origin/gh/anshul-si/21/orig 2025-08-26T20:39:59.5246580Z * [new branch] gh/anshul-si/22/base -> origin/gh/anshul-si/22/base 2025-08-26T20:39:59.5247103Z * [new branch] gh/anshul-si/22/head -> origin/gh/anshul-si/22/head 2025-08-26T20:39:59.5247659Z * [new branch] gh/anshul-si/22/orig -> origin/gh/anshul-si/22/orig 2025-08-26T20:39:59.5248207Z * [new branch] gh/anshul-si/23/base -> origin/gh/anshul-si/23/base 2025-08-26T20:39:59.5248703Z * [new branch] gh/anshul-si/23/head -> origin/gh/anshul-si/23/head 2025-08-26T20:39:59.5249225Z * [new branch] gh/anshul-si/23/orig -> origin/gh/anshul-si/23/orig 2025-08-26T20:39:59.5249726Z * [new branch] gh/anshul-si/24/base -> origin/gh/anshul-si/24/base 2025-08-26T20:39:59.5250236Z * [new branch] gh/anshul-si/24/head -> origin/gh/anshul-si/24/head 2025-08-26T20:39:59.5250742Z * [new branch] gh/anshul-si/24/orig -> origin/gh/anshul-si/24/orig 2025-08-26T20:39:59.5251255Z * [new branch] gh/anshul-si/25/base -> origin/gh/anshul-si/25/base 2025-08-26T20:39:59.5251750Z * [new branch] gh/anshul-si/25/head -> origin/gh/anshul-si/25/head 2025-08-26T20:39:59.5252260Z * [new branch] gh/anshul-si/25/orig -> origin/gh/anshul-si/25/orig 2025-08-26T20:39:59.5252759Z * [new branch] gh/anshul-si/26/base -> origin/gh/anshul-si/26/base 2025-08-26T20:39:59.5253314Z * [new branch] gh/anshul-si/26/head -> origin/gh/anshul-si/26/head 2025-08-26T20:39:59.5253861Z * [new branch] gh/anshul-si/26/orig -> origin/gh/anshul-si/26/orig 2025-08-26T20:39:59.5254364Z * [new branch] gh/anshul-si/27/base -> origin/gh/anshul-si/27/base 2025-08-26T20:39:59.5254872Z * [new branch] gh/anshul-si/27/head -> origin/gh/anshul-si/27/head 2025-08-26T20:39:59.5255369Z * [new branch] gh/anshul-si/27/orig -> origin/gh/anshul-si/27/orig 2025-08-26T20:39:59.5255881Z * [new branch] gh/anshul-si/28/base -> origin/gh/anshul-si/28/base 2025-08-26T20:39:59.5256377Z * [new branch] gh/anshul-si/28/head -> origin/gh/anshul-si/28/head 2025-08-26T20:39:59.5256882Z * [new branch] gh/anshul-si/28/orig -> origin/gh/anshul-si/28/orig 2025-08-26T20:39:59.5257388Z * [new branch] gh/anshul-si/3/base -> origin/gh/anshul-si/3/base 2025-08-26T20:39:59.5257884Z * [new branch] gh/anshul-si/3/head -> origin/gh/anshul-si/3/head 2025-08-26T20:39:59.5258392Z * [new branch] gh/anshul-si/4/base -> origin/gh/anshul-si/4/base 2025-08-26T20:39:59.5258929Z * [new branch] gh/anshul-si/4/head -> origin/gh/anshul-si/4/head 2025-08-26T20:39:59.5259478Z * [new branch] gh/anshul-si/5/base -> origin/gh/anshul-si/5/base 2025-08-26T20:39:59.5695839Z * [new branch] gh/anshul-si/5/head -> origin/gh/anshul-si/5/head 2025-08-26T20:39:59.5696421Z * [new branch] gh/anshul-si/7/base -> origin/gh/anshul-si/7/base 2025-08-26T20:39:59.5697009Z * [new branch] gh/anshul-si/7/head -> origin/gh/anshul-si/7/head 2025-08-26T20:39:59.5697581Z * [new branch] gh/anshul-si/7/orig -> origin/gh/anshul-si/7/orig 2025-08-26T20:39:59.5698082Z * [new branch] gh/anshul-si/8/base -> origin/gh/anshul-si/8/base 2025-08-26T20:39:59.5698778Z * [new branch] gh/anshul-si/8/head -> origin/gh/anshul-si/8/head 2025-08-26T20:39:59.5699279Z * [new branch] gh/anshul-si/8/orig -> origin/gh/anshul-si/8/orig 2025-08-26T20:39:59.5699784Z * [new branch] gh/anshul-si/9/base -> origin/gh/anshul-si/9/base 2025-08-26T20:39:59.5700281Z * [new branch] gh/anshul-si/9/head -> origin/gh/anshul-si/9/head 2025-08-26T20:39:59.5700803Z * [new branch] gh/anshul-si/9/orig -> origin/gh/anshul-si/9/orig 2025-08-26T20:39:59.5701324Z * [new branch] gh/aorenste/132/base -> origin/gh/aorenste/132/base 2025-08-26T20:39:59.5701834Z * [new branch] gh/aorenste/132/head -> origin/gh/aorenste/132/head 2025-08-26T20:39:59.5702350Z * [new branch] gh/aorenste/237/base -> origin/gh/aorenste/237/base 2025-08-26T20:39:59.5702855Z * [new branch] gh/aorenste/237/head -> origin/gh/aorenste/237/head 2025-08-26T20:39:59.5703367Z * [new branch] gh/aorenste/237/orig -> origin/gh/aorenste/237/orig 2025-08-26T20:39:59.5703887Z * [new branch] gh/aorenste/238/base -> origin/gh/aorenste/238/base 2025-08-26T20:39:59.5704389Z * [new branch] gh/aorenste/238/head -> origin/gh/aorenste/238/head 2025-08-26T20:39:59.5704904Z * [new branch] gh/aorenste/238/orig -> origin/gh/aorenste/238/orig 2025-08-26T20:39:59.5705415Z * [new branch] gh/bdhirsh/650/base -> origin/gh/bdhirsh/650/base 2025-08-26T20:39:59.5705918Z * [new branch] gh/bdhirsh/650/head -> origin/gh/bdhirsh/650/head 2025-08-26T20:39:59.5706504Z * [new branch] gh/bdhirsh/650/orig -> origin/gh/bdhirsh/650/orig 2025-08-26T20:39:59.5707001Z * [new branch] gh/bdhirsh/656/base -> origin/gh/bdhirsh/656/base 2025-08-26T20:39:59.5707515Z * [new branch] gh/bdhirsh/656/head -> origin/gh/bdhirsh/656/head 2025-08-26T20:39:59.5708019Z * [new branch] gh/bdhirsh/657/base -> origin/gh/bdhirsh/657/base 2025-08-26T20:39:59.5708528Z * [new branch] gh/bdhirsh/657/head -> origin/gh/bdhirsh/657/head 2025-08-26T20:39:59.5709026Z * [new branch] gh/bdhirsh/663/base -> origin/gh/bdhirsh/663/base 2025-08-26T20:39:59.5709539Z * [new branch] gh/bdhirsh/663/head -> origin/gh/bdhirsh/663/head 2025-08-26T20:39:59.5710047Z * [new branch] gh/bdhirsh/663/orig -> origin/gh/bdhirsh/663/orig 2025-08-26T20:39:59.5710546Z * [new branch] gh/bdhirsh/665/base -> origin/gh/bdhirsh/665/base 2025-08-26T20:39:59.5711053Z * [new branch] gh/bdhirsh/665/head -> origin/gh/bdhirsh/665/head 2025-08-26T20:39:59.5711550Z * [new branch] gh/bdhirsh/665/orig -> origin/gh/bdhirsh/665/orig 2025-08-26T20:39:59.5712061Z * [new branch] gh/bdhirsh/666/base -> origin/gh/bdhirsh/666/base 2025-08-26T20:39:59.5712566Z * [new branch] gh/bdhirsh/666/head -> origin/gh/bdhirsh/666/head 2025-08-26T20:39:59.5713066Z * [new branch] gh/bdhirsh/666/orig -> origin/gh/bdhirsh/666/orig 2025-08-26T20:39:59.5713565Z * [new branch] gh/bdhirsh/667/base -> origin/gh/bdhirsh/667/base 2025-08-26T20:39:59.5714189Z * [new branch] gh/bdhirsh/667/head -> origin/gh/bdhirsh/667/head 2025-08-26T20:39:59.5714700Z * [new branch] gh/bdhirsh/667/orig -> origin/gh/bdhirsh/667/orig 2025-08-26T20:39:59.5715217Z * [new branch] gh/bdhirsh/668/base -> origin/gh/bdhirsh/668/base 2025-08-26T20:39:59.5715717Z * [new branch] gh/bdhirsh/668/head -> origin/gh/bdhirsh/668/head 2025-08-26T20:39:59.5716228Z * [new branch] gh/bdhirsh/668/orig -> origin/gh/bdhirsh/668/orig 2025-08-26T20:39:59.5716861Z * [new branch] gh/benjaminglass1/100/base -> origin/gh/benjaminglass1/100/base 2025-08-26T20:39:59.5717468Z * [new branch] gh/benjaminglass1/100/head -> origin/gh/benjaminglass1/100/head 2025-08-26T20:39:59.5718063Z * [new branch] gh/benjaminglass1/100/orig -> origin/gh/benjaminglass1/100/orig 2025-08-26T20:39:59.5718652Z * [new branch] gh/benjaminglass1/101/base -> origin/gh/benjaminglass1/101/base 2025-08-26T20:39:59.5719251Z * [new branch] gh/benjaminglass1/101/head -> origin/gh/benjaminglass1/101/head 2025-08-26T20:39:59.5719836Z * [new branch] gh/benjaminglass1/101/orig -> origin/gh/benjaminglass1/101/orig 2025-08-26T20:39:59.6124342Z * [new branch] gh/benjaminglass1/102/base -> origin/gh/benjaminglass1/102/base 2025-08-26T20:39:59.6124998Z * [new branch] gh/benjaminglass1/102/head -> origin/gh/benjaminglass1/102/head 2025-08-26T20:39:59.6125613Z * [new branch] gh/benjaminglass1/102/orig -> origin/gh/benjaminglass1/102/orig 2025-08-26T20:39:59.6126230Z * [new branch] gh/benjaminglass1/103/base -> origin/gh/benjaminglass1/103/base 2025-08-26T20:39:59.6126821Z * [new branch] gh/benjaminglass1/103/head -> origin/gh/benjaminglass1/103/head 2025-08-26T20:39:59.6127394Z * [new branch] gh/benjaminglass1/103/orig -> origin/gh/benjaminglass1/103/orig 2025-08-26T20:39:59.6127990Z * [new branch] gh/benjaminglass1/79/base -> origin/gh/benjaminglass1/79/base 2025-08-26T20:39:59.6128556Z * [new branch] gh/benjaminglass1/79/head -> origin/gh/benjaminglass1/79/head 2025-08-26T20:39:59.6129128Z * [new branch] gh/benjaminglass1/79/orig -> origin/gh/benjaminglass1/79/orig 2025-08-26T20:39:59.6129698Z * [new branch] gh/benjaminglass1/86/base -> origin/gh/benjaminglass1/86/base 2025-08-26T20:39:59.6130263Z * [new branch] gh/benjaminglass1/86/head -> origin/gh/benjaminglass1/86/head 2025-08-26T20:39:59.6130838Z * [new branch] gh/benjaminglass1/86/orig -> origin/gh/benjaminglass1/86/orig 2025-08-26T20:39:59.6131405Z * [new branch] gh/benjaminglass1/89/base -> origin/gh/benjaminglass1/89/base 2025-08-26T20:39:59.6131975Z * [new branch] gh/benjaminglass1/89/head -> origin/gh/benjaminglass1/89/head 2025-08-26T20:39:59.6132539Z * [new branch] gh/benjaminglass1/89/orig -> origin/gh/benjaminglass1/89/orig 2025-08-26T20:39:59.6133112Z * [new branch] gh/benjaminglass1/91/base -> origin/gh/benjaminglass1/91/base 2025-08-26T20:39:59.6133678Z * [new branch] gh/benjaminglass1/91/head -> origin/gh/benjaminglass1/91/head 2025-08-26T20:39:59.6134243Z * [new branch] gh/benjaminglass1/91/orig -> origin/gh/benjaminglass1/91/orig 2025-08-26T20:39:59.6134816Z * [new branch] gh/benjaminglass1/93/base -> origin/gh/benjaminglass1/93/base 2025-08-26T20:39:59.6135379Z * [new branch] gh/benjaminglass1/93/head -> origin/gh/benjaminglass1/93/head 2025-08-26T20:39:59.6135948Z * [new branch] gh/benjaminglass1/93/orig -> origin/gh/benjaminglass1/93/orig 2025-08-26T20:39:59.6136519Z * [new branch] gh/benjaminglass1/95/base -> origin/gh/benjaminglass1/95/base 2025-08-26T20:39:59.6137083Z * [new branch] gh/benjaminglass1/95/head -> origin/gh/benjaminglass1/95/head 2025-08-26T20:39:59.6137832Z * [new branch] gh/benjaminglass1/95/orig -> origin/gh/benjaminglass1/95/orig 2025-08-26T20:39:59.6138393Z * [new branch] gh/benjaminglass1/97/base -> origin/gh/benjaminglass1/97/base 2025-08-26T20:39:59.6138965Z * [new branch] gh/benjaminglass1/97/head -> origin/gh/benjaminglass1/97/head 2025-08-26T20:39:59.6139541Z * [new branch] gh/benjaminglass1/97/orig -> origin/gh/benjaminglass1/97/orig 2025-08-26T20:39:59.6140209Z * [new branch] gh/benjaminglass1/98/base -> origin/gh/benjaminglass1/98/base 2025-08-26T20:39:59.6140785Z * [new branch] gh/benjaminglass1/98/head -> origin/gh/benjaminglass1/98/head 2025-08-26T20:39:59.6141350Z * [new branch] gh/benjaminglass1/98/orig -> origin/gh/benjaminglass1/98/orig 2025-08-26T20:39:59.6141930Z * [new branch] gh/benjaminglass1/99/base -> origin/gh/benjaminglass1/99/base 2025-08-26T20:39:59.6142514Z * [new branch] gh/benjaminglass1/99/head -> origin/gh/benjaminglass1/99/head 2025-08-26T20:39:59.6143081Z * [new branch] gh/benjaminglass1/99/orig -> origin/gh/benjaminglass1/99/orig 2025-08-26T20:39:59.6143643Z * [new branch] gh/bobrenjc93/514/base -> origin/gh/bobrenjc93/514/base 2025-08-26T20:39:59.6144175Z * [new branch] gh/bobrenjc93/514/head -> origin/gh/bobrenjc93/514/head 2025-08-26T20:39:59.6144712Z * [new branch] gh/bobrenjc93/514/orig -> origin/gh/bobrenjc93/514/orig 2025-08-26T20:39:59.6145241Z * [new branch] gh/bobrenjc93/521/base -> origin/gh/bobrenjc93/521/base 2025-08-26T20:39:59.6145776Z * [new branch] gh/bobrenjc93/521/head -> origin/gh/bobrenjc93/521/head 2025-08-26T20:39:59.6146377Z * [new branch] gh/bobrenjc93/521/orig -> origin/gh/bobrenjc93/521/orig 2025-08-26T20:39:59.6146915Z * [new branch] gh/bobrenjc93/522/base -> origin/gh/bobrenjc93/522/base 2025-08-26T20:39:59.6147451Z * [new branch] gh/bobrenjc93/522/head -> origin/gh/bobrenjc93/522/head 2025-08-26T20:39:59.6147975Z * [new branch] gh/bobrenjc93/522/orig -> origin/gh/bobrenjc93/522/orig 2025-08-26T20:39:59.6148512Z * [new branch] gh/bobrenjc93/525/base -> origin/gh/bobrenjc93/525/base 2025-08-26T20:39:59.6149052Z * [new branch] gh/bobrenjc93/525/head -> origin/gh/bobrenjc93/525/head 2025-08-26T20:39:59.6589899Z * [new branch] gh/bobrenjc93/525/orig -> origin/gh/bobrenjc93/525/orig 2025-08-26T20:39:59.6590500Z * [new branch] gh/bobrenjc93/526/base -> origin/gh/bobrenjc93/526/base 2025-08-26T20:39:59.6591041Z * [new branch] gh/bobrenjc93/526/head -> origin/gh/bobrenjc93/526/head 2025-08-26T20:39:59.6591572Z * [new branch] gh/bobrenjc93/526/orig -> origin/gh/bobrenjc93/526/orig 2025-08-26T20:39:59.6592135Z * [new branch] gh/bobrenjc93/527/base -> origin/gh/bobrenjc93/527/base 2025-08-26T20:39:59.6592660Z * [new branch] gh/bobrenjc93/527/head -> origin/gh/bobrenjc93/527/head 2025-08-26T20:39:59.6593197Z * [new branch] gh/bobrenjc93/527/orig -> origin/gh/bobrenjc93/527/orig 2025-08-26T20:39:59.6593729Z * [new branch] gh/bobrenjc93/528/base -> origin/gh/bobrenjc93/528/base 2025-08-26T20:39:59.6594253Z * [new branch] gh/bobrenjc93/528/head -> origin/gh/bobrenjc93/528/head 2025-08-26T20:39:59.6594866Z * [new branch] gh/bobrenjc93/528/orig -> origin/gh/bobrenjc93/528/orig 2025-08-26T20:39:59.6595386Z * [new branch] gh/bobrenjc93/529/base -> origin/gh/bobrenjc93/529/base 2025-08-26T20:39:59.6595916Z * [new branch] gh/bobrenjc93/529/head -> origin/gh/bobrenjc93/529/head 2025-08-26T20:39:59.6596634Z * [new branch] gh/bobrenjc93/529/orig -> origin/gh/bobrenjc93/529/orig 2025-08-26T20:39:59.6597156Z * [new branch] gh/bobrenjc93/535/base -> origin/gh/bobrenjc93/535/base 2025-08-26T20:39:59.6597692Z * [new branch] gh/bobrenjc93/535/head -> origin/gh/bobrenjc93/535/head 2025-08-26T20:39:59.6598213Z * [new branch] gh/bobrenjc93/535/orig -> origin/gh/bobrenjc93/535/orig 2025-08-26T20:39:59.6598750Z * [new branch] gh/bobrenjc93/537/base -> origin/gh/bobrenjc93/537/base 2025-08-26T20:39:59.6599495Z * [new branch] gh/bobrenjc93/537/head -> origin/gh/bobrenjc93/537/head 2025-08-26T20:39:59.6600123Z * [new branch] gh/bobrenjc93/537/orig -> origin/gh/bobrenjc93/537/orig 2025-08-26T20:39:59.6600653Z * [new branch] gh/bobrenjc93/538/base -> origin/gh/bobrenjc93/538/base 2025-08-26T20:39:59.6601180Z * [new branch] gh/bobrenjc93/538/head -> origin/gh/bobrenjc93/538/head 2025-08-26T20:39:59.6601716Z * [new branch] gh/bobrenjc93/538/orig -> origin/gh/bobrenjc93/538/orig 2025-08-26T20:39:59.6602242Z * [new branch] gh/bobrenjc93/539/base -> origin/gh/bobrenjc93/539/base 2025-08-26T20:39:59.6602775Z * [new branch] gh/bobrenjc93/539/head -> origin/gh/bobrenjc93/539/head 2025-08-26T20:39:59.6603307Z * [new branch] gh/bobrenjc93/539/orig -> origin/gh/bobrenjc93/539/orig 2025-08-26T20:39:59.6603837Z * [new branch] gh/bobrenjc93/540/base -> origin/gh/bobrenjc93/540/base 2025-08-26T20:39:59.6604367Z * [new branch] gh/bobrenjc93/540/head -> origin/gh/bobrenjc93/540/head 2025-08-26T20:39:59.6604891Z * [new branch] gh/bobrenjc93/540/orig -> origin/gh/bobrenjc93/540/orig 2025-08-26T20:39:59.6605422Z * [new branch] gh/bobrenjc93/541/base -> origin/gh/bobrenjc93/541/base 2025-08-26T20:39:59.6606006Z * [new branch] gh/bobrenjc93/541/head -> origin/gh/bobrenjc93/541/head 2025-08-26T20:39:59.6606545Z * [new branch] gh/bobrenjc93/541/orig -> origin/gh/bobrenjc93/541/orig 2025-08-26T20:39:59.6607081Z * [new branch] gh/bobrenjc93/542/base -> origin/gh/bobrenjc93/542/base 2025-08-26T20:39:59.6607600Z * [new branch] gh/bobrenjc93/542/head -> origin/gh/bobrenjc93/542/head 2025-08-26T20:39:59.6608129Z * [new branch] gh/bobrenjc93/542/orig -> origin/gh/bobrenjc93/542/orig 2025-08-26T20:39:59.6608667Z * [new branch] gh/bobrenjc93/543/base -> origin/gh/bobrenjc93/543/base 2025-08-26T20:39:59.6609191Z * [new branch] gh/bobrenjc93/543/head -> origin/gh/bobrenjc93/543/head 2025-08-26T20:39:59.6609724Z * [new branch] gh/bobrenjc93/543/orig -> origin/gh/bobrenjc93/543/orig 2025-08-26T20:39:59.6610245Z * [new branch] gh/bobrenjc93/544/base -> origin/gh/bobrenjc93/544/base 2025-08-26T20:39:59.6610783Z * [new branch] gh/bobrenjc93/544/head -> origin/gh/bobrenjc93/544/head 2025-08-26T20:39:59.6611315Z * [new branch] gh/bobrenjc93/544/orig -> origin/gh/bobrenjc93/544/orig 2025-08-26T20:39:59.6611840Z * [new branch] gh/bobrenjc93/545/base -> origin/gh/bobrenjc93/545/base 2025-08-26T20:39:59.6612423Z * [new branch] gh/bobrenjc93/545/head -> origin/gh/bobrenjc93/545/head 2025-08-26T20:39:59.6612948Z * [new branch] gh/bobrenjc93/545/orig -> origin/gh/bobrenjc93/545/orig 2025-08-26T20:39:59.6613489Z * [new branch] gh/bobrenjc93/546/base -> origin/gh/bobrenjc93/546/base 2025-08-26T20:39:59.6614016Z * [new branch] gh/bobrenjc93/546/head -> origin/gh/bobrenjc93/546/head 2025-08-26T20:39:59.6614547Z * [new branch] gh/bobrenjc93/546/orig -> origin/gh/bobrenjc93/546/orig 2025-08-26T20:39:59.7075168Z * [new branch] gh/bobrenjc93/547/base -> origin/gh/bobrenjc93/547/base 2025-08-26T20:39:59.7075972Z * [new branch] gh/bobrenjc93/547/head -> origin/gh/bobrenjc93/547/head 2025-08-26T20:39:59.7076512Z * [new branch] gh/bobrenjc93/547/orig -> origin/gh/bobrenjc93/547/orig 2025-08-26T20:39:59.7077039Z * [new branch] gh/bobrenjc93/548/base -> origin/gh/bobrenjc93/548/base 2025-08-26T20:39:59.7077557Z * [new branch] gh/bobrenjc93/548/head -> origin/gh/bobrenjc93/548/head 2025-08-26T20:39:59.7078227Z * [new branch] gh/bobrenjc93/548/orig -> origin/gh/bobrenjc93/548/orig 2025-08-26T20:39:59.7078749Z * [new branch] gh/bobrenjc93/549/base -> origin/gh/bobrenjc93/549/base 2025-08-26T20:39:59.7079277Z * [new branch] gh/bobrenjc93/549/head -> origin/gh/bobrenjc93/549/head 2025-08-26T20:39:59.7079829Z * [new branch] gh/bobrenjc93/549/orig -> origin/gh/bobrenjc93/549/orig 2025-08-26T20:39:59.7080346Z * [new branch] gh/bobrenjc93/550/base -> origin/gh/bobrenjc93/550/base 2025-08-26T20:39:59.7080865Z * [new branch] gh/bobrenjc93/550/head -> origin/gh/bobrenjc93/550/head 2025-08-26T20:39:59.7081375Z * [new branch] gh/bobrenjc93/550/orig -> origin/gh/bobrenjc93/550/orig 2025-08-26T20:39:59.7081918Z * [new branch] gh/bobrenjc93/551/base -> origin/gh/bobrenjc93/551/base 2025-08-26T20:39:59.7082438Z * [new branch] gh/bobrenjc93/551/head -> origin/gh/bobrenjc93/551/head 2025-08-26T20:39:59.7082951Z * [new branch] gh/bobrenjc93/551/orig -> origin/gh/bobrenjc93/551/orig 2025-08-26T20:39:59.7083500Z * [new branch] gh/briancoutinho/2/base -> origin/gh/briancoutinho/2/base 2025-08-26T20:39:59.7084057Z * [new branch] gh/briancoutinho/2/head -> origin/gh/briancoutinho/2/head 2025-08-26T20:39:59.7084567Z * [new branch] gh/c00w/23/base -> origin/gh/c00w/23/base 2025-08-26T20:39:59.7085038Z * [new branch] gh/c00w/23/head -> origin/gh/c00w/23/head 2025-08-26T20:39:59.7085498Z * [new branch] gh/c00w/38/base -> origin/gh/c00w/38/base 2025-08-26T20:39:59.7085954Z * [new branch] gh/c00w/38/head -> origin/gh/c00w/38/head 2025-08-26T20:39:59.7086395Z * [new branch] gh/c00w/38/orig -> origin/gh/c00w/38/orig 2025-08-26T20:39:59.7086846Z * [new branch] gh/c00w/48/base -> origin/gh/c00w/48/base 2025-08-26T20:39:59.7087296Z * [new branch] gh/c00w/48/head -> origin/gh/c00w/48/head 2025-08-26T20:39:59.7087747Z * [new branch] gh/c00w/48/orig -> origin/gh/c00w/48/orig 2025-08-26T20:39:59.7088203Z * [new branch] gh/c00w/51/base -> origin/gh/c00w/51/base 2025-08-26T20:39:59.7088639Z * [new branch] gh/c00w/51/head -> origin/gh/c00w/51/head 2025-08-26T20:39:59.7089096Z * [new branch] gh/c00w/51/orig -> origin/gh/c00w/51/orig 2025-08-26T20:39:59.7089553Z * [new branch] gh/c00w/52/base -> origin/gh/c00w/52/base 2025-08-26T20:39:59.7089995Z * [new branch] gh/c00w/52/head -> origin/gh/c00w/52/head 2025-08-26T20:39:59.7090439Z * [new branch] gh/c00w/52/orig -> origin/gh/c00w/52/orig 2025-08-26T20:39:59.7090880Z * [new branch] gh/c00w/53/base -> origin/gh/c00w/53/base 2025-08-26T20:39:59.7091330Z * [new branch] gh/c00w/53/head -> origin/gh/c00w/53/head 2025-08-26T20:39:59.7091779Z * [new branch] gh/c00w/53/orig -> origin/gh/c00w/53/orig 2025-08-26T20:39:59.7092215Z * [new branch] gh/c00w/54/base -> origin/gh/c00w/54/base 2025-08-26T20:39:59.7092668Z * [new branch] gh/c00w/54/head -> origin/gh/c00w/54/head 2025-08-26T20:39:59.7093223Z * [new branch] gh/c00w/54/orig -> origin/gh/c00w/54/orig 2025-08-26T20:39:59.7093693Z * [new branch] gh/c00w/55/base -> origin/gh/c00w/55/base 2025-08-26T20:39:59.7094136Z * [new branch] gh/c00w/55/head -> origin/gh/c00w/55/head 2025-08-26T20:39:59.7094598Z * [new branch] gh/c00w/55/orig -> origin/gh/c00w/55/orig 2025-08-26T20:39:59.7095100Z * [new branch] gh/chenmillie/1/base -> origin/gh/chenmillie/1/base 2025-08-26T20:39:59.7095706Z * [new branch] gh/chenmillie/1/head -> origin/gh/chenmillie/1/head 2025-08-26T20:39:59.7096229Z * [new branch] gh/chenmillie/1/orig -> origin/gh/chenmillie/1/orig 2025-08-26T20:39:59.7096729Z * [new branch] gh/clee2000/1/base -> origin/gh/clee2000/1/base 2025-08-26T20:39:59.7097225Z * [new branch] gh/clee2000/1/head -> origin/gh/clee2000/1/head 2025-08-26T20:39:59.7097723Z * [new branch] gh/clee2000/1/orig -> origin/gh/clee2000/1/orig 2025-08-26T20:39:59.7098240Z * [new branch] gh/coconutruben/1/base -> origin/gh/coconutruben/1/base 2025-08-26T20:39:59.7528017Z * [new branch] gh/coconutruben/1/head -> origin/gh/coconutruben/1/head 2025-08-26T20:39:59.7528624Z * [new branch] gh/coconutruben/11/base -> origin/gh/coconutruben/11/base 2025-08-26T20:39:59.7529182Z * [new branch] gh/coconutruben/11/head -> origin/gh/coconutruben/11/head 2025-08-26T20:39:59.7529775Z * [new branch] gh/coconutruben/11/orig -> origin/gh/coconutruben/11/orig 2025-08-26T20:39:59.7530322Z * [new branch] gh/coconutruben/12/base -> origin/gh/coconutruben/12/base 2025-08-26T20:39:59.7530865Z * [new branch] gh/coconutruben/12/head -> origin/gh/coconutruben/12/head 2025-08-26T20:39:59.7531420Z * [new branch] gh/coconutruben/12/orig -> origin/gh/coconutruben/12/orig 2025-08-26T20:39:59.7531962Z * [new branch] gh/coconutruben/13/base -> origin/gh/coconutruben/13/base 2025-08-26T20:39:59.7532508Z * [new branch] gh/coconutruben/13/head -> origin/gh/coconutruben/13/head 2025-08-26T20:39:59.7533042Z * [new branch] gh/coconutruben/13/orig -> origin/gh/coconutruben/13/orig 2025-08-26T20:39:59.7533588Z * [new branch] gh/coconutruben/14/base -> origin/gh/coconutruben/14/base 2025-08-26T20:39:59.7534130Z * [new branch] gh/coconutruben/14/head -> origin/gh/coconutruben/14/head 2025-08-26T20:39:59.7534674Z * [new branch] gh/coconutruben/14/orig -> origin/gh/coconutruben/14/orig 2025-08-26T20:39:59.7535218Z * [new branch] gh/coconutruben/15/base -> origin/gh/coconutruben/15/base 2025-08-26T20:39:59.7535751Z * [new branch] gh/coconutruben/15/head -> origin/gh/coconutruben/15/head 2025-08-26T20:39:59.7536298Z * [new branch] gh/coconutruben/15/orig -> origin/gh/coconutruben/15/orig 2025-08-26T20:39:59.7536835Z * [new branch] gh/coconutruben/16/base -> origin/gh/coconutruben/16/base 2025-08-26T20:39:59.7537386Z * [new branch] gh/coconutruben/16/head -> origin/gh/coconutruben/16/head 2025-08-26T20:39:59.7537926Z * [new branch] gh/coconutruben/16/orig -> origin/gh/coconutruben/16/orig 2025-08-26T20:39:59.7538470Z * [new branch] gh/coconutruben/17/base -> origin/gh/coconutruben/17/base 2025-08-26T20:39:59.7539013Z * [new branch] gh/coconutruben/17/head -> origin/gh/coconutruben/17/head 2025-08-26T20:39:59.7539548Z * [new branch] gh/coconutruben/17/orig -> origin/gh/coconutruben/17/orig 2025-08-26T20:39:59.7540092Z * [new branch] gh/coconutruben/18/base -> origin/gh/coconutruben/18/base 2025-08-26T20:39:59.7540844Z * [new branch] gh/coconutruben/18/head -> origin/gh/coconutruben/18/head 2025-08-26T20:39:59.7541379Z * [new branch] gh/coconutruben/18/orig -> origin/gh/coconutruben/18/orig 2025-08-26T20:39:59.7541933Z * [new branch] gh/coconutruben/19/base -> origin/gh/coconutruben/19/base 2025-08-26T20:39:59.7542470Z * [new branch] gh/coconutruben/19/head -> origin/gh/coconutruben/19/head 2025-08-26T20:39:59.7543021Z * [new branch] gh/coconutruben/19/orig -> origin/gh/coconutruben/19/orig 2025-08-26T20:39:59.7543689Z * [new branch] gh/coconutruben/20/base -> origin/gh/coconutruben/20/base 2025-08-26T20:39:59.7544234Z * [new branch] gh/coconutruben/20/head -> origin/gh/coconutruben/20/head 2025-08-26T20:39:59.7544790Z * [new branch] gh/coconutruben/20/orig -> origin/gh/coconutruben/20/orig 2025-08-26T20:39:59.7545335Z * [new branch] gh/coconutruben/21/base -> origin/gh/coconutruben/21/base 2025-08-26T20:39:59.7545890Z * [new branch] gh/coconutruben/21/head -> origin/gh/coconutruben/21/head 2025-08-26T20:39:59.7546504Z * [new branch] gh/coconutruben/21/orig -> origin/gh/coconutruben/21/orig 2025-08-26T20:39:59.7547042Z * [new branch] gh/coconutruben/22/base -> origin/gh/coconutruben/22/base 2025-08-26T20:39:59.7547594Z * [new branch] gh/coconutruben/22/head -> origin/gh/coconutruben/22/head 2025-08-26T20:39:59.7548138Z * [new branch] gh/coconutruben/22/orig -> origin/gh/coconutruben/22/orig 2025-08-26T20:39:59.7548700Z * [new branch] gh/coconutruben/23/base -> origin/gh/coconutruben/23/base 2025-08-26T20:39:59.7549244Z * [new branch] gh/coconutruben/23/head -> origin/gh/coconutruben/23/head 2025-08-26T20:39:59.7549795Z * [new branch] gh/coconutruben/23/orig -> origin/gh/coconutruben/23/orig 2025-08-26T20:39:59.7550347Z * [new branch] gh/coconutruben/24/base -> origin/gh/coconutruben/24/base 2025-08-26T20:39:59.7550883Z * [new branch] gh/coconutruben/24/head -> origin/gh/coconutruben/24/head 2025-08-26T20:39:59.7551428Z * [new branch] gh/coconutruben/24/orig -> origin/gh/coconutruben/24/orig 2025-08-26T20:39:59.7551967Z * [new branch] gh/coconutruben/25/base -> origin/gh/coconutruben/25/base 2025-08-26T20:39:59.7552518Z * [new branch] gh/coconutruben/25/head -> origin/gh/coconutruben/25/head 2025-08-26T20:39:59.7977760Z * [new branch] gh/coconutruben/25/orig -> origin/gh/coconutruben/25/orig 2025-08-26T20:39:59.7978361Z * [new branch] gh/coconutruben/26/base -> origin/gh/coconutruben/26/base 2025-08-26T20:39:59.7978923Z * [new branch] gh/coconutruben/26/head -> origin/gh/coconutruben/26/head 2025-08-26T20:39:59.7979463Z * [new branch] gh/coconutruben/26/orig -> origin/gh/coconutruben/26/orig 2025-08-26T20:39:59.7980030Z * [new branch] gh/coconutruben/27/base -> origin/gh/coconutruben/27/base 2025-08-26T20:39:59.7980580Z * [new branch] gh/coconutruben/27/head -> origin/gh/coconutruben/27/head 2025-08-26T20:39:59.7981113Z * [new branch] gh/coconutruben/27/orig -> origin/gh/coconutruben/27/orig 2025-08-26T20:39:59.7981657Z * [new branch] gh/coconutruben/28/base -> origin/gh/coconutruben/28/base 2025-08-26T20:39:59.7982221Z * [new branch] gh/coconutruben/28/head -> origin/gh/coconutruben/28/head 2025-08-26T20:39:59.7982759Z * [new branch] gh/coconutruben/28/orig -> origin/gh/coconutruben/28/orig 2025-08-26T20:39:59.7983303Z * [new branch] gh/coconutruben/29/base -> origin/gh/coconutruben/29/base 2025-08-26T20:39:59.7983842Z * [new branch] gh/coconutruben/29/head -> origin/gh/coconutruben/29/head 2025-08-26T20:39:59.7984600Z * [new branch] gh/coconutruben/29/orig -> origin/gh/coconutruben/29/orig 2025-08-26T20:39:59.7985156Z * [new branch] gh/coconutruben/30/base -> origin/gh/coconutruben/30/base 2025-08-26T20:39:59.7985700Z * [new branch] gh/coconutruben/30/head -> origin/gh/coconutruben/30/head 2025-08-26T20:39:59.7986298Z * [new branch] gh/coconutruben/30/orig -> origin/gh/coconutruben/30/orig 2025-08-26T20:39:59.7986835Z * [new branch] gh/coconutruben/31/base -> origin/gh/coconutruben/31/base 2025-08-26T20:39:59.7987511Z * [new branch] gh/coconutruben/31/head -> origin/gh/coconutruben/31/head 2025-08-26T20:39:59.7988066Z * [new branch] gh/coconutruben/31/orig -> origin/gh/coconutruben/31/orig 2025-08-26T20:39:59.7988605Z * [new branch] gh/coconutruben/32/base -> origin/gh/coconutruben/32/base 2025-08-26T20:39:59.7989149Z * [new branch] gh/coconutruben/32/head -> origin/gh/coconutruben/32/head 2025-08-26T20:39:59.7989684Z * [new branch] gh/coconutruben/32/orig -> origin/gh/coconutruben/32/orig 2025-08-26T20:39:59.7990231Z * [new branch] gh/coconutruben/33/base -> origin/gh/coconutruben/33/base 2025-08-26T20:39:59.7990770Z * [new branch] gh/coconutruben/33/head -> origin/gh/coconutruben/33/head 2025-08-26T20:39:59.7991313Z * [new branch] gh/coconutruben/33/orig -> origin/gh/coconutruben/33/orig 2025-08-26T20:39:59.7991861Z * [new branch] gh/coconutruben/34/base -> origin/gh/coconutruben/34/base 2025-08-26T20:39:59.7992392Z * [new branch] gh/coconutruben/34/head -> origin/gh/coconutruben/34/head 2025-08-26T20:39:59.7992932Z * [new branch] gh/coconutruben/34/orig -> origin/gh/coconutruben/34/orig 2025-08-26T20:39:59.7993458Z * [new branch] gh/coconutruben/35/base -> origin/gh/coconutruben/35/base 2025-08-26T20:39:59.7994005Z * [new branch] gh/coconutruben/35/head -> origin/gh/coconutruben/35/head 2025-08-26T20:39:59.7994544Z * [new branch] gh/coconutruben/35/orig -> origin/gh/coconutruben/35/orig 2025-08-26T20:39:59.7995080Z * [new branch] gh/coconutruben/36/base -> origin/gh/coconutruben/36/base 2025-08-26T20:39:59.7995699Z * [new branch] gh/coconutruben/36/head -> origin/gh/coconutruben/36/head 2025-08-26T20:39:59.7996269Z * [new branch] gh/coconutruben/36/orig -> origin/gh/coconutruben/36/orig 2025-08-26T20:39:59.7996922Z * [new branch] gh/coconutruben/37/base -> origin/gh/coconutruben/37/base 2025-08-26T20:39:59.7997506Z * [new branch] gh/coconutruben/37/head -> origin/gh/coconutruben/37/head 2025-08-26T20:39:59.7998106Z * [new branch] gh/coconutruben/37/orig -> origin/gh/coconutruben/37/orig 2025-08-26T20:39:59.7998721Z * [new branch] gh/coconutruben/38/base -> origin/gh/coconutruben/38/base 2025-08-26T20:39:59.7999303Z * [new branch] gh/coconutruben/38/head -> origin/gh/coconutruben/38/head 2025-08-26T20:39:59.7999909Z * [new branch] gh/coconutruben/38/orig -> origin/gh/coconutruben/38/orig 2025-08-26T20:39:59.8000473Z * [new branch] gh/coconutruben/39/base -> origin/gh/coconutruben/39/base 2025-08-26T20:39:59.8001093Z * [new branch] gh/coconutruben/39/head -> origin/gh/coconutruben/39/head 2025-08-26T20:39:59.8001691Z * [new branch] gh/coconutruben/39/orig -> origin/gh/coconutruben/39/orig 2025-08-26T20:39:59.8002258Z * [new branch] gh/coconutruben/40/base -> origin/gh/coconutruben/40/base 2025-08-26T20:39:59.8002879Z * [new branch] gh/coconutruben/40/head -> origin/gh/coconutruben/40/head 2025-08-26T20:39:59.8446176Z * [new branch] gh/coconutruben/40/orig -> origin/gh/coconutruben/40/orig 2025-08-26T20:39:59.8447161Z * [new branch] gh/coconutruben/41/base -> origin/gh/coconutruben/41/base 2025-08-26T20:39:59.8447717Z * [new branch] gh/coconutruben/41/head -> origin/gh/coconutruben/41/head 2025-08-26T20:39:59.8448268Z * [new branch] gh/coconutruben/41/orig -> origin/gh/coconutruben/41/orig 2025-08-26T20:39:59.8448811Z * [new branch] gh/coconutruben/42/base -> origin/gh/coconutruben/42/base 2025-08-26T20:39:59.8449363Z * [new branch] gh/coconutruben/42/head -> origin/gh/coconutruben/42/head 2025-08-26T20:39:59.8450035Z * [new branch] gh/coconutruben/42/orig -> origin/gh/coconutruben/42/orig 2025-08-26T20:39:59.8450585Z * [new branch] gh/coconutruben/43/base -> origin/gh/coconutruben/43/base 2025-08-26T20:39:59.8451148Z * [new branch] gh/coconutruben/43/head -> origin/gh/coconutruben/43/head 2025-08-26T20:39:59.8451796Z * [new branch] gh/coconutruben/43/orig -> origin/gh/coconutruben/43/orig 2025-08-26T20:39:59.8452408Z * [new branch] gh/coconutruben/44/base -> origin/gh/coconutruben/44/base 2025-08-26T20:39:59.8452970Z * [new branch] gh/coconutruben/44/head -> origin/gh/coconutruben/44/head 2025-08-26T20:39:59.8453519Z * [new branch] gh/coconutruben/44/orig -> origin/gh/coconutruben/44/orig 2025-08-26T20:39:59.8454079Z * [new branch] gh/coconutruben/45/base -> origin/gh/coconutruben/45/base 2025-08-26T20:39:59.8454630Z * [new branch] gh/coconutruben/45/head -> origin/gh/coconutruben/45/head 2025-08-26T20:39:59.8455191Z * [new branch] gh/coconutruben/45/orig -> origin/gh/coconutruben/45/orig 2025-08-26T20:39:59.8455740Z * [new branch] gh/coconutruben/46/base -> origin/gh/coconutruben/46/base 2025-08-26T20:39:59.8456294Z * [new branch] gh/coconutruben/46/head -> origin/gh/coconutruben/46/head 2025-08-26T20:39:59.8456852Z * [new branch] gh/coconutruben/46/orig -> origin/gh/coconutruben/46/orig 2025-08-26T20:39:59.8457440Z * [new branch] gh/coconutruben/47/base -> origin/gh/coconutruben/47/base 2025-08-26T20:39:59.8458087Z * [new branch] gh/coconutruben/47/head -> origin/gh/coconutruben/47/head 2025-08-26T20:39:59.8458665Z * [new branch] gh/coconutruben/47/orig -> origin/gh/coconutruben/47/orig 2025-08-26T20:39:59.8459204Z * [new branch] gh/coconutruben/48/base -> origin/gh/coconutruben/48/base 2025-08-26T20:39:59.8459771Z * [new branch] gh/coconutruben/48/head -> origin/gh/coconutruben/48/head 2025-08-26T20:39:59.8460315Z * [new branch] gh/coconutruben/48/orig -> origin/gh/coconutruben/48/orig 2025-08-26T20:39:59.8460874Z * [new branch] gh/coconutruben/49/base -> origin/gh/coconutruben/49/base 2025-08-26T20:39:59.8461431Z * [new branch] gh/coconutruben/49/head -> origin/gh/coconutruben/49/head 2025-08-26T20:39:59.8461973Z * [new branch] gh/coconutruben/49/orig -> origin/gh/coconutruben/49/orig 2025-08-26T20:39:59.8462518Z * [new branch] gh/coconutruben/50/base -> origin/gh/coconutruben/50/base 2025-08-26T20:39:59.8463053Z * [new branch] gh/coconutruben/50/head -> origin/gh/coconutruben/50/head 2025-08-26T20:39:59.8463606Z * [new branch] gh/coconutruben/50/orig -> origin/gh/coconutruben/50/orig 2025-08-26T20:39:59.8464152Z * [new branch] gh/coconutruben/51/base -> origin/gh/coconutruben/51/base 2025-08-26T20:39:59.8464708Z * [new branch] gh/coconutruben/51/head -> origin/gh/coconutruben/51/head 2025-08-26T20:39:59.8465251Z * [new branch] gh/coconutruben/51/orig -> origin/gh/coconutruben/51/orig 2025-08-26T20:39:59.8465795Z * [new branch] gh/coconutruben/52/base -> origin/gh/coconutruben/52/base 2025-08-26T20:39:59.8466547Z * [new branch] gh/coconutruben/52/head -> origin/gh/coconutruben/52/head 2025-08-26T20:39:59.8467098Z * [new branch] gh/coconutruben/52/orig -> origin/gh/coconutruben/52/orig 2025-08-26T20:39:59.8467635Z * [new branch] gh/coconutruben/53/base -> origin/gh/coconutruben/53/base 2025-08-26T20:39:59.8468184Z * [new branch] gh/coconutruben/53/head -> origin/gh/coconutruben/53/head 2025-08-26T20:39:59.8468909Z * [new branch] gh/coconutruben/53/orig -> origin/gh/coconutruben/53/orig 2025-08-26T20:39:59.8469521Z * [new branch] gh/coconutruben/54/base -> origin/gh/coconutruben/54/base 2025-08-26T20:39:59.8470068Z * [new branch] gh/coconutruben/54/head -> origin/gh/coconutruben/54/head 2025-08-26T20:39:59.8470625Z * [new branch] gh/coconutruben/54/orig -> origin/gh/coconutruben/54/orig 2025-08-26T20:39:59.8471179Z * [new branch] gh/coconutruben/55/base -> origin/gh/coconutruben/55/base 2025-08-26T20:39:59.8471715Z * [new branch] gh/coconutruben/55/head -> origin/gh/coconutruben/55/head 2025-08-26T20:39:59.8887089Z * [new branch] gh/coconutruben/55/orig -> origin/gh/coconutruben/55/orig 2025-08-26T20:39:59.8887824Z * [new branch] gh/codingwithsurya/12/base -> origin/gh/codingwithsurya/12/base 2025-08-26T20:39:59.8888512Z * [new branch] gh/codingwithsurya/12/head -> origin/gh/codingwithsurya/12/head 2025-08-26T20:39:59.8889213Z * [new branch] gh/codingwithsurya/12/orig -> origin/gh/codingwithsurya/12/orig 2025-08-26T20:39:59.8889839Z * [new branch] gh/codingwithsurya/13/base -> origin/gh/codingwithsurya/13/base 2025-08-26T20:39:59.8890529Z * [new branch] gh/codingwithsurya/13/head -> origin/gh/codingwithsurya/13/head 2025-08-26T20:39:59.8891200Z * [new branch] gh/codingwithsurya/13/orig -> origin/gh/codingwithsurya/13/orig 2025-08-26T20:39:59.8891886Z * [new branch] gh/codingwithsurya/14/base -> origin/gh/codingwithsurya/14/base 2025-08-26T20:39:59.8892524Z * [new branch] gh/codingwithsurya/14/head -> origin/gh/codingwithsurya/14/head 2025-08-26T20:39:59.8893190Z * [new branch] gh/codingwithsurya/14/orig -> origin/gh/codingwithsurya/14/orig 2025-08-26T20:39:59.8893874Z * [new branch] gh/codingwithsurya/15/base -> origin/gh/codingwithsurya/15/base 2025-08-26T20:39:59.8894527Z * [new branch] gh/codingwithsurya/15/head -> origin/gh/codingwithsurya/15/head 2025-08-26T20:39:59.8895106Z * [new branch] gh/codingwithsurya/15/orig -> origin/gh/codingwithsurya/15/orig 2025-08-26T20:39:59.8895696Z * [new branch] gh/codingwithsurya/16/base -> origin/gh/codingwithsurya/16/base 2025-08-26T20:39:59.8896277Z * [new branch] gh/codingwithsurya/16/head -> origin/gh/codingwithsurya/16/head 2025-08-26T20:39:59.8896869Z * [new branch] gh/codingwithsurya/16/orig -> origin/gh/codingwithsurya/16/orig 2025-08-26T20:39:59.8897454Z * [new branch] gh/codingwithsurya/17/base -> origin/gh/codingwithsurya/17/base 2025-08-26T20:39:59.8898035Z * [new branch] gh/codingwithsurya/17/head -> origin/gh/codingwithsurya/17/head 2025-08-26T20:39:59.8898614Z * [new branch] gh/codingwithsurya/17/orig -> origin/gh/codingwithsurya/17/orig 2025-08-26T20:39:59.8899194Z * [new branch] gh/codingwithsurya/18/base -> origin/gh/codingwithsurya/18/base 2025-08-26T20:39:59.8899869Z * [new branch] gh/codingwithsurya/18/head -> origin/gh/codingwithsurya/18/head 2025-08-26T20:39:59.8900504Z * [new branch] gh/codingwithsurya/18/orig -> origin/gh/codingwithsurya/18/orig 2025-08-26T20:39:59.8901082Z * [new branch] gh/codingwithsurya/19/base -> origin/gh/codingwithsurya/19/base 2025-08-26T20:39:59.8901871Z * [new branch] gh/codingwithsurya/19/head -> origin/gh/codingwithsurya/19/head 2025-08-26T20:39:59.8902455Z * [new branch] gh/codingwithsurya/19/orig -> origin/gh/codingwithsurya/19/orig 2025-08-26T20:39:59.8903046Z * [new branch] gh/codingwithsurya/20/base -> origin/gh/codingwithsurya/20/base 2025-08-26T20:39:59.8903647Z * [new branch] gh/codingwithsurya/20/head -> origin/gh/codingwithsurya/20/head 2025-08-26T20:39:59.8904235Z * [new branch] gh/codingwithsurya/20/orig -> origin/gh/codingwithsurya/20/orig 2025-08-26T20:39:59.8904931Z * [new branch] gh/codingwithsurya/21/base -> origin/gh/codingwithsurya/21/base 2025-08-26T20:39:59.8905569Z * [new branch] gh/codingwithsurya/21/head -> origin/gh/codingwithsurya/21/head 2025-08-26T20:39:59.8906341Z * [new branch] gh/codingwithsurya/21/orig -> origin/gh/codingwithsurya/21/orig 2025-08-26T20:39:59.8906918Z * [new branch] gh/colinchan15/1/base -> origin/gh/colinchan15/1/base 2025-08-26T20:39:59.8907447Z * [new branch] gh/colinchan15/1/head -> origin/gh/colinchan15/1/head 2025-08-26T20:39:59.8907990Z * [new branch] gh/colinchan15/2/base -> origin/gh/colinchan15/2/base 2025-08-26T20:39:59.8908504Z * [new branch] gh/colinchan15/2/head -> origin/gh/colinchan15/2/head 2025-08-26T20:39:59.8909040Z * [new branch] gh/colinchan15/3/base -> origin/gh/colinchan15/3/base 2025-08-26T20:39:59.8909559Z * [new branch] gh/colinchan15/3/head -> origin/gh/colinchan15/3/head 2025-08-26T20:39:59.8910092Z * [new branch] gh/colinchan15/4/base -> origin/gh/colinchan15/4/base 2025-08-26T20:39:59.8910609Z * [new branch] gh/colinchan15/4/head -> origin/gh/colinchan15/4/head 2025-08-26T20:39:59.8911130Z * [new branch] gh/colinchan15/5/base -> origin/gh/colinchan15/5/base 2025-08-26T20:39:59.8911702Z * [new branch] gh/colinchan15/5/head -> origin/gh/colinchan15/5/head 2025-08-26T20:39:59.8912265Z * [new branch] gh/colinchan15/6/base -> origin/gh/colinchan15/6/base 2025-08-26T20:39:59.8912851Z * [new branch] gh/colinchan15/6/head -> origin/gh/colinchan15/6/head 2025-08-26T20:39:59.8913410Z * [new branch] gh/davidberard98/382/base -> origin/gh/davidberard98/382/base 2025-08-26T20:39:59.8913980Z * [new branch] gh/davidberard98/382/head -> origin/gh/davidberard98/382/head 2025-08-26T20:39:59.9334512Z * [new branch] gh/davidberard98/382/orig -> origin/gh/davidberard98/382/orig 2025-08-26T20:39:59.9335132Z * [new branch] gh/davidberard98/386/base -> origin/gh/davidberard98/386/base 2025-08-26T20:39:59.9335709Z * [new branch] gh/davidberard98/386/head -> origin/gh/davidberard98/386/head 2025-08-26T20:39:59.9336291Z * [new branch] gh/davidberard98/386/orig -> origin/gh/davidberard98/386/orig 2025-08-26T20:39:59.9336847Z * [new branch] gh/davidberard98/391/base -> origin/gh/davidberard98/391/base 2025-08-26T20:39:59.9337425Z * [new branch] gh/davidberard98/391/head -> origin/gh/davidberard98/391/head 2025-08-26T20:39:59.9337979Z * [new branch] gh/davidberard98/391/orig -> origin/gh/davidberard98/391/orig 2025-08-26T20:39:59.9338537Z * [new branch] gh/davidberard98/392/base -> origin/gh/davidberard98/392/base 2025-08-26T20:39:59.9339106Z * [new branch] gh/davidberard98/392/head -> origin/gh/davidberard98/392/head 2025-08-26T20:39:59.9339720Z * [new branch] gh/davidberard98/392/orig -> origin/gh/davidberard98/392/orig 2025-08-26T20:39:59.9340330Z * [new branch] gh/davidberard98/393/base -> origin/gh/davidberard98/393/base 2025-08-26T20:39:59.9340888Z * [new branch] gh/davidberard98/393/head -> origin/gh/davidberard98/393/head 2025-08-26T20:39:59.9341630Z * [new branch] gh/davidberard98/393/orig -> origin/gh/davidberard98/393/orig 2025-08-26T20:39:59.9342181Z * [new branch] gh/davidberard98/394/base -> origin/gh/davidberard98/394/base 2025-08-26T20:39:59.9342754Z * [new branch] gh/davidberard98/394/head -> origin/gh/davidberard98/394/head 2025-08-26T20:39:59.9343318Z * [new branch] gh/davidberard98/394/orig -> origin/gh/davidberard98/394/orig 2025-08-26T20:39:59.9343984Z * [new branch] gh/davidberard98/395/base -> origin/gh/davidberard98/395/base 2025-08-26T20:39:59.9344562Z * [new branch] gh/davidberard98/395/head -> origin/gh/davidberard98/395/head 2025-08-26T20:39:59.9345126Z * [new branch] gh/davidberard98/395/orig -> origin/gh/davidberard98/395/orig 2025-08-26T20:39:59.9345740Z * [new branch] gh/davidberard98/396/base -> origin/gh/davidberard98/396/base 2025-08-26T20:39:59.9346404Z * [new branch] gh/davidberard98/396/head -> origin/gh/davidberard98/396/head 2025-08-26T20:39:59.9346957Z * [new branch] gh/davidberard98/396/orig -> origin/gh/davidberard98/396/orig 2025-08-26T20:39:59.9347520Z * [new branch] gh/davidberard98/397/base -> origin/gh/davidberard98/397/base 2025-08-26T20:39:59.9348081Z * [new branch] gh/davidberard98/397/head -> origin/gh/davidberard98/397/head 2025-08-26T20:39:59.9348656Z * [new branch] gh/davidberard98/397/orig -> origin/gh/davidberard98/397/orig 2025-08-26T20:39:59.9349228Z * [new branch] gh/davidberard98/398/base -> origin/gh/davidberard98/398/base 2025-08-26T20:39:59.9349781Z * [new branch] gh/davidberard98/398/head -> origin/gh/davidberard98/398/head 2025-08-26T20:39:59.9350350Z * [new branch] gh/davidberard98/398/orig -> origin/gh/davidberard98/398/orig 2025-08-26T20:39:59.9350908Z * [new branch] gh/davidberard98/399/base -> origin/gh/davidberard98/399/base 2025-08-26T20:39:59.9351521Z * [new branch] gh/davidberard98/399/head -> origin/gh/davidberard98/399/head 2025-08-26T20:39:59.9352136Z * [new branch] gh/davidberard98/399/orig -> origin/gh/davidberard98/399/orig 2025-08-26T20:39:59.9352692Z * [new branch] gh/davidberard98/400/base -> origin/gh/davidberard98/400/base 2025-08-26T20:39:59.9353265Z * [new branch] gh/davidberard98/400/head -> origin/gh/davidberard98/400/head 2025-08-26T20:39:59.9353823Z * [new branch] gh/davidberard98/400/orig -> origin/gh/davidberard98/400/orig 2025-08-26T20:39:59.9354395Z * [new branch] gh/davidberard98/401/base -> origin/gh/davidberard98/401/base 2025-08-26T20:39:59.9354943Z * [new branch] gh/davidberard98/401/head -> origin/gh/davidberard98/401/head 2025-08-26T20:39:59.9355510Z * [new branch] gh/davidberard98/401/orig -> origin/gh/davidberard98/401/orig 2025-08-26T20:39:59.9356085Z * [new branch] gh/davidberard98/402/base -> origin/gh/davidberard98/402/base 2025-08-26T20:39:59.9356642Z * [new branch] gh/davidberard98/402/head -> origin/gh/davidberard98/402/head 2025-08-26T20:39:59.9357211Z * [new branch] gh/davidberard98/402/orig -> origin/gh/davidberard98/402/orig 2025-08-26T20:39:59.9357816Z * [new branch] gh/davidberard98/403/base -> origin/gh/davidberard98/403/base 2025-08-26T20:39:59.9358433Z * [new branch] gh/davidberard98/403/head -> origin/gh/davidberard98/403/head 2025-08-26T20:39:59.9359001Z * [new branch] gh/davidberard98/403/orig -> origin/gh/davidberard98/403/orig 2025-08-26T20:39:59.9359555Z * [new branch] gh/desertfire/589/base -> origin/gh/desertfire/589/base 2025-08-26T20:39:59.9802744Z * [new branch] gh/desertfire/589/head -> origin/gh/desertfire/589/head 2025-08-26T20:39:59.9804057Z * [new branch] gh/desertfire/589/orig -> origin/gh/desertfire/589/orig 2025-08-26T20:39:59.9804602Z * [new branch] gh/desertfire/591/base -> origin/gh/desertfire/591/base 2025-08-26T20:39:59.9805192Z * [new branch] gh/desertfire/591/head -> origin/gh/desertfire/591/head 2025-08-26T20:39:59.9805766Z * [new branch] gh/desertfire/591/orig -> origin/gh/desertfire/591/orig 2025-08-26T20:39:59.9806297Z * [new branch] gh/desertfire/592/base -> origin/gh/desertfire/592/base 2025-08-26T20:39:59.9806959Z * [new branch] gh/desertfire/592/head -> origin/gh/desertfire/592/head 2025-08-26T20:39:59.9807490Z * [new branch] gh/desertfire/592/orig -> origin/gh/desertfire/592/orig 2025-08-26T20:39:59.9808027Z * [new branch] gh/desertfire/593/base -> origin/gh/desertfire/593/base 2025-08-26T20:39:59.9808565Z * [new branch] gh/desertfire/593/head -> origin/gh/desertfire/593/head 2025-08-26T20:39:59.9809111Z * [new branch] gh/desertfire/593/orig -> origin/gh/desertfire/593/orig 2025-08-26T20:39:59.9809659Z * [new branch] gh/desertfire/594/base -> origin/gh/desertfire/594/base 2025-08-26T20:39:59.9810183Z * [new branch] gh/desertfire/594/head -> origin/gh/desertfire/594/head 2025-08-26T20:39:59.9810765Z * [new branch] gh/desertfire/594/orig -> origin/gh/desertfire/594/orig 2025-08-26T20:39:59.9811341Z * [new branch] gh/desertfire/595/base -> origin/gh/desertfire/595/base 2025-08-26T20:39:59.9811873Z * [new branch] gh/desertfire/595/head -> origin/gh/desertfire/595/head 2025-08-26T20:39:59.9812409Z * [new branch] gh/desertfire/595/orig -> origin/gh/desertfire/595/orig 2025-08-26T20:39:59.9812934Z * [new branch] gh/desertfire/596/base -> origin/gh/desertfire/596/base 2025-08-26T20:39:59.9813479Z * [new branch] gh/desertfire/596/head -> origin/gh/desertfire/596/head 2025-08-26T20:39:59.9814011Z * [new branch] gh/desertfire/596/orig -> origin/gh/desertfire/596/orig 2025-08-26T20:39:59.9814543Z * [new branch] gh/desertfire/597/base -> origin/gh/desertfire/597/base 2025-08-26T20:39:59.9815073Z * [new branch] gh/desertfire/597/head -> origin/gh/desertfire/597/head 2025-08-26T20:39:59.9815599Z * [new branch] gh/desertfire/597/orig -> origin/gh/desertfire/597/orig 2025-08-26T20:39:59.9816124Z * [new branch] gh/dharakk/1/base -> origin/gh/dharakk/1/base 2025-08-26T20:39:59.9816662Z * [new branch] gh/dharakk/1/head -> origin/gh/dharakk/1/head 2025-08-26T20:39:59.9817204Z * [new branch] gh/dharakk/4/base -> origin/gh/dharakk/4/base 2025-08-26T20:39:59.9817690Z * [new branch] gh/dharakk/4/head -> origin/gh/dharakk/4/head 2025-08-26T20:39:59.9818185Z * [new branch] gh/dharakk/4/orig -> origin/gh/dharakk/4/orig 2025-08-26T20:39:59.9818694Z * [new branch] gh/drisspg/149/base -> origin/gh/drisspg/149/base 2025-08-26T20:39:59.9819195Z * [new branch] gh/drisspg/149/head -> origin/gh/drisspg/149/head 2025-08-26T20:39:59.9819704Z * [new branch] gh/drisspg/149/orig -> origin/gh/drisspg/149/orig 2025-08-26T20:39:59.9820198Z * [new branch] gh/drisspg/150/base -> origin/gh/drisspg/150/base 2025-08-26T20:39:59.9820703Z * [new branch] gh/drisspg/150/head -> origin/gh/drisspg/150/head 2025-08-26T20:39:59.9821220Z * [new branch] gh/drisspg/150/orig -> origin/gh/drisspg/150/orig 2025-08-26T20:39:59.9821712Z * [new branch] gh/drisspg/151/base -> origin/gh/drisspg/151/base 2025-08-26T20:39:59.9822262Z * [new branch] gh/drisspg/151/head -> origin/gh/drisspg/151/head 2025-08-26T20:39:59.9822920Z * [new branch] gh/drisspg/151/orig -> origin/gh/drisspg/151/orig 2025-08-26T20:39:59.9823416Z * [new branch] gh/drisspg/159/base -> origin/gh/drisspg/159/base 2025-08-26T20:39:59.9823926Z * [new branch] gh/drisspg/159/head -> origin/gh/drisspg/159/head 2025-08-26T20:39:59.9824444Z * [new branch] gh/drisspg/159/orig -> origin/gh/drisspg/159/orig 2025-08-26T20:39:59.9825052Z * [new branch] gh/drisspg/166/base -> origin/gh/drisspg/166/base 2025-08-26T20:39:59.9825566Z * [new branch] gh/drisspg/166/head -> origin/gh/drisspg/166/head 2025-08-26T20:39:59.9826120Z * [new branch] gh/drisspg/166/orig -> origin/gh/drisspg/166/orig 2025-08-26T20:39:59.9826629Z * [new branch] gh/drisspg/170/base -> origin/gh/drisspg/170/base 2025-08-26T20:39:59.9827143Z * [new branch] gh/drisspg/170/head -> origin/gh/drisspg/170/head 2025-08-26T20:39:59.9827649Z * [new branch] gh/drisspg/170/orig -> origin/gh/drisspg/170/orig 2025-08-26T20:40:00.0280067Z * [new branch] gh/drisspg/172/base -> origin/gh/drisspg/172/base 2025-08-26T20:40:00.0280632Z * [new branch] gh/drisspg/172/head -> origin/gh/drisspg/172/head 2025-08-26T20:40:00.0281155Z * [new branch] gh/drisspg/172/orig -> origin/gh/drisspg/172/orig 2025-08-26T20:40:00.0281685Z * [new branch] gh/drisspg/173/base -> origin/gh/drisspg/173/base 2025-08-26T20:40:00.0282195Z * [new branch] gh/drisspg/173/head -> origin/gh/drisspg/173/head 2025-08-26T20:40:00.0282696Z * [new branch] gh/drisspg/173/orig -> origin/gh/drisspg/173/orig 2025-08-26T20:40:00.0283245Z * [new branch] gh/drisspg/175/base -> origin/gh/drisspg/175/base 2025-08-26T20:40:00.0283813Z * [new branch] gh/drisspg/175/head -> origin/gh/drisspg/175/head 2025-08-26T20:40:00.0284457Z * [new branch] gh/drisspg/175/orig -> origin/gh/drisspg/175/orig 2025-08-26T20:40:00.0284965Z * [new branch] gh/drisspg/176/base -> origin/gh/drisspg/176/base 2025-08-26T20:40:00.0285463Z * [new branch] gh/drisspg/176/head -> origin/gh/drisspg/176/head 2025-08-26T20:40:00.0285971Z * [new branch] gh/drisspg/176/orig -> origin/gh/drisspg/176/orig 2025-08-26T20:40:00.0286491Z * [new branch] gh/drisspg/177/base -> origin/gh/drisspg/177/base 2025-08-26T20:40:00.0287013Z * [new branch] gh/drisspg/177/head -> origin/gh/drisspg/177/head 2025-08-26T20:40:00.0287520Z * [new branch] gh/drisspg/177/orig -> origin/gh/drisspg/177/orig 2025-08-26T20:40:00.0288046Z * [new branch] gh/drisspg/178/base -> origin/gh/drisspg/178/base 2025-08-26T20:40:00.0288563Z * [new branch] gh/drisspg/178/head -> origin/gh/drisspg/178/head 2025-08-26T20:40:00.0289159Z * [new branch] gh/drisspg/178/orig -> origin/gh/drisspg/178/orig 2025-08-26T20:40:00.0289665Z * [new branch] gh/drisspg/179/base -> origin/gh/drisspg/179/base 2025-08-26T20:40:00.0290200Z * [new branch] gh/drisspg/179/head -> origin/gh/drisspg/179/head 2025-08-26T20:40:00.0290699Z * [new branch] gh/drisspg/179/orig -> origin/gh/drisspg/179/orig 2025-08-26T20:40:00.0291216Z * [new branch] gh/drisspg/180/base -> origin/gh/drisspg/180/base 2025-08-26T20:40:00.0291713Z * [new branch] gh/drisspg/180/head -> origin/gh/drisspg/180/head 2025-08-26T20:40:00.0292213Z * [new branch] gh/drisspg/180/orig -> origin/gh/drisspg/180/orig 2025-08-26T20:40:00.0292743Z * [new branch] gh/drisspg/181/base -> origin/gh/drisspg/181/base 2025-08-26T20:40:00.0293582Z * [new branch] gh/drisspg/181/head -> origin/gh/drisspg/181/head 2025-08-26T20:40:00.0294287Z * [new branch] gh/drisspg/181/orig -> origin/gh/drisspg/181/orig 2025-08-26T20:40:00.0295009Z * [new branch] gh/drisspg/182/base -> origin/gh/drisspg/182/base 2025-08-26T20:40:00.0295565Z * [new branch] gh/drisspg/182/head -> origin/gh/drisspg/182/head 2025-08-26T20:40:00.0296769Z * [new branch] gh/drisspg/183/base -> origin/gh/drisspg/183/base 2025-08-26T20:40:00.0297288Z * [new branch] gh/drisspg/183/head -> origin/gh/drisspg/183/head 2025-08-26T20:40:00.0297808Z * [new branch] gh/drisspg/184/base -> origin/gh/drisspg/184/base 2025-08-26T20:40:00.0298313Z * [new branch] gh/drisspg/184/head -> origin/gh/drisspg/184/head 2025-08-26T20:40:00.0298826Z * [new branch] gh/drisspg/185/base -> origin/gh/drisspg/185/base 2025-08-26T20:40:00.0299331Z * [new branch] gh/drisspg/185/head -> origin/gh/drisspg/185/head 2025-08-26T20:40:00.0299825Z * [new branch] gh/drisspg/186/base -> origin/gh/drisspg/186/base 2025-08-26T20:40:00.0300385Z * [new branch] gh/drisspg/186/head -> origin/gh/drisspg/186/head 2025-08-26T20:40:00.0300940Z * [new branch] gh/drisspg/186/orig -> origin/gh/drisspg/186/orig 2025-08-26T20:40:00.0301442Z * [new branch] gh/drisspg/187/base -> origin/gh/drisspg/187/base 2025-08-26T20:40:00.0301954Z * [new branch] gh/drisspg/187/head -> origin/gh/drisspg/187/head 2025-08-26T20:40:00.0302446Z * [new branch] gh/drisspg/187/orig -> origin/gh/drisspg/187/orig 2025-08-26T20:40:00.0302952Z * [new branch] gh/drisspg/188/base -> origin/gh/drisspg/188/base 2025-08-26T20:40:00.0303452Z * [new branch] gh/drisspg/188/head -> origin/gh/drisspg/188/head 2025-08-26T20:40:00.0303951Z * [new branch] gh/drisspg/188/orig -> origin/gh/drisspg/188/orig 2025-08-26T20:40:00.0304449Z * [new branch] gh/drisspg/189/base -> origin/gh/drisspg/189/base 2025-08-26T20:40:00.0304943Z * [new branch] gh/drisspg/189/head -> origin/gh/drisspg/189/head 2025-08-26T20:40:00.0305447Z * [new branch] gh/drisspg/189/orig -> origin/gh/drisspg/189/orig 2025-08-26T20:40:00.1414450Z * [new branch] gh/dsjohns2/1/base -> origin/gh/dsjohns2/1/base 2025-08-26T20:40:00.1415022Z * [new branch] gh/dsjohns2/1/head -> origin/gh/dsjohns2/1/head 2025-08-26T20:40:00.1415545Z * [new branch] gh/eellison/784/base -> origin/gh/eellison/784/base 2025-08-26T20:40:00.1416080Z * [new branch] gh/eellison/784/head -> origin/gh/eellison/784/head 2025-08-26T20:40:00.1416615Z * [new branch] gh/eellison/784/orig -> origin/gh/eellison/784/orig 2025-08-26T20:40:00.1417124Z * [new branch] gh/eellison/785/base -> origin/gh/eellison/785/base 2025-08-26T20:40:00.1417623Z * [new branch] gh/eellison/785/head -> origin/gh/eellison/785/head 2025-08-26T20:40:00.1418137Z * [new branch] gh/eellison/785/orig -> origin/gh/eellison/785/orig 2025-08-26T20:40:00.1418639Z * [new branch] gh/eellison/789/base -> origin/gh/eellison/789/base 2025-08-26T20:40:00.1419195Z * [new branch] gh/eellison/789/head -> origin/gh/eellison/789/head 2025-08-26T20:40:00.1419757Z * [new branch] gh/eellison/789/orig -> origin/gh/eellison/789/orig 2025-08-26T20:40:00.1420308Z * [new branch] gh/eellison/800/base -> origin/gh/eellison/800/base 2025-08-26T20:40:00.1421085Z * [new branch] gh/eellison/800/head -> origin/gh/eellison/800/head 2025-08-26T20:40:00.1421665Z * [new branch] gh/eellison/800/orig -> origin/gh/eellison/800/orig 2025-08-26T20:40:00.1422225Z * [new branch] gh/eellison/801/base -> origin/gh/eellison/801/base 2025-08-26T20:40:00.1422806Z * [new branch] gh/eellison/801/head -> origin/gh/eellison/801/head 2025-08-26T20:40:00.1423361Z * [new branch] gh/eellison/801/orig -> origin/gh/eellison/801/orig 2025-08-26T20:40:00.1424077Z * [new branch] gh/eellison/802/base -> origin/gh/eellison/802/base 2025-08-26T20:40:00.1424664Z * [new branch] gh/eellison/802/head -> origin/gh/eellison/802/head 2025-08-26T20:40:00.1425226Z * [new branch] gh/eellison/802/orig -> origin/gh/eellison/802/orig 2025-08-26T20:40:00.1425808Z * [new branch] gh/eellison/805/base -> origin/gh/eellison/805/base 2025-08-26T20:40:00.1426412Z * [new branch] gh/eellison/805/head -> origin/gh/eellison/805/head 2025-08-26T20:40:00.1427004Z * [new branch] gh/eellison/805/orig -> origin/gh/eellison/805/orig 2025-08-26T20:40:00.1427550Z * [new branch] gh/eellison/808/base -> origin/gh/eellison/808/base 2025-08-26T20:40:00.1428128Z * [new branch] gh/eellison/808/head -> origin/gh/eellison/808/head 2025-08-26T20:40:00.1428636Z * [new branch] gh/eellison/808/orig -> origin/gh/eellison/808/orig 2025-08-26T20:40:00.1429151Z * [new branch] gh/eellison/809/base -> origin/gh/eellison/809/base 2025-08-26T20:40:00.1429660Z * [new branch] gh/eellison/809/head -> origin/gh/eellison/809/head 2025-08-26T20:40:00.1430167Z * [new branch] gh/eellison/809/orig -> origin/gh/eellison/809/orig 2025-08-26T20:40:00.1430682Z * [new branch] gh/eellison/810/base -> origin/gh/eellison/810/base 2025-08-26T20:40:00.1431182Z * [new branch] gh/eellison/810/head -> origin/gh/eellison/810/head 2025-08-26T20:40:00.1431690Z * [new branch] gh/eellison/810/orig -> origin/gh/eellison/810/orig 2025-08-26T20:40:00.1432194Z * [new branch] gh/eellison/811/base -> origin/gh/eellison/811/base 2025-08-26T20:40:00.1432690Z * [new branch] gh/eellison/811/head -> origin/gh/eellison/811/head 2025-08-26T20:40:00.1433202Z * [new branch] gh/eellison/811/orig -> origin/gh/eellison/811/orig 2025-08-26T20:40:00.1433740Z * [new branch] gh/eellison/812/base -> origin/gh/eellison/812/base 2025-08-26T20:40:00.1434329Z * [new branch] gh/eellison/812/head -> origin/gh/eellison/812/head 2025-08-26T20:40:00.1434870Z * [new branch] gh/eellison/812/orig -> origin/gh/eellison/812/orig 2025-08-26T20:40:00.1435454Z * [new branch] gh/eellison/813/base -> origin/gh/eellison/813/base 2025-08-26T20:40:00.1435969Z * [new branch] gh/eellison/813/head -> origin/gh/eellison/813/head 2025-08-26T20:40:00.1436477Z * [new branch] gh/eellison/813/orig -> origin/gh/eellison/813/orig 2025-08-26T20:40:00.1436986Z * [new branch] gh/eellison/814/base -> origin/gh/eellison/814/base 2025-08-26T20:40:00.1437491Z * [new branch] gh/eellison/814/head -> origin/gh/eellison/814/head 2025-08-26T20:40:00.1438002Z * [new branch] gh/eellison/814/orig -> origin/gh/eellison/814/orig 2025-08-26T20:40:00.1438513Z * [new branch] gh/eellison/815/base -> origin/gh/eellison/815/base 2025-08-26T20:40:00.1439011Z * [new branch] gh/eellison/815/head -> origin/gh/eellison/815/head 2025-08-26T20:40:00.1439519Z * [new branch] gh/eellison/815/orig -> origin/gh/eellison/815/orig 2025-08-26T20:40:00.1892258Z * [new branch] gh/eellison/816/base -> origin/gh/eellison/816/base 2025-08-26T20:40:00.1892846Z * [new branch] gh/eellison/816/head -> origin/gh/eellison/816/head 2025-08-26T20:40:00.1893373Z * [new branch] gh/eellison/816/orig -> origin/gh/eellison/816/orig 2025-08-26T20:40:00.1893932Z * [new branch] gh/eellison/817/base -> origin/gh/eellison/817/base 2025-08-26T20:40:00.1894490Z * [new branch] gh/eellison/817/head -> origin/gh/eellison/817/head 2025-08-26T20:40:00.1895201Z * [new branch] gh/eellison/817/orig -> origin/gh/eellison/817/orig 2025-08-26T20:40:00.1895709Z * [new branch] gh/eellison/818/base -> origin/gh/eellison/818/base 2025-08-26T20:40:00.1896226Z * [new branch] gh/eellison/818/head -> origin/gh/eellison/818/head 2025-08-26T20:40:00.1896732Z * [new branch] gh/eellison/818/orig -> origin/gh/eellison/818/orig 2025-08-26T20:40:00.1897260Z * [new branch] gh/eellison/819/base -> origin/gh/eellison/819/base 2025-08-26T20:40:00.1897766Z * [new branch] gh/eellison/819/head -> origin/gh/eellison/819/head 2025-08-26T20:40:00.1898281Z * [new branch] gh/eellison/819/orig -> origin/gh/eellison/819/orig 2025-08-26T20:40:00.1898789Z * [new branch] gh/eellison/820/base -> origin/gh/eellison/820/base 2025-08-26T20:40:00.1899288Z * [new branch] gh/eellison/820/head -> origin/gh/eellison/820/head 2025-08-26T20:40:00.1899851Z * [new branch] gh/eellison/820/orig -> origin/gh/eellison/820/orig 2025-08-26T20:40:00.1900400Z * [new branch] gh/eellison/821/base -> origin/gh/eellison/821/base 2025-08-26T20:40:00.1900908Z * [new branch] gh/eellison/821/head -> origin/gh/eellison/821/head 2025-08-26T20:40:00.1901409Z * [new branch] gh/eellison/821/orig -> origin/gh/eellison/821/orig 2025-08-26T20:40:00.1901919Z * [new branch] gh/eellison/822/base -> origin/gh/eellison/822/base 2025-08-26T20:40:00.1902421Z * [new branch] gh/eellison/822/head -> origin/gh/eellison/822/head 2025-08-26T20:40:00.1902923Z * [new branch] gh/eellison/822/orig -> origin/gh/eellison/822/orig 2025-08-26T20:40:00.1903417Z * [new branch] gh/etaf/132/base -> origin/gh/etaf/132/base 2025-08-26T20:40:00.1903885Z * [new branch] gh/etaf/132/head -> origin/gh/etaf/132/head 2025-08-26T20:40:00.1904363Z * [new branch] gh/etaf/132/orig -> origin/gh/etaf/132/orig 2025-08-26T20:40:00.1904849Z * [new branch] gh/etaf/138/base -> origin/gh/etaf/138/base 2025-08-26T20:40:00.1905356Z * [new branch] gh/etaf/138/head -> origin/gh/etaf/138/head 2025-08-26T20:40:00.1905887Z * [new branch] gh/etaf/138/orig -> origin/gh/etaf/138/orig 2025-08-26T20:40:00.1906434Z * [new branch] gh/etaf/140/base -> origin/gh/etaf/140/base 2025-08-26T20:40:00.1906911Z * [new branch] gh/etaf/140/head -> origin/gh/etaf/140/head 2025-08-26T20:40:00.1907393Z * [new branch] gh/etaf/140/orig -> origin/gh/etaf/140/orig 2025-08-26T20:40:00.1907856Z * [new branch] gh/etaf/143/base -> origin/gh/etaf/143/base 2025-08-26T20:40:00.1908332Z * [new branch] gh/etaf/143/head -> origin/gh/etaf/143/head 2025-08-26T20:40:00.1908798Z * [new branch] gh/etaf/143/orig -> origin/gh/etaf/143/orig 2025-08-26T20:40:00.1909269Z * [new branch] gh/etaf/147/base -> origin/gh/etaf/147/base 2025-08-26T20:40:00.1909734Z * [new branch] gh/etaf/147/head -> origin/gh/etaf/147/head 2025-08-26T20:40:00.1910345Z * [new branch] gh/etaf/149/base -> origin/gh/etaf/149/base 2025-08-26T20:40:00.1910829Z * [new branch] gh/etaf/149/head -> origin/gh/etaf/149/head 2025-08-26T20:40:00.1911348Z * [new branch] gh/etaf/149/orig -> origin/gh/etaf/149/orig 2025-08-26T20:40:00.1911866Z * [new branch] gh/etaf/150/base -> origin/gh/etaf/150/base 2025-08-26T20:40:00.1912345Z * [new branch] gh/etaf/150/head -> origin/gh/etaf/150/head 2025-08-26T20:40:00.1912907Z * [new branch] gh/etaf/150/orig -> origin/gh/etaf/150/orig 2025-08-26T20:40:00.1913396Z * [new branch] gh/etaf/151/base -> origin/gh/etaf/151/base 2025-08-26T20:40:00.1913861Z * [new branch] gh/etaf/151/head -> origin/gh/etaf/151/head 2025-08-26T20:40:00.1914340Z * [new branch] gh/etaf/151/orig -> origin/gh/etaf/151/orig 2025-08-26T20:40:00.1914811Z * [new branch] gh/etaf/152/base -> origin/gh/etaf/152/base 2025-08-26T20:40:00.1915296Z * [new branch] gh/etaf/152/head -> origin/gh/etaf/152/head 2025-08-26T20:40:00.1915772Z * [new branch] gh/etaf/152/orig -> origin/gh/etaf/152/orig 2025-08-26T20:40:00.1916235Z * [new branch] gh/etaf/153/base -> origin/gh/etaf/153/base 2025-08-26T20:40:00.2338645Z * [new branch] gh/etaf/153/head -> origin/gh/etaf/153/head 2025-08-26T20:40:00.2339217Z * [new branch] gh/etaf/153/orig -> origin/gh/etaf/153/orig 2025-08-26T20:40:00.2339702Z * [new branch] gh/etaf/154/base -> origin/gh/etaf/154/base 2025-08-26T20:40:00.2340178Z * [new branch] gh/etaf/154/head -> origin/gh/etaf/154/head 2025-08-26T20:40:00.2340709Z * [new branch] gh/etaf/154/orig -> origin/gh/etaf/154/orig 2025-08-26T20:40:00.2341272Z * [new branch] gh/etaf/155/base -> origin/gh/etaf/155/base 2025-08-26T20:40:00.2341762Z * [new branch] gh/etaf/155/head -> origin/gh/etaf/155/head 2025-08-26T20:40:00.2342237Z * [new branch] gh/etaf/155/orig -> origin/gh/etaf/155/orig 2025-08-26T20:40:00.2342699Z * [new branch] gh/etaf/156/base -> origin/gh/etaf/156/base 2025-08-26T20:40:00.2343165Z * [new branch] gh/etaf/156/head -> origin/gh/etaf/156/head 2025-08-26T20:40:00.2343633Z * [new branch] gh/etaf/156/orig -> origin/gh/etaf/156/orig 2025-08-26T20:40:00.2344099Z * [new branch] gh/etaf/157/base -> origin/gh/etaf/157/base 2025-08-26T20:40:00.2344564Z * [new branch] gh/etaf/157/head -> origin/gh/etaf/157/head 2025-08-26T20:40:00.2345019Z * [new branch] gh/etaf/157/orig -> origin/gh/etaf/157/orig 2025-08-26T20:40:00.2345494Z * [new branch] gh/etaf/158/base -> origin/gh/etaf/158/base 2025-08-26T20:40:00.2345952Z * [new branch] gh/etaf/158/head -> origin/gh/etaf/158/head 2025-08-26T20:40:00.2346498Z * [new branch] gh/etaf/158/orig -> origin/gh/etaf/158/orig 2025-08-26T20:40:00.2346994Z * [new branch] gh/etaf/159/base -> origin/gh/etaf/159/base 2025-08-26T20:40:00.2347471Z * [new branch] gh/etaf/159/head -> origin/gh/etaf/159/head 2025-08-26T20:40:00.2347947Z * [new branch] gh/etaf/159/orig -> origin/gh/etaf/159/orig 2025-08-26T20:40:00.2348411Z * [new branch] gh/etaf/160/base -> origin/gh/etaf/160/base 2025-08-26T20:40:00.2348882Z * [new branch] gh/etaf/160/head -> origin/gh/etaf/160/head 2025-08-26T20:40:00.2349338Z * [new branch] gh/etaf/160/orig -> origin/gh/etaf/160/orig 2025-08-26T20:40:00.2350002Z * [new branch] gh/etaf/161/base -> origin/gh/etaf/161/base 2025-08-26T20:40:00.2350479Z * [new branch] gh/etaf/161/head -> origin/gh/etaf/161/head 2025-08-26T20:40:00.2350940Z * [new branch] gh/etaf/161/orig -> origin/gh/etaf/161/orig 2025-08-26T20:40:00.2351403Z * [new branch] gh/etaf/162/base -> origin/gh/etaf/162/base 2025-08-26T20:40:00.2351866Z * [new branch] gh/etaf/162/head -> origin/gh/etaf/162/head 2025-08-26T20:40:00.2352502Z * [new branch] gh/etaf/162/orig -> origin/gh/etaf/162/orig 2025-08-26T20:40:00.2353015Z * [new branch] gh/etaf/163/base -> origin/gh/etaf/163/base 2025-08-26T20:40:00.2353476Z * [new branch] gh/etaf/163/head -> origin/gh/etaf/163/head 2025-08-26T20:40:00.2353945Z * [new branch] gh/etaf/163/orig -> origin/gh/etaf/163/orig 2025-08-26T20:40:00.2354415Z * [new branch] gh/etaf/164/base -> origin/gh/etaf/164/base 2025-08-26T20:40:00.2354889Z * [new branch] gh/etaf/164/head -> origin/gh/etaf/164/head 2025-08-26T20:40:00.2355341Z * [new branch] gh/etaf/164/orig -> origin/gh/etaf/164/orig 2025-08-26T20:40:00.2355814Z * [new branch] gh/etaf/165/base -> origin/gh/etaf/165/base 2025-08-26T20:40:00.2356287Z * [new branch] gh/etaf/165/head -> origin/gh/etaf/165/head 2025-08-26T20:40:00.2356754Z * [new branch] gh/etaf/165/orig -> origin/gh/etaf/165/orig 2025-08-26T20:40:00.2357253Z * [new branch] gh/ezyang/2374/base -> origin/gh/ezyang/2374/base 2025-08-26T20:40:00.2357752Z * [new branch] gh/ezyang/2374/head -> origin/gh/ezyang/2374/head 2025-08-26T20:40:00.2358299Z * [new branch] gh/ezyang/2374/orig -> origin/gh/ezyang/2374/orig 2025-08-26T20:40:00.2358849Z * [new branch] gh/ezyang/2973/base -> origin/gh/ezyang/2973/base 2025-08-26T20:40:00.2359336Z * [new branch] gh/ezyang/2973/head -> origin/gh/ezyang/2973/head 2025-08-26T20:40:00.2359844Z * [new branch] gh/ezyang/2973/orig -> origin/gh/ezyang/2973/orig 2025-08-26T20:40:00.2360337Z * [new branch] gh/ezyang/2974/base -> origin/gh/ezyang/2974/base 2025-08-26T20:40:00.2360840Z * [new branch] gh/ezyang/2974/head -> origin/gh/ezyang/2974/head 2025-08-26T20:40:00.2361345Z * [new branch] gh/ezyang/2974/orig -> origin/gh/ezyang/2974/orig 2025-08-26T20:40:00.2361826Z * [new branch] gh/ezyang/3068/base -> origin/gh/ezyang/3068/base 2025-08-26T20:40:00.2788042Z * [new branch] gh/ezyang/3068/head -> origin/gh/ezyang/3068/head 2025-08-26T20:40:00.2788605Z * [new branch] gh/ezyang/3068/orig -> origin/gh/ezyang/3068/orig 2025-08-26T20:40:00.2789148Z * [new branch] gh/ezyang/3071/base -> origin/gh/ezyang/3071/base 2025-08-26T20:40:00.2789654Z * [new branch] gh/ezyang/3071/head -> origin/gh/ezyang/3071/head 2025-08-26T20:40:00.2790256Z * [new branch] gh/ezyang/3071/orig -> origin/gh/ezyang/3071/orig 2025-08-26T20:40:00.2790771Z * [new branch] gh/ezyang/3074/base -> origin/gh/ezyang/3074/base 2025-08-26T20:40:00.2791279Z * [new branch] gh/ezyang/3074/head -> origin/gh/ezyang/3074/head 2025-08-26T20:40:00.2791791Z * [new branch] gh/ezyang/3074/orig -> origin/gh/ezyang/3074/orig 2025-08-26T20:40:00.2792281Z * [new branch] gh/ezyang/3088/base -> origin/gh/ezyang/3088/base 2025-08-26T20:40:00.2792770Z * [new branch] gh/ezyang/3088/head -> origin/gh/ezyang/3088/head 2025-08-26T20:40:00.2793268Z * [new branch] gh/ezyang/3088/orig -> origin/gh/ezyang/3088/orig 2025-08-26T20:40:00.2793931Z * [new branch] gh/ezyang/3092/base -> origin/gh/ezyang/3092/base 2025-08-26T20:40:00.2794431Z * [new branch] gh/ezyang/3092/head -> origin/gh/ezyang/3092/head 2025-08-26T20:40:00.2794932Z * [new branch] gh/ezyang/3092/orig -> origin/gh/ezyang/3092/orig 2025-08-26T20:40:00.2795425Z * [new branch] gh/ezyang/3103/base -> origin/gh/ezyang/3103/base 2025-08-26T20:40:00.2795998Z * [new branch] gh/ezyang/3103/head -> origin/gh/ezyang/3103/head 2025-08-26T20:40:00.2796609Z * [new branch] gh/ezyang/3103/orig -> origin/gh/ezyang/3103/orig 2025-08-26T20:40:00.2797111Z * [new branch] gh/ezyang/3105/base -> origin/gh/ezyang/3105/base 2025-08-26T20:40:00.2797606Z * [new branch] gh/ezyang/3105/head -> origin/gh/ezyang/3105/head 2025-08-26T20:40:00.2798102Z * [new branch] gh/ezyang/3105/orig -> origin/gh/ezyang/3105/orig 2025-08-26T20:40:00.2798606Z * [new branch] gh/ezyang/3114/base -> origin/gh/ezyang/3114/base 2025-08-26T20:40:00.2799090Z * [new branch] gh/ezyang/3114/head -> origin/gh/ezyang/3114/head 2025-08-26T20:40:00.2799587Z * [new branch] gh/ezyang/3114/orig -> origin/gh/ezyang/3114/orig 2025-08-26T20:40:00.2800066Z * [new branch] gh/ezyang/3116/base -> origin/gh/ezyang/3116/base 2025-08-26T20:40:00.2800572Z * [new branch] gh/ezyang/3116/head -> origin/gh/ezyang/3116/head 2025-08-26T20:40:00.2801074Z * [new branch] gh/ezyang/3116/orig -> origin/gh/ezyang/3116/orig 2025-08-26T20:40:00.2801606Z * [new branch] gh/ezyang/3117/base -> origin/gh/ezyang/3117/base 2025-08-26T20:40:00.2802146Z * [new branch] gh/ezyang/3117/head -> origin/gh/ezyang/3117/head 2025-08-26T20:40:00.2802642Z * [new branch] gh/ezyang/3117/orig -> origin/gh/ezyang/3117/orig 2025-08-26T20:40:00.2803140Z * [new branch] gh/ezyang/3118/base -> origin/gh/ezyang/3118/base 2025-08-26T20:40:00.2803635Z * [new branch] gh/ezyang/3118/head -> origin/gh/ezyang/3118/head 2025-08-26T20:40:00.2804129Z * [new branch] gh/ezyang/3118/orig -> origin/gh/ezyang/3118/orig 2025-08-26T20:40:00.2804631Z * [new branch] gh/ezyang/3119/base -> origin/gh/ezyang/3119/base 2025-08-26T20:40:00.2805121Z * [new branch] gh/ezyang/3119/head -> origin/gh/ezyang/3119/head 2025-08-26T20:40:00.2805623Z * [new branch] gh/ezyang/3119/orig -> origin/gh/ezyang/3119/orig 2025-08-26T20:40:00.2806127Z * [new branch] gh/ezyang/3120/base -> origin/gh/ezyang/3120/base 2025-08-26T20:40:00.2806616Z * [new branch] gh/ezyang/3120/head -> origin/gh/ezyang/3120/head 2025-08-26T20:40:00.2807167Z * [new branch] gh/ezyang/3120/orig -> origin/gh/ezyang/3120/orig 2025-08-26T20:40:00.2807695Z * [new branch] gh/ezyang/3121/base -> origin/gh/ezyang/3121/base 2025-08-26T20:40:00.2808190Z * [new branch] gh/ezyang/3121/head -> origin/gh/ezyang/3121/head 2025-08-26T20:40:00.2808678Z * [new branch] gh/ezyang/3121/orig -> origin/gh/ezyang/3121/orig 2025-08-26T20:40:00.2809185Z * [new branch] gh/ezyang/3122/base -> origin/gh/ezyang/3122/base 2025-08-26T20:40:00.2809687Z * [new branch] gh/ezyang/3122/head -> origin/gh/ezyang/3122/head 2025-08-26T20:40:00.2810179Z * [new branch] gh/ezyang/3122/orig -> origin/gh/ezyang/3122/orig 2025-08-26T20:40:00.2810686Z * [new branch] gh/ezyang/3123/base -> origin/gh/ezyang/3123/base 2025-08-26T20:40:00.2811175Z * [new branch] gh/ezyang/3123/head -> origin/gh/ezyang/3123/head 2025-08-26T20:40:00.2811798Z * [new branch] gh/ezyang/3123/orig -> origin/gh/ezyang/3123/orig 2025-08-26T20:40:00.3240008Z * [new branch] gh/ezyang/3124/base -> origin/gh/ezyang/3124/base 2025-08-26T20:40:00.3240554Z * [new branch] gh/ezyang/3124/head -> origin/gh/ezyang/3124/head 2025-08-26T20:40:00.3241067Z * [new branch] gh/ezyang/3124/orig -> origin/gh/ezyang/3124/orig 2025-08-26T20:40:00.3241593Z * [new branch] gh/ezyang/3125/base -> origin/gh/ezyang/3125/base 2025-08-26T20:40:00.3242272Z * [new branch] gh/ezyang/3125/head -> origin/gh/ezyang/3125/head 2025-08-26T20:40:00.3242778Z * [new branch] gh/ezyang/3125/orig -> origin/gh/ezyang/3125/orig 2025-08-26T20:40:00.3243280Z * [new branch] gh/ezyang/3126/base -> origin/gh/ezyang/3126/base 2025-08-26T20:40:00.3243798Z * [new branch] gh/ezyang/3126/head -> origin/gh/ezyang/3126/head 2025-08-26T20:40:00.3244298Z * [new branch] gh/ezyang/3126/orig -> origin/gh/ezyang/3126/orig 2025-08-26T20:40:00.3244786Z * [new branch] gh/ezyang/3127/base -> origin/gh/ezyang/3127/base 2025-08-26T20:40:00.3245316Z * [new branch] gh/ezyang/3127/head -> origin/gh/ezyang/3127/head 2025-08-26T20:40:00.3245849Z * [new branch] gh/ezyang/3127/orig -> origin/gh/ezyang/3127/orig 2025-08-26T20:40:00.3246353Z * [new branch] gh/ezyang/3128/base -> origin/gh/ezyang/3128/base 2025-08-26T20:40:00.3246846Z * [new branch] gh/ezyang/3128/head -> origin/gh/ezyang/3128/head 2025-08-26T20:40:00.3247341Z * [new branch] gh/ezyang/3128/orig -> origin/gh/ezyang/3128/orig 2025-08-26T20:40:00.3247842Z * [new branch] gh/ezyang/3129/base -> origin/gh/ezyang/3129/base 2025-08-26T20:40:00.3248337Z * [new branch] gh/ezyang/3129/head -> origin/gh/ezyang/3129/head 2025-08-26T20:40:00.3248828Z * [new branch] gh/ezyang/3129/orig -> origin/gh/ezyang/3129/orig 2025-08-26T20:40:00.3249315Z * [new branch] gh/ezyang/3130/base -> origin/gh/ezyang/3130/base 2025-08-26T20:40:00.3249811Z * [new branch] gh/ezyang/3130/head -> origin/gh/ezyang/3130/head 2025-08-26T20:40:00.3250308Z * [new branch] gh/ezyang/3130/orig -> origin/gh/ezyang/3130/orig 2025-08-26T20:40:00.3250804Z * [new branch] gh/ezyang/3131/base -> origin/gh/ezyang/3131/base 2025-08-26T20:40:00.3251293Z * [new branch] gh/ezyang/3131/head -> origin/gh/ezyang/3131/head 2025-08-26T20:40:00.3251777Z * [new branch] gh/ezyang/3131/orig -> origin/gh/ezyang/3131/orig 2025-08-26T20:40:00.3252279Z * [new branch] gh/ezyang/3132/base -> origin/gh/ezyang/3132/base 2025-08-26T20:40:00.3252775Z * [new branch] gh/ezyang/3132/head -> origin/gh/ezyang/3132/head 2025-08-26T20:40:00.3253260Z * [new branch] gh/ezyang/3132/orig -> origin/gh/ezyang/3132/orig 2025-08-26T20:40:00.3253754Z * [new branch] gh/ezyang/3133/base -> origin/gh/ezyang/3133/base 2025-08-26T20:40:00.3254234Z * [new branch] gh/ezyang/3133/head -> origin/gh/ezyang/3133/head 2025-08-26T20:40:00.3254734Z * [new branch] gh/ezyang/3133/orig -> origin/gh/ezyang/3133/orig 2025-08-26T20:40:00.3255232Z * [new branch] gh/ezyang/3134/base -> origin/gh/ezyang/3134/base 2025-08-26T20:40:00.3255722Z * [new branch] gh/ezyang/3134/head -> origin/gh/ezyang/3134/head 2025-08-26T20:40:00.3256261Z * [new branch] gh/ezyang/3134/orig -> origin/gh/ezyang/3134/orig 2025-08-26T20:40:00.3256794Z * [new branch] gh/ezyang/3135/base -> origin/gh/ezyang/3135/base 2025-08-26T20:40:00.3257424Z * [new branch] gh/ezyang/3135/head -> origin/gh/ezyang/3135/head 2025-08-26T20:40:00.3257933Z * [new branch] gh/ezyang/3135/orig -> origin/gh/ezyang/3135/orig 2025-08-26T20:40:00.3258428Z * [new branch] gh/ezyang/3136/base -> origin/gh/ezyang/3136/base 2025-08-26T20:40:00.3258931Z * [new branch] gh/ezyang/3136/head -> origin/gh/ezyang/3136/head 2025-08-26T20:40:00.3259428Z * [new branch] gh/ezyang/3136/orig -> origin/gh/ezyang/3136/orig 2025-08-26T20:40:00.3260020Z * [new branch] gh/ezyang/3137/base -> origin/gh/ezyang/3137/base 2025-08-26T20:40:00.3260508Z * [new branch] gh/ezyang/3137/head -> origin/gh/ezyang/3137/head 2025-08-26T20:40:00.3261009Z * [new branch] gh/ezyang/3137/orig -> origin/gh/ezyang/3137/orig 2025-08-26T20:40:00.3261514Z * [new branch] gh/fadara01/1/base -> origin/gh/fadara01/1/base 2025-08-26T20:40:00.3262005Z * [new branch] gh/fadara01/1/head -> origin/gh/fadara01/1/head 2025-08-26T20:40:00.3262509Z * [new branch] gh/fadara01/1/orig -> origin/gh/fadara01/1/orig 2025-08-26T20:40:00.3262989Z * [new branch] gh/fduwjj/169/base -> origin/gh/fduwjj/169/base 2025-08-26T20:40:00.3263474Z * [new branch] gh/fduwjj/169/head -> origin/gh/fduwjj/169/head 2025-08-26T20:40:00.3696704Z * [new branch] gh/fduwjj/169/orig -> origin/gh/fduwjj/169/orig 2025-08-26T20:40:00.3697243Z * [new branch] gh/fduwjj/171/base -> origin/gh/fduwjj/171/base 2025-08-26T20:40:00.3697756Z * [new branch] gh/fduwjj/171/head -> origin/gh/fduwjj/171/head 2025-08-26T20:40:00.3698248Z * [new branch] gh/fduwjj/171/orig -> origin/gh/fduwjj/171/orig 2025-08-26T20:40:00.3698757Z * [new branch] gh/fduwjj/175/base -> origin/gh/fduwjj/175/base 2025-08-26T20:40:00.3699246Z * [new branch] gh/fduwjj/175/head -> origin/gh/fduwjj/175/head 2025-08-26T20:40:00.3699734Z * [new branch] gh/fduwjj/175/orig -> origin/gh/fduwjj/175/orig 2025-08-26T20:40:00.3700224Z * [new branch] gh/fduwjj/176/base -> origin/gh/fduwjj/176/base 2025-08-26T20:40:00.3700706Z * [new branch] gh/fduwjj/176/head -> origin/gh/fduwjj/176/head 2025-08-26T20:40:00.3701220Z * [new branch] gh/fduwjj/176/orig -> origin/gh/fduwjj/176/orig 2025-08-26T20:40:00.3701706Z * [new branch] gh/fduwjj/177/base -> origin/gh/fduwjj/177/base 2025-08-26T20:40:00.3702200Z * [new branch] gh/fduwjj/177/head -> origin/gh/fduwjj/177/head 2025-08-26T20:40:00.3702703Z * [new branch] gh/fduwjj/177/orig -> origin/gh/fduwjj/177/orig 2025-08-26T20:40:00.3703187Z * [new branch] gh/fduwjj/178/base -> origin/gh/fduwjj/178/base 2025-08-26T20:40:00.3703676Z * [new branch] gh/fduwjj/178/head -> origin/gh/fduwjj/178/head 2025-08-26T20:40:00.3704168Z * [new branch] gh/fduwjj/178/orig -> origin/gh/fduwjj/178/orig 2025-08-26T20:40:00.3704651Z * [new branch] gh/fduwjj/179/base -> origin/gh/fduwjj/179/base 2025-08-26T20:40:00.3705141Z * [new branch] gh/fduwjj/179/head -> origin/gh/fduwjj/179/head 2025-08-26T20:40:00.3705627Z * [new branch] gh/fduwjj/179/orig -> origin/gh/fduwjj/179/orig 2025-08-26T20:40:00.3706184Z * [new branch] gh/fduwjj/180/base -> origin/gh/fduwjj/180/base 2025-08-26T20:40:00.3706677Z * [new branch] gh/fduwjj/180/head -> origin/gh/fduwjj/180/head 2025-08-26T20:40:00.3707166Z * [new branch] gh/fduwjj/180/orig -> origin/gh/fduwjj/180/orig 2025-08-26T20:40:00.3707850Z * [new branch] gh/fduwjj/181/base -> origin/gh/fduwjj/181/base 2025-08-26T20:40:00.3708336Z * [new branch] gh/fduwjj/181/head -> origin/gh/fduwjj/181/head 2025-08-26T20:40:00.3708837Z * [new branch] gh/fduwjj/181/orig -> origin/gh/fduwjj/181/orig 2025-08-26T20:40:00.3709333Z * [new branch] gh/fduwjj/182/base -> origin/gh/fduwjj/182/base 2025-08-26T20:40:00.3709816Z * [new branch] gh/fduwjj/182/head -> origin/gh/fduwjj/182/head 2025-08-26T20:40:00.3710420Z * [new branch] gh/fduwjj/182/orig -> origin/gh/fduwjj/182/orig 2025-08-26T20:40:00.3710915Z * [new branch] gh/fduwjj/183/base -> origin/gh/fduwjj/183/base 2025-08-26T20:40:00.3711410Z * [new branch] gh/fduwjj/183/head -> origin/gh/fduwjj/183/head 2025-08-26T20:40:00.3711916Z * [new branch] gh/fduwjj/183/orig -> origin/gh/fduwjj/183/orig 2025-08-26T20:40:00.3712403Z * [new branch] gh/fduwjj/184/base -> origin/gh/fduwjj/184/base 2025-08-26T20:40:00.3712902Z * [new branch] gh/fduwjj/184/head -> origin/gh/fduwjj/184/head 2025-08-26T20:40:00.3713391Z * [new branch] gh/fduwjj/184/orig -> origin/gh/fduwjj/184/orig 2025-08-26T20:40:00.3713883Z * [new branch] gh/fduwjj/185/base -> origin/gh/fduwjj/185/base 2025-08-26T20:40:00.3714366Z * [new branch] gh/fduwjj/185/head -> origin/gh/fduwjj/185/head 2025-08-26T20:40:00.3714863Z * [new branch] gh/fduwjj/185/orig -> origin/gh/fduwjj/185/orig 2025-08-26T20:40:00.3715360Z * [new branch] gh/fduwjj/186/base -> origin/gh/fduwjj/186/base 2025-08-26T20:40:00.3715838Z * [new branch] gh/fduwjj/186/head -> origin/gh/fduwjj/186/head 2025-08-26T20:40:00.3716325Z * [new branch] gh/fduwjj/186/orig -> origin/gh/fduwjj/186/orig 2025-08-26T20:40:00.3716819Z * [new branch] gh/fduwjj/187/base -> origin/gh/fduwjj/187/base 2025-08-26T20:40:00.3717315Z * [new branch] gh/fduwjj/187/head -> origin/gh/fduwjj/187/head 2025-08-26T20:40:00.3717808Z * [new branch] gh/fduwjj/187/orig -> origin/gh/fduwjj/187/orig 2025-08-26T20:40:00.3718304Z * [new branch] gh/fduwjj/188/base -> origin/gh/fduwjj/188/base 2025-08-26T20:40:00.3718797Z * [new branch] gh/fduwjj/188/head -> origin/gh/fduwjj/188/head 2025-08-26T20:40:00.3719281Z * [new branch] gh/fduwjj/188/orig -> origin/gh/fduwjj/188/orig 2025-08-26T20:40:00.3719782Z * [new branch] gh/fduwjj/189/base -> origin/gh/fduwjj/189/base 2025-08-26T20:40:00.3720276Z * [new branch] gh/fduwjj/189/head -> origin/gh/fduwjj/189/head 2025-08-26T20:40:00.4160765Z * [new branch] gh/fduwjj/189/orig -> origin/gh/fduwjj/189/orig 2025-08-26T20:40:00.4161320Z * [new branch] gh/fduwjj/190/base -> origin/gh/fduwjj/190/base 2025-08-26T20:40:00.4161822Z * [new branch] gh/fduwjj/190/head -> origin/gh/fduwjj/190/head 2025-08-26T20:40:00.4162322Z * [new branch] gh/fduwjj/190/orig -> origin/gh/fduwjj/190/orig 2025-08-26T20:40:00.4162815Z * [new branch] gh/fduwjj/191/base -> origin/gh/fduwjj/191/base 2025-08-26T20:40:00.4163328Z * [new branch] gh/fduwjj/191/head -> origin/gh/fduwjj/191/head 2025-08-26T20:40:00.4163819Z * [new branch] gh/fduwjj/191/orig -> origin/gh/fduwjj/191/orig 2025-08-26T20:40:00.4164299Z * [new branch] gh/fegin/306/base -> origin/gh/fegin/306/base 2025-08-26T20:40:00.4164789Z * [new branch] gh/fegin/306/head -> origin/gh/fegin/306/head 2025-08-26T20:40:00.4165460Z * [new branch] gh/fegin/306/orig -> origin/gh/fegin/306/orig 2025-08-26T20:40:00.4165945Z * [new branch] gh/fegin/307/base -> origin/gh/fegin/307/base 2025-08-26T20:40:00.4166424Z * [new branch] gh/fegin/307/head -> origin/gh/fegin/307/head 2025-08-26T20:40:00.4166898Z * [new branch] gh/fegin/307/orig -> origin/gh/fegin/307/orig 2025-08-26T20:40:00.4167388Z * [new branch] gh/fffrog/124/base -> origin/gh/fffrog/124/base 2025-08-26T20:40:00.4167992Z * [new branch] gh/fffrog/124/head -> origin/gh/fffrog/124/head 2025-08-26T20:40:00.4168488Z * [new branch] gh/fffrog/124/orig -> origin/gh/fffrog/124/orig 2025-08-26T20:40:00.4168978Z * [new branch] gh/fffrog/128/base -> origin/gh/fffrog/128/base 2025-08-26T20:40:00.4169468Z * [new branch] gh/fffrog/128/head -> origin/gh/fffrog/128/head 2025-08-26T20:40:00.4169971Z * [new branch] gh/fffrog/128/orig -> origin/gh/fffrog/128/orig 2025-08-26T20:40:00.4170489Z * [new branch] gh/fffrog/129/base -> origin/gh/fffrog/129/base 2025-08-26T20:40:00.4170976Z * [new branch] gh/fffrog/129/head -> origin/gh/fffrog/129/head 2025-08-26T20:40:00.4171472Z * [new branch] gh/fffrog/129/orig -> origin/gh/fffrog/129/orig 2025-08-26T20:40:00.4171958Z * [new branch] gh/fffrog/130/base -> origin/gh/fffrog/130/base 2025-08-26T20:40:00.4172463Z * [new branch] gh/fffrog/130/head -> origin/gh/fffrog/130/head 2025-08-26T20:40:00.4172950Z * [new branch] gh/fffrog/130/orig -> origin/gh/fffrog/130/orig 2025-08-26T20:40:00.4173445Z * [new branch] gh/fffrog/131/base -> origin/gh/fffrog/131/base 2025-08-26T20:40:00.4174032Z * [new branch] gh/fffrog/131/head -> origin/gh/fffrog/131/head 2025-08-26T20:40:00.4174568Z * [new branch] gh/fffrog/131/orig -> origin/gh/fffrog/131/orig 2025-08-26T20:40:00.4175062Z * [new branch] gh/fffrog/132/base -> origin/gh/fffrog/132/base 2025-08-26T20:40:00.4175542Z * [new branch] gh/fffrog/132/head -> origin/gh/fffrog/132/head 2025-08-26T20:40:00.4176247Z * [new branch] gh/fffrog/132/orig -> origin/gh/fffrog/132/orig 2025-08-26T20:40:00.4176748Z * [new branch] gh/fffrog/133/base -> origin/gh/fffrog/133/base 2025-08-26T20:40:00.4177246Z * [new branch] gh/fffrog/133/head -> origin/gh/fffrog/133/head 2025-08-26T20:40:00.4177740Z * [new branch] gh/fffrog/133/orig -> origin/gh/fffrog/133/orig 2025-08-26T20:40:00.4178223Z * [new branch] gh/fffrog/134/base -> origin/gh/fffrog/134/base 2025-08-26T20:40:00.4178762Z * [new branch] gh/fffrog/134/head -> origin/gh/fffrog/134/head 2025-08-26T20:40:00.4179266Z * [new branch] gh/fffrog/134/orig -> origin/gh/fffrog/134/orig 2025-08-26T20:40:00.4179766Z * [new branch] gh/fffrog/135/base -> origin/gh/fffrog/135/base 2025-08-26T20:40:00.4180296Z * [new branch] gh/fffrog/135/head -> origin/gh/fffrog/135/head 2025-08-26T20:40:00.4180819Z * [new branch] gh/fffrog/135/orig -> origin/gh/fffrog/135/orig 2025-08-26T20:40:00.4181309Z * [new branch] gh/fffrog/136/base -> origin/gh/fffrog/136/base 2025-08-26T20:40:00.4181793Z * [new branch] gh/fffrog/136/head -> origin/gh/fffrog/136/head 2025-08-26T20:40:00.4182296Z * [new branch] gh/fffrog/136/orig -> origin/gh/fffrog/136/orig 2025-08-26T20:40:00.4182789Z * [new branch] gh/fffrog/137/base -> origin/gh/fffrog/137/base 2025-08-26T20:40:00.4183271Z * [new branch] gh/fffrog/137/head -> origin/gh/fffrog/137/head 2025-08-26T20:40:00.4183891Z * [new branch] gh/fffrog/137/orig -> origin/gh/fffrog/137/orig 2025-08-26T20:40:00.4184371Z * [new branch] gh/fffrog/138/base -> origin/gh/fffrog/138/base 2025-08-26T20:40:00.4184877Z * [new branch] gh/fffrog/138/head -> origin/gh/fffrog/138/head 2025-08-26T20:40:00.4599471Z * [new branch] gh/fffrog/138/orig -> origin/gh/fffrog/138/orig 2025-08-26T20:40:00.4600031Z * [new branch] gh/fffrog/139/base -> origin/gh/fffrog/139/base 2025-08-26T20:40:00.4600738Z * [new branch] gh/fffrog/139/head -> origin/gh/fffrog/139/head 2025-08-26T20:40:00.4601264Z * [new branch] gh/fffrog/139/orig -> origin/gh/fffrog/139/orig 2025-08-26T20:40:00.4601764Z * [new branch] gh/fffrog/140/base -> origin/gh/fffrog/140/base 2025-08-26T20:40:00.4602265Z * [new branch] gh/fffrog/140/head -> origin/gh/fffrog/140/head 2025-08-26T20:40:00.4602746Z * [new branch] gh/fffrog/140/orig -> origin/gh/fffrog/140/orig 2025-08-26T20:40:00.4603228Z * [new branch] gh/fffrog/141/base -> origin/gh/fffrog/141/base 2025-08-26T20:40:00.4603727Z * [new branch] gh/fffrog/141/head -> origin/gh/fffrog/141/head 2025-08-26T20:40:00.4604216Z * [new branch] gh/fffrog/141/orig -> origin/gh/fffrog/141/orig 2025-08-26T20:40:00.4604696Z * [new branch] gh/fffrog/142/base -> origin/gh/fffrog/142/base 2025-08-26T20:40:00.4605181Z * [new branch] gh/fffrog/142/head -> origin/gh/fffrog/142/head 2025-08-26T20:40:00.4605658Z * [new branch] gh/fffrog/142/orig -> origin/gh/fffrog/142/orig 2025-08-26T20:40:00.4606146Z * [new branch] gh/fffrog/143/base -> origin/gh/fffrog/143/base 2025-08-26T20:40:00.4606629Z * [new branch] gh/fffrog/143/head -> origin/gh/fffrog/143/head 2025-08-26T20:40:00.4607122Z * [new branch] gh/fffrog/143/orig -> origin/gh/fffrog/143/orig 2025-08-26T20:40:00.4607620Z * [new branch] gh/fffrog/144/base -> origin/gh/fffrog/144/base 2025-08-26T20:40:00.4608096Z * [new branch] gh/fffrog/144/head -> origin/gh/fffrog/144/head 2025-08-26T20:40:00.4608588Z * [new branch] gh/fffrog/144/orig -> origin/gh/fffrog/144/orig 2025-08-26T20:40:00.4609091Z * [new branch] gh/gmagogsfm/1/base -> origin/gh/gmagogsfm/1/base 2025-08-26T20:40:00.4609607Z * [new branch] gh/gmagogsfm/1/head -> origin/gh/gmagogsfm/1/head 2025-08-26T20:40:00.4610115Z * [new branch] gh/gmagogsfm/1/orig -> origin/gh/gmagogsfm/1/orig 2025-08-26T20:40:00.4610610Z * [new branch] gh/gmagogsfm/2/base -> origin/gh/gmagogsfm/2/base 2025-08-26T20:40:00.4611121Z * [new branch] gh/gmagogsfm/2/head -> origin/gh/gmagogsfm/2/head 2025-08-26T20:40:00.4611624Z * [new branch] gh/gmagogsfm/2/orig -> origin/gh/gmagogsfm/2/orig 2025-08-26T20:40:00.4612132Z * [new branch] gh/gmagogsfm/3/base -> origin/gh/gmagogsfm/3/base 2025-08-26T20:40:00.4612639Z * [new branch] gh/gmagogsfm/3/head -> origin/gh/gmagogsfm/3/head 2025-08-26T20:40:00.4613133Z * [new branch] gh/gmagogsfm/3/orig -> origin/gh/gmagogsfm/3/orig 2025-08-26T20:40:00.4613651Z * [new branch] gh/guangyey/130/base -> origin/gh/guangyey/130/base 2025-08-26T20:40:00.4614153Z * [new branch] gh/guangyey/130/head -> origin/gh/guangyey/130/head 2025-08-26T20:40:00.4614666Z * [new branch] gh/guangyey/130/orig -> origin/gh/guangyey/130/orig 2025-08-26T20:40:00.4615173Z * [new branch] gh/guangyey/133/base -> origin/gh/guangyey/133/base 2025-08-26T20:40:00.4615799Z * [new branch] gh/guangyey/133/head -> origin/gh/guangyey/133/head 2025-08-26T20:40:00.4616316Z * [new branch] gh/guangyey/133/orig -> origin/gh/guangyey/133/orig 2025-08-26T20:40:00.4616820Z * [new branch] gh/guangyey/134/base -> origin/gh/guangyey/134/base 2025-08-26T20:40:00.4617330Z * [new branch] gh/guangyey/134/head -> origin/gh/guangyey/134/head 2025-08-26T20:40:00.4617825Z * [new branch] gh/guangyey/134/orig -> origin/gh/guangyey/134/orig 2025-08-26T20:40:00.4618445Z * [new branch] gh/guangyey/135/base -> origin/gh/guangyey/135/base 2025-08-26T20:40:00.4618960Z * [new branch] gh/guangyey/135/head -> origin/gh/guangyey/135/head 2025-08-26T20:40:00.4619455Z * [new branch] gh/guangyey/135/orig -> origin/gh/guangyey/135/orig 2025-08-26T20:40:00.4619976Z * [new branch] gh/guangyey/139/base -> origin/gh/guangyey/139/base 2025-08-26T20:40:00.4620473Z * [new branch] gh/guangyey/139/head -> origin/gh/guangyey/139/head 2025-08-26T20:40:00.4620982Z * [new branch] gh/guangyey/139/orig -> origin/gh/guangyey/139/orig 2025-08-26T20:40:00.4621494Z * [new branch] gh/guangyey/140/base -> origin/gh/guangyey/140/base 2025-08-26T20:40:00.4621986Z * [new branch] gh/guangyey/140/head -> origin/gh/guangyey/140/head 2025-08-26T20:40:00.4622491Z * [new branch] gh/guangyey/140/orig -> origin/gh/guangyey/140/orig 2025-08-26T20:40:00.4622988Z * [new branch] gh/guangyey/142/base -> origin/gh/guangyey/142/base 2025-08-26T20:40:00.5038247Z * [new branch] gh/guangyey/142/head -> origin/gh/guangyey/142/head 2025-08-26T20:40:00.5038819Z * [new branch] gh/guangyey/142/orig -> origin/gh/guangyey/142/orig 2025-08-26T20:40:00.5039358Z * [new branch] gh/guangyey/145/base -> origin/gh/guangyey/145/base 2025-08-26T20:40:00.5039886Z * [new branch] gh/guangyey/145/head -> origin/gh/guangyey/145/head 2025-08-26T20:40:00.5040396Z * [new branch] gh/guangyey/145/orig -> origin/gh/guangyey/145/orig 2025-08-26T20:40:00.5040893Z * [new branch] gh/guangyey/153/base -> origin/gh/guangyey/153/base 2025-08-26T20:40:00.5041397Z * [new branch] gh/guangyey/153/head -> origin/gh/guangyey/153/head 2025-08-26T20:40:00.5041904Z * [new branch] gh/guangyey/153/orig -> origin/gh/guangyey/153/orig 2025-08-26T20:40:00.5042405Z * [new branch] gh/guangyey/158/base -> origin/gh/guangyey/158/base 2025-08-26T20:40:00.5042904Z * [new branch] gh/guangyey/158/head -> origin/gh/guangyey/158/head 2025-08-26T20:40:00.5043407Z * [new branch] gh/guangyey/158/orig -> origin/gh/guangyey/158/orig 2025-08-26T20:40:00.5043911Z * [new branch] gh/guangyey/159/base -> origin/gh/guangyey/159/base 2025-08-26T20:40:00.5044412Z * [new branch] gh/guangyey/159/head -> origin/gh/guangyey/159/head 2025-08-26T20:40:00.5044912Z * [new branch] gh/guangyey/159/orig -> origin/gh/guangyey/159/orig 2025-08-26T20:40:00.5045410Z * [new branch] gh/guangyey/163/base -> origin/gh/guangyey/163/base 2025-08-26T20:40:00.5045915Z * [new branch] gh/guangyey/163/head -> origin/gh/guangyey/163/head 2025-08-26T20:40:00.5046423Z * [new branch] gh/guangyey/163/orig -> origin/gh/guangyey/163/orig 2025-08-26T20:40:00.5046923Z * [new branch] gh/guangyey/165/base -> origin/gh/guangyey/165/base 2025-08-26T20:40:00.5047431Z * [new branch] gh/guangyey/165/head -> origin/gh/guangyey/165/head 2025-08-26T20:40:00.5047923Z * [new branch] gh/guangyey/165/orig -> origin/gh/guangyey/165/orig 2025-08-26T20:40:00.5048622Z * [new branch] gh/guangyey/168/base -> origin/gh/guangyey/168/base 2025-08-26T20:40:00.5049133Z * [new branch] gh/guangyey/168/head -> origin/gh/guangyey/168/head 2025-08-26T20:40:00.5049637Z * [new branch] gh/guangyey/168/orig -> origin/gh/guangyey/168/orig 2025-08-26T20:40:00.5050150Z * [new branch] gh/guangyey/169/base -> origin/gh/guangyey/169/base 2025-08-26T20:40:00.5050762Z * [new branch] gh/guangyey/169/head -> origin/gh/guangyey/169/head 2025-08-26T20:40:00.5051276Z * [new branch] gh/guangyey/169/orig -> origin/gh/guangyey/169/orig 2025-08-26T20:40:00.5051786Z * [new branch] gh/guangyey/170/base -> origin/gh/guangyey/170/base 2025-08-26T20:40:00.5052286Z * [new branch] gh/guangyey/170/head -> origin/gh/guangyey/170/head 2025-08-26T20:40:00.5052808Z * [new branch] gh/guangyey/170/orig -> origin/gh/guangyey/170/orig 2025-08-26T20:40:00.5053306Z * [new branch] gh/guangyey/171/base -> origin/gh/guangyey/171/base 2025-08-26T20:40:00.5053810Z * [new branch] gh/guangyey/171/head -> origin/gh/guangyey/171/head 2025-08-26T20:40:00.5054306Z * [new branch] gh/guangyey/171/orig -> origin/gh/guangyey/171/orig 2025-08-26T20:40:00.5054813Z * [new branch] gh/guangyey/173/base -> origin/gh/guangyey/173/base 2025-08-26T20:40:00.5055331Z * [new branch] gh/guangyey/173/head -> origin/gh/guangyey/173/head 2025-08-26T20:40:00.5055823Z * [new branch] gh/guangyey/173/orig -> origin/gh/guangyey/173/orig 2025-08-26T20:40:00.5056328Z * [new branch] gh/guangyey/174/base -> origin/gh/guangyey/174/base 2025-08-26T20:40:00.5056832Z * [new branch] gh/guangyey/174/head -> origin/gh/guangyey/174/head 2025-08-26T20:40:00.5057342Z * [new branch] gh/guangyey/174/orig -> origin/gh/guangyey/174/orig 2025-08-26T20:40:00.5057845Z * [new branch] gh/guangyey/175/base -> origin/gh/guangyey/175/base 2025-08-26T20:40:00.5058340Z * [new branch] gh/guangyey/175/head -> origin/gh/guangyey/175/head 2025-08-26T20:40:00.5058850Z * [new branch] gh/guangyey/175/orig -> origin/gh/guangyey/175/orig 2025-08-26T20:40:00.5059345Z * [new branch] gh/guangyey/176/base -> origin/gh/guangyey/176/base 2025-08-26T20:40:00.5059857Z * [new branch] gh/guangyey/176/head -> origin/gh/guangyey/176/head 2025-08-26T20:40:00.5060358Z * [new branch] gh/guangyey/176/orig -> origin/gh/guangyey/176/orig 2025-08-26T20:40:00.5060853Z * [new branch] gh/guangyey/177/base -> origin/gh/guangyey/177/base 2025-08-26T20:40:00.5061359Z * [new branch] gh/guangyey/177/head -> origin/gh/guangyey/177/head 2025-08-26T20:40:00.5479524Z * [new branch] gh/guangyey/177/orig -> origin/gh/guangyey/177/orig 2025-08-26T20:40:00.5480109Z * [new branch] gh/guangyey/178/base -> origin/gh/guangyey/178/base 2025-08-26T20:40:00.5480629Z * [new branch] gh/guangyey/178/head -> origin/gh/guangyey/178/head 2025-08-26T20:40:00.5481136Z * [new branch] gh/guangyey/178/orig -> origin/gh/guangyey/178/orig 2025-08-26T20:40:00.5481669Z * [new branch] gh/guangyey/179/base -> origin/gh/guangyey/179/base 2025-08-26T20:40:00.5482186Z * [new branch] gh/guangyey/179/head -> origin/gh/guangyey/179/head 2025-08-26T20:40:00.5482775Z * [new branch] gh/guangyey/179/orig -> origin/gh/guangyey/179/orig 2025-08-26T20:40:00.5483326Z * [new branch] gh/guangyey/180/base -> origin/gh/guangyey/180/base 2025-08-26T20:40:00.5484041Z * [new branch] gh/guangyey/180/head -> origin/gh/guangyey/180/head 2025-08-26T20:40:00.5484550Z * [new branch] gh/guangyey/180/orig -> origin/gh/guangyey/180/orig 2025-08-26T20:40:00.5485051Z * [new branch] gh/guangyey/181/base -> origin/gh/guangyey/181/base 2025-08-26T20:40:00.5485559Z * [new branch] gh/guangyey/181/head -> origin/gh/guangyey/181/head 2025-08-26T20:40:00.5486077Z * [new branch] gh/guangyey/181/orig -> origin/gh/guangyey/181/orig 2025-08-26T20:40:00.5486707Z * [new branch] gh/guangyey/182/base -> origin/gh/guangyey/182/base 2025-08-26T20:40:00.5487212Z * [new branch] gh/guangyey/182/head -> origin/gh/guangyey/182/head 2025-08-26T20:40:00.5487709Z * [new branch] gh/guangyey/182/orig -> origin/gh/guangyey/182/orig 2025-08-26T20:40:00.5488218Z * [new branch] gh/guangyey/183/base -> origin/gh/guangyey/183/base 2025-08-26T20:40:00.5488735Z * [new branch] gh/guangyey/183/head -> origin/gh/guangyey/183/head 2025-08-26T20:40:00.5489240Z * [new branch] gh/guangyey/183/orig -> origin/gh/guangyey/183/orig 2025-08-26T20:40:00.5489743Z * [new branch] gh/guangyey/184/base -> origin/gh/guangyey/184/base 2025-08-26T20:40:00.5490239Z * [new branch] gh/guangyey/184/head -> origin/gh/guangyey/184/head 2025-08-26T20:40:00.5490748Z * [new branch] gh/guangyey/184/orig -> origin/gh/guangyey/184/orig 2025-08-26T20:40:00.5491257Z * [new branch] gh/guangyey/185/base -> origin/gh/guangyey/185/base 2025-08-26T20:40:00.5491757Z * [new branch] gh/guangyey/185/head -> origin/gh/guangyey/185/head 2025-08-26T20:40:00.5492265Z * [new branch] gh/guangyey/185/orig -> origin/gh/guangyey/185/orig 2025-08-26T20:40:00.5492760Z * [new branch] gh/guangyey/186/base -> origin/gh/guangyey/186/base 2025-08-26T20:40:00.5493270Z * [new branch] gh/guangyey/186/head -> origin/gh/guangyey/186/head 2025-08-26T20:40:00.5493765Z * [new branch] gh/guangyey/186/orig -> origin/gh/guangyey/186/orig 2025-08-26T20:40:00.5494271Z * [new branch] gh/guangyey/187/base -> origin/gh/guangyey/187/base 2025-08-26T20:40:00.5494778Z * [new branch] gh/guangyey/187/head -> origin/gh/guangyey/187/head 2025-08-26T20:40:00.5495280Z * [new branch] gh/guangyey/187/orig -> origin/gh/guangyey/187/orig 2025-08-26T20:40:00.5495786Z * [new branch] gh/guangyey/188/base -> origin/gh/guangyey/188/base 2025-08-26T20:40:00.5496282Z * [new branch] gh/guangyey/188/head -> origin/gh/guangyey/188/head 2025-08-26T20:40:00.5496790Z * [new branch] gh/guangyey/188/orig -> origin/gh/guangyey/188/orig 2025-08-26T20:40:00.5497307Z * [new branch] gh/guangyey/189/base -> origin/gh/guangyey/189/base 2025-08-26T20:40:00.5497799Z * [new branch] gh/guangyey/189/head -> origin/gh/guangyey/189/head 2025-08-26T20:40:00.5498311Z * [new branch] gh/guangyey/189/orig -> origin/gh/guangyey/189/orig 2025-08-26T20:40:00.5498899Z * [new branch] gh/guangyey/190/base -> origin/gh/guangyey/190/base 2025-08-26T20:40:00.5499454Z * [new branch] gh/guangyey/190/head -> origin/gh/guangyey/190/head 2025-08-26T20:40:00.5499970Z * [new branch] gh/guangyey/190/orig -> origin/gh/guangyey/190/orig 2025-08-26T20:40:00.5500474Z * [new branch] gh/guangyey/191/base -> origin/gh/guangyey/191/base 2025-08-26T20:40:00.5500989Z * [new branch] gh/guangyey/191/head -> origin/gh/guangyey/191/head 2025-08-26T20:40:00.5501492Z * [new branch] gh/guangyey/191/orig -> origin/gh/guangyey/191/orig 2025-08-26T20:40:00.5502805Z * [new branch] gh/guangyey/79/base -> origin/gh/guangyey/79/base 2025-08-26T20:40:00.5503310Z * [new branch] gh/guangyey/79/head -> origin/gh/guangyey/79/head 2025-08-26T20:40:00.5503819Z * [new branch] gh/guangyey/79/orig -> origin/gh/guangyey/79/orig 2025-08-26T20:40:00.5504344Z * [new branch] gh/guangyey/89/base -> origin/gh/guangyey/89/base 2025-08-26T20:40:00.5893464Z * [new branch] gh/guangyey/89/head -> origin/gh/guangyey/89/head 2025-08-26T20:40:00.5894336Z * [new branch] gh/guangyey/89/orig -> origin/gh/guangyey/89/orig 2025-08-26T20:40:00.5894932Z * [new branch] gh/guilhermeleobas/107/base -> origin/gh/guilhermeleobas/107/base 2025-08-26T20:40:00.5895538Z * [new branch] gh/guilhermeleobas/107/head -> origin/gh/guilhermeleobas/107/head 2025-08-26T20:40:00.5896129Z * [new branch] gh/guilhermeleobas/107/orig -> origin/gh/guilhermeleobas/107/orig 2025-08-26T20:40:00.5896746Z * [new branch] gh/guilhermeleobas/108/base -> origin/gh/guilhermeleobas/108/base 2025-08-26T20:40:00.5897335Z * [new branch] gh/guilhermeleobas/108/head -> origin/gh/guilhermeleobas/108/head 2025-08-26T20:40:00.5897927Z * [new branch] gh/guilhermeleobas/108/orig -> origin/gh/guilhermeleobas/108/orig 2025-08-26T20:40:00.5898516Z * [new branch] gh/guilhermeleobas/124/base -> origin/gh/guilhermeleobas/124/base 2025-08-26T20:40:00.5899104Z * [new branch] gh/guilhermeleobas/124/head -> origin/gh/guilhermeleobas/124/head 2025-08-26T20:40:00.5899743Z * [new branch] gh/guilhermeleobas/124/orig -> origin/gh/guilhermeleobas/124/orig 2025-08-26T20:40:00.5900359Z * [new branch] gh/guilhermeleobas/147/base -> origin/gh/guilhermeleobas/147/base 2025-08-26T20:40:00.5900961Z * [new branch] gh/guilhermeleobas/147/head -> origin/gh/guilhermeleobas/147/head 2025-08-26T20:40:00.5901551Z * [new branch] gh/guilhermeleobas/147/orig -> origin/gh/guilhermeleobas/147/orig 2025-08-26T20:40:00.5902133Z * [new branch] gh/guilhermeleobas/150/base -> origin/gh/guilhermeleobas/150/base 2025-08-26T20:40:00.5902724Z * [new branch] gh/guilhermeleobas/150/head -> origin/gh/guilhermeleobas/150/head 2025-08-26T20:40:00.5903305Z * [new branch] gh/guilhermeleobas/150/orig -> origin/gh/guilhermeleobas/150/orig 2025-08-26T20:40:00.5903904Z * [new branch] gh/guilhermeleobas/163/base -> origin/gh/guilhermeleobas/163/base 2025-08-26T20:40:00.5904495Z * [new branch] gh/guilhermeleobas/163/head -> origin/gh/guilhermeleobas/163/head 2025-08-26T20:40:00.5905119Z * [new branch] gh/guilhermeleobas/163/orig -> origin/gh/guilhermeleobas/163/orig 2025-08-26T20:40:00.5905747Z * [new branch] gh/guilhermeleobas/164/base -> origin/gh/guilhermeleobas/164/base 2025-08-26T20:40:00.5906429Z * [new branch] gh/guilhermeleobas/164/head -> origin/gh/guilhermeleobas/164/head 2025-08-26T20:40:00.5907029Z * [new branch] gh/guilhermeleobas/164/orig -> origin/gh/guilhermeleobas/164/orig 2025-08-26T20:40:00.5907624Z * [new branch] gh/guilhermeleobas/165/base -> origin/gh/guilhermeleobas/165/base 2025-08-26T20:40:00.5908214Z * [new branch] gh/guilhermeleobas/165/head -> origin/gh/guilhermeleobas/165/head 2025-08-26T20:40:00.5908806Z * [new branch] gh/guilhermeleobas/165/orig -> origin/gh/guilhermeleobas/165/orig 2025-08-26T20:40:00.5909398Z * [new branch] gh/guilhermeleobas/166/base -> origin/gh/guilhermeleobas/166/base 2025-08-26T20:40:00.5909991Z * [new branch] gh/guilhermeleobas/166/head -> origin/gh/guilhermeleobas/166/head 2025-08-26T20:40:00.5910576Z * [new branch] gh/guilhermeleobas/166/orig -> origin/gh/guilhermeleobas/166/orig 2025-08-26T20:40:00.5911381Z * [new branch] gh/guilhermeleobas/167/base -> origin/gh/guilhermeleobas/167/base 2025-08-26T20:40:00.5911991Z * [new branch] gh/guilhermeleobas/167/head -> origin/gh/guilhermeleobas/167/head 2025-08-26T20:40:00.5912574Z * [new branch] gh/guilhermeleobas/167/orig -> origin/gh/guilhermeleobas/167/orig 2025-08-26T20:40:00.5913169Z * [new branch] gh/guilhermeleobas/168/base -> origin/gh/guilhermeleobas/168/base 2025-08-26T20:40:00.5913767Z * [new branch] gh/guilhermeleobas/168/head -> origin/gh/guilhermeleobas/168/head 2025-08-26T20:40:00.5914451Z * [new branch] gh/guilhermeleobas/168/orig -> origin/gh/guilhermeleobas/168/orig 2025-08-26T20:40:00.5915055Z * [new branch] gh/guilhermeleobas/169/base -> origin/gh/guilhermeleobas/169/base 2025-08-26T20:40:00.5915641Z * [new branch] gh/guilhermeleobas/169/head -> origin/gh/guilhermeleobas/169/head 2025-08-26T20:40:00.5916247Z * [new branch] gh/guilhermeleobas/169/orig -> origin/gh/guilhermeleobas/169/orig 2025-08-26T20:40:00.5916892Z * [new branch] gh/guilhermeleobas/170/base -> origin/gh/guilhermeleobas/170/base 2025-08-26T20:40:00.5917525Z * [new branch] gh/guilhermeleobas/170/head -> origin/gh/guilhermeleobas/170/head 2025-08-26T20:40:00.5918118Z * [new branch] gh/guilhermeleobas/170/orig -> origin/gh/guilhermeleobas/170/orig 2025-08-26T20:40:00.5918706Z * [new branch] gh/guilhermeleobas/171/base -> origin/gh/guilhermeleobas/171/base 2025-08-26T20:40:00.5919303Z * [new branch] gh/guilhermeleobas/171/head -> origin/gh/guilhermeleobas/171/head 2025-08-26T20:40:00.6299074Z * [new branch] gh/guilhermeleobas/171/orig -> origin/gh/guilhermeleobas/171/orig 2025-08-26T20:40:00.6299722Z * [new branch] gh/guilhermeleobas/173/base -> origin/gh/guilhermeleobas/173/base 2025-08-26T20:40:00.6300328Z * [new branch] gh/guilhermeleobas/173/head -> origin/gh/guilhermeleobas/173/head 2025-08-26T20:40:00.6300943Z * [new branch] gh/guilhermeleobas/173/orig -> origin/gh/guilhermeleobas/173/orig 2025-08-26T20:40:00.6301548Z * [new branch] gh/guilhermeleobas/183/base -> origin/gh/guilhermeleobas/183/base 2025-08-26T20:40:00.6302139Z * [new branch] gh/guilhermeleobas/183/head -> origin/gh/guilhermeleobas/183/head 2025-08-26T20:40:00.6302755Z * [new branch] gh/guilhermeleobas/183/orig -> origin/gh/guilhermeleobas/183/orig 2025-08-26T20:40:00.6303406Z * [new branch] gh/guilhermeleobas/184/base -> origin/gh/guilhermeleobas/184/base 2025-08-26T20:40:00.6303986Z * [new branch] gh/guilhermeleobas/184/head -> origin/gh/guilhermeleobas/184/head 2025-08-26T20:40:00.6304576Z * [new branch] gh/guilhermeleobas/184/orig -> origin/gh/guilhermeleobas/184/orig 2025-08-26T20:40:00.6305162Z * [new branch] gh/guilhermeleobas/185/base -> origin/gh/guilhermeleobas/185/base 2025-08-26T20:40:00.6305754Z * [new branch] gh/guilhermeleobas/185/head -> origin/gh/guilhermeleobas/185/head 2025-08-26T20:40:00.6306394Z * [new branch] gh/guilhermeleobas/185/orig -> origin/gh/guilhermeleobas/185/orig 2025-08-26T20:40:00.6306980Z * [new branch] gh/guilhermeleobas/192/base -> origin/gh/guilhermeleobas/192/base 2025-08-26T20:40:00.6307569Z * [new branch] gh/guilhermeleobas/192/head -> origin/gh/guilhermeleobas/192/head 2025-08-26T20:40:00.6308165Z * [new branch] gh/guilhermeleobas/192/orig -> origin/gh/guilhermeleobas/192/orig 2025-08-26T20:40:00.6308839Z * [new branch] gh/guilhermeleobas/193/base -> origin/gh/guilhermeleobas/193/base 2025-08-26T20:40:00.6309478Z * [new branch] gh/guilhermeleobas/193/head -> origin/gh/guilhermeleobas/193/head 2025-08-26T20:40:00.6310068Z * [new branch] gh/guilhermeleobas/193/orig -> origin/gh/guilhermeleobas/193/orig 2025-08-26T20:40:00.6310862Z * [new branch] gh/guilhermeleobas/194/base -> origin/gh/guilhermeleobas/194/base 2025-08-26T20:40:00.6311461Z * [new branch] gh/guilhermeleobas/194/head -> origin/gh/guilhermeleobas/194/head 2025-08-26T20:40:00.6312052Z * [new branch] gh/guilhermeleobas/194/orig -> origin/gh/guilhermeleobas/194/orig 2025-08-26T20:40:00.6312656Z * [new branch] gh/guilhermeleobas/203/base -> origin/gh/guilhermeleobas/203/base 2025-08-26T20:40:00.6313903Z * [new branch] gh/guilhermeleobas/203/head -> origin/gh/guilhermeleobas/203/head 2025-08-26T20:40:00.6314565Z * [new branch] gh/guilhermeleobas/203/orig -> origin/gh/guilhermeleobas/203/orig 2025-08-26T20:40:00.6315220Z * [new branch] gh/guilhermeleobas/204/base -> origin/gh/guilhermeleobas/204/base 2025-08-26T20:40:00.6315804Z * [new branch] gh/guilhermeleobas/204/head -> origin/gh/guilhermeleobas/204/head 2025-08-26T20:40:00.6316416Z * [new branch] gh/guilhermeleobas/204/orig -> origin/gh/guilhermeleobas/204/orig 2025-08-26T20:40:00.6317006Z * [new branch] gh/guilhermeleobas/205/base -> origin/gh/guilhermeleobas/205/base 2025-08-26T20:40:00.6317601Z * [new branch] gh/guilhermeleobas/205/head -> origin/gh/guilhermeleobas/205/head 2025-08-26T20:40:00.6318192Z * [new branch] gh/guilhermeleobas/205/orig -> origin/gh/guilhermeleobas/205/orig 2025-08-26T20:40:00.6318780Z * [new branch] gh/guilhermeleobas/206/base -> origin/gh/guilhermeleobas/206/base 2025-08-26T20:40:00.6319373Z * [new branch] gh/guilhermeleobas/206/head -> origin/gh/guilhermeleobas/206/head 2025-08-26T20:40:00.6319960Z * [new branch] gh/guilhermeleobas/206/orig -> origin/gh/guilhermeleobas/206/orig 2025-08-26T20:40:00.6320636Z * [new branch] gh/guilhermeleobas/209/base -> origin/gh/guilhermeleobas/209/base 2025-08-26T20:40:00.6321232Z * [new branch] gh/guilhermeleobas/209/head -> origin/gh/guilhermeleobas/209/head 2025-08-26T20:40:00.6321809Z * [new branch] gh/guilhermeleobas/209/orig -> origin/gh/guilhermeleobas/209/orig 2025-08-26T20:40:00.6322405Z * [new branch] gh/guilhermeleobas/210/base -> origin/gh/guilhermeleobas/210/base 2025-08-26T20:40:00.6322988Z * [new branch] gh/guilhermeleobas/210/head -> origin/gh/guilhermeleobas/210/head 2025-08-26T20:40:00.6323581Z * [new branch] gh/guilhermeleobas/210/orig -> origin/gh/guilhermeleobas/210/orig 2025-08-26T20:40:00.6324176Z * [new branch] gh/guilhermeleobas/211/base -> origin/gh/guilhermeleobas/211/base 2025-08-26T20:40:00.6324760Z * [new branch] gh/guilhermeleobas/211/head -> origin/gh/guilhermeleobas/211/head 2025-08-26T20:40:00.6325353Z * [new branch] gh/guilhermeleobas/211/orig -> origin/gh/guilhermeleobas/211/orig 2025-08-26T20:40:00.6698009Z * [new branch] gh/guilhermeleobas/213/base -> origin/gh/guilhermeleobas/213/base 2025-08-26T20:40:00.6698677Z * [new branch] gh/guilhermeleobas/213/head -> origin/gh/guilhermeleobas/213/head 2025-08-26T20:40:00.6699286Z * [new branch] gh/guilhermeleobas/213/orig -> origin/gh/guilhermeleobas/213/orig 2025-08-26T20:40:00.6699878Z * [new branch] gh/guilhermeleobas/214/base -> origin/gh/guilhermeleobas/214/base 2025-08-26T20:40:00.6700472Z * [new branch] gh/guilhermeleobas/214/head -> origin/gh/guilhermeleobas/214/head 2025-08-26T20:40:00.6701082Z * [new branch] gh/guilhermeleobas/214/orig -> origin/gh/guilhermeleobas/214/orig 2025-08-26T20:40:00.6701672Z * [new branch] gh/guilhermeleobas/215/base -> origin/gh/guilhermeleobas/215/base 2025-08-26T20:40:00.6702260Z * [new branch] gh/guilhermeleobas/215/head -> origin/gh/guilhermeleobas/215/head 2025-08-26T20:40:00.6702843Z * [new branch] gh/guilhermeleobas/215/orig -> origin/gh/guilhermeleobas/215/orig 2025-08-26T20:40:00.6703645Z * [new branch] gh/guilhermeleobas/216/base -> origin/gh/guilhermeleobas/216/base 2025-08-26T20:40:00.6704230Z * [new branch] gh/guilhermeleobas/216/head -> origin/gh/guilhermeleobas/216/head 2025-08-26T20:40:00.6704824Z * [new branch] gh/guilhermeleobas/216/orig -> origin/gh/guilhermeleobas/216/orig 2025-08-26T20:40:00.6705421Z * [new branch] gh/guilhermeleobas/217/base -> origin/gh/guilhermeleobas/217/base 2025-08-26T20:40:00.6706208Z * [new branch] gh/guilhermeleobas/217/head -> origin/gh/guilhermeleobas/217/head 2025-08-26T20:40:00.6706822Z * [new branch] gh/guilhermeleobas/217/orig -> origin/gh/guilhermeleobas/217/orig 2025-08-26T20:40:00.6707410Z * [new branch] gh/guilhermeleobas/218/base -> origin/gh/guilhermeleobas/218/base 2025-08-26T20:40:00.6708006Z * [new branch] gh/guilhermeleobas/218/head -> origin/gh/guilhermeleobas/218/head 2025-08-26T20:40:00.6708607Z * [new branch] gh/guilhermeleobas/218/orig -> origin/gh/guilhermeleobas/218/orig 2025-08-26T20:40:00.6709188Z * [new branch] gh/guilhermeleobas/219/base -> origin/gh/guilhermeleobas/219/base 2025-08-26T20:40:00.6709779Z * [new branch] gh/guilhermeleobas/219/head -> origin/gh/guilhermeleobas/219/head 2025-08-26T20:40:00.6710362Z * [new branch] gh/guilhermeleobas/219/orig -> origin/gh/guilhermeleobas/219/orig 2025-08-26T20:40:00.6710960Z * [new branch] gh/guilhermeleobas/220/base -> origin/gh/guilhermeleobas/220/base 2025-08-26T20:40:00.6711544Z * [new branch] gh/guilhermeleobas/220/head -> origin/gh/guilhermeleobas/220/head 2025-08-26T20:40:00.6712123Z * [new branch] gh/guilhermeleobas/220/orig -> origin/gh/guilhermeleobas/220/orig 2025-08-26T20:40:00.6712713Z * [new branch] gh/guilhermeleobas/221/base -> origin/gh/guilhermeleobas/221/base 2025-08-26T20:40:00.6713297Z * [new branch] gh/guilhermeleobas/221/head -> origin/gh/guilhermeleobas/221/head 2025-08-26T20:40:00.6713891Z * [new branch] gh/guilhermeleobas/221/orig -> origin/gh/guilhermeleobas/221/orig 2025-08-26T20:40:00.6714484Z * [new branch] gh/guilhermeleobas/222/base -> origin/gh/guilhermeleobas/222/base 2025-08-26T20:40:00.6715066Z * [new branch] gh/guilhermeleobas/222/head -> origin/gh/guilhermeleobas/222/head 2025-08-26T20:40:00.6715656Z * [new branch] gh/guilhermeleobas/222/orig -> origin/gh/guilhermeleobas/222/orig 2025-08-26T20:40:00.6716244Z * [new branch] gh/guilhermeleobas/223/base -> origin/gh/guilhermeleobas/223/base 2025-08-26T20:40:00.6716832Z * [new branch] gh/guilhermeleobas/223/head -> origin/gh/guilhermeleobas/223/head 2025-08-26T20:40:00.6717423Z * [new branch] gh/guilhermeleobas/223/orig -> origin/gh/guilhermeleobas/223/orig 2025-08-26T20:40:00.6718005Z * [new branch] gh/guilhermeleobas/224/base -> origin/gh/guilhermeleobas/224/base 2025-08-26T20:40:00.6718597Z * [new branch] gh/guilhermeleobas/224/head -> origin/gh/guilhermeleobas/224/head 2025-08-26T20:40:00.6719177Z * [new branch] gh/guilhermeleobas/224/orig -> origin/gh/guilhermeleobas/224/orig 2025-08-26T20:40:00.6719772Z * [new branch] gh/guilhermeleobas/225/base -> origin/gh/guilhermeleobas/225/base 2025-08-26T20:40:00.6720364Z * [new branch] gh/guilhermeleobas/225/head -> origin/gh/guilhermeleobas/225/head 2025-08-26T20:40:00.6720955Z * [new branch] gh/guilhermeleobas/225/orig -> origin/gh/guilhermeleobas/225/orig 2025-08-26T20:40:00.6721547Z * [new branch] gh/guilhermeleobas/226/base -> origin/gh/guilhermeleobas/226/base 2025-08-26T20:40:00.6722123Z * [new branch] gh/guilhermeleobas/226/head -> origin/gh/guilhermeleobas/226/head 2025-08-26T20:40:00.6722872Z * [new branch] gh/guilhermeleobas/226/orig -> origin/gh/guilhermeleobas/226/orig 2025-08-26T20:40:00.6723578Z * [new branch] gh/guilhermeleobas/227/base -> origin/gh/guilhermeleobas/227/base 2025-08-26T20:40:00.7114158Z * [new branch] gh/guilhermeleobas/227/head -> origin/gh/guilhermeleobas/227/head 2025-08-26T20:40:00.7114928Z * [new branch] gh/guilhermeleobas/227/orig -> origin/gh/guilhermeleobas/227/orig 2025-08-26T20:40:00.7133838Z * [new branch] gh/guilhermeleobas/228/base -> origin/gh/guilhermeleobas/228/base 2025-08-26T20:40:00.7134962Z * [new branch] gh/guilhermeleobas/228/head -> origin/gh/guilhermeleobas/228/head 2025-08-26T20:40:00.7135662Z * [new branch] gh/guilhermeleobas/228/orig -> origin/gh/guilhermeleobas/228/orig 2025-08-26T20:40:00.7136315Z * [new branch] gh/guilhermeleobas/229/base -> origin/gh/guilhermeleobas/229/base 2025-08-26T20:40:00.7137009Z * [new branch] gh/guilhermeleobas/229/head -> origin/gh/guilhermeleobas/229/head 2025-08-26T20:40:00.7137698Z * [new branch] gh/guilhermeleobas/229/orig -> origin/gh/guilhermeleobas/229/orig 2025-08-26T20:40:00.7138388Z * [new branch] gh/guilhermeleobas/230/base -> origin/gh/guilhermeleobas/230/base 2025-08-26T20:40:00.7139020Z * [new branch] gh/guilhermeleobas/230/head -> origin/gh/guilhermeleobas/230/head 2025-08-26T20:40:00.7139708Z * [new branch] gh/guilhermeleobas/230/orig -> origin/gh/guilhermeleobas/230/orig 2025-08-26T20:40:00.7140402Z * [new branch] gh/guilhermeleobas/231/base -> origin/gh/guilhermeleobas/231/base 2025-08-26T20:40:00.7141083Z * [new branch] gh/guilhermeleobas/231/head -> origin/gh/guilhermeleobas/231/head 2025-08-26T20:40:00.7141727Z * [new branch] gh/guilhermeleobas/231/orig -> origin/gh/guilhermeleobas/231/orig 2025-08-26T20:40:00.7142312Z * [new branch] gh/guilhermeleobas/232/base -> origin/gh/guilhermeleobas/232/base 2025-08-26T20:40:00.7142925Z * [new branch] gh/guilhermeleobas/232/head -> origin/gh/guilhermeleobas/232/head 2025-08-26T20:40:00.7143519Z * [new branch] gh/guilhermeleobas/232/orig -> origin/gh/guilhermeleobas/232/orig 2025-08-26T20:40:00.7151431Z * [new branch] gh/guilhermeleobas/233/base -> origin/gh/guilhermeleobas/233/base 2025-08-26T20:40:00.7152531Z * [new branch] gh/guilhermeleobas/233/head -> origin/gh/guilhermeleobas/233/head 2025-08-26T20:40:00.7154228Z * [new branch] gh/guilhermeleobas/233/orig -> origin/gh/guilhermeleobas/233/orig 2025-08-26T20:40:00.7157573Z * [new branch] gh/guilhermeleobas/234/base -> origin/gh/guilhermeleobas/234/base 2025-08-26T20:40:00.7158783Z * [new branch] gh/guilhermeleobas/234/head -> origin/gh/guilhermeleobas/234/head 2025-08-26T20:40:00.7159568Z * [new branch] gh/guilhermeleobas/234/orig -> origin/gh/guilhermeleobas/234/orig 2025-08-26T20:40:00.7160199Z * [new branch] gh/guilhermeleobas/235/base -> origin/gh/guilhermeleobas/235/base 2025-08-26T20:40:00.7160795Z * [new branch] gh/guilhermeleobas/235/head -> origin/gh/guilhermeleobas/235/head 2025-08-26T20:40:00.7161396Z * [new branch] gh/guilhermeleobas/235/orig -> origin/gh/guilhermeleobas/235/orig 2025-08-26T20:40:00.7161997Z * [new branch] gh/guilhermeleobas/236/base -> origin/gh/guilhermeleobas/236/base 2025-08-26T20:40:00.7162586Z * [new branch] gh/guilhermeleobas/236/head -> origin/gh/guilhermeleobas/236/head 2025-08-26T20:40:00.7163249Z * [new branch] gh/guilhermeleobas/236/orig -> origin/gh/guilhermeleobas/236/orig 2025-08-26T20:40:00.7163882Z * [new branch] gh/guilhermeleobas/237/base -> origin/gh/guilhermeleobas/237/base 2025-08-26T20:40:00.7164482Z * [new branch] gh/guilhermeleobas/237/head -> origin/gh/guilhermeleobas/237/head 2025-08-26T20:40:00.7165270Z * [new branch] gh/guilhermeleobas/237/orig -> origin/gh/guilhermeleobas/237/orig 2025-08-26T20:40:00.7165857Z * [new branch] gh/guilhermeleobas/238/base -> origin/gh/guilhermeleobas/238/base 2025-08-26T20:40:00.7166458Z * [new branch] gh/guilhermeleobas/238/head -> origin/gh/guilhermeleobas/238/head 2025-08-26T20:40:00.7167040Z * [new branch] gh/guilhermeleobas/238/orig -> origin/gh/guilhermeleobas/238/orig 2025-08-26T20:40:00.7167641Z * [new branch] gh/guilhermeleobas/239/base -> origin/gh/guilhermeleobas/239/base 2025-08-26T20:40:00.7168357Z * [new branch] gh/guilhermeleobas/239/head -> origin/gh/guilhermeleobas/239/head 2025-08-26T20:40:00.7168994Z * [new branch] gh/guilhermeleobas/239/orig -> origin/gh/guilhermeleobas/239/orig 2025-08-26T20:40:00.7169641Z * [new branch] gh/guilhermeleobas/73/base -> origin/gh/guilhermeleobas/73/base 2025-08-26T20:40:00.7170225Z * [new branch] gh/guilhermeleobas/73/head -> origin/gh/guilhermeleobas/73/head 2025-08-26T20:40:00.7170809Z * [new branch] gh/guilhermeleobas/73/orig -> origin/gh/guilhermeleobas/73/orig 2025-08-26T20:40:00.7171379Z * [new branch] gh/henrylhtsang/103/base -> origin/gh/henrylhtsang/103/base 2025-08-26T20:40:00.7171925Z * [new branch] gh/henrylhtsang/103/head -> origin/gh/henrylhtsang/103/head 2025-08-26T20:40:00.7558709Z * [new branch] gh/henrylhtsang/103/orig -> origin/gh/henrylhtsang/103/orig 2025-08-26T20:40:00.7559339Z * [new branch] gh/henrylhtsang/132/base -> origin/gh/henrylhtsang/132/base 2025-08-26T20:40:00.7559952Z * [new branch] gh/henrylhtsang/132/head -> origin/gh/henrylhtsang/132/head 2025-08-26T20:40:00.7560566Z * [new branch] gh/henrylhtsang/132/orig -> origin/gh/henrylhtsang/132/orig 2025-08-26T20:40:00.7561234Z * [new branch] gh/henrylhtsang/133/base -> origin/gh/henrylhtsang/133/base 2025-08-26T20:40:00.7561904Z * [new branch] gh/henrylhtsang/133/head -> origin/gh/henrylhtsang/133/head 2025-08-26T20:40:00.7562520Z * [new branch] gh/henrylhtsang/133/orig -> origin/gh/henrylhtsang/133/orig 2025-08-26T20:40:00.7563167Z * [new branch] gh/henrylhtsang/134/base -> origin/gh/henrylhtsang/134/base 2025-08-26T20:40:00.7563813Z * [new branch] gh/henrylhtsang/134/head -> origin/gh/henrylhtsang/134/head 2025-08-26T20:40:00.7564413Z * [new branch] gh/henrylhtsang/134/orig -> origin/gh/henrylhtsang/134/orig 2025-08-26T20:40:00.7565068Z * [new branch] gh/henrylhtsang/135/base -> origin/gh/henrylhtsang/135/base 2025-08-26T20:40:00.7565672Z * [new branch] gh/henrylhtsang/135/head -> origin/gh/henrylhtsang/135/head 2025-08-26T20:40:00.7566319Z * [new branch] gh/henrylhtsang/135/orig -> origin/gh/henrylhtsang/135/orig 2025-08-26T20:40:00.7566973Z * [new branch] gh/henrylhtsang/136/base -> origin/gh/henrylhtsang/136/base 2025-08-26T20:40:00.7567566Z * [new branch] gh/henrylhtsang/136/head -> origin/gh/henrylhtsang/136/head 2025-08-26T20:40:00.7568221Z * [new branch] gh/henrylhtsang/136/orig -> origin/gh/henrylhtsang/136/orig 2025-08-26T20:40:00.7568870Z * [new branch] gh/henrylhtsang/137/base -> origin/gh/henrylhtsang/137/base 2025-08-26T20:40:00.7569466Z * [new branch] gh/henrylhtsang/137/head -> origin/gh/henrylhtsang/137/head 2025-08-26T20:40:00.7570133Z * [new branch] gh/henrylhtsang/137/orig -> origin/gh/henrylhtsang/137/orig 2025-08-26T20:40:00.7570777Z * [new branch] gh/henrylhtsang/138/base -> origin/gh/henrylhtsang/138/base 2025-08-26T20:40:00.7571379Z * [new branch] gh/henrylhtsang/138/head -> origin/gh/henrylhtsang/138/head 2025-08-26T20:40:00.7572024Z * [new branch] gh/henrylhtsang/138/orig -> origin/gh/henrylhtsang/138/orig 2025-08-26T20:40:00.7572870Z * [new branch] gh/henrylhtsang/139/base -> origin/gh/henrylhtsang/139/base 2025-08-26T20:40:00.7573526Z * [new branch] gh/henrylhtsang/139/head -> origin/gh/henrylhtsang/139/head 2025-08-26T20:40:00.7574126Z * [new branch] gh/henrylhtsang/139/orig -> origin/gh/henrylhtsang/139/orig 2025-08-26T20:40:00.7574781Z * [new branch] gh/henrylhtsang/140/base -> origin/gh/henrylhtsang/140/base 2025-08-26T20:40:00.7575548Z * [new branch] gh/henrylhtsang/140/head -> origin/gh/henrylhtsang/140/head 2025-08-26T20:40:00.7576218Z * [new branch] gh/henrylhtsang/140/orig -> origin/gh/henrylhtsang/140/orig 2025-08-26T20:40:00.7576827Z * [new branch] gh/henrylhtsang/141/base -> origin/gh/henrylhtsang/141/base 2025-08-26T20:40:00.7577471Z * [new branch] gh/henrylhtsang/141/head -> origin/gh/henrylhtsang/141/head 2025-08-26T20:40:00.7578127Z * [new branch] gh/henrylhtsang/141/orig -> origin/gh/henrylhtsang/141/orig 2025-08-26T20:40:00.7578718Z * [new branch] gh/henrylhtsang/142/base -> origin/gh/henrylhtsang/142/base 2025-08-26T20:40:00.7579371Z * [new branch] gh/henrylhtsang/142/head -> origin/gh/henrylhtsang/142/head 2025-08-26T20:40:00.7580022Z * [new branch] gh/henrylhtsang/142/orig -> origin/gh/henrylhtsang/142/orig 2025-08-26T20:40:00.7580612Z * [new branch] gh/henrylhtsang/143/base -> origin/gh/henrylhtsang/143/base 2025-08-26T20:40:00.7581285Z * [new branch] gh/henrylhtsang/143/head -> origin/gh/henrylhtsang/143/head 2025-08-26T20:40:00.7581886Z * [new branch] gh/henrylhtsang/143/orig -> origin/gh/henrylhtsang/143/orig 2025-08-26T20:40:00.7582537Z * [new branch] gh/henrylhtsang/144/base -> origin/gh/henrylhtsang/144/base 2025-08-26T20:40:00.7583198Z * [new branch] gh/henrylhtsang/144/head -> origin/gh/henrylhtsang/144/head 2025-08-26T20:40:00.7583804Z * [new branch] gh/henrylhtsang/144/orig -> origin/gh/henrylhtsang/144/orig 2025-08-26T20:40:00.7584463Z * [new branch] gh/henrylhtsang/145/base -> origin/gh/henrylhtsang/145/base 2025-08-26T20:40:00.7585108Z * [new branch] gh/henrylhtsang/145/head -> origin/gh/henrylhtsang/145/head 2025-08-26T20:40:00.7585714Z * [new branch] gh/henrylhtsang/145/orig -> origin/gh/henrylhtsang/145/orig 2025-08-26T20:40:00.7586437Z * [new branch] gh/henrylhtsang/146/base -> origin/gh/henrylhtsang/146/base 2025-08-26T20:40:00.7587086Z * [new branch] gh/henrylhtsang/146/head -> origin/gh/henrylhtsang/146/head 2025-08-26T20:40:00.8019587Z * [new branch] gh/henrylhtsang/146/orig -> origin/gh/henrylhtsang/146/orig 2025-08-26T20:40:00.8020189Z * [new branch] gh/henrylhtsang/147/base -> origin/gh/henrylhtsang/147/base 2025-08-26T20:40:00.8020768Z * [new branch] gh/henrylhtsang/147/head -> origin/gh/henrylhtsang/147/head 2025-08-26T20:40:00.8021331Z * [new branch] gh/henrylhtsang/147/orig -> origin/gh/henrylhtsang/147/orig 2025-08-26T20:40:00.8021880Z * [new branch] gh/henrylhtsang/148/base -> origin/gh/henrylhtsang/148/base 2025-08-26T20:40:00.8022433Z * [new branch] gh/henrylhtsang/148/head -> origin/gh/henrylhtsang/148/head 2025-08-26T20:40:00.8022986Z * [new branch] gh/henrylhtsang/148/orig -> origin/gh/henrylhtsang/148/orig 2025-08-26T20:40:00.8023533Z * [new branch] gh/henrylhtsang/149/base -> origin/gh/henrylhtsang/149/base 2025-08-26T20:40:00.8024084Z * [new branch] gh/henrylhtsang/149/head -> origin/gh/henrylhtsang/149/head 2025-08-26T20:40:00.8024629Z * [new branch] gh/henrylhtsang/149/orig -> origin/gh/henrylhtsang/149/orig 2025-08-26T20:40:00.8025347Z * [new branch] gh/huydhn/1/next -> origin/gh/huydhn/1/next 2025-08-26T20:40:00.8025835Z * [new branch] gh/huydhn/2/next -> origin/gh/huydhn/2/next 2025-08-26T20:40:00.8026385Z * [new branch] gh/huydhn/3/next -> origin/gh/huydhn/3/next 2025-08-26T20:40:00.8026869Z * [new branch] gh/huydhn/4/next -> origin/gh/huydhn/4/next 2025-08-26T20:40:00.8027341Z * [new branch] gh/huydhn/5/next -> origin/gh/huydhn/5/next 2025-08-26T20:40:00.8027926Z * [new branch] gh/huydhn/6/head -> origin/gh/huydhn/6/head 2025-08-26T20:40:00.8028394Z * [new branch] gh/huydhn/6/next -> origin/gh/huydhn/6/next 2025-08-26T20:40:00.8028930Z * [new branch] gh/huydhn/6/orig -> origin/gh/huydhn/6/orig 2025-08-26T20:40:00.8029487Z * [new branch] gh/int3/97/base -> origin/gh/int3/97/base 2025-08-26T20:40:00.8029965Z * [new branch] gh/int3/97/head -> origin/gh/int3/97/head 2025-08-26T20:40:00.8030450Z * [new branch] gh/isuruf/101/base -> origin/gh/isuruf/101/base 2025-08-26T20:40:00.8030939Z * [new branch] gh/isuruf/101/head -> origin/gh/isuruf/101/head 2025-08-26T20:40:00.8031431Z * [new branch] gh/isuruf/116/base -> origin/gh/isuruf/116/base 2025-08-26T20:40:00.8031919Z * [new branch] gh/isuruf/116/head -> origin/gh/isuruf/116/head 2025-08-26T20:40:00.8032403Z * [new branch] gh/isuruf/116/orig -> origin/gh/isuruf/116/orig 2025-08-26T20:40:00.8032896Z * [new branch] gh/isuruf/141/base -> origin/gh/isuruf/141/base 2025-08-26T20:40:00.8033377Z * [new branch] gh/isuruf/141/head -> origin/gh/isuruf/141/head 2025-08-26T20:40:00.8033863Z * [new branch] gh/isuruf/141/orig -> origin/gh/isuruf/141/orig 2025-08-26T20:40:00.8034347Z * [new branch] gh/isuruf/142/base -> origin/gh/isuruf/142/base 2025-08-26T20:40:00.8034838Z * [new branch] gh/isuruf/142/head -> origin/gh/isuruf/142/head 2025-08-26T20:40:00.8035325Z * [new branch] gh/isuruf/142/orig -> origin/gh/isuruf/142/orig 2025-08-26T20:40:00.8035806Z * [new branch] gh/isuruf/143/base -> origin/gh/isuruf/143/base 2025-08-26T20:40:00.8036292Z * [new branch] gh/isuruf/143/head -> origin/gh/isuruf/143/head 2025-08-26T20:40:00.8036772Z * [new branch] gh/isuruf/143/orig -> origin/gh/isuruf/143/orig 2025-08-26T20:40:00.8037259Z * [new branch] gh/isuruf/81/base -> origin/gh/isuruf/81/base 2025-08-26T20:40:00.8037751Z * [new branch] gh/isuruf/81/head -> origin/gh/isuruf/81/head 2025-08-26T20:40:00.8038222Z * [new branch] gh/isuruf/81/orig -> origin/gh/isuruf/81/orig 2025-08-26T20:40:00.8038730Z * [new branch] gh/jamesjwu/140/base -> origin/gh/jamesjwu/140/base 2025-08-26T20:40:00.8039249Z * [new branch] gh/jamesjwu/140/head -> origin/gh/jamesjwu/140/head 2025-08-26T20:40:00.8039762Z * [new branch] gh/jamesjwu/140/orig -> origin/gh/jamesjwu/140/orig 2025-08-26T20:40:00.8040269Z * [new branch] gh/jamesjwu/150/base -> origin/gh/jamesjwu/150/base 2025-08-26T20:40:00.8040764Z * [new branch] gh/jamesjwu/150/head -> origin/gh/jamesjwu/150/head 2025-08-26T20:40:00.8041286Z * [new branch] gh/jamesjwu/150/orig -> origin/gh/jamesjwu/150/orig 2025-08-26T20:40:00.8041784Z * [new branch] gh/jamesjwu/154/base -> origin/gh/jamesjwu/154/base 2025-08-26T20:40:00.8042285Z * [new branch] gh/jamesjwu/154/head -> origin/gh/jamesjwu/154/head 2025-08-26T20:40:00.8042919Z * [new branch] gh/jamesjwu/154/orig -> origin/gh/jamesjwu/154/orig 2025-08-26T20:40:00.8043430Z * [new branch] gh/jamesjwu/155/base -> origin/gh/jamesjwu/155/base 2025-08-26T20:40:00.8474760Z * [new branch] gh/jamesjwu/155/head -> origin/gh/jamesjwu/155/head 2025-08-26T20:40:00.8475355Z * [new branch] gh/jamesjwu/155/orig -> origin/gh/jamesjwu/155/orig 2025-08-26T20:40:00.8475922Z * [new branch] gh/jamesjwu/159/base -> origin/gh/jamesjwu/159/base 2025-08-26T20:40:00.8476612Z * [new branch] gh/jamesjwu/159/head -> origin/gh/jamesjwu/159/head 2025-08-26T20:40:00.8477111Z * [new branch] gh/jamesjwu/159/orig -> origin/gh/jamesjwu/159/orig 2025-08-26T20:40:00.8477624Z * [new branch] gh/jamesjwu/163/base -> origin/gh/jamesjwu/163/base 2025-08-26T20:40:00.8478136Z * [new branch] gh/jamesjwu/163/head -> origin/gh/jamesjwu/163/head 2025-08-26T20:40:00.8478666Z * [new branch] gh/jamesjwu/163/orig -> origin/gh/jamesjwu/163/orig 2025-08-26T20:40:00.8479177Z * [new branch] gh/jamesjwu/171/base -> origin/gh/jamesjwu/171/base 2025-08-26T20:40:00.8479674Z * [new branch] gh/jamesjwu/171/head -> origin/gh/jamesjwu/171/head 2025-08-26T20:40:00.8480184Z * [new branch] gh/jamesjwu/171/orig -> origin/gh/jamesjwu/171/orig 2025-08-26T20:40:00.8480685Z * [new branch] gh/jamesjwu/175/base -> origin/gh/jamesjwu/175/base 2025-08-26T20:40:00.8481288Z * [new branch] gh/jamesjwu/175/head -> origin/gh/jamesjwu/175/head 2025-08-26T20:40:00.8481851Z * [new branch] gh/jamesjwu/175/orig -> origin/gh/jamesjwu/175/orig 2025-08-26T20:40:00.8482448Z * [new branch] gh/jamesjwu/176/base -> origin/gh/jamesjwu/176/base 2025-08-26T20:40:00.8482998Z * [new branch] gh/jamesjwu/176/head -> origin/gh/jamesjwu/176/head 2025-08-26T20:40:00.8483603Z * [new branch] gh/jamesjwu/176/orig -> origin/gh/jamesjwu/176/orig 2025-08-26T20:40:00.8484163Z * [new branch] gh/jamesjwu/180/base -> origin/gh/jamesjwu/180/base 2025-08-26T20:40:00.8484769Z * [new branch] gh/jamesjwu/180/head -> origin/gh/jamesjwu/180/head 2025-08-26T20:40:00.8485333Z * [new branch] gh/jamesjwu/180/orig -> origin/gh/jamesjwu/180/orig 2025-08-26T20:40:00.8485938Z * [new branch] gh/jamesjwu/181/base -> origin/gh/jamesjwu/181/base 2025-08-26T20:40:00.8486488Z * [new branch] gh/jamesjwu/181/head -> origin/gh/jamesjwu/181/head 2025-08-26T20:40:00.8487109Z * [new branch] gh/jamesjwu/181/orig -> origin/gh/jamesjwu/181/orig 2025-08-26T20:40:00.8487666Z * [new branch] gh/jamesjwu/182/base -> origin/gh/jamesjwu/182/base 2025-08-26T20:40:00.8488262Z * [new branch] gh/jamesjwu/182/head -> origin/gh/jamesjwu/182/head 2025-08-26T20:40:00.8488823Z * [new branch] gh/jamesjwu/182/orig -> origin/gh/jamesjwu/182/orig 2025-08-26T20:40:00.8489426Z * [new branch] gh/jamesjwu/183/base -> origin/gh/jamesjwu/183/base 2025-08-26T20:40:00.8489981Z * [new branch] gh/jamesjwu/183/head -> origin/gh/jamesjwu/183/head 2025-08-26T20:40:00.8490595Z * [new branch] gh/jamesjwu/183/orig -> origin/gh/jamesjwu/183/orig 2025-08-26T20:40:00.8491152Z * [new branch] gh/jamesjwu/184/base -> origin/gh/jamesjwu/184/base 2025-08-26T20:40:00.8491759Z * [new branch] gh/jamesjwu/184/head -> origin/gh/jamesjwu/184/head 2025-08-26T20:40:00.8492305Z * [new branch] gh/jamesjwu/184/orig -> origin/gh/jamesjwu/184/orig 2025-08-26T20:40:00.8492908Z * [new branch] gh/jamesjwu/185/base -> origin/gh/jamesjwu/185/base 2025-08-26T20:40:00.8493621Z * [new branch] gh/jamesjwu/185/head -> origin/gh/jamesjwu/185/head 2025-08-26T20:40:00.8494205Z * [new branch] gh/jamesjwu/185/orig -> origin/gh/jamesjwu/185/orig 2025-08-26T20:40:00.8494823Z * [new branch] gh/jamesjwu/52/base -> origin/gh/jamesjwu/52/base 2025-08-26T20:40:00.8495376Z * [new branch] gh/jamesjwu/52/head -> origin/gh/jamesjwu/52/head 2025-08-26T20:40:00.8495978Z * [new branch] gh/jamesjwu/53/base -> origin/gh/jamesjwu/53/base 2025-08-26T20:40:00.8496621Z * [new branch] gh/jamesjwu/53/head -> origin/gh/jamesjwu/53/head 2025-08-26T20:40:00.8497238Z * [new branch] gh/jamesjwu/54/base -> origin/gh/jamesjwu/54/base 2025-08-26T20:40:00.8497803Z * [new branch] gh/jamesjwu/54/head -> origin/gh/jamesjwu/54/head 2025-08-26T20:40:00.8498398Z * [new branch] gh/jamesjwu/55/base -> origin/gh/jamesjwu/55/base 2025-08-26T20:40:00.8498957Z * [new branch] gh/jamesjwu/55/head -> origin/gh/jamesjwu/55/head 2025-08-26T20:40:00.8499556Z * [new branch] gh/jamesjwu/56/base -> origin/gh/jamesjwu/56/base 2025-08-26T20:40:00.8500108Z * [new branch] gh/jamesjwu/56/head -> origin/gh/jamesjwu/56/head 2025-08-26T20:40:00.8500716Z * [new branch] gh/jamesjwu/57/base -> origin/gh/jamesjwu/57/base 2025-08-26T20:40:00.8501270Z * [new branch] gh/jamesjwu/57/head -> origin/gh/jamesjwu/57/head 2025-08-26T20:40:00.8931645Z * [new branch] gh/jamesjwu/58/base -> origin/gh/jamesjwu/58/base 2025-08-26T20:40:00.8932179Z * [new branch] gh/jamesjwu/58/head -> origin/gh/jamesjwu/58/head 2025-08-26T20:40:00.8932693Z * [new branch] gh/jamesjwu/59/base -> origin/gh/jamesjwu/59/base 2025-08-26T20:40:00.8933199Z * [new branch] gh/jamesjwu/59/head -> origin/gh/jamesjwu/59/head 2025-08-26T20:40:00.8933708Z * [new branch] gh/jamesjwu/60/base -> origin/gh/jamesjwu/60/base 2025-08-26T20:40:00.8934213Z * [new branch] gh/jamesjwu/60/head -> origin/gh/jamesjwu/60/head 2025-08-26T20:40:00.8934716Z * [new branch] gh/jamesjwu/61/base -> origin/gh/jamesjwu/61/base 2025-08-26T20:40:00.8935229Z * [new branch] gh/jamesjwu/61/head -> origin/gh/jamesjwu/61/head 2025-08-26T20:40:00.8935733Z * [new branch] gh/jamesjwu/62/base -> origin/gh/jamesjwu/62/base 2025-08-26T20:40:00.8936302Z * [new branch] gh/jamesjwu/62/head -> origin/gh/jamesjwu/62/head 2025-08-26T20:40:00.8936893Z * [new branch] gh/jamesjwu/63/base -> origin/gh/jamesjwu/63/base 2025-08-26T20:40:00.8937394Z * [new branch] gh/jamesjwu/63/head -> origin/gh/jamesjwu/63/head 2025-08-26T20:40:00.8937886Z * [new branch] gh/jamesjwu/64/base -> origin/gh/jamesjwu/64/base 2025-08-26T20:40:00.8938388Z * [new branch] gh/jamesjwu/64/head -> origin/gh/jamesjwu/64/head 2025-08-26T20:40:00.8938886Z * [new branch] gh/jamesjwu/65/base -> origin/gh/jamesjwu/65/base 2025-08-26T20:40:00.8939381Z * [new branch] gh/jamesjwu/65/head -> origin/gh/jamesjwu/65/head 2025-08-26T20:40:00.8939887Z * [new branch] gh/janeyx99/165/base -> origin/gh/janeyx99/165/base 2025-08-26T20:40:00.8940394Z * [new branch] gh/janeyx99/165/head -> origin/gh/janeyx99/165/head 2025-08-26T20:40:00.8940901Z * [new branch] gh/janeyx99/165/orig -> origin/gh/janeyx99/165/orig 2025-08-26T20:40:00.8941399Z * [new branch] gh/janeyx99/201/base -> origin/gh/janeyx99/201/base 2025-08-26T20:40:00.8941904Z * [new branch] gh/janeyx99/201/head -> origin/gh/janeyx99/201/head 2025-08-26T20:40:00.8942594Z * [new branch] gh/janeyx99/201/orig -> origin/gh/janeyx99/201/orig 2025-08-26T20:40:00.8943092Z * [new branch] gh/janeyx99/225/base -> origin/gh/janeyx99/225/base 2025-08-26T20:40:00.8943607Z * [new branch] gh/janeyx99/225/head -> origin/gh/janeyx99/225/head 2025-08-26T20:40:00.8944107Z * [new branch] gh/janeyx99/225/orig -> origin/gh/janeyx99/225/orig 2025-08-26T20:40:00.8944612Z * [new branch] gh/janeyx99/282/base -> origin/gh/janeyx99/282/base 2025-08-26T20:40:00.8945225Z * [new branch] gh/janeyx99/282/head -> origin/gh/janeyx99/282/head 2025-08-26T20:40:00.8945729Z * [new branch] gh/janeyx99/282/orig -> origin/gh/janeyx99/282/orig 2025-08-26T20:40:00.8946295Z * [new branch] gh/janeyx99/283/base -> origin/gh/janeyx99/283/base 2025-08-26T20:40:00.8946796Z * [new branch] gh/janeyx99/283/head -> origin/gh/janeyx99/283/head 2025-08-26T20:40:00.8947311Z * [new branch] gh/janeyx99/283/orig -> origin/gh/janeyx99/283/orig 2025-08-26T20:40:00.8947820Z * [new branch] gh/janeyx99/284/base -> origin/gh/janeyx99/284/base 2025-08-26T20:40:00.8948314Z * [new branch] gh/janeyx99/284/head -> origin/gh/janeyx99/284/head 2025-08-26T20:40:00.8948815Z * [new branch] gh/janeyx99/284/orig -> origin/gh/janeyx99/284/orig 2025-08-26T20:40:00.8949306Z * [new branch] gh/janeyx99/285/base -> origin/gh/janeyx99/285/base 2025-08-26T20:40:00.8949812Z * [new branch] gh/janeyx99/285/head -> origin/gh/janeyx99/285/head 2025-08-26T20:40:00.8950302Z * [new branch] gh/janeyx99/285/orig -> origin/gh/janeyx99/285/orig 2025-08-26T20:40:00.8950806Z * [new branch] gh/janeyx99/286/base -> origin/gh/janeyx99/286/base 2025-08-26T20:40:00.8951307Z * [new branch] gh/janeyx99/286/head -> origin/gh/janeyx99/286/head 2025-08-26T20:40:00.8951810Z * [new branch] gh/janeyx99/286/orig -> origin/gh/janeyx99/286/orig 2025-08-26T20:40:00.8952312Z * [new branch] gh/janeyx99/287/base -> origin/gh/janeyx99/287/base 2025-08-26T20:40:00.8952809Z * [new branch] gh/janeyx99/287/head -> origin/gh/janeyx99/287/head 2025-08-26T20:40:00.8953313Z * [new branch] gh/janeyx99/287/orig -> origin/gh/janeyx99/287/orig 2025-08-26T20:40:00.8953819Z * [new branch] gh/janeyx99/288/base -> origin/gh/janeyx99/288/base 2025-08-26T20:40:00.8954319Z * [new branch] gh/janeyx99/288/head -> origin/gh/janeyx99/288/head 2025-08-26T20:40:00.8954819Z * [new branch] gh/janeyx99/288/orig -> origin/gh/janeyx99/288/orig 2025-08-26T20:40:00.9380601Z * [new branch] gh/janeyx99/289/base -> origin/gh/janeyx99/289/base 2025-08-26T20:40:00.9381191Z * [new branch] gh/janeyx99/289/head -> origin/gh/janeyx99/289/head 2025-08-26T20:40:00.9381696Z * [new branch] gh/janeyx99/289/orig -> origin/gh/janeyx99/289/orig 2025-08-26T20:40:00.9382222Z * [new branch] gh/janeyx99/290/base -> origin/gh/janeyx99/290/base 2025-08-26T20:40:00.9382732Z * [new branch] gh/janeyx99/290/head -> origin/gh/janeyx99/290/head 2025-08-26T20:40:00.9383229Z * [new branch] gh/janeyx99/290/orig -> origin/gh/janeyx99/290/orig 2025-08-26T20:40:00.9383798Z * [new branch] gh/janeyx99/291/base -> origin/gh/janeyx99/291/base 2025-08-26T20:40:00.9384335Z * [new branch] gh/janeyx99/291/head -> origin/gh/janeyx99/291/head 2025-08-26T20:40:00.9384835Z * [new branch] gh/janeyx99/291/orig -> origin/gh/janeyx99/291/orig 2025-08-26T20:40:00.9385338Z * [new branch] gh/janeyx99/292/base -> origin/gh/janeyx99/292/base 2025-08-26T20:40:00.9386067Z * [new branch] gh/janeyx99/292/head -> origin/gh/janeyx99/292/head 2025-08-26T20:40:00.9386561Z * [new branch] gh/janeyx99/292/orig -> origin/gh/janeyx99/292/orig 2025-08-26T20:40:00.9387051Z * [new branch] gh/janeyx99/293/base -> origin/gh/janeyx99/293/base 2025-08-26T20:40:00.9387553Z * [new branch] gh/janeyx99/293/head -> origin/gh/janeyx99/293/head 2025-08-26T20:40:00.9388048Z * [new branch] gh/janeyx99/293/orig -> origin/gh/janeyx99/293/orig 2025-08-26T20:40:00.9388676Z * [new branch] gh/janeyx99/294/base -> origin/gh/janeyx99/294/base 2025-08-26T20:40:00.9389222Z * [new branch] gh/janeyx99/294/head -> origin/gh/janeyx99/294/head 2025-08-26T20:40:00.9389763Z * [new branch] gh/janeyx99/294/orig -> origin/gh/janeyx99/294/orig 2025-08-26T20:40:00.9390275Z * [new branch] gh/janeyx99/295/base -> origin/gh/janeyx99/295/base 2025-08-26T20:40:00.9390781Z * [new branch] gh/janeyx99/295/head -> origin/gh/janeyx99/295/head 2025-08-26T20:40:00.9391280Z * [new branch] gh/janeyx99/295/orig -> origin/gh/janeyx99/295/orig 2025-08-26T20:40:00.9391776Z * [new branch] gh/janeyx99/296/base -> origin/gh/janeyx99/296/base 2025-08-26T20:40:00.9392263Z * [new branch] gh/janeyx99/296/head -> origin/gh/janeyx99/296/head 2025-08-26T20:40:00.9392769Z * [new branch] gh/janeyx99/296/orig -> origin/gh/janeyx99/296/orig 2025-08-26T20:40:00.9393274Z * [new branch] gh/janeyx99/297/base -> origin/gh/janeyx99/297/base 2025-08-26T20:40:00.9393763Z * [new branch] gh/janeyx99/297/head -> origin/gh/janeyx99/297/head 2025-08-26T20:40:00.9394261Z * [new branch] gh/janeyx99/297/orig -> origin/gh/janeyx99/297/orig 2025-08-26T20:40:00.9394759Z * [new branch] gh/janeyx99/298/base -> origin/gh/janeyx99/298/base 2025-08-26T20:40:00.9395307Z * [new branch] gh/janeyx99/298/head -> origin/gh/janeyx99/298/head 2025-08-26T20:40:00.9395850Z * [new branch] gh/janeyx99/298/orig -> origin/gh/janeyx99/298/orig 2025-08-26T20:40:00.9396349Z * [new branch] gh/janeyx99/299/base -> origin/gh/janeyx99/299/base 2025-08-26T20:40:00.9396852Z * [new branch] gh/janeyx99/299/head -> origin/gh/janeyx99/299/head 2025-08-26T20:40:00.9397352Z * [new branch] gh/janeyx99/299/orig -> origin/gh/janeyx99/299/orig 2025-08-26T20:40:00.9397857Z * [new branch] gh/janeyx99/300/base -> origin/gh/janeyx99/300/base 2025-08-26T20:40:00.9398349Z * [new branch] gh/janeyx99/300/head -> origin/gh/janeyx99/300/head 2025-08-26T20:40:00.9398849Z * [new branch] gh/janeyx99/300/orig -> origin/gh/janeyx99/300/orig 2025-08-26T20:40:00.9399353Z * [new branch] gh/janeyx99/301/base -> origin/gh/janeyx99/301/base 2025-08-26T20:40:00.9399845Z * [new branch] gh/janeyx99/301/head -> origin/gh/janeyx99/301/head 2025-08-26T20:40:00.9400345Z * [new branch] gh/janeyx99/301/orig -> origin/gh/janeyx99/301/orig 2025-08-26T20:40:00.9400895Z * [new branch] gh/janeyx99/88/base -> origin/gh/janeyx99/88/base 2025-08-26T20:40:00.9401437Z * [new branch] gh/janeyx99/88/head -> origin/gh/janeyx99/88/head 2025-08-26T20:40:00.9401936Z * [new branch] gh/janeyx99/88/orig -> origin/gh/janeyx99/88/orig 2025-08-26T20:40:00.9402424Z * [new branch] gh/jansel/360/base -> origin/gh/jansel/360/base 2025-08-26T20:40:00.9402915Z * [new branch] gh/jansel/360/head -> origin/gh/jansel/360/head 2025-08-26T20:40:00.9403393Z * [new branch] gh/jansel/451/base -> origin/gh/jansel/451/base 2025-08-26T20:40:00.9403992Z * [new branch] gh/jansel/451/head -> origin/gh/jansel/451/head 2025-08-26T20:40:00.9404470Z * [new branch] gh/jansel/451/orig -> origin/gh/jansel/451/orig 2025-08-26T20:40:00.9839532Z * [new branch] gh/jansel/462/base -> origin/gh/jansel/462/base 2025-08-26T20:40:00.9840087Z * [new branch] gh/jansel/462/head -> origin/gh/jansel/462/head 2025-08-26T20:40:00.9840584Z * [new branch] gh/jansel/462/orig -> origin/gh/jansel/462/orig 2025-08-26T20:40:00.9841298Z * [new branch] gh/jansel/531/base -> origin/gh/jansel/531/base 2025-08-26T20:40:00.9841867Z * [new branch] gh/jansel/531/head -> origin/gh/jansel/531/head 2025-08-26T20:40:00.9842402Z * [new branch] gh/jansel/531/orig -> origin/gh/jansel/531/orig 2025-08-26T20:40:00.9842916Z * [new branch] gh/jansel/534/base -> origin/gh/jansel/534/base 2025-08-26T20:40:00.9843395Z * [new branch] gh/jansel/534/head -> origin/gh/jansel/534/head 2025-08-26T20:40:00.9843873Z * [new branch] gh/jansel/534/orig -> origin/gh/jansel/534/orig 2025-08-26T20:40:00.9844396Z * [new branch] gh/jbschlosser/208/head -> origin/gh/jbschlosser/208/head 2025-08-26T20:40:00.9844933Z * [new branch] gh/jbschlosser/239/base -> origin/gh/jbschlosser/239/base 2025-08-26T20:40:00.9845478Z * [new branch] gh/jbschlosser/239/head -> origin/gh/jbschlosser/239/head 2025-08-26T20:40:00.9846013Z * [new branch] gh/jbschlosser/239/orig -> origin/gh/jbschlosser/239/orig 2025-08-26T20:40:00.9846561Z * [new branch] gh/jbschlosser/247/base -> origin/gh/jbschlosser/247/base 2025-08-26T20:40:00.9847102Z * [new branch] gh/jbschlosser/247/head -> origin/gh/jbschlosser/247/head 2025-08-26T20:40:00.9847698Z * [new branch] gh/jbschlosser/247/orig -> origin/gh/jbschlosser/247/orig 2025-08-26T20:40:00.9848279Z * [new branch] gh/jbschlosser/248/base -> origin/gh/jbschlosser/248/base 2025-08-26T20:40:00.9848812Z * [new branch] gh/jbschlosser/248/head -> origin/gh/jbschlosser/248/head 2025-08-26T20:40:00.9849355Z * [new branch] gh/jbschlosser/248/orig -> origin/gh/jbschlosser/248/orig 2025-08-26T20:40:00.9849900Z * [new branch] gh/jbschlosser/250/base -> origin/gh/jbschlosser/250/base 2025-08-26T20:40:00.9850440Z * [new branch] gh/jbschlosser/250/head -> origin/gh/jbschlosser/250/head 2025-08-26T20:40:00.9850987Z * [new branch] gh/jbschlosser/250/orig -> origin/gh/jbschlosser/250/orig 2025-08-26T20:40:00.9851517Z * [new branch] gh/jiayisunx/57/base -> origin/gh/jiayisunx/57/base 2025-08-26T20:40:00.9852036Z * [new branch] gh/jiayisunx/57/head -> origin/gh/jiayisunx/57/head 2025-08-26T20:40:00.9852550Z * [new branch] gh/jiayisunx/57/orig -> origin/gh/jiayisunx/57/orig 2025-08-26T20:40:00.9853117Z * [new branch] gh/jiayisunx/59/base -> origin/gh/jiayisunx/59/base 2025-08-26T20:40:00.9853681Z * [new branch] gh/jiayisunx/59/head -> origin/gh/jiayisunx/59/head 2025-08-26T20:40:00.9854184Z * [new branch] gh/jiayisunx/59/orig -> origin/gh/jiayisunx/59/orig 2025-08-26T20:40:00.9854693Z * [new branch] gh/jiayisunx/61/base -> origin/gh/jiayisunx/61/base 2025-08-26T20:40:00.9855194Z * [new branch] gh/jiayisunx/61/head -> origin/gh/jiayisunx/61/head 2025-08-26T20:40:00.9855703Z * [new branch] gh/jiayisunx/61/orig -> origin/gh/jiayisunx/61/orig 2025-08-26T20:40:00.9856221Z * [new branch] gh/jiayisunx/64/base -> origin/gh/jiayisunx/64/base 2025-08-26T20:40:00.9856861Z * [new branch] gh/jiayisunx/64/head -> origin/gh/jiayisunx/64/head 2025-08-26T20:40:00.9857378Z * [new branch] gh/jiayisunx/64/orig -> origin/gh/jiayisunx/64/orig 2025-08-26T20:40:00.9857881Z * [new branch] gh/jiayisunx/65/base -> origin/gh/jiayisunx/65/base 2025-08-26T20:40:00.9858390Z * [new branch] gh/jiayisunx/65/head -> origin/gh/jiayisunx/65/head 2025-08-26T20:40:00.9858956Z * [new branch] gh/jiayisunx/65/orig -> origin/gh/jiayisunx/65/orig 2025-08-26T20:40:00.9859608Z * [new branch] gh/jiayisunx/66/base -> origin/gh/jiayisunx/66/base 2025-08-26T20:40:00.9860126Z * [new branch] gh/jiayisunx/66/head -> origin/gh/jiayisunx/66/head 2025-08-26T20:40:00.9860637Z * [new branch] gh/jiayisunx/66/orig -> origin/gh/jiayisunx/66/orig 2025-08-26T20:40:00.9861156Z * [new branch] gh/jiayisunx/67/base -> origin/gh/jiayisunx/67/base 2025-08-26T20:40:00.9861677Z * [new branch] gh/jiayisunx/67/head -> origin/gh/jiayisunx/67/head 2025-08-26T20:40:00.9862184Z * [new branch] gh/jiayisunx/67/orig -> origin/gh/jiayisunx/67/orig 2025-08-26T20:40:00.9862696Z * [new branch] gh/jiayisunx/68/base -> origin/gh/jiayisunx/68/base 2025-08-26T20:40:00.9863201Z * [new branch] gh/jiayisunx/68/head -> origin/gh/jiayisunx/68/head 2025-08-26T20:40:00.9863715Z * [new branch] gh/jiayisunx/68/orig -> origin/gh/jiayisunx/68/orig 2025-08-26T20:40:01.0322028Z * [new branch] gh/jiayisunx/69/base -> origin/gh/jiayisunx/69/base 2025-08-26T20:40:01.0322597Z * [new branch] gh/jiayisunx/69/head -> origin/gh/jiayisunx/69/head 2025-08-26T20:40:01.0323133Z * [new branch] gh/jiayisunx/69/orig -> origin/gh/jiayisunx/69/orig 2025-08-26T20:40:01.0323641Z * [new branch] gh/jiayisunx/70/base -> origin/gh/jiayisunx/70/base 2025-08-26T20:40:01.0324174Z * [new branch] gh/jiayisunx/70/head -> origin/gh/jiayisunx/70/head 2025-08-26T20:40:01.0324678Z * [new branch] gh/jiayisunx/70/orig -> origin/gh/jiayisunx/70/orig 2025-08-26T20:40:01.0325208Z * [new branch] gh/jjwu@meta.com/1/base -> origin/gh/jjwu@meta.com/1/base 2025-08-26T20:40:01.0325739Z * [new branch] gh/jjwu@meta.com/1/head -> origin/gh/jjwu@meta.com/1/head 2025-08-26T20:40:01.0326276Z * [new branch] gh/justinchuby/111/base -> origin/gh/justinchuby/111/base 2025-08-26T20:40:01.0326821Z * [new branch] gh/justinchuby/111/head -> origin/gh/justinchuby/111/head 2025-08-26T20:40:01.0327376Z * [new branch] gh/justinchuby/111/orig -> origin/gh/justinchuby/111/orig 2025-08-26T20:40:01.0327914Z * [new branch] gh/justinchuby/112/base -> origin/gh/justinchuby/112/base 2025-08-26T20:40:01.0328449Z * [new branch] gh/justinchuby/112/head -> origin/gh/justinchuby/112/head 2025-08-26T20:40:01.0328989Z * [new branch] gh/justinchuby/112/orig -> origin/gh/justinchuby/112/orig 2025-08-26T20:40:01.0329546Z * [new branch] gh/justinchuby/113/base -> origin/gh/justinchuby/113/base 2025-08-26T20:40:01.0330082Z * [new branch] gh/justinchuby/113/head -> origin/gh/justinchuby/113/head 2025-08-26T20:40:01.0330616Z * [new branch] gh/justinchuby/113/orig -> origin/gh/justinchuby/113/orig 2025-08-26T20:40:01.0331156Z * [new branch] gh/justinchuby/114/base -> origin/gh/justinchuby/114/base 2025-08-26T20:40:01.0331705Z * [new branch] gh/justinchuby/114/head -> origin/gh/justinchuby/114/head 2025-08-26T20:40:01.0332246Z * [new branch] gh/justinchuby/114/orig -> origin/gh/justinchuby/114/orig 2025-08-26T20:40:01.0332770Z * [new branch] gh/karthickai/1/base -> origin/gh/karthickai/1/base 2025-08-26T20:40:01.0333580Z * [new branch] gh/karthickai/1/head -> origin/gh/karthickai/1/head 2025-08-26T20:40:01.0334140Z * [new branch] gh/karthickai/1/orig -> origin/gh/karthickai/1/orig 2025-08-26T20:40:01.0334658Z * [new branch] gh/karthickai/2/base -> origin/gh/karthickai/2/base 2025-08-26T20:40:01.0335174Z * [new branch] gh/karthickai/2/head -> origin/gh/karthickai/2/head 2025-08-26T20:40:01.0335799Z * [new branch] gh/karthickai/2/orig -> origin/gh/karthickai/2/orig 2025-08-26T20:40:01.0336336Z * [new branch] gh/kurtamohler/32/base -> origin/gh/kurtamohler/32/base 2025-08-26T20:40:01.0336865Z * [new branch] gh/kurtamohler/32/head -> origin/gh/kurtamohler/32/head 2025-08-26T20:40:01.0337397Z * [new branch] gh/kurtamohler/32/orig -> origin/gh/kurtamohler/32/orig 2025-08-26T20:40:01.0337935Z * [new branch] gh/kurtamohler/33/base -> origin/gh/kurtamohler/33/base 2025-08-26T20:40:01.0338476Z * [new branch] gh/kurtamohler/33/head -> origin/gh/kurtamohler/33/head 2025-08-26T20:40:01.0339008Z * [new branch] gh/kurtamohler/33/orig -> origin/gh/kurtamohler/33/orig 2025-08-26T20:40:01.0339581Z * [new branch] gh/kurtamohler/34/base -> origin/gh/kurtamohler/34/base 2025-08-26T20:40:01.0340163Z * [new branch] gh/kurtamohler/34/head -> origin/gh/kurtamohler/34/head 2025-08-26T20:40:01.0340699Z * [new branch] gh/kurtamohler/34/orig -> origin/gh/kurtamohler/34/orig 2025-08-26T20:40:01.0341230Z * [new branch] gh/kurtamohler/41/base -> origin/gh/kurtamohler/41/base 2025-08-26T20:40:01.0341755Z * [new branch] gh/kurtamohler/41/head -> origin/gh/kurtamohler/41/head 2025-08-26T20:40:01.0342277Z * [new branch] gh/kurtamohler/41/orig -> origin/gh/kurtamohler/41/orig 2025-08-26T20:40:01.0342815Z * [new branch] gh/kurtamohler/42/base -> origin/gh/kurtamohler/42/base 2025-08-26T20:40:01.0343336Z * [new branch] gh/kurtamohler/42/head -> origin/gh/kurtamohler/42/head 2025-08-26T20:40:01.0343868Z * [new branch] gh/kurtamohler/42/orig -> origin/gh/kurtamohler/42/orig 2025-08-26T20:40:01.0344400Z * [new branch] gh/kurtamohler/43/base -> origin/gh/kurtamohler/43/base 2025-08-26T20:40:01.0344921Z * [new branch] gh/kurtamohler/43/head -> origin/gh/kurtamohler/43/head 2025-08-26T20:40:01.0345503Z * [new branch] gh/kurtamohler/43/orig -> origin/gh/kurtamohler/43/orig 2025-08-26T20:40:01.0346124Z * [new branch] gh/kurtamohler/44/base -> origin/gh/kurtamohler/44/base 2025-08-26T20:40:01.0346665Z * [new branch] gh/kurtamohler/44/head -> origin/gh/kurtamohler/44/head 2025-08-26T20:40:01.0796586Z * [new branch] gh/kurtamohler/44/orig -> origin/gh/kurtamohler/44/orig 2025-08-26T20:40:01.0797175Z * [new branch] gh/kurtamohler/45/base -> origin/gh/kurtamohler/45/base 2025-08-26T20:40:01.0797722Z * [new branch] gh/kurtamohler/45/head -> origin/gh/kurtamohler/45/head 2025-08-26T20:40:01.0798251Z * [new branch] gh/kurtamohler/45/orig -> origin/gh/kurtamohler/45/orig 2025-08-26T20:40:01.0798791Z * [new branch] gh/kurtamohler/46/base -> origin/gh/kurtamohler/46/base 2025-08-26T20:40:01.0799346Z * [new branch] gh/kurtamohler/46/head -> origin/gh/kurtamohler/46/head 2025-08-26T20:40:01.0799873Z * [new branch] gh/kurtamohler/46/orig -> origin/gh/kurtamohler/46/orig 2025-08-26T20:40:01.0800419Z * [new branch] gh/kurtamohler/47/base -> origin/gh/kurtamohler/47/base 2025-08-26T20:40:01.0801007Z * [new branch] gh/kurtamohler/47/head -> origin/gh/kurtamohler/47/head 2025-08-26T20:40:01.0801779Z * [new branch] gh/kurtamohler/47/orig -> origin/gh/kurtamohler/47/orig 2025-08-26T20:40:01.0802313Z * [new branch] gh/kurtamohler/48/base -> origin/gh/kurtamohler/48/base 2025-08-26T20:40:01.0802838Z * [new branch] gh/kurtamohler/48/head -> origin/gh/kurtamohler/48/head 2025-08-26T20:40:01.0803371Z * [new branch] gh/kurtamohler/48/orig -> origin/gh/kurtamohler/48/orig 2025-08-26T20:40:01.0803892Z * [new branch] gh/kwen2501/130/base -> origin/gh/kwen2501/130/base 2025-08-26T20:40:01.0804505Z * [new branch] gh/kwen2501/130/head -> origin/gh/kwen2501/130/head 2025-08-26T20:40:01.0805019Z * [new branch] gh/kwen2501/130/orig -> origin/gh/kwen2501/130/orig 2025-08-26T20:40:01.0805510Z * [new branch] gh/kwen2501/142/base -> origin/gh/kwen2501/142/base 2025-08-26T20:40:01.0806016Z * [new branch] gh/kwen2501/142/head -> origin/gh/kwen2501/142/head 2025-08-26T20:40:01.0806553Z * [new branch] gh/kwen2501/142/orig -> origin/gh/kwen2501/142/orig 2025-08-26T20:40:01.0807102Z * [new branch] gh/kwen2501/15/base -> origin/gh/kwen2501/15/base 2025-08-26T20:40:01.0807603Z * [new branch] gh/kwen2501/15/head -> origin/gh/kwen2501/15/head 2025-08-26T20:40:01.0808096Z * [new branch] gh/kwen2501/156/base -> origin/gh/kwen2501/156/base 2025-08-26T20:40:01.0808592Z * [new branch] gh/kwen2501/156/head -> origin/gh/kwen2501/156/head 2025-08-26T20:40:01.0809078Z * [new branch] gh/kwen2501/156/orig -> origin/gh/kwen2501/156/orig 2025-08-26T20:40:01.0809571Z * [new branch] gh/kwen2501/170/base -> origin/gh/kwen2501/170/base 2025-08-26T20:40:01.0810058Z * [new branch] gh/kwen2501/170/head -> origin/gh/kwen2501/170/head 2025-08-26T20:40:01.0810548Z * [new branch] gh/kwen2501/186/base -> origin/gh/kwen2501/186/base 2025-08-26T20:40:01.0811046Z * [new branch] gh/kwen2501/186/head -> origin/gh/kwen2501/186/head 2025-08-26T20:40:01.0811544Z * [new branch] gh/kwen2501/186/orig -> origin/gh/kwen2501/186/orig 2025-08-26T20:40:01.0812041Z * [new branch] gh/kwen2501/187/base -> origin/gh/kwen2501/187/base 2025-08-26T20:40:01.0812634Z * [new branch] gh/kwen2501/187/head -> origin/gh/kwen2501/187/head 2025-08-26T20:40:01.0813141Z * [new branch] gh/kwen2501/187/orig -> origin/gh/kwen2501/187/orig 2025-08-26T20:40:01.0813637Z * [new branch] gh/kwen2501/188/base -> origin/gh/kwen2501/188/base 2025-08-26T20:40:01.0814122Z * [new branch] gh/kwen2501/188/head -> origin/gh/kwen2501/188/head 2025-08-26T20:40:01.0814617Z * [new branch] gh/kwen2501/188/orig -> origin/gh/kwen2501/188/orig 2025-08-26T20:40:01.0815107Z * [new branch] gh/kwen2501/194/base -> origin/gh/kwen2501/194/base 2025-08-26T20:40:01.0815599Z * [new branch] gh/kwen2501/194/head -> origin/gh/kwen2501/194/head 2025-08-26T20:40:01.0816100Z * [new branch] gh/kwen2501/194/orig -> origin/gh/kwen2501/194/orig 2025-08-26T20:40:01.0816589Z * [new branch] gh/kwen2501/199/base -> origin/gh/kwen2501/199/base 2025-08-26T20:40:01.0817083Z * [new branch] gh/kwen2501/199/head -> origin/gh/kwen2501/199/head 2025-08-26T20:40:01.0817578Z * [new branch] gh/kwen2501/199/orig -> origin/gh/kwen2501/199/orig 2025-08-26T20:40:01.0818126Z * [new branch] gh/kwen2501/200/base -> origin/gh/kwen2501/200/base 2025-08-26T20:40:01.0818682Z * [new branch] gh/kwen2501/200/head -> origin/gh/kwen2501/200/head 2025-08-26T20:40:01.0819907Z * [new branch] gh/kwen2501/200/orig -> origin/gh/kwen2501/200/orig 2025-08-26T20:40:01.0820410Z * [new branch] gh/kwen2501/201/base -> origin/gh/kwen2501/201/base 2025-08-26T20:40:01.0820903Z * [new branch] gh/kwen2501/201/head -> origin/gh/kwen2501/201/head 2025-08-26T20:40:01.1250664Z * [new branch] gh/kwen2501/201/orig -> origin/gh/kwen2501/201/orig 2025-08-26T20:40:01.1251232Z * [new branch] gh/kwen2501/202/base -> origin/gh/kwen2501/202/base 2025-08-26T20:40:01.1251926Z * [new branch] gh/kwen2501/202/head -> origin/gh/kwen2501/202/head 2025-08-26T20:40:01.1252433Z * [new branch] gh/kwen2501/202/orig -> origin/gh/kwen2501/202/orig 2025-08-26T20:40:01.1252927Z * [new branch] gh/kwen2501/203/base -> origin/gh/kwen2501/203/base 2025-08-26T20:40:01.1253430Z * [new branch] gh/kwen2501/203/head -> origin/gh/kwen2501/203/head 2025-08-26T20:40:01.1253952Z * [new branch] gh/kwen2501/203/orig -> origin/gh/kwen2501/203/orig 2025-08-26T20:40:01.1254438Z * [new branch] gh/kwen2501/204/base -> origin/gh/kwen2501/204/base 2025-08-26T20:40:01.1254933Z * [new branch] gh/kwen2501/204/head -> origin/gh/kwen2501/204/head 2025-08-26T20:40:01.1255417Z * [new branch] gh/kwen2501/204/orig -> origin/gh/kwen2501/204/orig 2025-08-26T20:40:01.1255909Z * [new branch] gh/kwen2501/205/base -> origin/gh/kwen2501/205/base 2025-08-26T20:40:01.1256410Z * [new branch] gh/kwen2501/205/head -> origin/gh/kwen2501/205/head 2025-08-26T20:40:01.1256900Z * [new branch] gh/kwen2501/205/orig -> origin/gh/kwen2501/205/orig 2025-08-26T20:40:01.1257391Z * [new branch] gh/kwen2501/206/base -> origin/gh/kwen2501/206/base 2025-08-26T20:40:01.1257901Z * [new branch] gh/kwen2501/206/head -> origin/gh/kwen2501/206/head 2025-08-26T20:40:01.1258402Z * [new branch] gh/kwen2501/206/orig -> origin/gh/kwen2501/206/orig 2025-08-26T20:40:01.1258895Z * [new branch] gh/kwen2501/207/base -> origin/gh/kwen2501/207/base 2025-08-26T20:40:01.1259384Z * [new branch] gh/kwen2501/207/head -> origin/gh/kwen2501/207/head 2025-08-26T20:40:01.1259875Z * [new branch] gh/kwen2501/207/orig -> origin/gh/kwen2501/207/orig 2025-08-26T20:40:01.1260366Z * [new branch] gh/kwen2501/208/base -> origin/gh/kwen2501/208/base 2025-08-26T20:40:01.1260865Z * [new branch] gh/kwen2501/208/head -> origin/gh/kwen2501/208/head 2025-08-26T20:40:01.1261362Z * [new branch] gh/kwen2501/208/orig -> origin/gh/kwen2501/208/orig 2025-08-26T20:40:01.1261846Z * [new branch] gh/kwen2501/209/base -> origin/gh/kwen2501/209/base 2025-08-26T20:40:01.1262351Z * [new branch] gh/kwen2501/209/head -> origin/gh/kwen2501/209/head 2025-08-26T20:40:01.1262841Z * [new branch] gh/kwen2501/209/orig -> origin/gh/kwen2501/209/orig 2025-08-26T20:40:01.1263334Z * [new branch] gh/kwen2501/210/base -> origin/gh/kwen2501/210/base 2025-08-26T20:40:01.1263820Z * [new branch] gh/kwen2501/210/head -> origin/gh/kwen2501/210/head 2025-08-26T20:40:01.1264305Z * [new branch] gh/kwen2501/210/orig -> origin/gh/kwen2501/210/orig 2025-08-26T20:40:01.1264804Z * [new branch] gh/kwen2501/211/base -> origin/gh/kwen2501/211/base 2025-08-26T20:40:01.1265291Z * [new branch] gh/kwen2501/211/head -> origin/gh/kwen2501/211/head 2025-08-26T20:40:01.1265784Z * [new branch] gh/kwen2501/212/base -> origin/gh/kwen2501/212/base 2025-08-26T20:40:01.1266334Z * [new branch] gh/kwen2501/212/head -> origin/gh/kwen2501/212/head 2025-08-26T20:40:01.1267355Z * [new branch] gh/kwen2501/212/orig -> origin/gh/kwen2501/212/orig 2025-08-26T20:40:01.1267852Z * [new branch] gh/kwen2501/213/base -> origin/gh/kwen2501/213/base 2025-08-26T20:40:01.1268335Z * [new branch] gh/kwen2501/213/head -> origin/gh/kwen2501/213/head 2025-08-26T20:40:01.1268827Z * [new branch] gh/kwen2501/213/orig -> origin/gh/kwen2501/213/orig 2025-08-26T20:40:01.1269311Z * [new branch] gh/kwen2501/214/base -> origin/gh/kwen2501/214/base 2025-08-26T20:40:01.1269900Z * [new branch] gh/kwen2501/214/head -> origin/gh/kwen2501/214/head 2025-08-26T20:40:01.1270407Z * [new branch] gh/kwen2501/214/orig -> origin/gh/kwen2501/214/orig 2025-08-26T20:40:01.1270895Z * [new branch] gh/kwen2501/215/base -> origin/gh/kwen2501/215/base 2025-08-26T20:40:01.1271394Z * [new branch] gh/kwen2501/215/head -> origin/gh/kwen2501/215/head 2025-08-26T20:40:01.1271885Z * [new branch] gh/kwen2501/215/orig -> origin/gh/kwen2501/215/orig 2025-08-26T20:40:01.1272380Z * [new branch] gh/kwen2501/216/base -> origin/gh/kwen2501/216/base 2025-08-26T20:40:01.1272890Z * [new branch] gh/kwen2501/216/head -> origin/gh/kwen2501/216/head 2025-08-26T20:40:01.1273373Z * [new branch] gh/kwen2501/216/orig -> origin/gh/kwen2501/216/orig 2025-08-26T20:40:01.1273869Z * [new branch] gh/kwen2501/217/base -> origin/gh/kwen2501/217/base 2025-08-26T20:40:01.1274358Z * [new branch] gh/kwen2501/217/head -> origin/gh/kwen2501/217/head 2025-08-26T20:40:01.1703028Z * [new branch] gh/kwen2501/217/orig -> origin/gh/kwen2501/217/orig 2025-08-26T20:40:01.1703610Z * [new branch] gh/kwen2501/218/base -> origin/gh/kwen2501/218/base 2025-08-26T20:40:01.1704110Z * [new branch] gh/kwen2501/218/head -> origin/gh/kwen2501/218/head 2025-08-26T20:40:01.1704643Z * [new branch] gh/kwen2501/218/orig -> origin/gh/kwen2501/218/orig 2025-08-26T20:40:01.1705163Z * [new branch] gh/laithsakka/156/base -> origin/gh/laithsakka/156/base 2025-08-26T20:40:01.1705703Z * [new branch] gh/laithsakka/156/head -> origin/gh/laithsakka/156/head 2025-08-26T20:40:01.1706281Z * [new branch] gh/laithsakka/156/orig -> origin/gh/laithsakka/156/orig 2025-08-26T20:40:01.1706823Z * [new branch] gh/laithsakka/160/base -> origin/gh/laithsakka/160/base 2025-08-26T20:40:01.1707353Z * [new branch] gh/laithsakka/160/head -> origin/gh/laithsakka/160/head 2025-08-26T20:40:01.1707875Z * [new branch] gh/laithsakka/160/orig -> origin/gh/laithsakka/160/orig 2025-08-26T20:40:01.1708403Z * [new branch] gh/laithsakka/178/base -> origin/gh/laithsakka/178/base 2025-08-26T20:40:01.1708942Z * [new branch] gh/laithsakka/178/head -> origin/gh/laithsakka/178/head 2025-08-26T20:40:01.1709460Z * [new branch] gh/laithsakka/178/orig -> origin/gh/laithsakka/178/orig 2025-08-26T20:40:01.1709991Z * [new branch] gh/laithsakka/191/base -> origin/gh/laithsakka/191/base 2025-08-26T20:40:01.1710510Z * [new branch] gh/laithsakka/191/head -> origin/gh/laithsakka/191/head 2025-08-26T20:40:01.1711040Z * [new branch] gh/laithsakka/191/orig -> origin/gh/laithsakka/191/orig 2025-08-26T20:40:01.1711565Z * [new branch] gh/laithsakka/237/base -> origin/gh/laithsakka/237/base 2025-08-26T20:40:01.1712096Z * [new branch] gh/laithsakka/237/head -> origin/gh/laithsakka/237/head 2025-08-26T20:40:01.1712623Z * [new branch] gh/laithsakka/237/orig -> origin/gh/laithsakka/237/orig 2025-08-26T20:40:01.1713142Z * [new branch] gh/laithsakka/238/base -> origin/gh/laithsakka/238/base 2025-08-26T20:40:01.1714255Z * [new branch] gh/laithsakka/238/head -> origin/gh/laithsakka/238/head 2025-08-26T20:40:01.1714780Z * [new branch] gh/laithsakka/238/orig -> origin/gh/laithsakka/238/orig 2025-08-26T20:40:01.1715315Z * [new branch] gh/laithsakka/248/base -> origin/gh/laithsakka/248/base 2025-08-26T20:40:01.1715853Z * [new branch] gh/laithsakka/248/head -> origin/gh/laithsakka/248/head 2025-08-26T20:40:01.1716852Z * [new branch] gh/laithsakka/248/orig -> origin/gh/laithsakka/248/orig 2025-08-26T20:40:01.1717399Z * [new branch] gh/laithsakka/249/base -> origin/gh/laithsakka/249/base 2025-08-26T20:40:01.1717931Z * [new branch] gh/laithsakka/249/head -> origin/gh/laithsakka/249/head 2025-08-26T20:40:01.1718475Z * [new branch] gh/laithsakka/249/orig -> origin/gh/laithsakka/249/orig 2025-08-26T20:40:01.1719010Z * [new branch] gh/laithsakka/250/base -> origin/gh/laithsakka/250/base 2025-08-26T20:40:01.1719533Z * [new branch] gh/laithsakka/250/head -> origin/gh/laithsakka/250/head 2025-08-26T20:40:01.1720067Z * [new branch] gh/laithsakka/250/orig -> origin/gh/laithsakka/250/orig 2025-08-26T20:40:01.1720594Z * [new branch] gh/laithsakka/251/base -> origin/gh/laithsakka/251/base 2025-08-26T20:40:01.1721131Z * [new branch] gh/laithsakka/251/head -> origin/gh/laithsakka/251/head 2025-08-26T20:40:01.1721677Z * [new branch] gh/laithsakka/251/orig -> origin/gh/laithsakka/251/orig 2025-08-26T20:40:01.1722196Z * [new branch] gh/laithsakka/252/base -> origin/gh/laithsakka/252/base 2025-08-26T20:40:01.1722733Z * [new branch] gh/laithsakka/252/head -> origin/gh/laithsakka/252/head 2025-08-26T20:40:01.1723257Z * [new branch] gh/laithsakka/252/orig -> origin/gh/laithsakka/252/orig 2025-08-26T20:40:01.1723806Z * [new branch] gh/laithsakka/253/base -> origin/gh/laithsakka/253/base 2025-08-26T20:40:01.1724331Z * [new branch] gh/laithsakka/253/head -> origin/gh/laithsakka/253/head 2025-08-26T20:40:01.1724851Z * [new branch] gh/laithsakka/253/orig -> origin/gh/laithsakka/253/orig 2025-08-26T20:40:01.1725384Z * [new branch] gh/laithsakka/254/base -> origin/gh/laithsakka/254/base 2025-08-26T20:40:01.1725907Z * [new branch] gh/laithsakka/254/head -> origin/gh/laithsakka/254/head 2025-08-26T20:40:01.1726441Z * [new branch] gh/laithsakka/254/orig -> origin/gh/laithsakka/254/orig 2025-08-26T20:40:01.1726976Z * [new branch] gh/laithsakka/255/base -> origin/gh/laithsakka/255/base 2025-08-26T20:40:01.1727499Z * [new branch] gh/laithsakka/255/head -> origin/gh/laithsakka/255/head 2025-08-26T20:40:01.2141903Z * [new branch] gh/laithsakka/255/orig -> origin/gh/laithsakka/255/orig 2025-08-26T20:40:01.2142498Z * [new branch] gh/laithsakka/256/base -> origin/gh/laithsakka/256/base 2025-08-26T20:40:01.2143046Z * [new branch] gh/laithsakka/256/head -> origin/gh/laithsakka/256/head 2025-08-26T20:40:01.2143585Z * [new branch] gh/laithsakka/256/orig -> origin/gh/laithsakka/256/orig 2025-08-26T20:40:01.2144111Z * [new branch] gh/laithsakka/257/base -> origin/gh/laithsakka/257/base 2025-08-26T20:40:01.2144661Z * [new branch] gh/laithsakka/257/head -> origin/gh/laithsakka/257/head 2025-08-26T20:40:01.2145190Z * [new branch] gh/laithsakka/257/orig -> origin/gh/laithsakka/257/orig 2025-08-26T20:40:01.2145720Z * [new branch] gh/laithsakka/258/base -> origin/gh/laithsakka/258/base 2025-08-26T20:40:01.2146311Z * [new branch] gh/laithsakka/258/head -> origin/gh/laithsakka/258/head 2025-08-26T20:40:01.2147429Z * [new branch] gh/laithsakka/258/orig -> origin/gh/laithsakka/258/orig 2025-08-26T20:40:01.2147976Z * [new branch] gh/laithsakka/259/base -> origin/gh/laithsakka/259/base 2025-08-26T20:40:01.2148505Z * [new branch] gh/laithsakka/259/head -> origin/gh/laithsakka/259/head 2025-08-26T20:40:01.2149037Z * [new branch] gh/laithsakka/259/orig -> origin/gh/laithsakka/259/orig 2025-08-26T20:40:01.2149574Z * [new branch] gh/laithsakka/260/base -> origin/gh/laithsakka/260/base 2025-08-26T20:40:01.2150243Z * [new branch] gh/laithsakka/260/head -> origin/gh/laithsakka/260/head 2025-08-26T20:40:01.2151063Z * [new branch] gh/laithsakka/260/orig -> origin/gh/laithsakka/260/orig 2025-08-26T20:40:01.2152004Z * [new branch] gh/laithsakka/261/base -> origin/gh/laithsakka/261/base 2025-08-26T20:40:01.2152564Z * [new branch] gh/laithsakka/261/head -> origin/gh/laithsakka/261/head 2025-08-26T20:40:01.2153101Z * [new branch] gh/laithsakka/261/orig -> origin/gh/laithsakka/261/orig 2025-08-26T20:40:01.2153639Z * [new branch] gh/laithsakka/262/base -> origin/gh/laithsakka/262/base 2025-08-26T20:40:01.2154174Z * [new branch] gh/laithsakka/262/head -> origin/gh/laithsakka/262/head 2025-08-26T20:40:01.2154699Z * [new branch] gh/laithsakka/262/orig -> origin/gh/laithsakka/262/orig 2025-08-26T20:40:01.2155233Z * [new branch] gh/laithsakka/263/base -> origin/gh/laithsakka/263/base 2025-08-26T20:40:01.2155759Z * [new branch] gh/laithsakka/263/head -> origin/gh/laithsakka/263/head 2025-08-26T20:40:01.2156283Z * [new branch] gh/laithsakka/263/orig -> origin/gh/laithsakka/263/orig 2025-08-26T20:40:01.2156988Z * [new branch] gh/laithsakka/28/base -> origin/gh/laithsakka/28/base 2025-08-26T20:40:01.2157934Z * [new branch] gh/laithsakka/29/base -> origin/gh/laithsakka/29/base 2025-08-26T20:40:01.2158465Z * [new branch] gh/laithsakka/30/base -> origin/gh/laithsakka/30/base 2025-08-26T20:40:01.2158984Z * [new branch] gh/laithsakka/30/head -> origin/gh/laithsakka/30/head 2025-08-26T20:40:01.2159507Z * [new branch] gh/laithsakka/31/base -> origin/gh/laithsakka/31/base 2025-08-26T20:40:01.2160035Z * [new branch] gh/laithsakka/31/head -> origin/gh/laithsakka/31/head 2025-08-26T20:40:01.2160552Z * [new branch] gh/laithsakka/32/base -> origin/gh/laithsakka/32/base 2025-08-26T20:40:01.2161080Z * [new branch] gh/laithsakka/32/head -> origin/gh/laithsakka/32/head 2025-08-26T20:40:01.2161606Z * [new branch] gh/lucaskabela/1/base -> origin/gh/lucaskabela/1/base 2025-08-26T20:40:01.2162140Z * [new branch] gh/lucaskabela/1/head -> origin/gh/lucaskabela/1/head 2025-08-26T20:40:01.2162764Z * [new branch] gh/lucaskabela/10/base -> origin/gh/lucaskabela/10/base 2025-08-26T20:40:01.2163777Z * [new branch] gh/lucaskabela/10/head -> origin/gh/lucaskabela/10/head 2025-08-26T20:40:01.2164369Z * [new branch] gh/lucaskabela/10/orig -> origin/gh/lucaskabela/10/orig 2025-08-26T20:40:01.2164908Z * [new branch] gh/lucaskabela/11/base -> origin/gh/lucaskabela/11/base 2025-08-26T20:40:01.2165455Z * [new branch] gh/lucaskabela/11/head -> origin/gh/lucaskabela/11/head 2025-08-26T20:40:01.2165989Z * [new branch] gh/lucaskabela/11/orig -> origin/gh/lucaskabela/11/orig 2025-08-26T20:40:01.2166515Z * [new branch] gh/lucaskabela/12/base -> origin/gh/lucaskabela/12/base 2025-08-26T20:40:01.2167053Z * [new branch] gh/lucaskabela/12/head -> origin/gh/lucaskabela/12/head 2025-08-26T20:40:01.2168088Z * [new branch] gh/lucaskabela/12/orig -> origin/gh/lucaskabela/12/orig 2025-08-26T20:40:01.2168740Z * [new branch] gh/lucaskabela/13/base -> origin/gh/lucaskabela/13/base 2025-08-26T20:40:01.2169756Z * [new branch] gh/lucaskabela/13/head -> origin/gh/lucaskabela/13/head 2025-08-26T20:40:01.2605773Z * [new branch] gh/lucaskabela/13/orig -> origin/gh/lucaskabela/13/orig 2025-08-26T20:40:01.2606378Z * [new branch] gh/lucaskabela/14/base -> origin/gh/lucaskabela/14/base 2025-08-26T20:40:01.2607145Z * [new branch] gh/lucaskabela/14/head -> origin/gh/lucaskabela/14/head 2025-08-26T20:40:01.2607690Z * [new branch] gh/lucaskabela/14/orig -> origin/gh/lucaskabela/14/orig 2025-08-26T20:40:01.2608240Z * [new branch] gh/lucaskabela/15/base -> origin/gh/lucaskabela/15/base 2025-08-26T20:40:01.2608771Z * [new branch] gh/lucaskabela/15/head -> origin/gh/lucaskabela/15/head 2025-08-26T20:40:01.2609335Z * [new branch] gh/lucaskabela/15/orig -> origin/gh/lucaskabela/15/orig 2025-08-26T20:40:01.2609860Z * [new branch] gh/lucaskabela/16/base -> origin/gh/lucaskabela/16/base 2025-08-26T20:40:01.2610392Z * [new branch] gh/lucaskabela/16/head -> origin/gh/lucaskabela/16/head 2025-08-26T20:40:01.2610926Z * [new branch] gh/lucaskabela/16/orig -> origin/gh/lucaskabela/16/orig 2025-08-26T20:40:01.2611454Z * [new branch] gh/lucaskabela/17/base -> origin/gh/lucaskabela/17/base 2025-08-26T20:40:01.2611995Z * [new branch] gh/lucaskabela/17/head -> origin/gh/lucaskabela/17/head 2025-08-26T20:40:01.2612523Z * [new branch] gh/lucaskabela/17/orig -> origin/gh/lucaskabela/17/orig 2025-08-26T20:40:01.2613065Z * [new branch] gh/lucaskabela/2/base -> origin/gh/lucaskabela/2/base 2025-08-26T20:40:01.2613621Z * [new branch] gh/lucaskabela/2/head -> origin/gh/lucaskabela/2/head 2025-08-26T20:40:01.2614141Z * [new branch] gh/lucaskabela/2/orig -> origin/gh/lucaskabela/2/orig 2025-08-26T20:40:01.2614676Z * [new branch] gh/lucaskabela/3/base -> origin/gh/lucaskabela/3/base 2025-08-26T20:40:01.2615196Z * [new branch] gh/lucaskabela/3/head -> origin/gh/lucaskabela/3/head 2025-08-26T20:40:01.2615718Z * [new branch] gh/lucaskabela/3/orig -> origin/gh/lucaskabela/3/orig 2025-08-26T20:40:01.2616242Z * [new branch] gh/lucaskabela/4/base -> origin/gh/lucaskabela/4/base 2025-08-26T20:40:01.2616763Z * [new branch] gh/lucaskabela/4/head -> origin/gh/lucaskabela/4/head 2025-08-26T20:40:01.2617286Z * [new branch] gh/lucaskabela/4/orig -> origin/gh/lucaskabela/4/orig 2025-08-26T20:40:01.2617802Z * [new branch] gh/lucaskabela/5/base -> origin/gh/lucaskabela/5/base 2025-08-26T20:40:01.2618338Z * [new branch] gh/lucaskabela/5/head -> origin/gh/lucaskabela/5/head 2025-08-26T20:40:01.2618883Z * [new branch] gh/lucaskabela/5/orig -> origin/gh/lucaskabela/5/orig 2025-08-26T20:40:01.2619410Z * [new branch] gh/lucaskabela/6/base -> origin/gh/lucaskabela/6/base 2025-08-26T20:40:01.2619933Z * [new branch] gh/lucaskabela/6/head -> origin/gh/lucaskabela/6/head 2025-08-26T20:40:01.2620454Z * [new branch] gh/lucaskabela/6/orig -> origin/gh/lucaskabela/6/orig 2025-08-26T20:40:01.2620982Z * [new branch] gh/lucaskabela/7/base -> origin/gh/lucaskabela/7/base 2025-08-26T20:40:01.2621498Z * [new branch] gh/lucaskabela/7/head -> origin/gh/lucaskabela/7/head 2025-08-26T20:40:01.2622026Z * [new branch] gh/lucaskabela/7/orig -> origin/gh/lucaskabela/7/orig 2025-08-26T20:40:01.2623044Z * [new branch] gh/lucaskabela/8/base -> origin/gh/lucaskabela/8/base 2025-08-26T20:40:01.2623574Z * [new branch] gh/lucaskabela/8/head -> origin/gh/lucaskabela/8/head 2025-08-26T20:40:01.2624110Z * [new branch] gh/lucaskabela/8/orig -> origin/gh/lucaskabela/8/orig 2025-08-26T20:40:01.2624633Z * [new branch] gh/lucaskabela/9/base -> origin/gh/lucaskabela/9/base 2025-08-26T20:40:01.2625171Z * [new branch] gh/lucaskabela/9/head -> origin/gh/lucaskabela/9/head 2025-08-26T20:40:01.2625805Z * [new branch] gh/lucaskabela/9/orig -> origin/gh/lucaskabela/9/orig 2025-08-26T20:40:01.2626382Z * [new branch] gh/lw/1/base -> origin/gh/lw/1/base 2025-08-26T20:40:01.2626842Z * [new branch] gh/lw/1/head -> origin/gh/lw/1/head 2025-08-26T20:40:01.2627283Z * [new branch] gh/lw/1/orig -> origin/gh/lw/1/orig 2025-08-26T20:40:01.2627738Z * [new branch] gh/lw/2/base -> origin/gh/lw/2/base 2025-08-26T20:40:01.2628188Z * [new branch] gh/lw/2/head -> origin/gh/lw/2/head 2025-08-26T20:40:01.2628621Z * [new branch] gh/lw/2/orig -> origin/gh/lw/2/orig 2025-08-26T20:40:01.2629054Z * [new branch] gh/lw/3/base -> origin/gh/lw/3/base 2025-08-26T20:40:01.2629482Z * [new branch] gh/lw/3/head -> origin/gh/lw/3/head 2025-08-26T20:40:01.2629925Z * [new branch] gh/lw/3/orig -> origin/gh/lw/3/orig 2025-08-26T20:40:01.2630387Z * [new branch] gh/malfet/14/base -> origin/gh/malfet/14/base 2025-08-26T20:40:01.3057246Z * [new branch] gh/malfet/330/base -> origin/gh/malfet/330/base 2025-08-26T20:40:01.3057822Z * [new branch] gh/malfet/330/head -> origin/gh/malfet/330/head 2025-08-26T20:40:01.3058349Z * [new branch] gh/malfet/330/orig -> origin/gh/malfet/330/orig 2025-08-26T20:40:01.3058846Z * [new branch] gh/malfet/396/base -> origin/gh/malfet/396/base 2025-08-26T20:40:01.3059331Z * [new branch] gh/malfet/396/head -> origin/gh/malfet/396/head 2025-08-26T20:40:01.3059832Z * [new branch] gh/malfet/396/orig -> origin/gh/malfet/396/orig 2025-08-26T20:40:01.3060325Z * [new branch] gh/malfet/397/base -> origin/gh/malfet/397/base 2025-08-26T20:40:01.3060823Z * [new branch] gh/malfet/397/head -> origin/gh/malfet/397/head 2025-08-26T20:40:01.3061309Z * [new branch] gh/malfet/397/orig -> origin/gh/malfet/397/orig 2025-08-26T20:40:01.3061790Z * [new branch] gh/malfet/398/base -> origin/gh/malfet/398/base 2025-08-26T20:40:01.3062280Z * [new branch] gh/malfet/398/head -> origin/gh/malfet/398/head 2025-08-26T20:40:01.3062778Z * [new branch] gh/malfet/398/orig -> origin/gh/malfet/398/orig 2025-08-26T20:40:01.3063266Z * [new branch] gh/malfet/399/base -> origin/gh/malfet/399/base 2025-08-26T20:40:01.3063771Z * [new branch] gh/malfet/399/head -> origin/gh/malfet/399/head 2025-08-26T20:40:01.3064269Z * [new branch] gh/malfet/399/orig -> origin/gh/malfet/399/orig 2025-08-26T20:40:01.3064751Z * [new branch] gh/malfet/414/base -> origin/gh/malfet/414/base 2025-08-26T20:40:01.3065256Z * [new branch] gh/malfet/414/head -> origin/gh/malfet/414/head 2025-08-26T20:40:01.3065737Z * [new branch] gh/malfet/414/orig -> origin/gh/malfet/414/orig 2025-08-26T20:40:01.3066277Z * [new branch] gh/malfet/417/base -> origin/gh/malfet/417/base 2025-08-26T20:40:01.3066765Z * [new branch] gh/malfet/417/head -> origin/gh/malfet/417/head 2025-08-26T20:40:01.3067789Z * [new branch] gh/malfet/417/orig -> origin/gh/malfet/417/orig 2025-08-26T20:40:01.3068299Z * [new branch] gh/malfet/418/base -> origin/gh/malfet/418/base 2025-08-26T20:40:01.3068786Z * [new branch] gh/malfet/418/head -> origin/gh/malfet/418/head 2025-08-26T20:40:01.3069277Z * [new branch] gh/malfet/418/orig -> origin/gh/malfet/418/orig 2025-08-26T20:40:01.3069759Z * [new branch] gh/malfet/456/base -> origin/gh/malfet/456/base 2025-08-26T20:40:01.3070371Z * [new branch] gh/malfet/456/head -> origin/gh/malfet/456/head 2025-08-26T20:40:01.3070870Z * [new branch] gh/malfet/456/orig -> origin/gh/malfet/456/orig 2025-08-26T20:40:01.3071370Z * [new branch] gh/malfet/457/base -> origin/gh/malfet/457/base 2025-08-26T20:40:01.3071867Z * [new branch] gh/malfet/457/head -> origin/gh/malfet/457/head 2025-08-26T20:40:01.3072354Z * [new branch] gh/malfet/457/orig -> origin/gh/malfet/457/orig 2025-08-26T20:40:01.3072842Z * [new branch] gh/malfet/459/base -> origin/gh/malfet/459/base 2025-08-26T20:40:01.3073331Z * [new branch] gh/malfet/459/head -> origin/gh/malfet/459/head 2025-08-26T20:40:01.3073817Z * [new branch] gh/malfet/459/orig -> origin/gh/malfet/459/orig 2025-08-26T20:40:01.3074304Z * [new branch] gh/malfet/460/base -> origin/gh/malfet/460/base 2025-08-26T20:40:01.3074790Z * [new branch] gh/malfet/460/head -> origin/gh/malfet/460/head 2025-08-26T20:40:01.3075275Z * [new branch] gh/malfet/460/orig -> origin/gh/malfet/460/orig 2025-08-26T20:40:01.3075757Z * [new branch] gh/malfet/461/base -> origin/gh/malfet/461/base 2025-08-26T20:40:01.3076250Z * [new branch] gh/malfet/461/head -> origin/gh/malfet/461/head 2025-08-26T20:40:01.3076746Z * [new branch] gh/malfet/461/orig -> origin/gh/malfet/461/orig 2025-08-26T20:40:01.3077232Z * [new branch] gh/malfet/462/base -> origin/gh/malfet/462/base 2025-08-26T20:40:01.3077729Z * [new branch] gh/malfet/462/head -> origin/gh/malfet/462/head 2025-08-26T20:40:01.3078208Z * [new branch] gh/malfet/462/orig -> origin/gh/malfet/462/orig 2025-08-26T20:40:01.3078696Z * [new branch] gh/malfet/463/base -> origin/gh/malfet/463/base 2025-08-26T20:40:01.3079195Z * [new branch] gh/malfet/463/head -> origin/gh/malfet/463/head 2025-08-26T20:40:01.3079677Z * [new branch] gh/malfet/463/orig -> origin/gh/malfet/463/orig 2025-08-26T20:40:01.3080168Z * [new branch] gh/malfet/464/base -> origin/gh/malfet/464/base 2025-08-26T20:40:01.3080656Z * [new branch] gh/malfet/464/head -> origin/gh/malfet/464/head 2025-08-26T20:40:01.3081149Z * [new branch] gh/malfet/464/orig -> origin/gh/malfet/464/orig 2025-08-26T20:40:01.3489539Z * [new branch] gh/malfet/465/base -> origin/gh/malfet/465/base 2025-08-26T20:40:01.3490089Z * [new branch] gh/malfet/465/head -> origin/gh/malfet/465/head 2025-08-26T20:40:01.3490602Z * [new branch] gh/malfet/465/orig -> origin/gh/malfet/465/orig 2025-08-26T20:40:01.3491119Z * [new branch] gh/malfet/466/base -> origin/gh/malfet/466/base 2025-08-26T20:40:01.3491624Z * [new branch] gh/malfet/466/head -> origin/gh/malfet/466/head 2025-08-26T20:40:01.3492123Z * [new branch] gh/malfet/466/orig -> origin/gh/malfet/466/orig 2025-08-26T20:40:01.3492616Z * [new branch] gh/malfet/467/base -> origin/gh/malfet/467/base 2025-08-26T20:40:01.3493752Z * [new branch] gh/malfet/467/head -> origin/gh/malfet/467/head 2025-08-26T20:40:01.3494238Z * [new branch] gh/malfet/467/orig -> origin/gh/malfet/467/orig 2025-08-26T20:40:01.3494742Z * [new branch] gh/malfet/468/base -> origin/gh/malfet/468/base 2025-08-26T20:40:01.3495236Z * [new branch] gh/malfet/468/head -> origin/gh/malfet/468/head 2025-08-26T20:40:01.3495721Z * [new branch] gh/malfet/468/orig -> origin/gh/malfet/468/orig 2025-08-26T20:40:01.3496352Z * [new branch] gh/malfet/469/base -> origin/gh/malfet/469/base 2025-08-26T20:40:01.3496844Z * [new branch] gh/malfet/469/head -> origin/gh/malfet/469/head 2025-08-26T20:40:01.3497340Z * [new branch] gh/malfet/469/orig -> origin/gh/malfet/469/orig 2025-08-26T20:40:01.3497839Z * [new branch] gh/malfet/470/base -> origin/gh/malfet/470/base 2025-08-26T20:40:01.3498327Z * [new branch] gh/malfet/470/head -> origin/gh/malfet/470/head 2025-08-26T20:40:01.3498854Z * [new branch] gh/malfet/470/orig -> origin/gh/malfet/470/orig 2025-08-26T20:40:01.3499374Z * [new branch] gh/malfet/471/base -> origin/gh/malfet/471/base 2025-08-26T20:40:01.3499865Z * [new branch] gh/malfet/471/head -> origin/gh/malfet/471/head 2025-08-26T20:40:01.3500370Z * [new branch] gh/malfet/471/orig -> origin/gh/malfet/471/orig 2025-08-26T20:40:01.3500852Z * [new branch] gh/malfet/472/base -> origin/gh/malfet/472/base 2025-08-26T20:40:01.3501343Z * [new branch] gh/malfet/472/head -> origin/gh/malfet/472/head 2025-08-26T20:40:01.3501830Z * [new branch] gh/malfet/472/orig -> origin/gh/malfet/472/orig 2025-08-26T20:40:01.3502323Z * [new branch] gh/malfet/473/base -> origin/gh/malfet/473/base 2025-08-26T20:40:01.3502823Z * [new branch] gh/malfet/473/head -> origin/gh/malfet/473/head 2025-08-26T20:40:01.3503311Z * [new branch] gh/malfet/473/orig -> origin/gh/malfet/473/orig 2025-08-26T20:40:01.3503807Z * [new branch] gh/malfet/474/base -> origin/gh/malfet/474/base 2025-08-26T20:40:01.3504290Z * [new branch] gh/malfet/474/head -> origin/gh/malfet/474/head 2025-08-26T20:40:01.3504851Z * [new branch] gh/malfet/474/orig -> origin/gh/malfet/474/orig 2025-08-26T20:40:01.3505372Z * [new branch] gh/malfet/475/base -> origin/gh/malfet/475/base 2025-08-26T20:40:01.3505910Z * [new branch] gh/malfet/475/head -> origin/gh/malfet/475/head 2025-08-26T20:40:01.3506534Z * [new branch] gh/malfet/475/orig -> origin/gh/malfet/475/orig 2025-08-26T20:40:01.3507056Z * [new branch] gh/malfet/476/base -> origin/gh/malfet/476/base 2025-08-26T20:40:01.3507591Z * [new branch] gh/malfet/476/head -> origin/gh/malfet/476/head 2025-08-26T20:40:01.3508141Z * [new branch] gh/malfet/476/orig -> origin/gh/malfet/476/orig 2025-08-26T20:40:01.3508670Z * [new branch] gh/malfet/477/base -> origin/gh/malfet/477/base 2025-08-26T20:40:01.3509240Z * [new branch] gh/malfet/477/head -> origin/gh/malfet/477/head 2025-08-26T20:40:01.3509737Z * [new branch] gh/malfet/477/orig -> origin/gh/malfet/477/orig 2025-08-26T20:40:01.3510239Z * [new branch] gh/malfet/478/base -> origin/gh/malfet/478/base 2025-08-26T20:40:01.3510730Z * [new branch] gh/malfet/478/head -> origin/gh/malfet/478/head 2025-08-26T20:40:01.3511220Z * [new branch] gh/malfet/478/orig -> origin/gh/malfet/478/orig 2025-08-26T20:40:01.3512131Z * [new branch] gh/malfet/479/base -> origin/gh/malfet/479/base 2025-08-26T20:40:01.3512618Z * [new branch] gh/malfet/479/head -> origin/gh/malfet/479/head 2025-08-26T20:40:01.3513112Z * [new branch] gh/malfet/479/orig -> origin/gh/malfet/479/orig 2025-08-26T20:40:01.3513594Z * [new branch] gh/malfet/480/base -> origin/gh/malfet/480/base 2025-08-26T20:40:01.3514086Z * [new branch] gh/malfet/480/head -> origin/gh/malfet/480/head 2025-08-26T20:40:01.4951693Z * [new branch] gh/malfet/480/orig -> origin/gh/malfet/480/orig 2025-08-26T20:40:01.4952266Z * [new branch] gh/malfet/481/base -> origin/gh/malfet/481/base 2025-08-26T20:40:01.4952757Z * [new branch] gh/malfet/481/head -> origin/gh/malfet/481/head 2025-08-26T20:40:01.4953278Z * [new branch] gh/malfet/481/orig -> origin/gh/malfet/481/orig 2025-08-26T20:40:01.4953785Z * [new branch] gh/malfet/482/base -> origin/gh/malfet/482/base 2025-08-26T20:40:01.4954278Z * [new branch] gh/malfet/482/head -> origin/gh/malfet/482/head 2025-08-26T20:40:01.4954770Z * [new branch] gh/malfet/482/orig -> origin/gh/malfet/482/orig 2025-08-26T20:40:01.4955252Z * [new branch] gh/malfet/483/base -> origin/gh/malfet/483/base 2025-08-26T20:40:01.4955788Z * [new branch] gh/malfet/483/head -> origin/gh/malfet/483/head 2025-08-26T20:40:01.4956341Z * [new branch] gh/malfet/483/orig -> origin/gh/malfet/483/orig 2025-08-26T20:40:01.4956835Z * [new branch] gh/malfet/484/base -> origin/gh/malfet/484/base 2025-08-26T20:40:01.4957320Z * [new branch] gh/malfet/484/head -> origin/gh/malfet/484/head 2025-08-26T20:40:01.4957810Z * [new branch] gh/malfet/484/orig -> origin/gh/malfet/484/orig 2025-08-26T20:40:01.4958307Z * [new branch] gh/malfet/485/base -> origin/gh/malfet/485/base 2025-08-26T20:40:01.4958788Z * [new branch] gh/malfet/485/head -> origin/gh/malfet/485/head 2025-08-26T20:40:01.4959278Z * [new branch] gh/malfet/485/orig -> origin/gh/malfet/485/orig 2025-08-26T20:40:01.4959757Z * [new branch] gh/malfet/486/base -> origin/gh/malfet/486/base 2025-08-26T20:40:01.4960237Z * [new branch] gh/malfet/486/head -> origin/gh/malfet/486/head 2025-08-26T20:40:01.4960726Z * [new branch] gh/malfet/486/orig -> origin/gh/malfet/486/orig 2025-08-26T20:40:01.4961208Z * [new branch] gh/malfet/487/base -> origin/gh/malfet/487/base 2025-08-26T20:40:01.4961782Z * [new branch] gh/malfet/487/head -> origin/gh/malfet/487/head 2025-08-26T20:40:01.4962269Z * [new branch] gh/malfet/487/orig -> origin/gh/malfet/487/orig 2025-08-26T20:40:01.4962765Z * [new branch] gh/malfet/488/base -> origin/gh/malfet/488/base 2025-08-26T20:40:01.4963260Z * [new branch] gh/malfet/488/head -> origin/gh/malfet/488/head 2025-08-26T20:40:01.4963739Z * [new branch] gh/malfet/488/orig -> origin/gh/malfet/488/orig 2025-08-26T20:40:01.4964235Z * [new branch] gh/malfet/489/base -> origin/gh/malfet/489/base 2025-08-26T20:40:01.4964720Z * [new branch] gh/malfet/489/head -> origin/gh/malfet/489/head 2025-08-26T20:40:01.4965215Z * [new branch] gh/malfet/489/orig -> origin/gh/malfet/489/orig 2025-08-26T20:40:01.4965694Z * [new branch] gh/malfet/490/base -> origin/gh/malfet/490/base 2025-08-26T20:40:01.4966187Z * [new branch] gh/malfet/490/head -> origin/gh/malfet/490/head 2025-08-26T20:40:01.4966677Z * [new branch] gh/malfet/490/orig -> origin/gh/malfet/490/orig 2025-08-26T20:40:01.4967868Z * [new branch] gh/malfet/491/base -> origin/gh/malfet/491/base 2025-08-26T20:40:01.4968364Z * [new branch] gh/malfet/491/head -> origin/gh/malfet/491/head 2025-08-26T20:40:01.4968847Z * [new branch] gh/malfet/491/orig -> origin/gh/malfet/491/orig 2025-08-26T20:40:01.4969339Z * [new branch] gh/malfet/492/base -> origin/gh/malfet/492/base 2025-08-26T20:40:01.4969837Z * [new branch] gh/malfet/492/head -> origin/gh/malfet/492/head 2025-08-26T20:40:01.4970426Z * [new branch] gh/malfet/492/orig -> origin/gh/malfet/492/orig 2025-08-26T20:40:01.4970922Z * [new branch] gh/malfet/493/base -> origin/gh/malfet/493/base 2025-08-26T20:40:01.4971411Z * [new branch] gh/malfet/493/head -> origin/gh/malfet/493/head 2025-08-26T20:40:01.4971909Z * [new branch] gh/malfet/493/orig -> origin/gh/malfet/493/orig 2025-08-26T20:40:01.4972405Z * [new branch] gh/malfet/494/base -> origin/gh/malfet/494/base 2025-08-26T20:40:01.4972928Z * [new branch] gh/malfet/494/head -> origin/gh/malfet/494/head 2025-08-26T20:40:01.4973451Z * [new branch] gh/malfet/494/orig -> origin/gh/malfet/494/orig 2025-08-26T20:40:01.4973928Z * [new branch] gh/malfet/495/base -> origin/gh/malfet/495/base 2025-08-26T20:40:01.4974417Z * [new branch] gh/malfet/495/head -> origin/gh/malfet/495/head 2025-08-26T20:40:01.4974900Z * [new branch] gh/malfet/495/orig -> origin/gh/malfet/495/orig 2025-08-26T20:40:01.4975395Z * [new branch] gh/malfet/496/base -> origin/gh/malfet/496/base 2025-08-26T20:40:01.4975886Z * [new branch] gh/malfet/496/head -> origin/gh/malfet/496/head 2025-08-26T20:40:01.5407968Z * [new branch] gh/malfet/496/orig -> origin/gh/malfet/496/orig 2025-08-26T20:40:01.5408524Z * [new branch] gh/malfet/497/base -> origin/gh/malfet/497/base 2025-08-26T20:40:01.5409034Z * [new branch] gh/malfet/497/head -> origin/gh/malfet/497/head 2025-08-26T20:40:01.5409520Z * [new branch] gh/malfet/497/orig -> origin/gh/malfet/497/orig 2025-08-26T20:40:01.5410014Z * [new branch] gh/malfet/498/base -> origin/gh/malfet/498/base 2025-08-26T20:40:01.5410524Z * [new branch] gh/malfet/498/head -> origin/gh/malfet/498/head 2025-08-26T20:40:01.5411058Z * [new branch] gh/malfet/498/orig -> origin/gh/malfet/498/orig 2025-08-26T20:40:01.5411589Z * [new branch] gh/malfet/499/base -> origin/gh/malfet/499/base 2025-08-26T20:40:01.5412089Z * [new branch] gh/malfet/499/head -> origin/gh/malfet/499/head 2025-08-26T20:40:01.5412596Z * [new branch] gh/malfet/499/orig -> origin/gh/malfet/499/orig 2025-08-26T20:40:01.5413077Z * [new branch] gh/malfet/500/base -> origin/gh/malfet/500/base 2025-08-26T20:40:01.5413580Z * [new branch] gh/malfet/500/head -> origin/gh/malfet/500/head 2025-08-26T20:40:01.5414063Z * [new branch] gh/malfet/500/orig -> origin/gh/malfet/500/orig 2025-08-26T20:40:01.5414554Z * [new branch] gh/malfet/64/base -> origin/gh/malfet/64/base 2025-08-26T20:40:01.5415052Z * [new branch] gh/malfet/64/head -> origin/gh/malfet/64/head 2025-08-26T20:40:01.5415579Z * [new branch] gh/manuelcandales/10/base -> origin/gh/manuelcandales/10/base 2025-08-26T20:40:01.5416171Z * [new branch] gh/manuelcandales/10/head -> origin/gh/manuelcandales/10/head 2025-08-26T20:40:01.5416777Z * [new branch] gh/manuelcandales/10/orig -> origin/gh/manuelcandales/10/orig 2025-08-26T20:40:01.5417933Z * [new branch] gh/manuelcandales/11/base -> origin/gh/manuelcandales/11/base 2025-08-26T20:40:01.5418516Z * [new branch] gh/manuelcandales/11/head -> origin/gh/manuelcandales/11/head 2025-08-26T20:40:01.5419081Z * [new branch] gh/manuelcandales/11/orig -> origin/gh/manuelcandales/11/orig 2025-08-26T20:40:01.5419660Z * [new branch] gh/manuelcandales/9/base -> origin/gh/manuelcandales/9/base 2025-08-26T20:40:01.5420228Z * [new branch] gh/manuelcandales/9/head -> origin/gh/manuelcandales/9/head 2025-08-26T20:40:01.5420926Z * [new branch] gh/manuelcandales/9/orig -> origin/gh/manuelcandales/9/orig 2025-08-26T20:40:01.5421468Z * [new branch] gh/markkm/1/base -> origin/gh/markkm/1/base 2025-08-26T20:40:01.5421968Z * [new branch] gh/masnesral/204/base -> origin/gh/masnesral/204/base 2025-08-26T20:40:01.5422547Z * [new branch] gh/masnesral/204/head -> origin/gh/masnesral/204/head 2025-08-26T20:40:01.5423102Z * [new branch] gh/masnesral/204/orig -> origin/gh/masnesral/204/orig 2025-08-26T20:40:01.5423628Z * [new branch] gh/masnesral/232/base -> origin/gh/masnesral/232/base 2025-08-26T20:40:01.5424158Z * [new branch] gh/masnesral/232/head -> origin/gh/masnesral/232/head 2025-08-26T20:40:01.5424672Z * [new branch] gh/masnesral/232/orig -> origin/gh/masnesral/232/orig 2025-08-26T20:40:01.5425196Z * [new branch] gh/masnesral/233/base -> origin/gh/masnesral/233/base 2025-08-26T20:40:01.5425714Z * [new branch] gh/masnesral/233/head -> origin/gh/masnesral/233/head 2025-08-26T20:40:01.5426297Z * [new branch] gh/masnesral/233/orig -> origin/gh/masnesral/233/orig 2025-08-26T20:40:01.5426817Z * [new branch] gh/masnesral/234/base -> origin/gh/masnesral/234/base 2025-08-26T20:40:01.5427340Z * [new branch] gh/masnesral/234/head -> origin/gh/masnesral/234/head 2025-08-26T20:40:01.5427868Z * [new branch] gh/masnesral/234/orig -> origin/gh/masnesral/234/orig 2025-08-26T20:40:01.5428431Z * [new branch] gh/masnesral/235/base -> origin/gh/masnesral/235/base 2025-08-26T20:40:01.5428992Z * [new branch] gh/masnesral/235/head -> origin/gh/masnesral/235/head 2025-08-26T20:40:01.5429506Z * [new branch] gh/masnesral/235/orig -> origin/gh/masnesral/235/orig 2025-08-26T20:40:01.5430027Z * [new branch] gh/masnesral/236/base -> origin/gh/masnesral/236/base 2025-08-26T20:40:01.5430551Z * [new branch] gh/masnesral/236/head -> origin/gh/masnesral/236/head 2025-08-26T20:40:01.5431066Z * [new branch] gh/masnesral/236/orig -> origin/gh/masnesral/236/orig 2025-08-26T20:40:01.5431586Z * [new branch] gh/masnesral/34/base -> origin/gh/masnesral/34/base 2025-08-26T20:40:01.5432106Z * [new branch] gh/mhorowitz/0/base -> origin/gh/mhorowitz/0/base 2025-08-26T20:40:01.5432624Z * [new branch] gh/mhorowitz/0/head -> origin/gh/mhorowitz/0/head 2025-08-26T20:40:01.5864622Z * [new branch] gh/mhorowitz/1/base -> origin/gh/mhorowitz/1/base 2025-08-26T20:40:01.5865242Z * [new branch] gh/mhorowitz/1/head -> origin/gh/mhorowitz/1/head 2025-08-26T20:40:01.5865822Z * [new branch] gh/mhorowitz/2/base -> origin/gh/mhorowitz/2/base 2025-08-26T20:40:01.5866414Z * [new branch] gh/mhorowitz/2/head -> origin/gh/mhorowitz/2/head 2025-08-26T20:40:01.5866940Z * [new branch] gh/mhorowitz/3/base -> origin/gh/mhorowitz/3/base 2025-08-26T20:40:01.5867454Z * [new branch] gh/mhorowitz/3/head -> origin/gh/mhorowitz/3/head 2025-08-26T20:40:01.5868482Z * [new branch] gh/mhorowitz/4/base -> origin/gh/mhorowitz/4/base 2025-08-26T20:40:01.5868998Z * [new branch] gh/mhorowitz/4/head -> origin/gh/mhorowitz/4/head 2025-08-26T20:40:01.5869501Z * [new branch] gh/mhorowitz/5/base -> origin/gh/mhorowitz/5/base 2025-08-26T20:40:01.5870010Z * [new branch] gh/mhorowitz/5/head -> origin/gh/mhorowitz/5/head 2025-08-26T20:40:01.5870520Z * [new branch] gh/mhorowitz/6/base -> origin/gh/mhorowitz/6/base 2025-08-26T20:40:01.5871196Z * [new branch] gh/mhorowitz/6/head -> origin/gh/mhorowitz/6/head 2025-08-26T20:40:01.5871818Z * [new branch] gh/mikaylagawarecki/234/base -> origin/gh/mikaylagawarecki/234/base 2025-08-26T20:40:01.5872442Z * [new branch] gh/mikaylagawarecki/234/head -> origin/gh/mikaylagawarecki/234/head 2025-08-26T20:40:01.5873063Z * [new branch] gh/mikaylagawarecki/235/base -> origin/gh/mikaylagawarecki/235/base 2025-08-26T20:40:01.5873684Z * [new branch] gh/mikaylagawarecki/235/head -> origin/gh/mikaylagawarecki/235/head 2025-08-26T20:40:01.5874296Z * [new branch] gh/mikaylagawarecki/236/base -> origin/gh/mikaylagawarecki/236/base 2025-08-26T20:40:01.5874922Z * [new branch] gh/mikaylagawarecki/236/head -> origin/gh/mikaylagawarecki/236/head 2025-08-26T20:40:01.5875538Z * [new branch] gh/mikaylagawarecki/237/base -> origin/gh/mikaylagawarecki/237/base 2025-08-26T20:40:01.5876159Z * [new branch] gh/mikaylagawarecki/237/head -> origin/gh/mikaylagawarecki/237/head 2025-08-26T20:40:01.5876816Z * [new branch] gh/mikaylagawarecki/238/base -> origin/gh/mikaylagawarecki/238/base 2025-08-26T20:40:01.5877466Z * [new branch] gh/mikaylagawarecki/238/head -> origin/gh/mikaylagawarecki/238/head 2025-08-26T20:40:01.5878079Z * [new branch] gh/mikaylagawarecki/317/base -> origin/gh/mikaylagawarecki/317/base 2025-08-26T20:40:01.5878696Z * [new branch] gh/mikaylagawarecki/317/head -> origin/gh/mikaylagawarecki/317/head 2025-08-26T20:40:01.5879312Z * [new branch] gh/mikaylagawarecki/317/orig -> origin/gh/mikaylagawarecki/317/orig 2025-08-26T20:40:01.5879927Z * [new branch] gh/mikaylagawarecki/320/base -> origin/gh/mikaylagawarecki/320/base 2025-08-26T20:40:01.5880529Z * [new branch] gh/mikaylagawarecki/320/head -> origin/gh/mikaylagawarecki/320/head 2025-08-26T20:40:01.5881155Z * [new branch] gh/mikaylagawarecki/320/orig -> origin/gh/mikaylagawarecki/320/orig 2025-08-26T20:40:01.5881772Z * [new branch] gh/mikaylagawarecki/329/base -> origin/gh/mikaylagawarecki/329/base 2025-08-26T20:40:01.5882430Z * [new branch] gh/mikaylagawarecki/329/head -> origin/gh/mikaylagawarecki/329/head 2025-08-26T20:40:01.5883083Z * [new branch] gh/mikaylagawarecki/329/orig -> origin/gh/mikaylagawarecki/329/orig 2025-08-26T20:40:01.5883701Z * [new branch] gh/mikaylagawarecki/330/base -> origin/gh/mikaylagawarecki/330/base 2025-08-26T20:40:01.5884319Z * [new branch] gh/mikaylagawarecki/330/head -> origin/gh/mikaylagawarecki/330/head 2025-08-26T20:40:01.5884926Z * [new branch] gh/mikaylagawarecki/330/orig -> origin/gh/mikaylagawarecki/330/orig 2025-08-26T20:40:01.5885537Z * [new branch] gh/mikaylagawarecki/331/base -> origin/gh/mikaylagawarecki/331/base 2025-08-26T20:40:01.5886145Z * [new branch] gh/mikaylagawarecki/331/head -> origin/gh/mikaylagawarecki/331/head 2025-08-26T20:40:01.5886753Z * [new branch] gh/mikaylagawarecki/331/orig -> origin/gh/mikaylagawarecki/331/orig 2025-08-26T20:40:01.5887374Z * [new branch] gh/mikaylagawarecki/332/base -> origin/gh/mikaylagawarecki/332/base 2025-08-26T20:40:01.5887985Z * [new branch] gh/mikaylagawarecki/332/head -> origin/gh/mikaylagawarecki/332/head 2025-08-26T20:40:01.5889037Z * [new branch] gh/mikaylagawarecki/332/orig -> origin/gh/mikaylagawarecki/332/orig 2025-08-26T20:40:01.5889653Z * [new branch] gh/mikaylagawarecki/333/base -> origin/gh/mikaylagawarecki/333/base 2025-08-26T20:40:01.5890271Z * [new branch] gh/mikaylagawarecki/333/head -> origin/gh/mikaylagawarecki/333/head 2025-08-26T20:40:01.5890891Z * [new branch] gh/mikaylagawarecki/333/orig -> origin/gh/mikaylagawarecki/333/orig 2025-08-26T20:40:01.5891505Z * [new branch] gh/mikaylagawarecki/334/base -> origin/gh/mikaylagawarecki/334/base 2025-08-26T20:40:01.6318991Z * [new branch] gh/mikaylagawarecki/334/head -> origin/gh/mikaylagawarecki/334/head 2025-08-26T20:40:01.6319676Z * [new branch] gh/mikaylagawarecki/334/orig -> origin/gh/mikaylagawarecki/334/orig 2025-08-26T20:40:01.6320302Z * [new branch] gh/mikaylagawarecki/335/base -> origin/gh/mikaylagawarecki/335/base 2025-08-26T20:40:01.6338486Z * [new branch] gh/mikaylagawarecki/335/head -> origin/gh/mikaylagawarecki/335/head 2025-08-26T20:40:01.6339149Z * [new branch] gh/mikaylagawarecki/335/orig -> origin/gh/mikaylagawarecki/335/orig 2025-08-26T20:40:01.6339767Z * [new branch] gh/mikaylagawarecki/336/base -> origin/gh/mikaylagawarecki/336/base 2025-08-26T20:40:01.6340396Z * [new branch] gh/mikaylagawarecki/336/head -> origin/gh/mikaylagawarecki/336/head 2025-08-26T20:40:01.6341070Z * [new branch] gh/mikaylagawarecki/336/orig -> origin/gh/mikaylagawarecki/336/orig 2025-08-26T20:40:01.6341745Z * [new branch] gh/mikaylagawarecki/337/base -> origin/gh/mikaylagawarecki/337/base 2025-08-26T20:40:01.6342372Z * [new branch] gh/mikaylagawarecki/337/head -> origin/gh/mikaylagawarecki/337/head 2025-08-26T20:40:01.6342989Z * [new branch] gh/mikaylagawarecki/337/orig -> origin/gh/mikaylagawarecki/337/orig 2025-08-26T20:40:01.6343565Z * [new branch] gh/mlazos/1/base -> origin/gh/mlazos/1/base 2025-08-26T20:40:01.6344056Z * [new branch] gh/mlazos/1/head -> origin/gh/mlazos/1/head 2025-08-26T20:40:01.6344557Z * [new branch] gh/mlazos/1/orig -> origin/gh/mlazos/1/orig 2025-08-26T20:40:01.6345042Z * [new branch] gh/mlazos/10/base -> origin/gh/mlazos/10/base 2025-08-26T20:40:01.6345527Z * [new branch] gh/mlazos/10/head -> origin/gh/mlazos/10/head 2025-08-26T20:40:01.6346111Z * [new branch] gh/mlazos/10/orig -> origin/gh/mlazos/10/orig 2025-08-26T20:40:01.6346632Z * [new branch] gh/mlazos/11/base -> origin/gh/mlazos/11/base 2025-08-26T20:40:01.6347156Z * [new branch] gh/mlazos/11/head -> origin/gh/mlazos/11/head 2025-08-26T20:40:01.6347647Z * [new branch] gh/mlazos/11/orig -> origin/gh/mlazos/11/orig 2025-08-26T20:40:01.6348148Z * [new branch] gh/mlazos/12/base -> origin/gh/mlazos/12/base 2025-08-26T20:40:01.6348631Z * [new branch] gh/mlazos/12/head -> origin/gh/mlazos/12/head 2025-08-26T20:40:01.6349117Z * [new branch] gh/mlazos/12/orig -> origin/gh/mlazos/12/orig 2025-08-26T20:40:01.6349604Z * [new branch] gh/mlazos/13/base -> origin/gh/mlazos/13/base 2025-08-26T20:40:01.6350080Z * [new branch] gh/mlazos/13/head -> origin/gh/mlazos/13/head 2025-08-26T20:40:01.6350579Z * [new branch] gh/mlazos/13/orig -> origin/gh/mlazos/13/orig 2025-08-26T20:40:01.6351070Z * [new branch] gh/mlazos/14/base -> origin/gh/mlazos/14/base 2025-08-26T20:40:01.6351550Z * [new branch] gh/mlazos/14/head -> origin/gh/mlazos/14/head 2025-08-26T20:40:01.6352042Z * [new branch] gh/mlazos/14/orig -> origin/gh/mlazos/14/orig 2025-08-26T20:40:01.6353180Z * [new branch] gh/mlazos/15/base -> origin/gh/mlazos/15/base 2025-08-26T20:40:01.6353662Z * [new branch] gh/mlazos/15/head -> origin/gh/mlazos/15/head 2025-08-26T20:40:01.6354148Z * [new branch] gh/mlazos/15/orig -> origin/gh/mlazos/15/orig 2025-08-26T20:40:01.6354626Z * [new branch] gh/mlazos/16/base -> origin/gh/mlazos/16/base 2025-08-26T20:40:01.6355106Z * [new branch] gh/mlazos/16/head -> origin/gh/mlazos/16/head 2025-08-26T20:40:01.6355704Z * [new branch] gh/mlazos/16/orig -> origin/gh/mlazos/16/orig 2025-08-26T20:40:01.6356197Z * [new branch] gh/mlazos/17/base -> origin/gh/mlazos/17/base 2025-08-26T20:40:01.6356677Z * [new branch] gh/mlazos/17/head -> origin/gh/mlazos/17/head 2025-08-26T20:40:01.6357165Z * [new branch] gh/mlazos/17/orig -> origin/gh/mlazos/17/orig 2025-08-26T20:40:01.6357660Z * [new branch] gh/mlazos/2/base -> origin/gh/mlazos/2/base 2025-08-26T20:40:01.6358130Z * [new branch] gh/mlazos/2/head -> origin/gh/mlazos/2/head 2025-08-26T20:40:01.6358649Z * [new branch] gh/mlazos/2/orig -> origin/gh/mlazos/2/orig 2025-08-26T20:40:01.6359155Z * [new branch] gh/mlazos/3/base -> origin/gh/mlazos/3/base 2025-08-26T20:40:01.6359621Z * [new branch] gh/mlazos/3/head -> origin/gh/mlazos/3/head 2025-08-26T20:40:01.6360094Z * [new branch] gh/mlazos/3/orig -> origin/gh/mlazos/3/orig 2025-08-26T20:40:01.6360563Z * [new branch] gh/mlazos/4/base -> origin/gh/mlazos/4/base 2025-08-26T20:40:01.6361035Z * [new branch] gh/mlazos/4/head -> origin/gh/mlazos/4/head 2025-08-26T20:40:01.6918505Z * [new branch] gh/mlazos/4/orig -> origin/gh/mlazos/4/orig 2025-08-26T20:40:01.6919114Z * [new branch] gh/mlazos/5/base -> origin/gh/mlazos/5/base 2025-08-26T20:40:01.6919638Z * [new branch] gh/mlazos/5/head -> origin/gh/mlazos/5/head 2025-08-26T20:40:01.6920108Z * [new branch] gh/mlazos/5/orig -> origin/gh/mlazos/5/orig 2025-08-26T20:40:01.6920588Z * [new branch] gh/mlazos/6/base -> origin/gh/mlazos/6/base 2025-08-26T20:40:01.6921050Z * [new branch] gh/mlazos/6/head -> origin/gh/mlazos/6/head 2025-08-26T20:40:01.6921535Z * [new branch] gh/mlazos/6/orig -> origin/gh/mlazos/6/orig 2025-08-26T20:40:01.6922008Z * [new branch] gh/mlazos/7/base -> origin/gh/mlazos/7/base 2025-08-26T20:40:01.6922468Z * [new branch] gh/mlazos/7/head -> origin/gh/mlazos/7/head 2025-08-26T20:40:01.6922942Z * [new branch] gh/mlazos/7/orig -> origin/gh/mlazos/7/orig 2025-08-26T20:40:01.6923410Z * [new branch] gh/mlazos/8/base -> origin/gh/mlazos/8/base 2025-08-26T20:40:01.6923891Z * [new branch] gh/mlazos/8/head -> origin/gh/mlazos/8/head 2025-08-26T20:40:01.6924370Z * [new branch] gh/mlazos/8/orig -> origin/gh/mlazos/8/orig 2025-08-26T20:40:01.6924877Z * [new branch] gh/mlazos/9/base -> origin/gh/mlazos/9/base 2025-08-26T20:40:01.6925392Z * [new branch] gh/mlazos/9/head -> origin/gh/mlazos/9/head 2025-08-26T20:40:01.6925860Z * [new branch] gh/mlazos/9/orig -> origin/gh/mlazos/9/orig 2025-08-26T20:40:01.6926351Z * [new branch] gh/mrmiywj/1/base -> origin/gh/mrmiywj/1/base 2025-08-26T20:40:01.6926834Z * [new branch] gh/mrmiywj/1/head -> origin/gh/mrmiywj/1/head 2025-08-26T20:40:01.6927339Z * [new branch] gh/muchulee8/62/base -> origin/gh/muchulee8/62/base 2025-08-26T20:40:01.6928052Z * [new branch] gh/muchulee8/62/head -> origin/gh/muchulee8/62/head 2025-08-26T20:40:01.6928565Z * [new branch] gh/muchulee8/62/orig -> origin/gh/muchulee8/62/orig 2025-08-26T20:40:01.6929087Z * [new branch] gh/muchulee8/63/base -> origin/gh/muchulee8/63/base 2025-08-26T20:40:01.6929592Z * [new branch] gh/muchulee8/63/head -> origin/gh/muchulee8/63/head 2025-08-26T20:40:01.6930115Z * [new branch] gh/muchulee8/63/orig -> origin/gh/muchulee8/63/orig 2025-08-26T20:40:01.6930796Z * [new branch] gh/muchulee8/64/base -> origin/gh/muchulee8/64/base 2025-08-26T20:40:01.6931350Z * [new branch] gh/muchulee8/64/head -> origin/gh/muchulee8/64/head 2025-08-26T20:40:01.6931860Z * [new branch] gh/muchulee8/64/orig -> origin/gh/muchulee8/64/orig 2025-08-26T20:40:01.6932366Z * [new branch] gh/muchulee8/65/base -> origin/gh/muchulee8/65/base 2025-08-26T20:40:01.6932883Z * [new branch] gh/muchulee8/65/head -> origin/gh/muchulee8/65/head 2025-08-26T20:40:01.6933395Z * [new branch] gh/muchulee8/65/orig -> origin/gh/muchulee8/65/orig 2025-08-26T20:40:01.6933958Z * [new branch] gh/naveenthangudu/1/base -> origin/gh/naveenthangudu/1/base 2025-08-26T20:40:01.6934535Z * [new branch] gh/naveenthangudu/1/head -> origin/gh/naveenthangudu/1/head 2025-08-26T20:40:01.6935102Z * [new branch] gh/naveenthangudu/1/orig -> origin/gh/naveenthangudu/1/orig 2025-08-26T20:40:01.6935674Z * [new branch] gh/naveenthangudu/2/base -> origin/gh/naveenthangudu/2/base 2025-08-26T20:40:01.6936253Z * [new branch] gh/naveenthangudu/2/head -> origin/gh/naveenthangudu/2/head 2025-08-26T20:40:01.6936847Z * [new branch] gh/naveenthangudu/2/orig -> origin/gh/naveenthangudu/2/orig 2025-08-26T20:40:01.6937464Z * [new branch] gh/naveenthangudu/3/base -> origin/gh/naveenthangudu/3/base 2025-08-26T20:40:01.6938026Z * [new branch] gh/naveenthangudu/3/head -> origin/gh/naveenthangudu/3/head 2025-08-26T20:40:01.6938590Z * [new branch] gh/naveenthangudu/3/orig -> origin/gh/naveenthangudu/3/orig 2025-08-26T20:40:01.6939155Z * [new branch] gh/naveenthangudu/4/base -> origin/gh/naveenthangudu/4/base 2025-08-26T20:40:01.6939709Z * [new branch] gh/naveenthangudu/4/head -> origin/gh/naveenthangudu/4/head 2025-08-26T20:40:01.6940286Z * [new branch] gh/naveenthangudu/4/orig -> origin/gh/naveenthangudu/4/orig 2025-08-26T20:40:01.6940842Z * [new branch] gh/naveenthangudu/5/base -> origin/gh/naveenthangudu/5/base 2025-08-26T20:40:01.6941422Z * [new branch] gh/naveenthangudu/5/head -> origin/gh/naveenthangudu/5/head 2025-08-26T20:40:01.6942000Z * [new branch] gh/naveenthangudu/5/orig -> origin/gh/naveenthangudu/5/orig 2025-08-26T20:40:01.6942596Z * [new branch] gh/naveenthangudu/6/base -> origin/gh/naveenthangudu/6/base 2025-08-26T20:40:01.6943203Z * [new branch] gh/naveenthangudu/6/head -> origin/gh/naveenthangudu/6/head 2025-08-26T20:40:01.7366915Z * [new branch] gh/naveenthangudu/6/orig -> origin/gh/naveenthangudu/6/orig 2025-08-26T20:40:01.7367517Z * [new branch] gh/oulgen/35/base -> origin/gh/oulgen/35/base 2025-08-26T20:40:01.7368040Z * [new branch] gh/oulgen/35/head -> origin/gh/oulgen/35/head 2025-08-26T20:40:01.7368527Z * [new branch] gh/oulgen/35/orig -> origin/gh/oulgen/35/orig 2025-08-26T20:40:01.7369020Z * [new branch] gh/oulgen/44/base -> origin/gh/oulgen/44/base 2025-08-26T20:40:01.7369499Z * [new branch] gh/oulgen/44/head -> origin/gh/oulgen/44/head 2025-08-26T20:40:01.7370199Z * [new branch] gh/oulgen/44/orig -> origin/gh/oulgen/44/orig 2025-08-26T20:40:01.7370675Z * [new branch] gh/oulgen/45/base -> origin/gh/oulgen/45/base 2025-08-26T20:40:01.7371215Z * [new branch] gh/oulgen/45/head -> origin/gh/oulgen/45/head 2025-08-26T20:40:01.7371741Z * [new branch] gh/oulgen/45/orig -> origin/gh/oulgen/45/orig 2025-08-26T20:40:01.7372213Z * [new branch] gh/oulgen/46/base -> origin/gh/oulgen/46/base 2025-08-26T20:40:01.7372830Z * [new branch] gh/oulgen/46/head -> origin/gh/oulgen/46/head 2025-08-26T20:40:01.7373342Z * [new branch] gh/oulgen/46/orig -> origin/gh/oulgen/46/orig 2025-08-26T20:40:01.7373814Z * [new branch] gh/oulgen/47/base -> origin/gh/oulgen/47/base 2025-08-26T20:40:01.7374306Z * [new branch] gh/oulgen/47/head -> origin/gh/oulgen/47/head 2025-08-26T20:40:01.7374778Z * [new branch] gh/oulgen/47/orig -> origin/gh/oulgen/47/orig 2025-08-26T20:40:01.7375272Z * [new branch] gh/pearu/108/base -> origin/gh/pearu/108/base 2025-08-26T20:40:01.7375761Z * [new branch] gh/pearu/108/head -> origin/gh/pearu/108/head 2025-08-26T20:40:01.7376232Z * [new branch] gh/pearu/108/orig -> origin/gh/pearu/108/orig 2025-08-26T20:40:01.7376763Z * [new branch] gh/pearu/56/base -> origin/gh/pearu/56/base 2025-08-26T20:40:01.7377292Z * [new branch] gh/pearu/56/head -> origin/gh/pearu/56/head 2025-08-26T20:40:01.7377775Z * [new branch] gh/pearu/56/orig -> origin/gh/pearu/56/orig 2025-08-26T20:40:01.7378248Z * [new branch] gh/pearu/97/base -> origin/gh/pearu/97/base 2025-08-26T20:40:01.7378716Z * [new branch] gh/pearu/97/head -> origin/gh/pearu/97/head 2025-08-26T20:40:01.7379196Z * [new branch] gh/pearu/97/orig -> origin/gh/pearu/97/orig 2025-08-26T20:40:01.7379672Z * [new branch] gh/qqaatw/29/base -> origin/gh/qqaatw/29/base 2025-08-26T20:40:01.7380160Z * [new branch] gh/qqaatw/29/head -> origin/gh/qqaatw/29/head 2025-08-26T20:40:01.7380636Z * [new branch] gh/qqaatw/29/orig -> origin/gh/qqaatw/29/orig 2025-08-26T20:40:01.7381226Z * [new branch] gh/raymo/cleanup-dynamo-logging -> origin/gh/raymo/cleanup-dynamo-logging 2025-08-26T20:40:01.7381869Z * [new branch] gh/raymo/refresh-script -> origin/gh/raymo/refresh-script 2025-08-26T20:40:01.7382382Z * [new branch] gh/rec/141/base -> origin/gh/rec/141/base 2025-08-26T20:40:01.7382901Z * [new branch] gh/rec/141/head -> origin/gh/rec/141/head 2025-08-26T20:40:01.7383404Z * [new branch] gh/rec/153/base -> origin/gh/rec/153/base 2025-08-26T20:40:01.7383867Z * [new branch] gh/rec/153/head -> origin/gh/rec/153/head 2025-08-26T20:40:01.7384322Z * [new branch] gh/rec/153/orig -> origin/gh/rec/153/orig 2025-08-26T20:40:01.7384766Z * [new branch] gh/rec/154/base -> origin/gh/rec/154/base 2025-08-26T20:40:01.7385227Z * [new branch] gh/rec/154/head -> origin/gh/rec/154/head 2025-08-26T20:40:01.7385676Z * [new branch] gh/rec/154/orig -> origin/gh/rec/154/orig 2025-08-26T20:40:01.7386211Z * [new branch] gh/rec/156/base -> origin/gh/rec/156/base 2025-08-26T20:40:01.7386672Z * [new branch] gh/rec/156/head -> origin/gh/rec/156/head 2025-08-26T20:40:01.7387131Z * [new branch] gh/rec/156/orig -> origin/gh/rec/156/orig 2025-08-26T20:40:01.7387592Z * [new branch] gh/rec/158/base -> origin/gh/rec/158/base 2025-08-26T20:40:01.7388600Z * [new branch] gh/rec/158/head -> origin/gh/rec/158/head 2025-08-26T20:40:01.7389108Z * [new branch] gh/rec/158/orig -> origin/gh/rec/158/orig 2025-08-26T20:40:01.7389569Z * [new branch] gh/rec/159/base -> origin/gh/rec/159/base 2025-08-26T20:40:01.7390030Z * [new branch] gh/rec/159/head -> origin/gh/rec/159/head 2025-08-26T20:40:01.7390486Z * [new branch] gh/rec/160/base -> origin/gh/rec/160/base 2025-08-26T20:40:01.7391048Z * [new branch] gh/rec/160/head -> origin/gh/rec/160/head 2025-08-26T20:40:01.7847820Z * [new branch] gh/rec/160/orig -> origin/gh/rec/160/orig 2025-08-26T20:40:01.7848317Z * [new branch] gh/rec/161/base -> origin/gh/rec/161/base 2025-08-26T20:40:01.7848798Z * [new branch] gh/rec/161/head -> origin/gh/rec/161/head 2025-08-26T20:40:01.7849287Z * [new branch] gh/rec/161/orig -> origin/gh/rec/161/orig 2025-08-26T20:40:01.7849738Z * [new branch] gh/rec/162/base -> origin/gh/rec/162/base 2025-08-26T20:40:01.7850198Z * [new branch] gh/rec/162/head -> origin/gh/rec/162/head 2025-08-26T20:40:01.7850703Z * [new branch] gh/rec/162/orig -> origin/gh/rec/162/orig 2025-08-26T20:40:01.7851213Z * [new branch] gh/rec/163/base -> origin/gh/rec/163/base 2025-08-26T20:40:01.7851689Z * [new branch] gh/rec/163/head -> origin/gh/rec/163/head 2025-08-26T20:40:01.7852150Z * [new branch] gh/rec/163/orig -> origin/gh/rec/163/orig 2025-08-26T20:40:01.7852613Z * [new branch] gh/rec/164/base -> origin/gh/rec/164/base 2025-08-26T20:40:01.7853065Z * [new branch] gh/rec/164/head -> origin/gh/rec/164/head 2025-08-26T20:40:01.7853538Z * [new branch] gh/rec/164/orig -> origin/gh/rec/164/orig 2025-08-26T20:40:01.7854002Z * [new branch] gh/rec/165/base -> origin/gh/rec/165/base 2025-08-26T20:40:01.7854456Z * [new branch] gh/rec/165/head -> origin/gh/rec/165/head 2025-08-26T20:40:01.7854919Z * [new branch] gh/rec/165/orig -> origin/gh/rec/165/orig 2025-08-26T20:40:01.7855440Z * [new branch] gh/robert-hardwick/1/base -> origin/gh/robert-hardwick/1/base 2025-08-26T20:40:01.7856019Z * [new branch] gh/robert-hardwick/1/head -> origin/gh/robert-hardwick/1/head 2025-08-26T20:40:01.7856681Z * [new branch] gh/robert-hardwick/1/orig -> origin/gh/robert-hardwick/1/orig 2025-08-26T20:40:01.7857253Z * [new branch] gh/robert-hardwick/2/base -> origin/gh/robert-hardwick/2/base 2025-08-26T20:40:01.7857822Z * [new branch] gh/robert-hardwick/2/head -> origin/gh/robert-hardwick/2/head 2025-08-26T20:40:01.7858394Z * [new branch] gh/robert-hardwick/2/orig -> origin/gh/robert-hardwick/2/orig 2025-08-26T20:40:01.7858956Z * [new branch] gh/robert-hardwick/3/base -> origin/gh/robert-hardwick/3/base 2025-08-26T20:40:01.7859509Z * [new branch] gh/robert-hardwick/3/head -> origin/gh/robert-hardwick/3/head 2025-08-26T20:40:01.7860083Z * [new branch] gh/robert-hardwick/3/orig -> origin/gh/robert-hardwick/3/orig 2025-08-26T20:40:01.7860663Z * [new branch] gh/robert-hardwick/4/base -> origin/gh/robert-hardwick/4/base 2025-08-26T20:40:01.7861221Z * [new branch] gh/robert-hardwick/4/head -> origin/gh/robert-hardwick/4/head 2025-08-26T20:40:01.7861784Z * [new branch] gh/robert-hardwick/4/orig -> origin/gh/robert-hardwick/4/orig 2025-08-26T20:40:01.7862384Z * [new branch] gh/rtimpe/1/base -> origin/gh/rtimpe/1/base 2025-08-26T20:40:01.7863093Z * [new branch] gh/rtimpe/1/head -> origin/gh/rtimpe/1/head 2025-08-26T20:40:01.7863595Z * [new branch] gh/rtimpe/10/base -> origin/gh/rtimpe/10/base 2025-08-26T20:40:01.7864080Z * [new branch] gh/rtimpe/10/head -> origin/gh/rtimpe/10/head 2025-08-26T20:40:01.7864577Z * [new branch] gh/rtimpe/10/orig -> origin/gh/rtimpe/10/orig 2025-08-26T20:40:01.7865063Z * [new branch] gh/rtimpe/11/base -> origin/gh/rtimpe/11/base 2025-08-26T20:40:01.7865676Z * [new branch] gh/rtimpe/11/head -> origin/gh/rtimpe/11/head 2025-08-26T20:40:01.7866225Z * [new branch] gh/rtimpe/11/orig -> origin/gh/rtimpe/11/orig 2025-08-26T20:40:01.7866712Z * [new branch] gh/rtimpe/12/base -> origin/gh/rtimpe/12/base 2025-08-26T20:40:01.7867210Z * [new branch] gh/rtimpe/12/head -> origin/gh/rtimpe/12/head 2025-08-26T20:40:01.7867740Z * [new branch] gh/rtimpe/12/orig -> origin/gh/rtimpe/12/orig 2025-08-26T20:40:01.7868274Z * [new branch] gh/rtimpe/13/base -> origin/gh/rtimpe/13/base 2025-08-26T20:40:01.7868761Z * [new branch] gh/rtimpe/13/head -> origin/gh/rtimpe/13/head 2025-08-26T20:40:01.7869242Z * [new branch] gh/rtimpe/13/orig -> origin/gh/rtimpe/13/orig 2025-08-26T20:40:01.7869732Z * [new branch] gh/rtimpe/14/base -> origin/gh/rtimpe/14/base 2025-08-26T20:40:01.7870215Z * [new branch] gh/rtimpe/14/head -> origin/gh/rtimpe/14/head 2025-08-26T20:40:01.7870702Z * [new branch] gh/rtimpe/14/orig -> origin/gh/rtimpe/14/orig 2025-08-26T20:40:01.7871180Z * [new branch] gh/rtimpe/2/base -> origin/gh/rtimpe/2/base 2025-08-26T20:40:01.7871675Z * [new branch] gh/rtimpe/2/head -> origin/gh/rtimpe/2/head 2025-08-26T20:40:01.7872162Z * [new branch] gh/rtimpe/3/base -> origin/gh/rtimpe/3/base 2025-08-26T20:40:01.8279090Z * [new branch] gh/rtimpe/3/head -> origin/gh/rtimpe/3/head 2025-08-26T20:40:01.8279622Z * [new branch] gh/rtimpe/4/base -> origin/gh/rtimpe/4/base 2025-08-26T20:40:01.8280120Z * [new branch] gh/rtimpe/4/head -> origin/gh/rtimpe/4/head 2025-08-26T20:40:01.8280596Z * [new branch] gh/rtimpe/6/base -> origin/gh/rtimpe/6/base 2025-08-26T20:40:01.8281093Z * [new branch] gh/rtimpe/6/head -> origin/gh/rtimpe/6/head 2025-08-26T20:40:01.8281571Z * [new branch] gh/rtimpe/6/orig -> origin/gh/rtimpe/6/orig 2025-08-26T20:40:01.8282037Z * [new branch] gh/rtimpe/7/base -> origin/gh/rtimpe/7/base 2025-08-26T20:40:01.8282532Z * [new branch] gh/rtimpe/7/head -> origin/gh/rtimpe/7/head 2025-08-26T20:40:01.8283015Z * [new branch] gh/rtimpe/7/orig -> origin/gh/rtimpe/7/orig 2025-08-26T20:40:01.8283485Z * [new branch] gh/rtimpe/8/base -> origin/gh/rtimpe/8/base 2025-08-26T20:40:01.8283960Z * [new branch] gh/rtimpe/8/head -> origin/gh/rtimpe/8/head 2025-08-26T20:40:01.8284428Z * [new branch] gh/rtimpe/8/orig -> origin/gh/rtimpe/8/orig 2025-08-26T20:40:01.8284903Z * [new branch] gh/rtimpe/9/base -> origin/gh/rtimpe/9/base 2025-08-26T20:40:01.8285370Z * [new branch] gh/rtimpe/9/head -> origin/gh/rtimpe/9/head 2025-08-26T20:40:01.8285842Z * [new branch] gh/rtimpe/9/orig -> origin/gh/rtimpe/9/orig 2025-08-26T20:40:01.8286365Z * [new branch] gh/ruisizhang123/1/base -> origin/gh/ruisizhang123/1/base 2025-08-26T20:40:01.8286914Z * [new branch] gh/ruisizhang123/1/head -> origin/gh/ruisizhang123/1/head 2025-08-26T20:40:01.8287659Z * [new branch] gh/ruisizhang123/1/orig -> origin/gh/ruisizhang123/1/orig 2025-08-26T20:40:01.8288207Z * [new branch] gh/ruisizhang123/4/base -> origin/gh/ruisizhang123/4/base 2025-08-26T20:40:01.8288764Z * [new branch] gh/ruisizhang123/4/head -> origin/gh/ruisizhang123/4/head 2025-08-26T20:40:01.8289310Z * [new branch] gh/ruisizhang123/4/orig -> origin/gh/ruisizhang123/4/orig 2025-08-26T20:40:01.8290501Z * [new branch] gh/ruisizhang123/5/base -> origin/gh/ruisizhang123/5/base 2025-08-26T20:40:01.8291066Z * [new branch] gh/ruisizhang123/5/head -> origin/gh/ruisizhang123/5/head 2025-08-26T20:40:01.8291609Z * [new branch] gh/ruisizhang123/5/orig -> origin/gh/ruisizhang123/5/orig 2025-08-26T20:40:01.8292155Z * [new branch] gh/ruisizhang123/6/base -> origin/gh/ruisizhang123/6/base 2025-08-26T20:40:01.8292698Z * [new branch] gh/ruisizhang123/6/head -> origin/gh/ruisizhang123/6/head 2025-08-26T20:40:01.8293244Z * [new branch] gh/ruisizhang123/6/orig -> origin/gh/ruisizhang123/6/orig 2025-08-26T20:40:01.8293793Z * [new branch] gh/ruisizhang123/7/base -> origin/gh/ruisizhang123/7/base 2025-08-26T20:40:01.8294331Z * [new branch] gh/ruisizhang123/7/head -> origin/gh/ruisizhang123/7/head 2025-08-26T20:40:01.8294874Z * [new branch] gh/ruisizhang123/7/orig -> origin/gh/ruisizhang123/7/orig 2025-08-26T20:40:01.8295419Z * [new branch] gh/ruisizhang123/8/base -> origin/gh/ruisizhang123/8/base 2025-08-26T20:40:01.8295969Z * [new branch] gh/ruisizhang123/8/head -> origin/gh/ruisizhang123/8/head 2025-08-26T20:40:01.8296523Z * [new branch] gh/ruisizhang123/8/orig -> origin/gh/ruisizhang123/8/orig 2025-08-26T20:40:01.8297036Z * [new branch] gh/sarckk/2/base -> origin/gh/sarckk/2/base 2025-08-26T20:40:01.8297536Z * [new branch] gh/sarckk/2/head -> origin/gh/sarckk/2/head 2025-08-26T20:40:01.8298011Z * [new branch] gh/sarckk/2/orig -> origin/gh/sarckk/2/orig 2025-08-26T20:40:01.8298527Z * [new branch] gh/seemethere/23/head -> origin/gh/seemethere/23/head 2025-08-26T20:40:01.8299064Z * [new branch] gh/seemethere/32/base -> origin/gh/seemethere/32/base 2025-08-26T20:40:01.8299589Z * [new branch] gh/seemethere/32/head -> origin/gh/seemethere/32/head 2025-08-26T20:40:01.8300122Z * [new branch] gh/seemethere/32/orig -> origin/gh/seemethere/32/orig 2025-08-26T20:40:01.8300638Z * [new branch] gh/seemethere/33/base -> origin/gh/seemethere/33/base 2025-08-26T20:40:01.8301167Z * [new branch] gh/seemethere/33/head -> origin/gh/seemethere/33/head 2025-08-26T20:40:01.8301701Z * [new branch] gh/seemethere/33/orig -> origin/gh/seemethere/33/orig 2025-08-26T20:40:01.8302216Z * [new branch] gh/seemethere/34/base -> origin/gh/seemethere/34/base 2025-08-26T20:40:01.8302742Z * [new branch] gh/seemethere/34/head -> origin/gh/seemethere/34/head 2025-08-26T20:40:01.8303258Z * [new branch] gh/seemethere/34/orig -> origin/gh/seemethere/34/orig 2025-08-26T20:40:01.8722553Z * [new branch] gh/seemethere/35/base -> origin/gh/seemethere/35/base 2025-08-26T20:40:01.8723169Z * [new branch] gh/seemethere/35/head -> origin/gh/seemethere/35/head 2025-08-26T20:40:01.8723711Z * [new branch] gh/seemethere/35/orig -> origin/gh/seemethere/35/orig 2025-08-26T20:40:01.8724237Z * [new branch] gh/seemethere/37/base -> origin/gh/seemethere/37/base 2025-08-26T20:40:01.8724746Z * [new branch] gh/seemethere/37/head -> origin/gh/seemethere/37/head 2025-08-26T20:40:01.8725469Z * [new branch] gh/seemethere/37/orig -> origin/gh/seemethere/37/orig 2025-08-26T20:40:01.8725992Z * [new branch] gh/seemethere/43/base -> origin/gh/seemethere/43/base 2025-08-26T20:40:01.8726521Z * [new branch] gh/seemethere/43/head -> origin/gh/seemethere/43/head 2025-08-26T20:40:01.8727060Z * [new branch] gh/seemethere/43/orig -> origin/gh/seemethere/43/orig 2025-08-26T20:40:01.8727569Z * [new branch] gh/seemethere/44/base -> origin/gh/seemethere/44/base 2025-08-26T20:40:01.8728232Z * [new branch] gh/seemethere/44/head -> origin/gh/seemethere/44/head 2025-08-26T20:40:01.8728763Z * [new branch] gh/seemethere/44/orig -> origin/gh/seemethere/44/orig 2025-08-26T20:40:01.8729278Z * [new branch] gh/seemethere/48/base -> origin/gh/seemethere/48/base 2025-08-26T20:40:01.8729797Z * [new branch] gh/seemethere/48/head -> origin/gh/seemethere/48/head 2025-08-26T20:40:01.8730318Z * [new branch] gh/seemethere/48/orig -> origin/gh/seemethere/48/orig 2025-08-26T20:40:01.8730845Z * [new branch] gh/seemethere/49/base -> origin/gh/seemethere/49/base 2025-08-26T20:40:01.8731365Z * [new branch] gh/seemethere/49/head -> origin/gh/seemethere/49/head 2025-08-26T20:40:01.8731887Z * [new branch] gh/seemethere/49/orig -> origin/gh/seemethere/49/orig 2025-08-26T20:40:01.8732414Z * [new branch] gh/seemethere/51/base -> origin/gh/seemethere/51/base 2025-08-26T20:40:01.8732927Z * [new branch] gh/seemethere/51/head -> origin/gh/seemethere/51/head 2025-08-26T20:40:01.8733450Z * [new branch] gh/seemethere/51/orig -> origin/gh/seemethere/51/orig 2025-08-26T20:40:01.8733960Z * [new branch] gh/seemethere/52/base -> origin/gh/seemethere/52/base 2025-08-26T20:40:01.8734485Z * [new branch] gh/seemethere/52/head -> origin/gh/seemethere/52/head 2025-08-26T20:40:01.8735008Z * [new branch] gh/seemethere/52/orig -> origin/gh/seemethere/52/orig 2025-08-26T20:40:01.8735520Z * [new branch] gh/seemethere/53/base -> origin/gh/seemethere/53/base 2025-08-26T20:40:01.8736043Z * [new branch] gh/seemethere/53/head -> origin/gh/seemethere/53/head 2025-08-26T20:40:01.8736555Z * [new branch] gh/seemethere/53/orig -> origin/gh/seemethere/53/orig 2025-08-26T20:40:01.8737082Z * [new branch] gh/seemethere/54/base -> origin/gh/seemethere/54/base 2025-08-26T20:40:01.8737602Z * [new branch] gh/seemethere/54/head -> origin/gh/seemethere/54/head 2025-08-26T20:40:01.8738107Z * [new branch] gh/seemethere/54/orig -> origin/gh/seemethere/54/orig 2025-08-26T20:40:01.8738626Z * [new branch] gh/seemethere/55/base -> origin/gh/seemethere/55/base 2025-08-26T20:40:01.8739142Z * [new branch] gh/seemethere/55/head -> origin/gh/seemethere/55/head 2025-08-26T20:40:01.8739669Z * [new branch] gh/seemethere/55/orig -> origin/gh/seemethere/55/orig 2025-08-26T20:40:01.8740175Z * [new branch] gh/seemethere/56/base -> origin/gh/seemethere/56/base 2025-08-26T20:40:01.8740693Z * [new branch] gh/seemethere/56/head -> origin/gh/seemethere/56/head 2025-08-26T20:40:01.8741212Z * [new branch] gh/seemethere/56/orig -> origin/gh/seemethere/56/orig 2025-08-26T20:40:01.8741730Z * [new branch] gh/seemethere/57/base -> origin/gh/seemethere/57/base 2025-08-26T20:40:01.8742253Z * [new branch] gh/seemethere/57/head -> origin/gh/seemethere/57/head 2025-08-26T20:40:01.8742763Z * [new branch] gh/seemethere/57/orig -> origin/gh/seemethere/57/orig 2025-08-26T20:40:01.8743374Z * [new branch] gh/seemethere/58/base -> origin/gh/seemethere/58/base 2025-08-26T20:40:01.8743906Z * [new branch] gh/seemethere/58/head -> origin/gh/seemethere/58/head 2025-08-26T20:40:01.8744418Z * [new branch] gh/seemethere/58/orig -> origin/gh/seemethere/58/orig 2025-08-26T20:40:01.8744943Z * [new branch] gh/seemethere/59/base -> origin/gh/seemethere/59/base 2025-08-26T20:40:01.8745465Z * [new branch] gh/seemethere/59/head -> origin/gh/seemethere/59/head 2025-08-26T20:40:01.8746143Z * [new branch] gh/seemethere/59/orig -> origin/gh/seemethere/59/orig 2025-08-26T20:40:01.8746684Z * [new branch] gh/seemethere/7/head -> origin/gh/seemethere/7/head 2025-08-26T20:40:01.9184732Z * [new branch] gh/shunting314/145/base -> origin/gh/shunting314/145/base 2025-08-26T20:40:01.9185339Z * [new branch] gh/shunting314/145/head -> origin/gh/shunting314/145/head 2025-08-26T20:40:01.9185962Z * [new branch] gh/shunting314/145/orig -> origin/gh/shunting314/145/orig 2025-08-26T20:40:01.9186529Z * [new branch] gh/shunting314/176/base -> origin/gh/shunting314/176/base 2025-08-26T20:40:01.9187067Z * [new branch] gh/shunting314/176/head -> origin/gh/shunting314/176/head 2025-08-26T20:40:01.9187602Z * [new branch] gh/shunting314/176/orig -> origin/gh/shunting314/176/orig 2025-08-26T20:40:01.9188143Z * [new branch] gh/shunting314/211/base -> origin/gh/shunting314/211/base 2025-08-26T20:40:01.9188695Z * [new branch] gh/shunting314/211/head -> origin/gh/shunting314/211/head 2025-08-26T20:40:01.9189262Z * [new branch] gh/shunting314/211/orig -> origin/gh/shunting314/211/orig 2025-08-26T20:40:01.9189838Z * [new branch] gh/shunting314/212/base -> origin/gh/shunting314/212/base 2025-08-26T20:40:01.9190418Z * [new branch] gh/shunting314/212/head -> origin/gh/shunting314/212/head 2025-08-26T20:40:01.9190955Z * [new branch] gh/shunting314/212/orig -> origin/gh/shunting314/212/orig 2025-08-26T20:40:01.9191481Z * [new branch] gh/shunting314/213/base -> origin/gh/shunting314/213/base 2025-08-26T20:40:01.9192019Z * [new branch] gh/shunting314/213/head -> origin/gh/shunting314/213/head 2025-08-26T20:40:01.9192557Z * [new branch] gh/shunting314/213/orig -> origin/gh/shunting314/213/orig 2025-08-26T20:40:01.9193088Z * [new branch] gh/silverguo/1/base -> origin/gh/silverguo/1/base 2025-08-26T20:40:01.9193606Z * [new branch] gh/silverguo/1/head -> origin/gh/silverguo/1/head 2025-08-26T20:40:01.9194106Z * [new branch] gh/silverguo/2/base -> origin/gh/silverguo/2/base 2025-08-26T20:40:01.9194627Z * [new branch] gh/silverguo/2/head -> origin/gh/silverguo/2/head 2025-08-26T20:40:01.9195133Z * [new branch] gh/silverguo/3/base -> origin/gh/silverguo/3/base 2025-08-26T20:40:01.9195787Z * [new branch] gh/silverguo/3/head -> origin/gh/silverguo/3/head 2025-08-26T20:40:01.9196295Z * [new branch] gh/silverguo/4/base -> origin/gh/silverguo/4/base 2025-08-26T20:40:01.9196794Z * [new branch] gh/silverguo/4/head -> origin/gh/silverguo/4/head 2025-08-26T20:40:01.9197321Z * [new branch] gh/sinhaanhsul/1/base -> origin/gh/sinhaanhsul/1/base 2025-08-26T20:40:01.9197865Z * [new branch] gh/sinhaanhsul/1/head -> origin/gh/sinhaanhsul/1/head 2025-08-26T20:40:01.9198376Z * [new branch] gh/skarjala/13/base -> origin/gh/skarjala/13/base 2025-08-26T20:40:01.9198881Z * [new branch] gh/skarjala/13/head -> origin/gh/skarjala/13/head 2025-08-26T20:40:01.9199373Z * [new branch] gh/skarjala/13/orig -> origin/gh/skarjala/13/orig 2025-08-26T20:40:01.9200080Z * [new branch] gh/skarjala/15/base -> origin/gh/skarjala/15/base 2025-08-26T20:40:01.9200587Z * [new branch] gh/skarjala/15/head -> origin/gh/skarjala/15/head 2025-08-26T20:40:01.9201134Z * [new branch] gh/skarjala/15/orig -> origin/gh/skarjala/15/orig 2025-08-26T20:40:01.9201680Z * [new branch] gh/skarjala/16/base -> origin/gh/skarjala/16/base 2025-08-26T20:40:01.9202174Z * [new branch] gh/skarjala/16/head -> origin/gh/skarjala/16/head 2025-08-26T20:40:01.9202791Z * [new branch] gh/skarjala/16/orig -> origin/gh/skarjala/16/orig 2025-08-26T20:40:01.9203286Z * [new branch] gh/skarjala/17/base -> origin/gh/skarjala/17/base 2025-08-26T20:40:01.9203786Z * [new branch] gh/skarjala/17/head -> origin/gh/skarjala/17/head 2025-08-26T20:40:01.9204294Z * [new branch] gh/skarjala/17/orig -> origin/gh/skarjala/17/orig 2025-08-26T20:40:01.9204783Z * [new branch] gh/skarjala/18/base -> origin/gh/skarjala/18/base 2025-08-26T20:40:01.9205284Z * [new branch] gh/skarjala/18/head -> origin/gh/skarjala/18/head 2025-08-26T20:40:01.9205779Z * [new branch] gh/skarjala/18/orig -> origin/gh/skarjala/18/orig 2025-08-26T20:40:01.9206281Z * [new branch] gh/skarjala/19/base -> origin/gh/skarjala/19/base 2025-08-26T20:40:01.9206825Z * [new branch] gh/skarjala/19/head -> origin/gh/skarjala/19/head 2025-08-26T20:40:01.9207359Z * [new branch] gh/skarjala/19/orig -> origin/gh/skarjala/19/orig 2025-08-26T20:40:01.9207863Z * [new branch] gh/slayton58/1/base -> origin/gh/slayton58/1/base 2025-08-26T20:40:01.9208352Z * [new branch] gh/slayton58/1/head -> origin/gh/slayton58/1/head 2025-08-26T20:40:01.9208856Z * [new branch] gh/slayton58/1/orig -> origin/gh/slayton58/1/orig 2025-08-26T20:40:01.9209357Z * [new branch] gh/slayton58/2/base -> origin/gh/slayton58/2/base 2025-08-26T20:40:01.9639012Z * [new branch] gh/slayton58/2/head -> origin/gh/slayton58/2/head 2025-08-26T20:40:01.9639677Z * [new branch] gh/slayton58/2/orig -> origin/gh/slayton58/2/orig 2025-08-26T20:40:01.9640229Z * [new branch] gh/slayton58/3/base -> origin/gh/slayton58/3/base 2025-08-26T20:40:01.9640851Z * [new branch] gh/slayton58/3/head -> origin/gh/slayton58/3/head 2025-08-26T20:40:01.9641440Z * [new branch] gh/slayton58/3/orig -> origin/gh/slayton58/3/orig 2025-08-26T20:40:01.9641995Z * [new branch] gh/slayton58/4/base -> origin/gh/slayton58/4/base 2025-08-26T20:40:01.9642560Z * [new branch] gh/slayton58/4/head -> origin/gh/slayton58/4/head 2025-08-26T20:40:01.9643148Z * [new branch] gh/slayton58/4/orig -> origin/gh/slayton58/4/orig 2025-08-26T20:40:01.9643692Z * [new branch] gh/slayton58/5/base -> origin/gh/slayton58/5/base 2025-08-26T20:40:01.9644270Z * [new branch] gh/slayton58/5/head -> origin/gh/slayton58/5/head 2025-08-26T20:40:01.9644800Z * [new branch] gh/slayton58/5/orig -> origin/gh/slayton58/5/orig 2025-08-26T20:40:01.9645393Z * [new branch] gh/soulitzer/269/base -> origin/gh/soulitzer/269/base 2025-08-26T20:40:01.9645956Z * [new branch] gh/soulitzer/269/head -> origin/gh/soulitzer/269/head 2025-08-26T20:40:01.9646558Z * [new branch] gh/soulitzer/269/orig -> origin/gh/soulitzer/269/orig 2025-08-26T20:40:01.9647111Z * [new branch] gh/soulitzer/276/base -> origin/gh/soulitzer/276/base 2025-08-26T20:40:01.9647696Z * [new branch] gh/soulitzer/276/head -> origin/gh/soulitzer/276/head 2025-08-26T20:40:01.9648486Z * [new branch] gh/soulitzer/276/orig -> origin/gh/soulitzer/276/orig 2025-08-26T20:40:01.9649035Z * [new branch] gh/soulitzer/287/base -> origin/gh/soulitzer/287/base 2025-08-26T20:40:01.9649629Z * [new branch] gh/soulitzer/287/head -> origin/gh/soulitzer/287/head 2025-08-26T20:40:01.9650183Z * [new branch] gh/soulitzer/287/orig -> origin/gh/soulitzer/287/orig 2025-08-26T20:40:01.9650894Z * [new branch] gh/soulitzer/296/base -> origin/gh/soulitzer/296/base 2025-08-26T20:40:01.9651496Z * [new branch] gh/soulitzer/296/head -> origin/gh/soulitzer/296/head 2025-08-26T20:40:01.9652050Z * [new branch] gh/soulitzer/296/orig -> origin/gh/soulitzer/296/orig 2025-08-26T20:40:01.9652635Z * [new branch] gh/soulitzer/299/base -> origin/gh/soulitzer/299/base 2025-08-26T20:40:01.9653189Z * [new branch] gh/soulitzer/299/head -> origin/gh/soulitzer/299/head 2025-08-26T20:40:01.9653781Z * [new branch] gh/soulitzer/299/orig -> origin/gh/soulitzer/299/orig 2025-08-26T20:40:01.9654340Z * [new branch] gh/soulitzer/300/base -> origin/gh/soulitzer/300/base 2025-08-26T20:40:01.9654884Z * [new branch] gh/soulitzer/300/head -> origin/gh/soulitzer/300/head 2025-08-26T20:40:01.9655486Z * [new branch] gh/soulitzer/300/orig -> origin/gh/soulitzer/300/orig 2025-08-26T20:40:01.9656040Z * [new branch] gh/soulitzer/301/base -> origin/gh/soulitzer/301/base 2025-08-26T20:40:01.9656630Z * [new branch] gh/soulitzer/301/head -> origin/gh/soulitzer/301/head 2025-08-26T20:40:01.9657188Z * [new branch] gh/soulitzer/301/orig -> origin/gh/soulitzer/301/orig 2025-08-26T20:40:01.9657775Z * [new branch] gh/soulitzer/313/base -> origin/gh/soulitzer/313/base 2025-08-26T20:40:01.9658338Z * [new branch] gh/soulitzer/313/head -> origin/gh/soulitzer/313/head 2025-08-26T20:40:01.9658926Z * [new branch] gh/soulitzer/313/orig -> origin/gh/soulitzer/313/orig 2025-08-26T20:40:01.9659481Z * [new branch] gh/soulitzer/319/base -> origin/gh/soulitzer/319/base 2025-08-26T20:40:01.9660073Z * [new branch] gh/soulitzer/319/head -> origin/gh/soulitzer/319/head 2025-08-26T20:40:01.9660623Z * [new branch] gh/soulitzer/319/orig -> origin/gh/soulitzer/319/orig 2025-08-26T20:40:01.9661230Z * [new branch] gh/soulitzer/320/base -> origin/gh/soulitzer/320/base 2025-08-26T20:40:01.9661780Z * [new branch] gh/soulitzer/320/head -> origin/gh/soulitzer/320/head 2025-08-26T20:40:01.9662368Z * [new branch] gh/soulitzer/320/orig -> origin/gh/soulitzer/320/orig 2025-08-26T20:40:01.9662928Z * [new branch] gh/soulitzer/336/base -> origin/gh/soulitzer/336/base 2025-08-26T20:40:01.9663513Z * [new branch] gh/soulitzer/336/head -> origin/gh/soulitzer/336/head 2025-08-26T20:40:01.9664074Z * [new branch] gh/soulitzer/336/orig -> origin/gh/soulitzer/336/orig 2025-08-26T20:40:01.9664664Z * [new branch] gh/soulitzer/347/base -> origin/gh/soulitzer/347/base 2025-08-26T20:40:01.9665218Z * [new branch] gh/soulitzer/347/head -> origin/gh/soulitzer/347/head 2025-08-26T20:40:02.0074276Z * [new branch] gh/soulitzer/347/orig -> origin/gh/soulitzer/347/orig 2025-08-26T20:40:02.0074863Z * [new branch] gh/soulitzer/349/base -> origin/gh/soulitzer/349/base 2025-08-26T20:40:02.0075408Z * [new branch] gh/soulitzer/349/head -> origin/gh/soulitzer/349/head 2025-08-26T20:40:02.0075927Z * [new branch] gh/soulitzer/349/orig -> origin/gh/soulitzer/349/orig 2025-08-26T20:40:02.0076644Z * [new branch] gh/soulitzer/350/base -> origin/gh/soulitzer/350/base 2025-08-26T20:40:02.0077168Z * [new branch] gh/soulitzer/350/head -> origin/gh/soulitzer/350/head 2025-08-26T20:40:02.0077725Z * [new branch] gh/soulitzer/350/orig -> origin/gh/soulitzer/350/orig 2025-08-26T20:40:02.0078286Z * [new branch] gh/soulitzer/351/base -> origin/gh/soulitzer/351/base 2025-08-26T20:40:02.0078834Z * [new branch] gh/soulitzer/351/head -> origin/gh/soulitzer/351/head 2025-08-26T20:40:02.0079480Z * [new branch] gh/soulitzer/351/orig -> origin/gh/soulitzer/351/orig 2025-08-26T20:40:02.0079995Z * [new branch] gh/soulitzer/353/base -> origin/gh/soulitzer/353/base 2025-08-26T20:40:02.0080521Z * [new branch] gh/soulitzer/353/head -> origin/gh/soulitzer/353/head 2025-08-26T20:40:02.0081038Z * [new branch] gh/soulitzer/353/orig -> origin/gh/soulitzer/353/orig 2025-08-26T20:40:02.0081557Z * [new branch] gh/soulitzer/358/base -> origin/gh/soulitzer/358/base 2025-08-26T20:40:02.0082071Z * [new branch] gh/soulitzer/358/head -> origin/gh/soulitzer/358/head 2025-08-26T20:40:02.0082585Z * [new branch] gh/soulitzer/358/orig -> origin/gh/soulitzer/358/orig 2025-08-26T20:40:02.0083098Z * [new branch] gh/soulitzer/359/base -> origin/gh/soulitzer/359/base 2025-08-26T20:40:02.0083649Z * [new branch] gh/soulitzer/359/head -> origin/gh/soulitzer/359/head 2025-08-26T20:40:02.0084210Z * [new branch] gh/soulitzer/359/orig -> origin/gh/soulitzer/359/orig 2025-08-26T20:40:02.0084763Z * [new branch] gh/soulitzer/362/base -> origin/gh/soulitzer/362/base 2025-08-26T20:40:02.0085270Z * [new branch] gh/soulitzer/362/head -> origin/gh/soulitzer/362/head 2025-08-26T20:40:02.0085794Z * [new branch] gh/soulitzer/362/orig -> origin/gh/soulitzer/362/orig 2025-08-26T20:40:02.0086307Z * [new branch] gh/soulitzer/372/base -> origin/gh/soulitzer/372/base 2025-08-26T20:40:02.0086813Z * [new branch] gh/soulitzer/372/head -> origin/gh/soulitzer/372/head 2025-08-26T20:40:02.0087333Z * [new branch] gh/soulitzer/372/orig -> origin/gh/soulitzer/372/orig 2025-08-26T20:40:02.0087842Z * [new branch] gh/soulitzer/373/base -> origin/gh/soulitzer/373/base 2025-08-26T20:40:02.0088358Z * [new branch] gh/soulitzer/373/head -> origin/gh/soulitzer/373/head 2025-08-26T20:40:02.0088871Z * [new branch] gh/soulitzer/373/orig -> origin/gh/soulitzer/373/orig 2025-08-26T20:40:02.0089384Z * [new branch] gh/soulitzer/374/base -> origin/gh/soulitzer/374/base 2025-08-26T20:40:02.0089957Z * [new branch] gh/soulitzer/374/head -> origin/gh/soulitzer/374/head 2025-08-26T20:40:02.0090553Z * [new branch] gh/soulitzer/374/orig -> origin/gh/soulitzer/374/orig 2025-08-26T20:40:02.0091074Z * [new branch] gh/soulitzer/375/base -> origin/gh/soulitzer/375/base 2025-08-26T20:40:02.0091593Z * [new branch] gh/soulitzer/375/head -> origin/gh/soulitzer/375/head 2025-08-26T20:40:02.0092102Z * [new branch] gh/soulitzer/375/orig -> origin/gh/soulitzer/375/orig 2025-08-26T20:40:02.0092618Z * [new branch] gh/soulitzer/376/base -> origin/gh/soulitzer/376/base 2025-08-26T20:40:02.0093139Z * [new branch] gh/soulitzer/376/head -> origin/gh/soulitzer/376/head 2025-08-26T20:40:02.0093654Z * [new branch] gh/soulitzer/376/orig -> origin/gh/soulitzer/376/orig 2025-08-26T20:40:02.0094179Z * [new branch] gh/soulitzer/377/base -> origin/gh/soulitzer/377/base 2025-08-26T20:40:02.0094814Z * [new branch] gh/soulitzer/377/head -> origin/gh/soulitzer/377/head 2025-08-26T20:40:02.0095340Z * [new branch] gh/soulitzer/377/orig -> origin/gh/soulitzer/377/orig 2025-08-26T20:40:02.0095859Z * [new branch] gh/swolchok/728/next -> origin/gh/swolchok/728/next 2025-08-26T20:40:02.0096380Z * [new branch] gh/swolchok/758/base -> origin/gh/swolchok/758/base 2025-08-26T20:40:02.0096886Z * [new branch] gh/swolchok/758/head -> origin/gh/swolchok/758/head 2025-08-26T20:40:02.0097491Z * [new branch] gh/swolchok/758/orig -> origin/gh/swolchok/758/orig 2025-08-26T20:40:02.0098006Z * [new branch] gh/swolchok/767/base -> origin/gh/swolchok/767/base 2025-08-26T20:40:02.0098506Z * [new branch] gh/swolchok/767/head -> origin/gh/swolchok/767/head 2025-08-26T20:40:02.0525756Z * [new branch] gh/swolchok/767/orig -> origin/gh/swolchok/767/orig 2025-08-26T20:40:02.0526356Z * [new branch] gh/swolchok/768/base -> origin/gh/swolchok/768/base 2025-08-26T20:40:02.0526889Z * [new branch] gh/swolchok/768/head -> origin/gh/swolchok/768/head 2025-08-26T20:40:02.0527399Z * [new branch] gh/swolchok/768/orig -> origin/gh/swolchok/768/orig 2025-08-26T20:40:02.0527894Z * [new branch] gh/swolchok/769/base -> origin/gh/swolchok/769/base 2025-08-26T20:40:02.0528451Z * [new branch] gh/swolchok/769/head -> origin/gh/swolchok/769/head 2025-08-26T20:40:02.0529012Z * [new branch] gh/swolchok/769/orig -> origin/gh/swolchok/769/orig 2025-08-26T20:40:02.0529521Z * [new branch] gh/swolchok/771/base -> origin/gh/swolchok/771/base 2025-08-26T20:40:02.0530031Z * [new branch] gh/swolchok/771/head -> origin/gh/swolchok/771/head 2025-08-26T20:40:02.0530532Z * [new branch] gh/swolchok/771/orig -> origin/gh/swolchok/771/orig 2025-08-26T20:40:02.0531038Z * [new branch] gh/swolchok/772/base -> origin/gh/swolchok/772/base 2025-08-26T20:40:02.0531556Z * [new branch] gh/swolchok/772/head -> origin/gh/swolchok/772/head 2025-08-26T20:40:02.0532054Z * [new branch] gh/swolchok/772/orig -> origin/gh/swolchok/772/orig 2025-08-26T20:40:02.0532557Z * [new branch] gh/swolchok/773/base -> origin/gh/swolchok/773/base 2025-08-26T20:40:02.0533056Z * [new branch] gh/swolchok/773/head -> origin/gh/swolchok/773/head 2025-08-26T20:40:02.0533569Z * [new branch] gh/swolchok/773/orig -> origin/gh/swolchok/773/orig 2025-08-26T20:40:02.0534105Z * [new branch] gh/swolchok/786/base -> origin/gh/swolchok/786/base 2025-08-26T20:40:02.0534656Z * [new branch] gh/swolchok/786/head -> origin/gh/swolchok/786/head 2025-08-26T20:40:02.0535165Z * [new branch] gh/swolchok/786/orig -> origin/gh/swolchok/786/orig 2025-08-26T20:40:02.0535657Z * [new branch] gh/swolchok/787/base -> origin/gh/swolchok/787/base 2025-08-26T20:40:02.0536158Z * [new branch] gh/swolchok/787/head -> origin/gh/swolchok/787/head 2025-08-26T20:40:02.0536657Z * [new branch] gh/swolchok/787/orig -> origin/gh/swolchok/787/orig 2025-08-26T20:40:02.0537163Z * [new branch] gh/swolchok/788/base -> origin/gh/swolchok/788/base 2025-08-26T20:40:02.0537671Z * [new branch] gh/swolchok/788/head -> origin/gh/swolchok/788/head 2025-08-26T20:40:02.0538168Z * [new branch] gh/swolchok/788/orig -> origin/gh/swolchok/788/orig 2025-08-26T20:40:02.0538667Z * [new branch] gh/swolchok/789/base -> origin/gh/swolchok/789/base 2025-08-26T20:40:02.0539164Z * [new branch] gh/swolchok/789/head -> origin/gh/swolchok/789/head 2025-08-26T20:40:02.0539924Z * [new branch] gh/swolchok/789/orig -> origin/gh/swolchok/789/orig 2025-08-26T20:40:02.0540477Z * [new branch] gh/swolchok/790/base -> origin/gh/swolchok/790/base 2025-08-26T20:40:02.0540971Z * [new branch] gh/swolchok/790/head -> origin/gh/swolchok/790/head 2025-08-26T20:40:02.0541476Z * [new branch] gh/swolchok/790/orig -> origin/gh/swolchok/790/orig 2025-08-26T20:40:02.0541981Z * [new branch] gh/swolchok/791/base -> origin/gh/swolchok/791/base 2025-08-26T20:40:02.0542625Z * [new branch] gh/swolchok/791/head -> origin/gh/swolchok/791/head 2025-08-26T20:40:02.0543149Z * [new branch] gh/swolchok/791/orig -> origin/gh/swolchok/791/orig 2025-08-26T20:40:02.0543646Z * [new branch] gh/swolchok/792/base -> origin/gh/swolchok/792/base 2025-08-26T20:40:02.0544149Z * [new branch] gh/swolchok/792/head -> origin/gh/swolchok/792/head 2025-08-26T20:40:02.0544650Z * [new branch] gh/swolchok/792/orig -> origin/gh/swolchok/792/orig 2025-08-26T20:40:02.0545164Z * [new branch] gh/swolchok/793/base -> origin/gh/swolchok/793/base 2025-08-26T20:40:02.0545707Z * [new branch] gh/swolchok/793/head -> origin/gh/swolchok/793/head 2025-08-26T20:40:02.0546313Z * [new branch] gh/swolchok/793/orig -> origin/gh/swolchok/793/orig 2025-08-26T20:40:02.0546827Z * [new branch] gh/swolchok/794/base -> origin/gh/swolchok/794/base 2025-08-26T20:40:02.0547339Z * [new branch] gh/swolchok/794/head -> origin/gh/swolchok/794/head 2025-08-26T20:40:02.0547848Z * [new branch] gh/swolchok/794/orig -> origin/gh/swolchok/794/orig 2025-08-26T20:40:02.0548357Z * [new branch] gh/swolchok/795/base -> origin/gh/swolchok/795/base 2025-08-26T20:40:02.0548864Z * [new branch] gh/swolchok/795/head -> origin/gh/swolchok/795/head 2025-08-26T20:40:02.0549380Z * [new branch] gh/swolchok/795/orig -> origin/gh/swolchok/795/orig 2025-08-26T20:40:02.0549878Z * [new branch] gh/swolchok/796/base -> origin/gh/swolchok/796/base 2025-08-26T20:40:02.0950381Z * [new branch] gh/swolchok/796/head -> origin/gh/swolchok/796/head 2025-08-26T20:40:02.0950943Z * [new branch] gh/swolchok/796/orig -> origin/gh/swolchok/796/orig 2025-08-26T20:40:02.0951484Z * [new branch] gh/swolchok/797/base -> origin/gh/swolchok/797/base 2025-08-26T20:40:02.0952007Z * [new branch] gh/swolchok/797/head -> origin/gh/swolchok/797/head 2025-08-26T20:40:02.0952507Z * [new branch] gh/swolchok/797/orig -> origin/gh/swolchok/797/orig 2025-08-26T20:40:02.0953008Z * [new branch] gh/swolchok/798/base -> origin/gh/swolchok/798/base 2025-08-26T20:40:02.0953525Z * [new branch] gh/swolchok/798/head -> origin/gh/swolchok/798/head 2025-08-26T20:40:02.0954032Z * [new branch] gh/swolchok/798/orig -> origin/gh/swolchok/798/orig 2025-08-26T20:40:02.0954590Z * [new branch] gh/swolchok/799/base -> origin/gh/swolchok/799/base 2025-08-26T20:40:02.0955127Z * [new branch] gh/swolchok/799/head -> origin/gh/swolchok/799/head 2025-08-26T20:40:02.0955630Z * [new branch] gh/swolchok/799/orig -> origin/gh/swolchok/799/orig 2025-08-26T20:40:02.0956131Z * [new branch] gh/swolchok/800/base -> origin/gh/swolchok/800/base 2025-08-26T20:40:02.0956638Z * [new branch] gh/swolchok/800/head -> origin/gh/swolchok/800/head 2025-08-26T20:40:02.0957140Z * [new branch] gh/swolchok/800/orig -> origin/gh/swolchok/800/orig 2025-08-26T20:40:02.0957634Z * [new branch] gh/swolchok/801/base -> origin/gh/swolchok/801/base 2025-08-26T20:40:02.0958326Z * [new branch] gh/swolchok/801/head -> origin/gh/swolchok/801/head 2025-08-26T20:40:02.0958818Z * [new branch] gh/swolchok/801/orig -> origin/gh/swolchok/801/orig 2025-08-26T20:40:02.0959328Z * [new branch] gh/swolchok/802/base -> origin/gh/swolchok/802/base 2025-08-26T20:40:02.0959837Z * [new branch] gh/swolchok/802/head -> origin/gh/swolchok/802/head 2025-08-26T20:40:02.0960375Z * [new branch] gh/swolchok/802/orig -> origin/gh/swolchok/802/orig 2025-08-26T20:40:02.0961034Z * [new branch] gh/swolchok/803/base -> origin/gh/swolchok/803/base 2025-08-26T20:40:02.0961531Z * [new branch] gh/swolchok/803/head -> origin/gh/swolchok/803/head 2025-08-26T20:40:02.0962034Z * [new branch] gh/swolchok/803/orig -> origin/gh/swolchok/803/orig 2025-08-26T20:40:02.0962536Z * [new branch] gh/swolchok/804/base -> origin/gh/swolchok/804/base 2025-08-26T20:40:02.0963049Z * [new branch] gh/swolchok/804/head -> origin/gh/swolchok/804/head 2025-08-26T20:40:02.0963574Z * [new branch] gh/swolchok/804/orig -> origin/gh/swolchok/804/orig 2025-08-26T20:40:02.0964071Z * [new branch] gh/swolchok/805/base -> origin/gh/swolchok/805/base 2025-08-26T20:40:02.0964575Z * [new branch] gh/swolchok/805/head -> origin/gh/swolchok/805/head 2025-08-26T20:40:02.0965097Z * [new branch] gh/swolchok/805/orig -> origin/gh/swolchok/805/orig 2025-08-26T20:40:02.0965605Z * [new branch] gh/swolchok/806/base -> origin/gh/swolchok/806/base 2025-08-26T20:40:02.0966147Z * [new branch] gh/swolchok/806/head -> origin/gh/swolchok/806/head 2025-08-26T20:40:02.0966681Z * [new branch] gh/swolchok/806/orig -> origin/gh/swolchok/806/orig 2025-08-26T20:40:02.0967202Z * [new branch] gh/swolchok/807/base -> origin/gh/swolchok/807/base 2025-08-26T20:40:02.0967699Z * [new branch] gh/swolchok/807/head -> origin/gh/swolchok/807/head 2025-08-26T20:40:02.0968215Z * [new branch] gh/swolchok/807/orig -> origin/gh/swolchok/807/orig 2025-08-26T20:40:02.0968719Z * [new branch] gh/swolchok/808/base -> origin/gh/swolchok/808/base 2025-08-26T20:40:02.0969219Z * [new branch] gh/swolchok/808/head -> origin/gh/swolchok/808/head 2025-08-26T20:40:02.0969735Z * [new branch] gh/swolchok/808/orig -> origin/gh/swolchok/808/orig 2025-08-26T20:40:02.0970232Z * [new branch] gh/swolchok/809/base -> origin/gh/swolchok/809/base 2025-08-26T20:40:02.0970742Z * [new branch] gh/swolchok/809/head -> origin/gh/swolchok/809/head 2025-08-26T20:40:02.0971251Z * [new branch] gh/swolchok/809/orig -> origin/gh/swolchok/809/orig 2025-08-26T20:40:02.0971802Z * [new branch] gh/syed-ahmed/2/base -> origin/gh/syed-ahmed/2/base 2025-08-26T20:40:02.0972350Z * [new branch] gh/syed-ahmed/2/head -> origin/gh/syed-ahmed/2/head 2025-08-26T20:40:02.0972846Z * [new branch] gh/syed-ahmed/2/orig -> origin/gh/syed-ahmed/2/orig 2025-08-26T20:40:02.0973348Z * [new branch] gh/syed-ahmed/3/base -> origin/gh/syed-ahmed/3/base 2025-08-26T20:40:02.0973849Z * [new branch] gh/syed-ahmed/3/head -> origin/gh/syed-ahmed/3/head 2025-08-26T20:40:02.3679163Z * [new branch] gh/syed-ahmed/3/orig -> origin/gh/syed-ahmed/3/orig 2025-08-26T20:40:02.3679746Z * [new branch] gh/syed-ahmed/4/base -> origin/gh/syed-ahmed/4/base 2025-08-26T20:40:02.3680290Z * [new branch] gh/syed-ahmed/4/head -> origin/gh/syed-ahmed/4/head 2025-08-26T20:40:02.3680794Z * [new branch] gh/syed-ahmed/4/orig -> origin/gh/syed-ahmed/4/orig 2025-08-26T20:40:02.3681514Z * [new branch] gh/teja-rao/4/base -> origin/gh/teja-rao/4/base 2025-08-26T20:40:02.3682000Z * [new branch] gh/teja-rao/4/head -> origin/gh/teja-rao/4/head 2025-08-26T20:40:02.3682495Z * [new branch] gh/teja-rao/4/orig -> origin/gh/teja-rao/4/orig 2025-08-26T20:40:02.3682986Z * [new branch] gh/tianyu-l/2/base -> origin/gh/tianyu-l/2/base 2025-08-26T20:40:02.3683477Z * [new branch] gh/tianyu-l/2/head -> origin/gh/tianyu-l/2/head 2025-08-26T20:40:02.3684082Z * [new branch] gh/tianyu-l/2/orig -> origin/gh/tianyu-l/2/orig 2025-08-26T20:40:02.3684622Z * [new branch] gh/tugsbayasgalan/1/base -> origin/gh/tugsbayasgalan/1/base 2025-08-26T20:40:02.3685209Z * [new branch] gh/tugsbayasgalan/1/head -> origin/gh/tugsbayasgalan/1/head 2025-08-26T20:40:02.3685778Z * [new branch] gh/tugsbayasgalan/1/orig -> origin/gh/tugsbayasgalan/1/orig 2025-08-26T20:40:02.3686354Z * [new branch] gh/tugsbayasgalan/2/base -> origin/gh/tugsbayasgalan/2/base 2025-08-26T20:40:02.3686924Z * [new branch] gh/tugsbayasgalan/2/head -> origin/gh/tugsbayasgalan/2/head 2025-08-26T20:40:02.3687502Z * [new branch] gh/tugsbayasgalan/2/orig -> origin/gh/tugsbayasgalan/2/orig 2025-08-26T20:40:02.3688061Z * [new branch] gh/tugsbayasgalan/3/base -> origin/gh/tugsbayasgalan/3/base 2025-08-26T20:40:02.3688615Z * [new branch] gh/tugsbayasgalan/3/head -> origin/gh/tugsbayasgalan/3/head 2025-08-26T20:40:02.3689185Z * [new branch] gh/tugsbayasgalan/3/orig -> origin/gh/tugsbayasgalan/3/orig 2025-08-26T20:40:02.3689698Z * [new branch] gh/v0i0/1/base -> origin/gh/v0i0/1/base 2025-08-26T20:40:02.3690150Z * [new branch] gh/v0i0/1/head -> origin/gh/v0i0/1/head 2025-08-26T20:40:02.3690608Z * [new branch] gh/v0i0/1/orig -> origin/gh/v0i0/1/orig 2025-08-26T20:40:02.3691116Z * [new branch] gh/v0i0/2/base -> origin/gh/v0i0/2/base 2025-08-26T20:40:02.3691605Z * [new branch] gh/v0i0/2/head -> origin/gh/v0i0/2/head 2025-08-26T20:40:02.3692056Z * [new branch] gh/v0i0/2/orig -> origin/gh/v0i0/2/orig 2025-08-26T20:40:02.3692499Z * [new branch] gh/v0i0/3/base -> origin/gh/v0i0/3/base 2025-08-26T20:40:02.3692956Z * [new branch] gh/v0i0/3/head -> origin/gh/v0i0/3/head 2025-08-26T20:40:02.3693396Z * [new branch] gh/v0i0/3/orig -> origin/gh/v0i0/3/orig 2025-08-26T20:40:02.3693844Z * [new branch] gh/v0i0/4/base -> origin/gh/v0i0/4/base 2025-08-26T20:40:02.3694280Z * [new branch] gh/v0i0/4/head -> origin/gh/v0i0/4/head 2025-08-26T20:40:02.3694731Z * [new branch] gh/v0i0/4/orig -> origin/gh/v0i0/4/orig 2025-08-26T20:40:02.3695180Z * [new branch] gh/v0i0/5/base -> origin/gh/v0i0/5/base 2025-08-26T20:40:02.3695618Z * [new branch] gh/v0i0/5/head -> origin/gh/v0i0/5/head 2025-08-26T20:40:02.3696072Z * [new branch] gh/v0i0/5/orig -> origin/gh/v0i0/5/orig 2025-08-26T20:40:02.3696509Z * [new branch] gh/v0i0/6/base -> origin/gh/v0i0/6/base 2025-08-26T20:40:02.3696965Z * [new branch] gh/v0i0/6/head -> origin/gh/v0i0/6/head 2025-08-26T20:40:02.3697415Z * [new branch] gh/v0i0/6/orig -> origin/gh/v0i0/6/orig 2025-08-26T20:40:02.3697859Z * [new branch] gh/v0i0/7/base -> origin/gh/v0i0/7/base 2025-08-26T20:40:02.3698310Z * [new branch] gh/v0i0/7/head -> origin/gh/v0i0/7/head 2025-08-26T20:40:02.3698864Z * [new branch] gh/v0i0/7/orig -> origin/gh/v0i0/7/orig 2025-08-26T20:40:02.3699323Z * [new branch] gh/vkuzo/1/next -> origin/gh/vkuzo/1/next 2025-08-26T20:40:02.3699783Z * [new branch] gh/vkuzo/2/next -> origin/gh/vkuzo/2/next 2025-08-26T20:40:02.3700246Z * [new branch] gh/vkuzo/3/next -> origin/gh/vkuzo/3/next 2025-08-26T20:40:02.3700712Z * [new branch] gh/vkuzo/4/base -> origin/gh/vkuzo/4/base 2025-08-26T20:40:02.3701260Z * [new branch] gh/vkuzo/4/head -> origin/gh/vkuzo/4/head 2025-08-26T20:40:02.3701729Z * [new branch] gh/vkuzo/4/orig -> origin/gh/vkuzo/4/orig 2025-08-26T20:40:02.3702219Z * [new branch] gh/wconstab/392/base -> origin/gh/wconstab/392/base 2025-08-26T20:40:02.3702739Z * [new branch] gh/wconstab/392/head -> origin/gh/wconstab/392/head 2025-08-26T20:40:02.4131318Z * [new branch] gh/wconstab/392/orig -> origin/gh/wconstab/392/orig 2025-08-26T20:40:02.4131891Z * [new branch] gh/wconstab/419/base -> origin/gh/wconstab/419/base 2025-08-26T20:40:02.4132416Z * [new branch] gh/wconstab/419/head -> origin/gh/wconstab/419/head 2025-08-26T20:40:02.4132923Z * [new branch] gh/wconstab/419/orig -> origin/gh/wconstab/419/orig 2025-08-26T20:40:02.4133482Z * [new branch] gh/wconstab/424/base -> origin/gh/wconstab/424/base 2025-08-26T20:40:02.4134091Z * [new branch] gh/wconstab/424/head -> origin/gh/wconstab/424/head 2025-08-26T20:40:02.4134603Z * [new branch] gh/wconstab/424/orig -> origin/gh/wconstab/424/orig 2025-08-26T20:40:02.4135113Z * [new branch] gh/wconstab/432/base -> origin/gh/wconstab/432/base 2025-08-26T20:40:02.4135607Z * [new branch] gh/wconstab/432/head -> origin/gh/wconstab/432/head 2025-08-26T20:40:02.4136135Z * [new branch] gh/wconstab/432/orig -> origin/gh/wconstab/432/orig 2025-08-26T20:40:02.4136638Z * [new branch] gh/wconstab/433/base -> origin/gh/wconstab/433/base 2025-08-26T20:40:02.4137142Z * [new branch] gh/wconstab/433/head -> origin/gh/wconstab/433/head 2025-08-26T20:40:02.4137646Z * [new branch] gh/wconstab/433/orig -> origin/gh/wconstab/433/orig 2025-08-26T20:40:02.4138148Z * [new branch] gh/wconstab/434/base -> origin/gh/wconstab/434/base 2025-08-26T20:40:02.4138669Z * [new branch] gh/wconstab/434/head -> origin/gh/wconstab/434/head 2025-08-26T20:40:02.4139173Z * [new branch] gh/wconstab/434/orig -> origin/gh/wconstab/434/orig 2025-08-26T20:40:02.4139674Z * [new branch] gh/wconstab/435/base -> origin/gh/wconstab/435/base 2025-08-26T20:40:02.4140186Z * [new branch] gh/wconstab/435/head -> origin/gh/wconstab/435/head 2025-08-26T20:40:02.4140685Z * [new branch] gh/wconstab/435/orig -> origin/gh/wconstab/435/orig 2025-08-26T20:40:02.4141189Z * [new branch] gh/wconstab/436/base -> origin/gh/wconstab/436/base 2025-08-26T20:40:02.4141698Z * [new branch] gh/wconstab/436/head -> origin/gh/wconstab/436/head 2025-08-26T20:40:02.4142215Z * [new branch] gh/wconstab/436/orig -> origin/gh/wconstab/436/orig 2025-08-26T20:40:02.4142733Z * [new branch] gh/wconstab/437/base -> origin/gh/wconstab/437/base 2025-08-26T20:40:02.4143226Z * [new branch] gh/wconstab/437/head -> origin/gh/wconstab/437/head 2025-08-26T20:40:02.4143733Z * [new branch] gh/wconstab/437/orig -> origin/gh/wconstab/437/orig 2025-08-26T20:40:02.4144237Z * [new branch] gh/wconstab/438/base -> origin/gh/wconstab/438/base 2025-08-26T20:40:02.4145021Z * [new branch] gh/wconstab/438/head -> origin/gh/wconstab/438/head 2025-08-26T20:40:02.4145578Z * [new branch] gh/wconstab/438/orig -> origin/gh/wconstab/438/orig 2025-08-26T20:40:02.4146223Z * [new branch] gh/wconstab/439/base -> origin/gh/wconstab/439/base 2025-08-26T20:40:02.4146901Z * [new branch] gh/wconstab/439/head -> origin/gh/wconstab/439/head 2025-08-26T20:40:02.4147417Z * [new branch] gh/wconstab/439/orig -> origin/gh/wconstab/439/orig 2025-08-26T20:40:02.4148063Z * [new branch] gh/wconstab/440/base -> origin/gh/wconstab/440/base 2025-08-26T20:40:02.4148577Z * [new branch] gh/wconstab/440/head -> origin/gh/wconstab/440/head 2025-08-26T20:40:02.4149120Z * [new branch] gh/wconstab/440/orig -> origin/gh/wconstab/440/orig 2025-08-26T20:40:02.4149638Z * [new branch] gh/wconstab/441/base -> origin/gh/wconstab/441/base 2025-08-26T20:40:02.4150150Z * [new branch] gh/wconstab/441/head -> origin/gh/wconstab/441/head 2025-08-26T20:40:02.4150722Z * [new branch] gh/wconstab/441/orig -> origin/gh/wconstab/441/orig 2025-08-26T20:40:02.4151228Z * [new branch] gh/wconstab/442/base -> origin/gh/wconstab/442/base 2025-08-26T20:40:02.4151772Z * [new branch] gh/wconstab/442/head -> origin/gh/wconstab/442/head 2025-08-26T20:40:02.4152281Z * [new branch] gh/wconstab/442/orig -> origin/gh/wconstab/442/orig 2025-08-26T20:40:02.4152788Z * [new branch] gh/wconstab/443/base -> origin/gh/wconstab/443/base 2025-08-26T20:40:02.4153295Z * [new branch] gh/wconstab/443/head -> origin/gh/wconstab/443/head 2025-08-26T20:40:02.4153812Z * [new branch] gh/wconstab/443/orig -> origin/gh/wconstab/443/orig 2025-08-26T20:40:02.4154317Z * [new branch] gh/wconstab/444/base -> origin/gh/wconstab/444/base 2025-08-26T20:40:02.4154825Z * [new branch] gh/wconstab/444/head -> origin/gh/wconstab/444/head 2025-08-26T20:40:02.4155328Z * [new branch] gh/wconstab/444/orig -> origin/gh/wconstab/444/orig 2025-08-26T20:40:02.4155837Z * [new branch] gh/wconstab/445/base -> origin/gh/wconstab/445/base 2025-08-26T20:40:02.4570108Z * [new branch] gh/wconstab/445/head -> origin/gh/wconstab/445/head 2025-08-26T20:40:02.4570703Z * [new branch] gh/wconstab/445/orig -> origin/gh/wconstab/445/orig 2025-08-26T20:40:02.4571219Z * [new branch] gh/weifengpy/27/base -> origin/gh/weifengpy/27/base 2025-08-26T20:40:02.4571735Z * [new branch] gh/weifengpy/27/head -> origin/gh/weifengpy/27/head 2025-08-26T20:40:02.4572278Z * [new branch] gh/weifengpy/27/orig -> origin/gh/weifengpy/27/orig 2025-08-26T20:40:02.4572804Z * [new branch] gh/weifengpy/30/base -> origin/gh/weifengpy/30/base 2025-08-26T20:40:02.4573359Z * [new branch] gh/weifengpy/30/head -> origin/gh/weifengpy/30/head 2025-08-26T20:40:02.4573865Z * [new branch] gh/weifengpy/30/orig -> origin/gh/weifengpy/30/orig 2025-08-26T20:40:02.4574378Z * [new branch] gh/weifengpy/33/base -> origin/gh/weifengpy/33/base 2025-08-26T20:40:02.4574892Z * [new branch] gh/weifengpy/33/head -> origin/gh/weifengpy/33/head 2025-08-26T20:40:02.4575411Z * [new branch] gh/weifengpy/33/orig -> origin/gh/weifengpy/33/orig 2025-08-26T20:40:02.4575955Z * [new branch] gh/williamwen42/196/base -> origin/gh/williamwen42/196/base 2025-08-26T20:40:02.4576504Z * [new branch] gh/williamwen42/196/head -> origin/gh/williamwen42/196/head 2025-08-26T20:40:02.4577069Z * [new branch] gh/williamwen42/196/orig -> origin/gh/williamwen42/196/orig 2025-08-26T20:40:02.4577815Z * [new branch] gh/williamwen42/250/base -> origin/gh/williamwen42/250/base 2025-08-26T20:40:02.4578391Z * [new branch] gh/williamwen42/250/head -> origin/gh/williamwen42/250/head 2025-08-26T20:40:02.4578995Z * [new branch] gh/williamwen42/250/orig -> origin/gh/williamwen42/250/orig 2025-08-26T20:40:02.4579620Z * [new branch] gh/williamwen42/258/base -> origin/gh/williamwen42/258/base 2025-08-26T20:40:02.4580374Z * [new branch] gh/williamwen42/258/head -> origin/gh/williamwen42/258/head 2025-08-26T20:40:02.4580964Z * [new branch] gh/williamwen42/258/orig -> origin/gh/williamwen42/258/orig 2025-08-26T20:40:02.4581601Z * [new branch] gh/williamwen42/260/base -> origin/gh/williamwen42/260/base 2025-08-26T20:40:02.4582200Z * [new branch] gh/williamwen42/260/head -> origin/gh/williamwen42/260/head 2025-08-26T20:40:02.4582833Z * [new branch] gh/williamwen42/260/orig -> origin/gh/williamwen42/260/orig 2025-08-26T20:40:02.4583469Z * [new branch] gh/williamwen42/261/base -> origin/gh/williamwen42/261/base 2025-08-26T20:40:02.4584053Z * [new branch] gh/williamwen42/261/head -> origin/gh/williamwen42/261/head 2025-08-26T20:40:02.4584689Z * [new branch] gh/williamwen42/261/orig -> origin/gh/williamwen42/261/orig 2025-08-26T20:40:02.4585278Z * [new branch] gh/williamwen42/263/base -> origin/gh/williamwen42/263/base 2025-08-26T20:40:02.4585961Z * [new branch] gh/williamwen42/263/head -> origin/gh/williamwen42/263/head 2025-08-26T20:40:02.4586604Z * [new branch] gh/williamwen42/263/orig -> origin/gh/williamwen42/263/orig 2025-08-26T20:40:02.4587245Z * [new branch] gh/williamwen42/264/base -> origin/gh/williamwen42/264/base 2025-08-26T20:40:02.4587878Z * [new branch] gh/williamwen42/264/head -> origin/gh/williamwen42/264/head 2025-08-26T20:40:02.4588524Z * [new branch] gh/williamwen42/264/orig -> origin/gh/williamwen42/264/orig 2025-08-26T20:40:02.4589109Z * [new branch] gh/williamwen42/265/base -> origin/gh/williamwen42/265/base 2025-08-26T20:40:02.4589735Z * [new branch] gh/williamwen42/265/head -> origin/gh/williamwen42/265/head 2025-08-26T20:40:02.4590320Z * [new branch] gh/williamwen42/265/orig -> origin/gh/williamwen42/265/orig 2025-08-26T20:40:02.4590951Z * [new branch] gh/williamwen42/266/base -> origin/gh/williamwen42/266/base 2025-08-26T20:40:02.4591584Z * [new branch] gh/williamwen42/266/head -> origin/gh/williamwen42/266/head 2025-08-26T20:40:02.4592172Z * [new branch] gh/williamwen42/266/orig -> origin/gh/williamwen42/266/orig 2025-08-26T20:40:02.4592803Z * [new branch] gh/williamwen42/267/base -> origin/gh/williamwen42/267/base 2025-08-26T20:40:02.4593398Z * [new branch] gh/williamwen42/267/head -> origin/gh/williamwen42/267/head 2025-08-26T20:40:02.4593947Z * [new branch] gh/williamwen42/267/orig -> origin/gh/williamwen42/267/orig 2025-08-26T20:40:02.4594492Z * [new branch] gh/williamwen42/268/base -> origin/gh/williamwen42/268/base 2025-08-26T20:40:02.4595032Z * [new branch] gh/williamwen42/268/head -> origin/gh/williamwen42/268/head 2025-08-26T20:40:02.4595584Z * [new branch] gh/williamwen42/268/orig -> origin/gh/williamwen42/268/orig 2025-08-26T20:40:02.4596133Z * [new branch] gh/williamwen42/269/base -> origin/gh/williamwen42/269/base 2025-08-26T20:40:02.5032641Z * [new branch] gh/williamwen42/269/head -> origin/gh/williamwen42/269/head 2025-08-26T20:40:02.5033265Z * [new branch] gh/williamwen42/269/orig -> origin/gh/williamwen42/269/orig 2025-08-26T20:40:02.5034073Z * [new branch] gh/williamwen42/270/base -> origin/gh/williamwen42/270/base 2025-08-26T20:40:02.5034765Z * [new branch] gh/williamwen42/270/head -> origin/gh/williamwen42/270/head 2025-08-26T20:40:02.5035308Z * [new branch] gh/williamwen42/270/orig -> origin/gh/williamwen42/270/orig 2025-08-26T20:40:02.5035870Z * [new branch] gh/williamwen42/271/base -> origin/gh/williamwen42/271/base 2025-08-26T20:40:02.5036430Z * [new branch] gh/williamwen42/271/head -> origin/gh/williamwen42/271/head 2025-08-26T20:40:02.5037106Z * [new branch] gh/williamwen42/271/orig -> origin/gh/williamwen42/271/orig 2025-08-26T20:40:02.5037663Z * [new branch] gh/williamwen42/272/base -> origin/gh/williamwen42/272/base 2025-08-26T20:40:02.5038207Z * [new branch] gh/williamwen42/272/head -> origin/gh/williamwen42/272/head 2025-08-26T20:40:02.5038763Z * [new branch] gh/williamwen42/272/orig -> origin/gh/williamwen42/272/orig 2025-08-26T20:40:02.5039320Z * [new branch] gh/williamwen42/273/base -> origin/gh/williamwen42/273/base 2025-08-26T20:40:02.5039916Z * [new branch] gh/williamwen42/273/head -> origin/gh/williamwen42/273/head 2025-08-26T20:40:02.5040506Z * [new branch] gh/williamwen42/273/orig -> origin/gh/williamwen42/273/orig 2025-08-26T20:40:02.5041039Z * [new branch] gh/williamwen42/274/base -> origin/gh/williamwen42/274/base 2025-08-26T20:40:02.5041593Z * [new branch] gh/williamwen42/274/head -> origin/gh/williamwen42/274/head 2025-08-26T20:40:02.5042137Z * [new branch] gh/williamwen42/274/orig -> origin/gh/williamwen42/274/orig 2025-08-26T20:40:02.5042681Z * [new branch] gh/williamwen42/275/base -> origin/gh/williamwen42/275/base 2025-08-26T20:40:02.5043222Z * [new branch] gh/williamwen42/275/head -> origin/gh/williamwen42/275/head 2025-08-26T20:40:02.5043765Z * [new branch] gh/williamwen42/276/base -> origin/gh/williamwen42/276/base 2025-08-26T20:40:02.5044318Z * [new branch] gh/williamwen42/276/head -> origin/gh/williamwen42/276/head 2025-08-26T20:40:02.5044872Z * [new branch] gh/williamwen42/276/orig -> origin/gh/williamwen42/276/orig 2025-08-26T20:40:02.5045417Z * [new branch] gh/williamwen42/277/base -> origin/gh/williamwen42/277/base 2025-08-26T20:40:02.5046009Z * [new branch] gh/williamwen42/277/head -> origin/gh/williamwen42/277/head 2025-08-26T20:40:02.5046601Z * [new branch] gh/williamwen42/277/orig -> origin/gh/williamwen42/277/orig 2025-08-26T20:40:02.5047143Z * [new branch] gh/williamwen42/278/base -> origin/gh/williamwen42/278/base 2025-08-26T20:40:02.5047693Z * [new branch] gh/williamwen42/278/head -> origin/gh/williamwen42/278/head 2025-08-26T20:40:02.5048232Z * [new branch] gh/williamwen42/278/orig -> origin/gh/williamwen42/278/orig 2025-08-26T20:40:02.5048792Z * [new branch] gh/williamwen42/279/base -> origin/gh/williamwen42/279/base 2025-08-26T20:40:02.5049333Z * [new branch] gh/williamwen42/279/head -> origin/gh/williamwen42/279/head 2025-08-26T20:40:02.5049893Z * [new branch] gh/williamwen42/279/orig -> origin/gh/williamwen42/279/orig 2025-08-26T20:40:02.5050416Z * [new branch] gh/xmfan/169/base -> origin/gh/xmfan/169/base 2025-08-26T20:40:02.5050909Z * [new branch] gh/xmfan/169/head -> origin/gh/xmfan/169/head 2025-08-26T20:40:02.5051393Z * [new branch] gh/xmfan/170/base -> origin/gh/xmfan/170/base 2025-08-26T20:40:02.5051920Z * [new branch] gh/xmfan/170/head -> origin/gh/xmfan/170/head 2025-08-26T20:40:02.5052447Z * [new branch] gh/xmfan/18/base -> origin/gh/xmfan/18/base 2025-08-26T20:40:02.5053705Z * [new branch] gh/xmfan/18/head -> origin/gh/xmfan/18/head 2025-08-26T20:40:02.5054191Z * [new branch] gh/xmfan/229/base -> origin/gh/xmfan/229/base 2025-08-26T20:40:02.5054678Z * [new branch] gh/xmfan/229/head -> origin/gh/xmfan/229/head 2025-08-26T20:40:02.5055151Z * [new branch] gh/xmfan/229/orig -> origin/gh/xmfan/229/orig 2025-08-26T20:40:02.5055633Z * [new branch] gh/xmfan/237/base -> origin/gh/xmfan/237/base 2025-08-26T20:40:02.5056214Z * [new branch] gh/xmfan/237/head -> origin/gh/xmfan/237/head 2025-08-26T20:40:02.5056701Z * [new branch] gh/xmfan/237/orig -> origin/gh/xmfan/237/orig 2025-08-26T20:40:02.5057185Z * [new branch] gh/xmfan/244/base -> origin/gh/xmfan/244/base 2025-08-26T20:40:02.5057662Z * [new branch] gh/xmfan/244/head -> origin/gh/xmfan/244/head 2025-08-26T20:40:02.5505503Z * [new branch] gh/xmfan/244/orig -> origin/gh/xmfan/244/orig 2025-08-26T20:40:02.5506112Z * [new branch] gh/xmfan/246/base -> origin/gh/xmfan/246/base 2025-08-26T20:40:02.5506621Z * [new branch] gh/xmfan/246/head -> origin/gh/xmfan/246/head 2025-08-26T20:40:02.5507120Z * [new branch] gh/xmfan/246/orig -> origin/gh/xmfan/246/orig 2025-08-26T20:40:02.5507625Z * [new branch] gh/xmfan/253/base -> origin/gh/xmfan/253/base 2025-08-26T20:40:02.5508131Z * [new branch] gh/xmfan/253/head -> origin/gh/xmfan/253/head 2025-08-26T20:40:02.5508603Z * [new branch] gh/xmfan/253/orig -> origin/gh/xmfan/253/orig 2025-08-26T20:40:02.5509084Z * [new branch] gh/xmfan/254/base -> origin/gh/xmfan/254/base 2025-08-26T20:40:02.5509561Z * [new branch] gh/xmfan/254/head -> origin/gh/xmfan/254/head 2025-08-26T20:40:02.5510102Z * [new branch] gh/xmfan/254/orig -> origin/gh/xmfan/254/orig 2025-08-26T20:40:02.5510631Z * [new branch] gh/xmfan/260/base -> origin/gh/xmfan/260/base 2025-08-26T20:40:02.5511109Z * [new branch] gh/xmfan/260/head -> origin/gh/xmfan/260/head 2025-08-26T20:40:02.5511590Z * [new branch] gh/xmfan/260/orig -> origin/gh/xmfan/260/orig 2025-08-26T20:40:02.5512063Z * [new branch] gh/xmfan/262/base -> origin/gh/xmfan/262/base 2025-08-26T20:40:02.5512559Z * [new branch] gh/xmfan/262/head -> origin/gh/xmfan/262/head 2025-08-26T20:40:02.5513035Z * [new branch] gh/xmfan/262/orig -> origin/gh/xmfan/262/orig 2025-08-26T20:40:02.5513512Z * [new branch] gh/xmfan/263/base -> origin/gh/xmfan/263/base 2025-08-26T20:40:02.5513985Z * [new branch] gh/xmfan/263/head -> origin/gh/xmfan/263/head 2025-08-26T20:40:02.5514463Z * [new branch] gh/xmfan/263/orig -> origin/gh/xmfan/263/orig 2025-08-26T20:40:02.5514931Z * [new branch] gh/xmfan/264/base -> origin/gh/xmfan/264/base 2025-08-26T20:40:02.5515407Z * [new branch] gh/xmfan/264/head -> origin/gh/xmfan/264/head 2025-08-26T20:40:02.5515885Z * [new branch] gh/xmfan/264/orig -> origin/gh/xmfan/264/orig 2025-08-26T20:40:02.5516420Z * [new branch] gh/xmfan/270/base -> origin/gh/xmfan/270/base 2025-08-26T20:40:02.5516953Z * [new branch] gh/xmfan/270/head -> origin/gh/xmfan/270/head 2025-08-26T20:40:02.5517423Z * [new branch] gh/xmfan/270/orig -> origin/gh/xmfan/270/orig 2025-08-26T20:40:02.5517903Z * [new branch] gh/xmfan/271/base -> origin/gh/xmfan/271/base 2025-08-26T20:40:02.5518380Z * [new branch] gh/xmfan/271/head -> origin/gh/xmfan/271/head 2025-08-26T20:40:02.5519048Z * [new branch] gh/xmfan/271/orig -> origin/gh/xmfan/271/orig 2025-08-26T20:40:02.5519530Z * [new branch] gh/xmfan/272/base -> origin/gh/xmfan/272/base 2025-08-26T20:40:02.5520001Z * [new branch] gh/xmfan/272/head -> origin/gh/xmfan/272/head 2025-08-26T20:40:02.5520484Z * [new branch] gh/xmfan/272/orig -> origin/gh/xmfan/272/orig 2025-08-26T20:40:02.5520954Z * [new branch] gh/xmfan/273/base -> origin/gh/xmfan/273/base 2025-08-26T20:40:02.5521555Z * [new branch] gh/xmfan/273/head -> origin/gh/xmfan/273/head 2025-08-26T20:40:02.5522087Z * [new branch] gh/xmfan/273/orig -> origin/gh/xmfan/273/orig 2025-08-26T20:40:02.5522600Z * [new branch] gh/xmfan/274/base -> origin/gh/xmfan/274/base 2025-08-26T20:40:02.5523080Z * [new branch] gh/xmfan/274/head -> origin/gh/xmfan/274/head 2025-08-26T20:40:02.5523557Z * [new branch] gh/xmfan/274/orig -> origin/gh/xmfan/274/orig 2025-08-26T20:40:02.5524035Z * [new branch] gh/xmfan/275/base -> origin/gh/xmfan/275/base 2025-08-26T20:40:02.5524513Z * [new branch] gh/xmfan/275/head -> origin/gh/xmfan/275/head 2025-08-26T20:40:02.5524980Z * [new branch] gh/xmfan/275/orig -> origin/gh/xmfan/275/orig 2025-08-26T20:40:02.5525460Z * [new branch] gh/xmfan/276/base -> origin/gh/xmfan/276/base 2025-08-26T20:40:02.5525928Z * [new branch] gh/xmfan/276/head -> origin/gh/xmfan/276/head 2025-08-26T20:40:02.5526417Z * [new branch] gh/xmfan/276/orig -> origin/gh/xmfan/276/orig 2025-08-26T20:40:02.5526886Z * [new branch] gh/xmfan/277/base -> origin/gh/xmfan/277/base 2025-08-26T20:40:02.5527360Z * [new branch] gh/xmfan/277/head -> origin/gh/xmfan/277/head 2025-08-26T20:40:02.5527873Z * [new branch] gh/xmfan/277/orig -> origin/gh/xmfan/277/orig 2025-08-26T20:40:02.5528392Z * [new branch] gh/xmfan/278/base -> origin/gh/xmfan/278/base 2025-08-26T20:40:02.5528866Z * [new branch] gh/xmfan/278/head -> origin/gh/xmfan/278/head 2025-08-26T20:40:02.5529336Z * [new branch] gh/xmfan/278/orig -> origin/gh/xmfan/278/orig 2025-08-26T20:40:02.5931674Z * [new branch] gh/xmfan/279/base -> origin/gh/xmfan/279/base 2025-08-26T20:40:02.5932256Z * [new branch] gh/xmfan/279/head -> origin/gh/xmfan/279/head 2025-08-26T20:40:02.5932737Z * [new branch] gh/xmfan/279/orig -> origin/gh/xmfan/279/orig 2025-08-26T20:40:02.5933220Z * [new branch] gh/xmfan/280/base -> origin/gh/xmfan/280/base 2025-08-26T20:40:02.5933695Z * [new branch] gh/xmfan/280/head -> origin/gh/xmfan/280/head 2025-08-26T20:40:02.5934238Z * [new branch] gh/xmfan/280/orig -> origin/gh/xmfan/280/orig 2025-08-26T20:40:02.5934757Z * [new branch] gh/xmfan/281/base -> origin/gh/xmfan/281/base 2025-08-26T20:40:02.5935224Z * [new branch] gh/xmfan/281/head -> origin/gh/xmfan/281/head 2025-08-26T20:40:02.5935701Z * [new branch] gh/xmfan/281/orig -> origin/gh/xmfan/281/orig 2025-08-26T20:40:02.5936167Z * [new branch] gh/xmfan/282/base -> origin/gh/xmfan/282/base 2025-08-26T20:40:02.5936651Z * [new branch] gh/xmfan/282/head -> origin/gh/xmfan/282/head 2025-08-26T20:40:02.5937138Z * [new branch] gh/xmfan/283/base -> origin/gh/xmfan/283/base 2025-08-26T20:40:02.5937612Z * [new branch] gh/xmfan/283/head -> origin/gh/xmfan/283/head 2025-08-26T20:40:02.5938292Z * [new branch] gh/xmfan/283/orig -> origin/gh/xmfan/283/orig 2025-08-26T20:40:02.5938799Z * [new branch] gh/xuanzhang816/14/base -> origin/gh/xuanzhang816/14/base 2025-08-26T20:40:02.5939355Z * [new branch] gh/xuanzhang816/14/head -> origin/gh/xuanzhang816/14/head 2025-08-26T20:40:02.5939931Z * [new branch] gh/xuanzhang816/14/orig -> origin/gh/xuanzhang816/14/orig 2025-08-26T20:40:02.5940500Z * [new branch] gh/xuanzhang816/19/base -> origin/gh/xuanzhang816/19/base 2025-08-26T20:40:02.5941703Z * [new branch] gh/xuanzhang816/19/head -> origin/gh/xuanzhang816/19/head 2025-08-26T20:40:02.5942250Z * [new branch] gh/xuanzhang816/19/orig -> origin/gh/xuanzhang816/19/orig 2025-08-26T20:40:02.5942793Z * [new branch] gh/xuanzhang816/22/base -> origin/gh/xuanzhang816/22/base 2025-08-26T20:40:02.5943329Z * [new branch] gh/xuanzhang816/22/head -> origin/gh/xuanzhang816/22/head 2025-08-26T20:40:02.5943865Z * [new branch] gh/xuanzhang816/22/orig -> origin/gh/xuanzhang816/22/orig 2025-08-26T20:40:02.5944406Z * [new branch] gh/xuanzhang816/23/base -> origin/gh/xuanzhang816/23/base 2025-08-26T20:40:02.5945009Z * [new branch] gh/xuanzhang816/23/head -> origin/gh/xuanzhang816/23/head 2025-08-26T20:40:02.5945566Z * [new branch] gh/xuanzhang816/23/orig -> origin/gh/xuanzhang816/23/orig 2025-08-26T20:40:02.5946237Z * [new branch] gh/xuanzhang816/24/base -> origin/gh/xuanzhang816/24/base 2025-08-26T20:40:02.5946778Z * [new branch] gh/xuanzhang816/24/head -> origin/gh/xuanzhang816/24/head 2025-08-26T20:40:02.5947325Z * [new branch] gh/xuanzhang816/24/orig -> origin/gh/xuanzhang816/24/orig 2025-08-26T20:40:02.5947851Z * [new branch] gh/yanbing-j/11/base -> origin/gh/yanbing-j/11/base 2025-08-26T20:40:02.5948374Z * [new branch] gh/yanbing-j/11/head -> origin/gh/yanbing-j/11/head 2025-08-26T20:40:02.5948881Z * [new branch] gh/yanbing-j/11/orig -> origin/gh/yanbing-j/11/orig 2025-08-26T20:40:02.5949377Z * [new branch] gh/yanbing-j/12/base -> origin/gh/yanbing-j/12/base 2025-08-26T20:40:02.5949879Z * [new branch] gh/yanbing-j/12/head -> origin/gh/yanbing-j/12/head 2025-08-26T20:40:02.5950372Z * [new branch] gh/yanbing-j/12/orig -> origin/gh/yanbing-j/12/orig 2025-08-26T20:40:02.5950879Z * [new branch] gh/yanbing-j/13/base -> origin/gh/yanbing-j/13/base 2025-08-26T20:40:02.5951409Z * [new branch] gh/yanbing-j/13/head -> origin/gh/yanbing-j/13/head 2025-08-26T20:40:02.5951954Z * [new branch] gh/yanbing-j/13/orig -> origin/gh/yanbing-j/13/orig 2025-08-26T20:40:02.5952463Z * [new branch] gh/yanbing-j/14/base -> origin/gh/yanbing-j/14/base 2025-08-26T20:40:02.5952960Z * [new branch] gh/yanbing-j/14/head -> origin/gh/yanbing-j/14/head 2025-08-26T20:40:02.5953468Z * [new branch] gh/yanbing-j/14/orig -> origin/gh/yanbing-j/14/orig 2025-08-26T20:40:02.5953969Z * [new branch] gh/yanbing-j/15/base -> origin/gh/yanbing-j/15/base 2025-08-26T20:40:02.5954463Z * [new branch] gh/yanbing-j/15/head -> origin/gh/yanbing-j/15/head 2025-08-26T20:40:02.5954967Z * [new branch] gh/yanbing-j/15/orig -> origin/gh/yanbing-j/15/orig 2025-08-26T20:40:02.5955466Z * [new branch] gh/yanbing-j/18/base -> origin/gh/yanbing-j/18/base 2025-08-26T20:40:02.5955963Z * [new branch] gh/yanbing-j/18/head -> origin/gh/yanbing-j/18/head 2025-08-26T20:40:02.6417037Z * [new branch] gh/yanbing-j/18/orig -> origin/gh/yanbing-j/18/orig 2025-08-26T20:40:02.6417602Z * [new branch] gh/yanbing-j/19/base -> origin/gh/yanbing-j/19/base 2025-08-26T20:40:02.6418327Z * [new branch] gh/yanbing-j/19/head -> origin/gh/yanbing-j/19/head 2025-08-26T20:40:02.6418832Z * [new branch] gh/yanbing-j/19/orig -> origin/gh/yanbing-j/19/orig 2025-08-26T20:40:02.6419352Z * [new branch] gh/yanbing-j/20/base -> origin/gh/yanbing-j/20/base 2025-08-26T20:40:02.6419843Z * [new branch] gh/yanbing-j/20/head -> origin/gh/yanbing-j/20/head 2025-08-26T20:40:02.6420354Z * [new branch] gh/yanbing-j/20/orig -> origin/gh/yanbing-j/20/orig 2025-08-26T20:40:02.6420978Z * [new branch] gh/yanbing-j/21/base -> origin/gh/yanbing-j/21/base 2025-08-26T20:40:02.6421587Z * [new branch] gh/yanbing-j/21/head -> origin/gh/yanbing-j/21/head 2025-08-26T20:40:02.6422140Z * [new branch] gh/yanbing-j/22/base -> origin/gh/yanbing-j/22/base 2025-08-26T20:40:02.6422650Z * [new branch] gh/yanbing-j/22/head -> origin/gh/yanbing-j/22/head 2025-08-26T20:40:02.6423152Z * [new branch] gh/yanbing-j/22/orig -> origin/gh/yanbing-j/22/orig 2025-08-26T20:40:02.6423658Z * [new branch] gh/yanbing-j/23/base -> origin/gh/yanbing-j/23/base 2025-08-26T20:40:02.6424149Z * [new branch] gh/yanbing-j/23/head -> origin/gh/yanbing-j/23/head 2025-08-26T20:40:02.6424751Z * [new branch] gh/yanbing-j/23/orig -> origin/gh/yanbing-j/23/orig 2025-08-26T20:40:02.6425247Z * [new branch] gh/yanbing-j/24/base -> origin/gh/yanbing-j/24/base 2025-08-26T20:40:02.6425746Z * [new branch] gh/yanbing-j/24/head -> origin/gh/yanbing-j/24/head 2025-08-26T20:40:02.6426317Z * [new branch] gh/yanbing-j/24/orig -> origin/gh/yanbing-j/24/orig 2025-08-26T20:40:02.6426822Z * [new branch] gh/yanbing-j/25/base -> origin/gh/yanbing-j/25/base 2025-08-26T20:40:02.6427339Z * [new branch] gh/yanbing-j/25/head -> origin/gh/yanbing-j/25/head 2025-08-26T20:40:02.6427929Z * [new branch] gh/yanbing-j/25/orig -> origin/gh/yanbing-j/25/orig 2025-08-26T20:40:02.6428472Z * [new branch] gh/yanbing-j/26/base -> origin/gh/yanbing-j/26/base 2025-08-26T20:40:02.6428960Z * [new branch] gh/yanbing-j/26/head -> origin/gh/yanbing-j/26/head 2025-08-26T20:40:02.6429481Z * [new branch] gh/yanbing-j/26/orig -> origin/gh/yanbing-j/26/orig 2025-08-26T20:40:02.6429990Z * [new branch] gh/yanbing-j/36/base -> origin/gh/yanbing-j/36/base 2025-08-26T20:40:02.6430484Z * [new branch] gh/yanbing-j/36/head -> origin/gh/yanbing-j/36/head 2025-08-26T20:40:02.6430992Z * [new branch] gh/yanbing-j/36/orig -> origin/gh/yanbing-j/36/orig 2025-08-26T20:40:02.6431506Z * [new branch] gh/yanbing-j/37/base -> origin/gh/yanbing-j/37/base 2025-08-26T20:40:02.6432009Z * [new branch] gh/yanbing-j/37/head -> origin/gh/yanbing-j/37/head 2025-08-26T20:40:02.6432508Z * [new branch] gh/yanbing-j/37/orig -> origin/gh/yanbing-j/37/orig 2025-08-26T20:40:02.6433009Z * [new branch] gh/yangw-dev/1/base -> origin/gh/yangw-dev/1/base 2025-08-26T20:40:02.6433508Z * [new branch] gh/yangw-dev/10/base -> origin/gh/yangw-dev/10/base 2025-08-26T20:40:02.6434036Z * [new branch] gh/yangw-dev/10/head -> origin/gh/yangw-dev/10/head 2025-08-26T20:40:02.6434582Z * [new branch] gh/yangw-dev/10/orig -> origin/gh/yangw-dev/10/orig 2025-08-26T20:40:02.6435080Z * [new branch] gh/yangw-dev/11/base -> origin/gh/yangw-dev/11/base 2025-08-26T20:40:02.6435573Z * [new branch] gh/yangw-dev/11/head -> origin/gh/yangw-dev/11/head 2025-08-26T20:40:02.6436071Z * [new branch] gh/yangw-dev/11/orig -> origin/gh/yangw-dev/11/orig 2025-08-26T20:40:02.6436702Z * [new branch] gh/yangw-dev/12/base -> origin/gh/yangw-dev/12/base 2025-08-26T20:40:02.6437213Z * [new branch] gh/yangw-dev/12/head -> origin/gh/yangw-dev/12/head 2025-08-26T20:40:02.6437715Z * [new branch] gh/yangw-dev/12/orig -> origin/gh/yangw-dev/12/orig 2025-08-26T20:40:02.6438264Z * [new branch] gh/yangw-dev/13/base -> origin/gh/yangw-dev/13/base 2025-08-26T20:40:02.6438880Z * [new branch] gh/yangw-dev/13/head -> origin/gh/yangw-dev/13/head 2025-08-26T20:40:02.6439377Z * [new branch] gh/yangw-dev/13/orig -> origin/gh/yangw-dev/13/orig 2025-08-26T20:40:02.6439917Z * [new branch] gh/yangw-dev/14/base -> origin/gh/yangw-dev/14/base 2025-08-26T20:40:02.6440460Z * [new branch] gh/yangw-dev/14/head -> origin/gh/yangw-dev/14/head 2025-08-26T20:40:02.6440961Z * [new branch] gh/yangw-dev/14/orig -> origin/gh/yangw-dev/14/orig 2025-08-26T20:40:02.6441458Z * [new branch] gh/yangw-dev/15/base -> origin/gh/yangw-dev/15/base 2025-08-26T20:40:02.6846407Z * [new branch] gh/yangw-dev/15/head -> origin/gh/yangw-dev/15/head 2025-08-26T20:40:02.6846976Z * [new branch] gh/yangw-dev/15/orig -> origin/gh/yangw-dev/15/orig 2025-08-26T20:40:02.6864496Z * [new branch] gh/yangw-dev/16/base -> origin/gh/yangw-dev/16/base 2025-08-26T20:40:02.6865249Z * [new branch] gh/yangw-dev/16/head -> origin/gh/yangw-dev/16/head 2025-08-26T20:40:02.6865897Z * [new branch] gh/yangw-dev/16/orig -> origin/gh/yangw-dev/16/orig 2025-08-26T20:40:02.6866410Z * [new branch] gh/yangw-dev/17/base -> origin/gh/yangw-dev/17/base 2025-08-26T20:40:02.6866932Z * [new branch] gh/yangw-dev/17/head -> origin/gh/yangw-dev/17/head 2025-08-26T20:40:02.6867448Z * [new branch] gh/yangw-dev/17/orig -> origin/gh/yangw-dev/17/orig 2025-08-26T20:40:02.6867947Z * [new branch] gh/yangw-dev/18/base -> origin/gh/yangw-dev/18/base 2025-08-26T20:40:02.6868457Z * [new branch] gh/yangw-dev/18/head -> origin/gh/yangw-dev/18/head 2025-08-26T20:40:02.6868958Z * [new branch] gh/yangw-dev/18/orig -> origin/gh/yangw-dev/18/orig 2025-08-26T20:40:02.6869459Z * [new branch] gh/yangw-dev/19/base -> origin/gh/yangw-dev/19/base 2025-08-26T20:40:02.6869978Z * [new branch] gh/yangw-dev/19/head -> origin/gh/yangw-dev/19/head 2025-08-26T20:40:02.6870516Z * [new branch] gh/yangw-dev/19/orig -> origin/gh/yangw-dev/19/orig 2025-08-26T20:40:02.6871072Z * [new branch] gh/yangw-dev/2/base -> origin/gh/yangw-dev/2/base 2025-08-26T20:40:02.6871576Z * [new branch] gh/yangw-dev/2/head -> origin/gh/yangw-dev/2/head 2025-08-26T20:40:02.6872087Z * [new branch] gh/yangw-dev/20/base -> origin/gh/yangw-dev/20/base 2025-08-26T20:40:02.6872596Z * [new branch] gh/yangw-dev/20/head -> origin/gh/yangw-dev/20/head 2025-08-26T20:40:02.6873094Z * [new branch] gh/yangw-dev/20/orig -> origin/gh/yangw-dev/20/orig 2025-08-26T20:40:02.6873603Z * [new branch] gh/yangw-dev/21/base -> origin/gh/yangw-dev/21/base 2025-08-26T20:40:02.6874104Z * [new branch] gh/yangw-dev/21/head -> origin/gh/yangw-dev/21/head 2025-08-26T20:40:02.6874603Z * [new branch] gh/yangw-dev/21/orig -> origin/gh/yangw-dev/21/orig 2025-08-26T20:40:02.6875099Z * [new branch] gh/yangw-dev/22/base -> origin/gh/yangw-dev/22/base 2025-08-26T20:40:02.6875608Z * [new branch] gh/yangw-dev/22/head -> origin/gh/yangw-dev/22/head 2025-08-26T20:40:02.6876331Z * [new branch] gh/yangw-dev/22/orig -> origin/gh/yangw-dev/22/orig 2025-08-26T20:40:02.6876868Z * [new branch] gh/yangw-dev/23/base -> origin/gh/yangw-dev/23/base 2025-08-26T20:40:02.6877411Z * [new branch] gh/yangw-dev/23/head -> origin/gh/yangw-dev/23/head 2025-08-26T20:40:02.6877900Z * [new branch] gh/yangw-dev/23/orig -> origin/gh/yangw-dev/23/orig 2025-08-26T20:40:02.6878407Z * [new branch] gh/yangw-dev/24/base -> origin/gh/yangw-dev/24/base 2025-08-26T20:40:02.6879039Z * [new branch] gh/yangw-dev/24/head -> origin/gh/yangw-dev/24/head 2025-08-26T20:40:02.6879559Z * [new branch] gh/yangw-dev/24/orig -> origin/gh/yangw-dev/24/orig 2025-08-26T20:40:02.6880074Z * [new branch] gh/yangw-dev/3/base -> origin/gh/yangw-dev/3/base 2025-08-26T20:40:02.6880569Z * [new branch] gh/yangw-dev/3/head -> origin/gh/yangw-dev/3/head 2025-08-26T20:40:02.6881082Z * [new branch] gh/yangw-dev/4/base -> origin/gh/yangw-dev/4/base 2025-08-26T20:40:02.6881590Z * [new branch] gh/yangw-dev/4/head -> origin/gh/yangw-dev/4/head 2025-08-26T20:40:02.6882079Z * [new branch] gh/yangw-dev/5/base -> origin/gh/yangw-dev/5/base 2025-08-26T20:40:02.6882623Z * [new branch] gh/yangw-dev/5/head -> origin/gh/yangw-dev/5/head 2025-08-26T20:40:02.6883152Z * [new branch] gh/yangw-dev/6/base -> origin/gh/yangw-dev/6/base 2025-08-26T20:40:02.6883649Z * [new branch] gh/yangw-dev/6/head -> origin/gh/yangw-dev/6/head 2025-08-26T20:40:02.6884209Z * [new branch] gh/yangw-dev/7/base -> origin/gh/yangw-dev/7/base 2025-08-26T20:40:02.6884705Z * [new branch] gh/yangw-dev/7/head -> origin/gh/yangw-dev/7/head 2025-08-26T20:40:02.6885200Z * [new branch] gh/yangw-dev/8/base -> origin/gh/yangw-dev/8/base 2025-08-26T20:40:02.6885700Z * [new branch] gh/yangw-dev/8/head -> origin/gh/yangw-dev/8/head 2025-08-26T20:40:02.6886200Z * [new branch] gh/yangw-dev/8/orig -> origin/gh/yangw-dev/8/orig 2025-08-26T20:40:02.6886707Z * [new branch] gh/yangw-dev/9/base -> origin/gh/yangw-dev/9/base 2025-08-26T20:40:02.6887195Z * [new branch] gh/yangw-dev/9/head -> origin/gh/yangw-dev/9/head 2025-08-26T20:40:02.7333147Z * [new branch] gh/yangw-dev/9/orig -> origin/gh/yangw-dev/9/orig 2025-08-26T20:40:02.7333723Z * [new branch] gh/ydwu4/233/base -> origin/gh/ydwu4/233/base 2025-08-26T20:40:02.7334205Z * [new branch] gh/ydwu4/233/head -> origin/gh/ydwu4/233/head 2025-08-26T20:40:02.7334686Z * [new branch] gh/ydwu4/233/orig -> origin/gh/ydwu4/233/orig 2025-08-26T20:40:02.7335172Z * [new branch] gh/ydwu4/246/base -> origin/gh/ydwu4/246/base 2025-08-26T20:40:02.7335656Z * [new branch] gh/ydwu4/246/head -> origin/gh/ydwu4/246/head 2025-08-26T20:40:02.7336128Z * [new branch] gh/ydwu4/246/orig -> origin/gh/ydwu4/246/orig 2025-08-26T20:40:02.7336599Z * [new branch] gh/ydwu4/253/base -> origin/gh/ydwu4/253/base 2025-08-26T20:40:02.7337072Z * [new branch] gh/ydwu4/253/head -> origin/gh/ydwu4/253/head 2025-08-26T20:40:02.7337537Z * [new branch] gh/ydwu4/253/orig -> origin/gh/ydwu4/253/orig 2025-08-26T20:40:02.7338018Z * [new branch] gh/ydwu4/255/base -> origin/gh/ydwu4/255/base 2025-08-26T20:40:02.7338480Z * [new branch] gh/ydwu4/255/head -> origin/gh/ydwu4/255/head 2025-08-26T20:40:02.7338960Z * [new branch] gh/ydwu4/255/orig -> origin/gh/ydwu4/255/orig 2025-08-26T20:40:02.7339623Z * [new branch] gh/ydwu4/259/base -> origin/gh/ydwu4/259/base 2025-08-26T20:40:02.7340092Z * [new branch] gh/ydwu4/259/head -> origin/gh/ydwu4/259/head 2025-08-26T20:40:02.7340572Z * [new branch] gh/ydwu4/259/orig -> origin/gh/ydwu4/259/orig 2025-08-26T20:40:02.7341048Z * [new branch] gh/ydwu4/262/base -> origin/gh/ydwu4/262/base 2025-08-26T20:40:02.7341524Z * [new branch] gh/ydwu4/262/head -> origin/gh/ydwu4/262/head 2025-08-26T20:40:02.7342128Z * [new branch] gh/ydwu4/262/orig -> origin/gh/ydwu4/262/orig 2025-08-26T20:40:02.7342604Z * [new branch] gh/ydwu4/263/base -> origin/gh/ydwu4/263/base 2025-08-26T20:40:02.7343084Z * [new branch] gh/ydwu4/263/head -> origin/gh/ydwu4/263/head 2025-08-26T20:40:02.7343558Z * [new branch] gh/ydwu4/263/orig -> origin/gh/ydwu4/263/orig 2025-08-26T20:40:02.7344123Z * [new branch] gh/ydwu4/269/base -> origin/gh/ydwu4/269/base 2025-08-26T20:40:02.7344603Z * [new branch] gh/ydwu4/269/head -> origin/gh/ydwu4/269/head 2025-08-26T20:40:02.7345084Z * [new branch] gh/ydwu4/269/orig -> origin/gh/ydwu4/269/orig 2025-08-26T20:40:02.7345568Z * [new branch] gh/ydwu4/270/base -> origin/gh/ydwu4/270/base 2025-08-26T20:40:02.7346102Z * [new branch] gh/ydwu4/270/head -> origin/gh/ydwu4/270/head 2025-08-26T20:40:02.7346596Z * [new branch] gh/ydwu4/270/orig -> origin/gh/ydwu4/270/orig 2025-08-26T20:40:02.7347067Z * [new branch] gh/ydwu4/272/base -> origin/gh/ydwu4/272/base 2025-08-26T20:40:02.7347554Z * [new branch] gh/ydwu4/272/head -> origin/gh/ydwu4/272/head 2025-08-26T20:40:02.7348041Z * [new branch] gh/ydwu4/272/orig -> origin/gh/ydwu4/272/orig 2025-08-26T20:40:02.7348516Z * [new branch] gh/ydwu4/275/base -> origin/gh/ydwu4/275/base 2025-08-26T20:40:02.7348991Z * [new branch] gh/ydwu4/275/head -> origin/gh/ydwu4/275/head 2025-08-26T20:40:02.7349457Z * [new branch] gh/ydwu4/275/orig -> origin/gh/ydwu4/275/orig 2025-08-26T20:40:02.7349926Z * [new branch] gh/ydwu4/276/base -> origin/gh/ydwu4/276/base 2025-08-26T20:40:02.7350403Z * [new branch] gh/ydwu4/276/head -> origin/gh/ydwu4/276/head 2025-08-26T20:40:02.7350875Z * [new branch] gh/ydwu4/276/orig -> origin/gh/ydwu4/276/orig 2025-08-26T20:40:02.7351346Z * [new branch] gh/ydwu4/279/base -> origin/gh/ydwu4/279/base 2025-08-26T20:40:02.7351809Z * [new branch] gh/ydwu4/279/head -> origin/gh/ydwu4/279/head 2025-08-26T20:40:02.7352281Z * [new branch] gh/ydwu4/279/orig -> origin/gh/ydwu4/279/orig 2025-08-26T20:40:02.7352748Z * [new branch] gh/ydwu4/283/base -> origin/gh/ydwu4/283/base 2025-08-26T20:40:02.7353222Z * [new branch] gh/ydwu4/283/head -> origin/gh/ydwu4/283/head 2025-08-26T20:40:02.7353699Z * [new branch] gh/ydwu4/283/orig -> origin/gh/ydwu4/283/orig 2025-08-26T20:40:02.7354177Z * [new branch] gh/ydwu4/289/base -> origin/gh/ydwu4/289/base 2025-08-26T20:40:02.7354656Z * [new branch] gh/ydwu4/289/head -> origin/gh/ydwu4/289/head 2025-08-26T20:40:02.7355130Z * [new branch] gh/ydwu4/289/orig -> origin/gh/ydwu4/289/orig 2025-08-26T20:40:02.7355605Z * [new branch] gh/ydwu4/290/base -> origin/gh/ydwu4/290/base 2025-08-26T20:40:02.7356079Z * [new branch] gh/ydwu4/290/head -> origin/gh/ydwu4/290/head 2025-08-26T20:40:02.7356547Z * [new branch] gh/ydwu4/290/orig -> origin/gh/ydwu4/290/orig 2025-08-26T20:40:02.7784598Z * [new branch] gh/ydwu4/291/base -> origin/gh/ydwu4/291/base 2025-08-26T20:40:02.7785736Z * [new branch] gh/ydwu4/291/head -> origin/gh/ydwu4/291/head 2025-08-26T20:40:02.7786832Z * [new branch] gh/ydwu4/291/orig -> origin/gh/ydwu4/291/orig 2025-08-26T20:40:02.7787936Z * [new branch] gh/ydwu4/292/base -> origin/gh/ydwu4/292/base 2025-08-26T20:40:02.7788849Z * [new branch] gh/ydwu4/292/head -> origin/gh/ydwu4/292/head 2025-08-26T20:40:02.7790197Z * [new branch] gh/ydwu4/292/orig -> origin/gh/ydwu4/292/orig 2025-08-26T20:40:02.7791281Z * [new branch] gh/ydwu4/293/base -> origin/gh/ydwu4/293/base 2025-08-26T20:40:02.7792332Z * [new branch] gh/ydwu4/293/head -> origin/gh/ydwu4/293/head 2025-08-26T20:40:02.7793432Z * [new branch] gh/ydwu4/293/orig -> origin/gh/ydwu4/293/orig 2025-08-26T20:40:02.7794411Z * [new branch] gh/ydwu4/294/base -> origin/gh/ydwu4/294/base 2025-08-26T20:40:02.7795466Z * [new branch] gh/ydwu4/294/head -> origin/gh/ydwu4/294/head 2025-08-26T20:40:02.7796507Z * [new branch] gh/ydwu4/294/orig -> origin/gh/ydwu4/294/orig 2025-08-26T20:40:02.7797539Z * [new branch] gh/ydwu4/295/base -> origin/gh/ydwu4/295/base 2025-08-26T20:40:02.7798638Z * [new branch] gh/ydwu4/295/head -> origin/gh/ydwu4/295/head 2025-08-26T20:40:02.7799675Z * [new branch] gh/ydwu4/295/orig -> origin/gh/ydwu4/295/orig 2025-08-26T20:40:02.7800795Z * [new branch] gh/ydwu4/296/base -> origin/gh/ydwu4/296/base 2025-08-26T20:40:02.7801880Z * [new branch] gh/ydwu4/296/head -> origin/gh/ydwu4/296/head 2025-08-26T20:40:02.7802970Z * [new branch] gh/ydwu4/296/orig -> origin/gh/ydwu4/296/orig 2025-08-26T20:40:02.7803979Z * [new branch] gh/ydwu4/300/base -> origin/gh/ydwu4/300/base 2025-08-26T20:40:02.7804998Z * [new branch] gh/ydwu4/300/head -> origin/gh/ydwu4/300/head 2025-08-26T20:40:02.7806030Z * [new branch] gh/ydwu4/300/orig -> origin/gh/ydwu4/300/orig 2025-08-26T20:40:02.7807127Z * [new branch] gh/ydwu4/301/base -> origin/gh/ydwu4/301/base 2025-08-26T20:40:02.7808164Z * [new branch] gh/ydwu4/301/head -> origin/gh/ydwu4/301/head 2025-08-26T20:40:02.7809175Z * [new branch] gh/ydwu4/301/orig -> origin/gh/ydwu4/301/orig 2025-08-26T20:40:02.7810246Z * [new branch] gh/ydwu4/302/base -> origin/gh/ydwu4/302/base 2025-08-26T20:40:02.7811242Z * [new branch] gh/ydwu4/302/head -> origin/gh/ydwu4/302/head 2025-08-26T20:40:02.7812300Z * [new branch] gh/ydwu4/302/orig -> origin/gh/ydwu4/302/orig 2025-08-26T20:40:02.7813319Z * [new branch] gh/ydwu4/303/base -> origin/gh/ydwu4/303/base 2025-08-26T20:40:02.7814335Z * [new branch] gh/ydwu4/303/head -> origin/gh/ydwu4/303/head 2025-08-26T20:40:02.7815399Z * [new branch] gh/ydwu4/303/orig -> origin/gh/ydwu4/303/orig 2025-08-26T20:40:02.7816437Z * [new branch] gh/ydwu4/304/base -> origin/gh/ydwu4/304/base 2025-08-26T20:40:02.7817530Z * [new branch] gh/ydwu4/304/head -> origin/gh/ydwu4/304/head 2025-08-26T20:40:02.7818562Z * [new branch] gh/ydwu4/304/orig -> origin/gh/ydwu4/304/orig 2025-08-26T20:40:02.7819590Z * [new branch] gh/ydwu4/305/base -> origin/gh/ydwu4/305/base 2025-08-26T20:40:02.7820667Z * [new branch] gh/ydwu4/305/head -> origin/gh/ydwu4/305/head 2025-08-26T20:40:02.7821691Z * [new branch] gh/ydwu4/305/orig -> origin/gh/ydwu4/305/orig 2025-08-26T20:40:02.7823095Z * [new branch] gh/ydwu4/306/base -> origin/gh/ydwu4/306/base 2025-08-26T20:40:02.7824152Z * [new branch] gh/ydwu4/306/head -> origin/gh/ydwu4/306/head 2025-08-26T20:40:02.7825198Z * [new branch] gh/ydwu4/306/orig -> origin/gh/ydwu4/306/orig 2025-08-26T20:40:02.7826304Z * [new branch] gh/ydwu4/307/base -> origin/gh/ydwu4/307/base 2025-08-26T20:40:02.7827336Z * [new branch] gh/ydwu4/307/head -> origin/gh/ydwu4/307/head 2025-08-26T20:40:02.7828649Z * [new branch] gh/ydwu4/307/orig -> origin/gh/ydwu4/307/orig 2025-08-26T20:40:02.7829696Z * [new branch] gh/ydwu4/308/base -> origin/gh/ydwu4/308/base 2025-08-26T20:40:02.7830664Z * [new branch] gh/ydwu4/308/head -> origin/gh/ydwu4/308/head 2025-08-26T20:40:02.7831705Z * [new branch] gh/ydwu4/308/orig -> origin/gh/ydwu4/308/orig 2025-08-26T20:40:02.7832738Z * [new branch] gh/ydwu4/309/base -> origin/gh/ydwu4/309/base 2025-08-26T20:40:02.7833748Z * [new branch] gh/ydwu4/309/head -> origin/gh/ydwu4/309/head 2025-08-26T20:40:02.7834713Z * [new branch] gh/ydwu4/309/orig -> origin/gh/ydwu4/309/orig 2025-08-26T20:40:02.8514624Z * [new branch] gh/ydwu4/310/base -> origin/gh/ydwu4/310/base 2025-08-26T20:40:02.8515172Z * [new branch] gh/ydwu4/310/head -> origin/gh/ydwu4/310/head 2025-08-26T20:40:02.8515737Z * [new branch] gh/ydwu4/310/orig -> origin/gh/ydwu4/310/orig 2025-08-26T20:40:02.8516271Z * [new branch] gh/ydwu4/311/base -> origin/gh/ydwu4/311/base 2025-08-26T20:40:02.8516746Z * [new branch] gh/ydwu4/311/head -> origin/gh/ydwu4/311/head 2025-08-26T20:40:02.8517242Z * [new branch] gh/ydwu4/311/orig -> origin/gh/ydwu4/311/orig 2025-08-26T20:40:02.8517712Z * [new branch] gh/ydwu4/312/base -> origin/gh/ydwu4/312/base 2025-08-26T20:40:02.8518199Z * [new branch] gh/ydwu4/312/head -> origin/gh/ydwu4/312/head 2025-08-26T20:40:02.8518676Z * [new branch] gh/ydwu4/312/orig -> origin/gh/ydwu4/312/orig 2025-08-26T20:40:02.8519144Z * [new branch] gh/ydwu4/313/base -> origin/gh/ydwu4/313/base 2025-08-26T20:40:02.8519635Z * [new branch] gh/ydwu4/313/head -> origin/gh/ydwu4/313/head 2025-08-26T20:40:02.8520107Z * [new branch] gh/ydwu4/313/orig -> origin/gh/ydwu4/313/orig 2025-08-26T20:40:02.8520589Z * [new branch] gh/ydwu4/314/base -> origin/gh/ydwu4/314/base 2025-08-26T20:40:02.8521065Z * [new branch] gh/ydwu4/314/head -> origin/gh/ydwu4/314/head 2025-08-26T20:40:02.8521644Z * [new branch] gh/ydwu4/314/orig -> origin/gh/ydwu4/314/orig 2025-08-26T20:40:02.8522126Z * [new branch] gh/ydwu4/315/base -> origin/gh/ydwu4/315/base 2025-08-26T20:40:02.8522599Z * [new branch] gh/ydwu4/315/head -> origin/gh/ydwu4/315/head 2025-08-26T20:40:02.8523135Z * [new branch] gh/ydwu4/315/orig -> origin/gh/ydwu4/315/orig 2025-08-26T20:40:02.8523623Z * [new branch] gh/ydwu4/316/base -> origin/gh/ydwu4/316/base 2025-08-26T20:40:02.8524102Z * [new branch] gh/ydwu4/316/head -> origin/gh/ydwu4/316/head 2025-08-26T20:40:02.8524584Z * [new branch] gh/ydwu4/316/orig -> origin/gh/ydwu4/316/orig 2025-08-26T20:40:02.8525064Z * [new branch] gh/ydwu4/317/base -> origin/gh/ydwu4/317/base 2025-08-26T20:40:02.8525545Z * [new branch] gh/ydwu4/317/head -> origin/gh/ydwu4/317/head 2025-08-26T20:40:02.8526229Z * [new branch] gh/ydwu4/317/orig -> origin/gh/ydwu4/317/orig 2025-08-26T20:40:02.8526705Z * [new branch] gh/yf225/133/base -> origin/gh/yf225/133/base 2025-08-26T20:40:02.8527234Z * [new branch] gh/yf225/133/head -> origin/gh/yf225/133/head 2025-08-26T20:40:02.8527747Z * [new branch] gh/yf225/171/base -> origin/gh/yf225/171/base 2025-08-26T20:40:02.8528231Z * [new branch] gh/yf225/171/head -> origin/gh/yf225/171/head 2025-08-26T20:40:02.8528833Z * [new branch] gh/yf225/171/orig -> origin/gh/yf225/171/orig 2025-08-26T20:40:02.8529324Z * [new branch] gh/yf225/172/base -> origin/gh/yf225/172/base 2025-08-26T20:40:02.8529808Z * [new branch] gh/yf225/172/head -> origin/gh/yf225/172/head 2025-08-26T20:40:02.8530277Z * [new branch] gh/yf225/172/orig -> origin/gh/yf225/172/orig 2025-08-26T20:40:02.8530770Z * [new branch] gh/yf225/93/base -> origin/gh/yf225/93/base 2025-08-26T20:40:02.8531239Z * [new branch] gh/yf225/93/head -> origin/gh/yf225/93/head 2025-08-26T20:40:02.8531746Z * [new branch] gh/yifuwang/152/base -> origin/gh/yifuwang/152/base 2025-08-26T20:40:02.8532272Z * [new branch] gh/yifuwang/152/head -> origin/gh/yifuwang/152/head 2025-08-26T20:40:02.8532824Z * [new branch] gh/yifuwang/152/orig -> origin/gh/yifuwang/152/orig 2025-08-26T20:40:02.8533383Z * [new branch] gh/yifuwang/195/base -> origin/gh/yifuwang/195/base 2025-08-26T20:40:02.8533888Z * [new branch] gh/yifuwang/195/head -> origin/gh/yifuwang/195/head 2025-08-26T20:40:02.8534401Z * [new branch] gh/yifuwang/195/orig -> origin/gh/yifuwang/195/orig 2025-08-26T20:40:02.8534919Z * [new branch] gh/yiming0416/1/base -> origin/gh/yiming0416/1/base 2025-08-26T20:40:02.8535435Z * [new branch] gh/yiming0416/1/head -> origin/gh/yiming0416/1/head 2025-08-26T20:40:02.8535942Z * [new branch] gh/yiming0416/2/base -> origin/gh/yiming0416/2/base 2025-08-26T20:40:02.8536443Z * [new branch] gh/yiming0416/2/head -> origin/gh/yiming0416/2/head 2025-08-26T20:40:02.8536957Z * [new branch] gh/ysiraichi/79/base -> origin/gh/ysiraichi/79/base 2025-08-26T20:40:02.8537464Z * [new branch] gh/ysiraichi/79/head -> origin/gh/ysiraichi/79/head 2025-08-26T20:40:02.8537986Z * [new branch] gh/ysiraichi/79/orig -> origin/gh/ysiraichi/79/orig 2025-08-26T20:40:02.8968849Z * [new branch] gh/ysiraichi/81/base -> origin/gh/ysiraichi/81/base 2025-08-26T20:40:02.8969400Z * [new branch] gh/ysiraichi/81/head -> origin/gh/ysiraichi/81/head 2025-08-26T20:40:02.8969927Z * [new branch] gh/ysiraichi/81/orig -> origin/gh/ysiraichi/81/orig 2025-08-26T20:40:02.8970468Z * [new branch] gh/ysiraichi/88/base -> origin/gh/ysiraichi/88/base 2025-08-26T20:40:02.8970978Z * [new branch] gh/ysiraichi/88/head -> origin/gh/ysiraichi/88/head 2025-08-26T20:40:02.8971496Z * [new branch] gh/ysiraichi/88/orig -> origin/gh/ysiraichi/88/orig 2025-08-26T20:40:02.8972001Z * [new branch] gh/zhxchen17/25/base -> origin/gh/zhxchen17/25/base 2025-08-26T20:40:02.8972564Z * [new branch] gh/zhxchen17/25/head -> origin/gh/zhxchen17/25/head 2025-08-26T20:40:02.8973114Z * [new branch] gh/zhxchen17/25/orig -> origin/gh/zhxchen17/25/orig 2025-08-26T20:40:02.8973631Z * [new branch] gh/zhxchen17/31/base -> origin/gh/zhxchen17/31/base 2025-08-26T20:40:02.8974139Z * [new branch] gh/zhxchen17/31/head -> origin/gh/zhxchen17/31/head 2025-08-26T20:40:02.8974825Z * [new branch] gh/zhxchen17/31/orig -> origin/gh/zhxchen17/31/orig 2025-08-26T20:40:02.8975340Z * [new branch] gh/zhxchen17/34/base -> origin/gh/zhxchen17/34/base 2025-08-26T20:40:02.8975852Z * [new branch] gh/zhxchen17/34/head -> origin/gh/zhxchen17/34/head 2025-08-26T20:40:02.8976369Z * [new branch] gh/zhxchen17/35/base -> origin/gh/zhxchen17/35/base 2025-08-26T20:40:02.8976881Z * [new branch] gh/zhxchen17/35/head -> origin/gh/zhxchen17/35/head 2025-08-26T20:40:02.8977524Z * [new branch] gh/zhxchen17/36/base -> origin/gh/zhxchen17/36/base 2025-08-26T20:40:02.8978049Z * [new branch] gh/zhxchen17/36/head -> origin/gh/zhxchen17/36/head 2025-08-26T20:40:02.8978569Z * [new branch] gh/zhxchen17/36/orig -> origin/gh/zhxchen17/36/orig 2025-08-26T20:40:02.8979088Z * [new branch] gh/zhxchen17/37/base -> origin/gh/zhxchen17/37/base 2025-08-26T20:40:02.8979611Z * [new branch] gh/zhxchen17/37/head -> origin/gh/zhxchen17/37/head 2025-08-26T20:40:02.8980119Z * [new branch] gh/zhxchen17/37/orig -> origin/gh/zhxchen17/37/orig 2025-08-26T20:40:02.8980636Z * [new branch] gh/zhxchen17/38/base -> origin/gh/zhxchen17/38/base 2025-08-26T20:40:02.8981144Z * [new branch] gh/zhxchen17/38/head -> origin/gh/zhxchen17/38/head 2025-08-26T20:40:02.8981660Z * [new branch] gh/zhxchen17/38/orig -> origin/gh/zhxchen17/38/orig 2025-08-26T20:40:02.8982185Z * [new branch] gh/zhxchen17/39/base -> origin/gh/zhxchen17/39/base 2025-08-26T20:40:02.8982687Z * [new branch] gh/zhxchen17/39/head -> origin/gh/zhxchen17/39/head 2025-08-26T20:40:02.8983201Z * [new branch] gh/zhxchen17/39/orig -> origin/gh/zhxchen17/39/orig 2025-08-26T20:40:02.8983707Z * [new branch] gh/zhxchen17/40/base -> origin/gh/zhxchen17/40/base 2025-08-26T20:40:02.8984218Z * [new branch] gh/zhxchen17/40/head -> origin/gh/zhxchen17/40/head 2025-08-26T20:40:02.8984721Z * [new branch] gh/zhxchen17/40/orig -> origin/gh/zhxchen17/40/orig 2025-08-26T20:40:02.8985228Z * [new branch] gh/zhxchen17/41/base -> origin/gh/zhxchen17/41/base 2025-08-26T20:40:02.8985740Z * [new branch] gh/zhxchen17/41/head -> origin/gh/zhxchen17/41/head 2025-08-26T20:40:02.8986301Z * [new branch] gh/zhxchen17/41/orig -> origin/gh/zhxchen17/41/orig 2025-08-26T20:40:02.8986823Z * [new branch] gh/zhxchen17/42/base -> origin/gh/zhxchen17/42/base 2025-08-26T20:40:02.8987333Z * [new branch] gh/zhxchen17/42/head -> origin/gh/zhxchen17/42/head 2025-08-26T20:40:02.8987854Z * [new branch] gh/zhxchen17/42/orig -> origin/gh/zhxchen17/42/orig 2025-08-26T20:40:02.8988375Z * [new branch] gh/zhxchen17/43/base -> origin/gh/zhxchen17/43/base 2025-08-26T20:40:02.8988879Z * [new branch] gh/zhxchen17/43/head -> origin/gh/zhxchen17/43/head 2025-08-26T20:40:02.8989391Z * [new branch] gh/zhxchen17/43/orig -> origin/gh/zhxchen17/43/orig 2025-08-26T20:40:02.8989889Z * [new branch] gh/zklaus/10/base -> origin/gh/zklaus/10/base 2025-08-26T20:40:02.8990382Z * [new branch] gh/zklaus/10/head -> origin/gh/zklaus/10/head 2025-08-26T20:40:02.8990882Z * [new branch] gh/zklaus/10/orig -> origin/gh/zklaus/10/orig 2025-08-26T20:40:02.8991365Z * [new branch] gh/zklaus/11/base -> origin/gh/zklaus/11/base 2025-08-26T20:40:02.8991848Z * [new branch] gh/zklaus/11/head -> origin/gh/zklaus/11/head 2025-08-26T20:40:02.8992327Z * [new branch] gh/zklaus/11/orig -> origin/gh/zklaus/11/orig 2025-08-26T20:40:02.8992944Z * [new branch] gh/zklaus/12/base -> origin/gh/zklaus/12/base 2025-08-26T20:40:02.9425003Z * [new branch] gh/zklaus/12/head -> origin/gh/zklaus/12/head 2025-08-26T20:40:02.9425636Z * [new branch] gh/zklaus/12/orig -> origin/gh/zklaus/12/orig 2025-08-26T20:40:02.9426186Z * [new branch] gh/zklaus/14/base -> origin/gh/zklaus/14/base 2025-08-26T20:40:02.9426682Z * [new branch] gh/zklaus/14/head -> origin/gh/zklaus/14/head 2025-08-26T20:40:02.9427365Z * [new branch] gh/zklaus/14/orig -> origin/gh/zklaus/14/orig 2025-08-26T20:40:02.9427869Z * [new branch] gh/zklaus/15/base -> origin/gh/zklaus/15/base 2025-08-26T20:40:02.9428351Z * [new branch] gh/zklaus/15/head -> origin/gh/zklaus/15/head 2025-08-26T20:40:02.9428850Z * [new branch] gh/zklaus/15/orig -> origin/gh/zklaus/15/orig 2025-08-26T20:40:02.9429449Z * [new branch] gh/zklaus/16/base -> origin/gh/zklaus/16/base 2025-08-26T20:40:02.9429936Z * [new branch] gh/zklaus/16/head -> origin/gh/zklaus/16/head 2025-08-26T20:40:02.9430433Z * [new branch] gh/zklaus/16/orig -> origin/gh/zklaus/16/orig 2025-08-26T20:40:02.9430905Z * [new branch] gh/zklaus/17/base -> origin/gh/zklaus/17/base 2025-08-26T20:40:02.9431391Z * [new branch] gh/zklaus/17/head -> origin/gh/zklaus/17/head 2025-08-26T20:40:02.9431886Z * [new branch] gh/zklaus/17/orig -> origin/gh/zklaus/17/orig 2025-08-26T20:40:02.9432362Z * [new branch] gh/zklaus/18/base -> origin/gh/zklaus/18/base 2025-08-26T20:40:02.9432843Z * [new branch] gh/zklaus/18/head -> origin/gh/zklaus/18/head 2025-08-26T20:40:02.9433318Z * [new branch] gh/zklaus/18/orig -> origin/gh/zklaus/18/orig 2025-08-26T20:40:02.9433804Z * [new branch] gh/zklaus/19/base -> origin/gh/zklaus/19/base 2025-08-26T20:40:02.9434281Z * [new branch] gh/zklaus/19/head -> origin/gh/zklaus/19/head 2025-08-26T20:40:02.9434810Z * [new branch] gh/zklaus/19/orig -> origin/gh/zklaus/19/orig 2025-08-26T20:40:02.9435343Z * [new branch] gh/zklaus/7/base -> origin/gh/zklaus/7/base 2025-08-26T20:40:02.9435820Z * [new branch] gh/zklaus/7/head -> origin/gh/zklaus/7/head 2025-08-26T20:40:02.9436302Z * [new branch] gh/zklaus/7/orig -> origin/gh/zklaus/7/orig 2025-08-26T20:40:02.9436762Z * [new branch] gh/zklaus/9/base -> origin/gh/zklaus/9/base 2025-08-26T20:40:02.9437244Z * [new branch] gh/zklaus/9/head -> origin/gh/zklaus/9/head 2025-08-26T20:40:02.9437724Z * [new branch] gh/zklaus/9/orig -> origin/gh/zklaus/9/orig 2025-08-26T20:40:02.9438213Z * [new branch] gh/zou3519/1175/base -> origin/gh/zou3519/1175/base 2025-08-26T20:40:02.9438721Z * [new branch] gh/zou3519/1175/head -> origin/gh/zou3519/1175/head 2025-08-26T20:40:02.9439212Z * [new branch] gh/zou3519/1175/orig -> origin/gh/zou3519/1175/orig 2025-08-26T20:40:02.9439709Z * [new branch] gh/zou3519/1177/base -> origin/gh/zou3519/1177/base 2025-08-26T20:40:02.9440196Z * [new branch] gh/zou3519/1177/head -> origin/gh/zou3519/1177/head 2025-08-26T20:40:02.9440745Z * [new branch] gh/zou3519/1177/orig -> origin/gh/zou3519/1177/orig 2025-08-26T20:40:02.9441298Z * [new branch] gh/zou3519/1188/base -> origin/gh/zou3519/1188/base 2025-08-26T20:40:02.9441785Z * [new branch] gh/zou3519/1188/head -> origin/gh/zou3519/1188/head 2025-08-26T20:40:02.9442284Z * [new branch] gh/zou3519/1188/orig -> origin/gh/zou3519/1188/orig 2025-08-26T20:40:02.9442928Z * [new branch] gh/zou3519/1189/base -> origin/gh/zou3519/1189/base 2025-08-26T20:40:02.9443424Z * [new branch] gh/zou3519/1189/head -> origin/gh/zou3519/1189/head 2025-08-26T20:40:02.9443928Z * [new branch] gh/zou3519/1189/orig -> origin/gh/zou3519/1189/orig 2025-08-26T20:40:02.9444426Z * [new branch] gh/zou3519/1190/base -> origin/gh/zou3519/1190/base 2025-08-26T20:40:02.9445019Z * [new branch] gh/zou3519/1190/head -> origin/gh/zou3519/1190/head 2025-08-26T20:40:02.9445521Z * [new branch] gh/zou3519/1190/orig -> origin/gh/zou3519/1190/orig 2025-08-26T20:40:02.9446011Z * [new branch] gh/zou3519/1191/base -> origin/gh/zou3519/1191/base 2025-08-26T20:40:02.9446563Z * [new branch] gh/zou3519/1191/head -> origin/gh/zou3519/1191/head 2025-08-26T20:40:02.9447110Z * [new branch] gh/zou3519/1191/orig -> origin/gh/zou3519/1191/orig 2025-08-26T20:40:02.9447748Z * [new branch] gh/zou3519/1192/base -> origin/gh/zou3519/1192/base 2025-08-26T20:40:02.9448242Z * [new branch] gh/zou3519/1192/head -> origin/gh/zou3519/1192/head 2025-08-26T20:40:02.9448750Z * [new branch] gh/zou3519/1192/orig -> origin/gh/zou3519/1192/orig 2025-08-26T20:40:02.9449251Z * [new branch] gh/zpcore/1/base -> origin/gh/zpcore/1/base 2025-08-26T20:40:02.9900503Z * [new branch] gh/zpcore/1/head -> origin/gh/zpcore/1/head 2025-08-26T20:40:02.9901073Z * [new branch] gh/zpcore/10/base -> origin/gh/zpcore/10/base 2025-08-26T20:40:02.9901588Z * [new branch] gh/zpcore/10/head -> origin/gh/zpcore/10/head 2025-08-26T20:40:02.9902072Z * [new branch] gh/zpcore/10/orig -> origin/gh/zpcore/10/orig 2025-08-26T20:40:02.9902578Z * [new branch] gh/zpcore/11/base -> origin/gh/zpcore/11/base 2025-08-26T20:40:02.9903057Z * [new branch] gh/zpcore/11/head -> origin/gh/zpcore/11/head 2025-08-26T20:40:02.9903530Z * [new branch] gh/zpcore/11/orig -> origin/gh/zpcore/11/orig 2025-08-26T20:40:02.9904063Z * [new branch] gh/zpcore/12/base -> origin/gh/zpcore/12/base 2025-08-26T20:40:02.9904581Z * [new branch] gh/zpcore/12/head -> origin/gh/zpcore/12/head 2025-08-26T20:40:02.9905066Z * [new branch] gh/zpcore/12/orig -> origin/gh/zpcore/12/orig 2025-08-26T20:40:02.9905538Z * [new branch] gh/zpcore/13/base -> origin/gh/zpcore/13/base 2025-08-26T20:40:02.9906072Z * [new branch] gh/zpcore/13/head -> origin/gh/zpcore/13/head 2025-08-26T20:40:02.9906565Z * [new branch] gh/zpcore/13/orig -> origin/gh/zpcore/13/orig 2025-08-26T20:40:02.9907045Z * [new branch] gh/zpcore/2/base -> origin/gh/zpcore/2/base 2025-08-26T20:40:02.9907542Z * [new branch] gh/zpcore/2/head -> origin/gh/zpcore/2/head 2025-08-26T20:40:02.9908017Z * [new branch] gh/zpcore/3/base -> origin/gh/zpcore/3/base 2025-08-26T20:40:02.9908485Z * [new branch] gh/zpcore/3/head -> origin/gh/zpcore/3/head 2025-08-26T20:40:02.9908956Z * [new branch] gh/zpcore/4/base -> origin/gh/zpcore/4/base 2025-08-26T20:40:02.9909426Z * [new branch] gh/zpcore/4/head -> origin/gh/zpcore/4/head 2025-08-26T20:40:02.9909943Z * [new branch] gh/zpcore/5/base -> origin/gh/zpcore/5/base 2025-08-26T20:40:02.9910455Z * [new branch] gh/zpcore/5/head -> origin/gh/zpcore/5/head 2025-08-26T20:40:02.9910921Z * [new branch] gh/zpcore/6/base -> origin/gh/zpcore/6/base 2025-08-26T20:40:02.9911609Z * [new branch] gh/zpcore/6/head -> origin/gh/zpcore/6/head 2025-08-26T20:40:02.9912077Z * [new branch] gh/zpcore/7/base -> origin/gh/zpcore/7/base 2025-08-26T20:40:02.9912563Z * [new branch] gh/zpcore/7/head -> origin/gh/zpcore/7/head 2025-08-26T20:40:02.9913036Z * [new branch] gh/zpcore/8/base -> origin/gh/zpcore/8/base 2025-08-26T20:40:02.9913519Z * [new branch] gh/zpcore/8/head -> origin/gh/zpcore/8/head 2025-08-26T20:40:02.9914127Z * [new branch] gh/zpcore/9/head -> origin/gh/zpcore/9/head 2025-08-26T20:40:02.9914602Z * [new branch] gh/zpcore/9/orig -> origin/gh/zpcore/9/orig 2025-08-26T20:40:02.9915081Z * [new branch] google-main -> origin/google-main 2025-08-26T20:40:02.9915631Z * [new branch] guangyey/external_stream -> origin/guangyey/external_stream 2025-08-26T20:40:02.9916220Z * [new branch] guangyey/host_alloc -> origin/guangyey/host_alloc 2025-08-26T20:40:02.9916722Z * [new branch] guangyey/test_2025 -> origin/guangyey/test_2025 2025-08-26T20:40:02.9917385Z * [new branch] guilhermeleobas/cherry-pick-55d87d9dfd9 -> origin/guilhermeleobas/cherry-pick-55d87d9dfd9 2025-08-26T20:40:02.9918093Z * [new branch] haozhe/bf16-dynamic-shape -> origin/haozhe/bf16-dynamic-shape 2025-08-26T20:40:02.9918595Z * [new branch] hc_baseline -> origin/hc_baseline 2025-08-26T20:40:02.9919094Z * [new branch] headeronlyScalarType -> origin/headeronlyScalarType 2025-08-26T20:40:02.9919588Z * [new branch] hf_update -> origin/hf_update 2025-08-26T20:40:02.9920024Z * [new branch] hhh_decomp_mul -> origin/hhh_decomp_mul 2025-08-26T20:40:02.9920464Z * [new branch] hhh_rand -> origin/hhh_rand 2025-08-26T20:40:02.9920903Z * [new branch] hoy/mmsplitk -> origin/hoy/mmsplitk 2025-08-26T20:40:02.9921421Z * [new branch] hoy/triton-PR3973 -> origin/hoy/triton-PR3973 2025-08-26T20:40:02.9922053Z * [new branch] hoy/triton-coalescing-baseline -> origin/hoy/triton-coalescing-baseline 2025-08-26T20:40:02.9922699Z * [new branch] hoy/triton-coalescing-min -> origin/hoy/triton-coalescing-min 2025-08-26T20:40:02.9923293Z * [new branch] hoy/triton-coalescing-new -> origin/hoy/triton-coalescing-new 2025-08-26T20:40:02.9923865Z * [new branch] hoy/triton-coalescing-vec -> origin/hoy/triton-coalescing-vec 2025-08-26T20:40:02.9924411Z * [new branch] inductordecompfix -> origin/inductordecompfix 2025-08-26T20:40:02.9924871Z * [new branch] inline -> origin/inline 2025-08-26T20:40:03.0338474Z * [new branch] inlining -> origin/inlining 2025-08-26T20:40:03.0339012Z * [new branch] inlining-ezyang -> origin/inlining-ezyang 2025-08-26T20:40:03.0339486Z * [new branch] int8_sdpa -> origin/int8_sdpa 2025-08-26T20:40:03.0339956Z * [new branch] invoke-subgraph -> origin/invoke-subgraph 2025-08-26T20:40:03.0340430Z * [new branch] issue#58739 -> origin/issue#58739 2025-08-26T20:40:03.0340873Z * [new branch] issue-154849 -> origin/issue-154849 2025-08-26T20:40:03.0341451Z * [new branch] ivanov/cherry-pick-ckpt-fixes -> origin/ivanov/cherry-pick-ckpt-fixes 2025-08-26T20:40:03.0342159Z * [new branch] jcaip/test-cusparselt-version-0.6.2 -> origin/jcaip/test-cusparselt-version-0.6.2 2025-08-26T20:40:03.0342868Z * [new branch] jcaip/update-cusparselt-0.6.2 -> origin/jcaip/update-cusparselt-0.6.2 2025-08-26T20:40:03.0343697Z * [new branch] justinchu/attention-tests -> origin/justinchu/attention-tests 2025-08-26T20:40:03.0344296Z * [new branch] justinchu/native-qdq -> origin/justinchu/native-qdq 2025-08-26T20:40:03.0344818Z * [new branch] justinchu/ort-122 -> origin/justinchu/ort-122 2025-08-26T20:40:03.0345355Z * [new branch] justinchuby/JitScalarType -> origin/justinchuby/JitScalarType 2025-08-26T20:40:03.0345989Z * [new branch] justinchuby/dynamo-true -> origin/justinchuby/dynamo-true 2025-08-26T20:40:03.0346666Z * [new branch] kainan666/xlf_debug -> origin/kainan666/xlf_debug 2025-08-26T20:40:03.0347149Z * [new branch] kainan_test -> origin/kainan_test 2025-08-26T20:40:03.0347613Z * [new branch] learnablebias -> origin/learnablebias 2025-08-26T20:40:03.0348169Z * [new branch] leslie/test_group_gemm_epilogues -> origin/leslie/test_group_gemm_epilogues 2025-08-26T20:40:03.0348832Z * [new branch] lessw2020/fix_cutlass_cache_error -> origin/lessw2020/fix_cutlass_cache_error 2025-08-26T20:40:03.0349428Z * [new branch] liaoxuan/shm_all_reduce -> origin/liaoxuan/shm_all_reduce 2025-08-26T20:40:03.0349966Z * [new branch] liaoxuan/tags_issue -> origin/liaoxuan/tags_issue 2025-08-26T20:40:03.0350540Z * [new branch] liaoxuan/test_fa_disable_softmax -> origin/liaoxuan/test_fa_disable_softmax 2025-08-26T20:40:03.0351131Z * [new branch] liaoxuan/test_int8_sdpa -> origin/liaoxuan/test_int8_sdpa 2025-08-26T20:40:03.0351673Z * [new branch] lintbuilddocker -> origin/lintbuilddocker 2025-08-26T20:40:03.0352149Z * [new branch] llama4-stable -> origin/llama4-stable 2025-08-26T20:40:03.0352607Z * [new branch] logdetfix -> origin/logdetfix 2025-08-26T20:40:03.0353060Z * [new branch] lts/release/1.8 -> origin/lts/release/1.8 2025-08-26T20:40:03.0353541Z * [new branch] lucaskabela/#94773 -> origin/lucaskabela/#94773 2025-08-26T20:40:03.0354063Z * [new branch] lucaskabela/fix_157452 -> origin/lucaskabela/fix_157452 2025-08-26T20:40:03.0354643Z * [new branch] lucaskabela/func_under_decomp -> origin/lucaskabela/func_under_decomp 2025-08-26T20:40:03.0355293Z * [new branch] lucaskabela/functional_in_dynamo -> origin/lucaskabela/functional_in_dynamo 2025-08-26T20:40:03.0356029Z * [new branch] lucaskabela/install_params_as_graph_attr -> origin/lucaskabela/install_params_as_graph_attr 2025-08-26T20:40:03.0356699Z * [new branch] lucaskabela/issue_120648 -> origin/lucaskabela/issue_120648 2025-08-26T20:40:03.0357302Z * [new branch] lucaskabela/misc_typing_dynamo -> origin/lucaskabela/misc_typing_dynamo 2025-08-26T20:40:03.0357993Z * [new branch] lucaskabela/parameters_as_graph_attr -> origin/lucaskabela/parameters_as_graph_attr 2025-08-26T20:40:03.0358644Z * [new branch] lucaskabela/registry_fix -> origin/lucaskabela/registry_fix 2025-08-26T20:40:03.0359352Z * [new branch] lucaskabela/remove_aot_dispatcher_metadata -> origin/lucaskabela/remove_aot_dispatcher_metadata 2025-08-26T20:40:03.0360038Z * [new branch] lucaskabela/rnn_decomp -> origin/lucaskabela/rnn_decomp 2025-08-26T20:40:03.0360589Z * [new branch] lucaskabela/type_guards -> origin/lucaskabela/type_guards 2025-08-26T20:40:03.0361157Z * [new branch] lucaskabela/typing_backends -> origin/lucaskabela/typing_backends 2025-08-26T20:40:03.0361818Z * [new branch] lucaskabela/typing_compile_autograd -> origin/lucaskabela/typing_compile_autograd 2025-08-26T20:40:03.0362512Z * [new branch] lucaskabela/typing_output_graph -> origin/lucaskabela/typing_output_graph 2025-08-26T20:40:03.0363282Z * [new branch] lucaskabela/typing_source_guard -> origin/lucaskabela/typing_source_guard 2025-08-26T20:40:03.0777559Z * [new branch] lucaskabela/typing_symbolic_convert -> origin/lucaskabela/typing_symbolic_convert 2025-08-26T20:40:03.0778281Z * [new branch] lucaskabela/typing_utils.py -> origin/lucaskabela/typing_utils.py 2025-08-26T20:40:03.0779000Z * [new branch] lucaskabela/typing_utils_improvements -> origin/lucaskabela/typing_utils_improvements 2025-08-26T20:40:03.0779812Z * [new branch] main -> origin/main 2025-08-26T20:40:03.0780404Z * [new branch] main-enable-b200-distributed-tests -> origin/main-enable-b200-distributed-tests 2025-08-26T20:40:03.0781040Z * [new branch] malfet-patch-1 -> origin/malfet-patch-1 2025-08-26T20:40:03.0781541Z * [new branch] malfet-patch-11 -> origin/malfet-patch-11 2025-08-26T20:40:03.0782028Z * [new branch] malfet-patch-12 -> origin/malfet-patch-12 2025-08-26T20:40:03.0782507Z * [new branch] malfet-patch-14 -> origin/malfet-patch-14 2025-08-26T20:40:03.0782976Z * [new branch] malfet-patch-2 -> origin/malfet-patch-2 2025-08-26T20:40:03.0783447Z * [new branch] malfet-patch-3 -> origin/malfet-patch-3 2025-08-26T20:40:03.0783907Z * [new branch] malfet-patch-4 -> origin/malfet-patch-4 2025-08-26T20:40:03.0784385Z * [new branch] malfet-patch-5 -> origin/malfet-patch-5 2025-08-26T20:40:03.0784855Z * [new branch] malfet-patch-6 -> origin/malfet-patch-6 2025-08-26T20:40:03.0785316Z * [new branch] malfet-patch-7 -> origin/malfet-patch-7 2025-08-26T20:40:03.0785778Z * [new branch] malfet-patch-8 -> origin/malfet-patch-8 2025-08-26T20:40:03.0786315Z * [new branch] malfet-patch-9 -> origin/malfet-patch-9 2025-08-26T20:40:03.0786859Z * [new branch] malfet/delete-upsteam-cuda -> origin/malfet/delete-upsteam-cuda 2025-08-26T20:40:03.0787488Z * [new branch] malfet/mps-implement-col2im -> origin/malfet/mps-implement-col2im 2025-08-26T20:40:03.0788135Z * [new branch] manuel/test-ops-common-allow-mps -> origin/manuel/test-ops-common-allow-mps 2025-08-26T20:40:03.0788749Z * [new branch] metascroy-patch-1 -> origin/metascroy-patch-1 2025-08-26T20:40:03.0789271Z * [new branch] mlazos/S429861-debug -> origin/mlazos/S429861-debug 2025-08-26T20:40:03.0789752Z * [new branch] mlazos/aa -> origin/mlazos/aa 2025-08-26T20:40:03.0790223Z * [new branch] mlazos/arg-renames -> origin/mlazos/arg-renames 2025-08-26T20:40:03.0790756Z * [new branch] mlazos/backup-test-branch -> origin/mlazos/backup-test-branch 2025-08-26T20:40:03.0791323Z * [new branch] mlazos/bad-cudagraphs -> origin/mlazos/bad-cudagraphs 2025-08-26T20:40:03.0791826Z * [new branch] mlazos/baseline -> origin/mlazos/baseline 2025-08-26T20:40:03.0792379Z * [new branch] mlazos/baseline-graph-breaks -> origin/mlazos/baseline-graph-breaks 2025-08-26T20:40:03.0792942Z * [new branch] mlazos/beta-tensor -> origin/mlazos/beta-tensor 2025-08-26T20:40:03.0793447Z * [new branch] mlazos/better-msg -> origin/mlazos/better-msg 2025-08-26T20:40:03.0793935Z * [new branch] mlazos/buffers -> origin/mlazos/buffers 2025-08-26T20:40:03.0794404Z * [new branch] mlazos/buffers2 -> origin/mlazos/buffers2 2025-08-26T20:40:03.0794877Z * [new branch] mlazos/buffers3 -> origin/mlazos/buffers3 2025-08-26T20:40:03.0795326Z * [new branch] mlazos/ck2 -> origin/mlazos/ck2 2025-08-26T20:40:03.0796522Z * [new branch] mlazos/combokernels -> origin/mlazos/combokernels 2025-08-26T20:40:03.0797049Z * [new branch] mlazos/ctx-cleanup -> origin/mlazos/ctx-cleanup 2025-08-26T20:40:03.0797559Z * [new branch] mlazos/cuda-cmd-log -> origin/mlazos/cuda-cmd-log 2025-08-26T20:40:03.0798105Z * [new branch] mlazos/cudagraph-tests -> origin/mlazos/cudagraph-tests 2025-08-26T20:40:03.0798810Z * [new branch] mlazos/cudagraphs-measurement -> origin/mlazos/cudagraphs-measurement 2025-08-26T20:40:03.0799400Z * [new branch] mlazos/cutlass-test -> origin/mlazos/cutlass-test 2025-08-26T20:40:03.0799950Z * [new branch] mlazos/cutlass-topo-bug -> origin/mlazos/cutlass-topo-bug 2025-08-26T20:40:03.0800499Z * [new branch] mlazos/data-gather -> origin/mlazos/data-gather 2025-08-26T20:40:03.0801012Z * [new branch] mlazos/data-ptrs2 -> origin/mlazos/data-ptrs2 2025-08-26T20:40:03.0801510Z * [new branch] mlazos/data-ptrs3 -> origin/mlazos/data-ptrs3 2025-08-26T20:40:03.0802045Z * [new branch] mlazos/dataclass-proxy -> origin/mlazos/dataclass-proxy 2025-08-26T20:40:03.0802567Z * [new branch] mlazos/dc-attrs -> origin/mlazos/dc-attrs 2025-08-26T20:40:03.0803049Z * [new branch] mlazos/dc-helion -> origin/mlazos/dc-helion 2025-08-26T20:40:03.1231932Z * [new branch] mlazos/dict-fix -> origin/mlazos/dict-fix 2025-08-26T20:40:03.1232515Z * [new branch] mlazos/disable-closures -> origin/mlazos/disable-closures 2025-08-26T20:40:03.1233074Z * [new branch] mlazos/disable-tf -> origin/mlazos/disable-tf 2025-08-26T20:40:03.1233582Z * [new branch] mlazos/dupe-fix -> origin/mlazos/dupe-fix 2025-08-26T20:40:03.1234074Z * [new branch] mlazos/dyn-batch -> origin/mlazos/dyn-batch 2025-08-26T20:40:03.1234539Z * [new branch] mlazos/evt -> origin/mlazos/evt 2025-08-26T20:40:03.1235006Z * [new branch] mlazos/exp_disable -> origin/mlazos/exp_disable 2025-08-26T20:40:03.1235544Z * [new branch] mlazos/extract-examples -> origin/mlazos/extract-examples 2025-08-26T20:40:03.1236079Z * [new branch] mlazos/foreach-op -> origin/mlazos/foreach-op 2025-08-26T20:40:03.1236552Z * [new branch] mlazos/fp8 -> origin/mlazos/fp8 2025-08-26T20:40:03.1237013Z * [new branch] mlazos/fp8-bias -> origin/mlazos/fp8-bias 2025-08-26T20:40:03.1237515Z * [new branch] mlazos/fp8-bias-fusion -> origin/mlazos/fp8-bias-fusion 2025-08-26T20:40:03.1238036Z * [new branch] mlazos/fp8-fixes -> origin/mlazos/fp8-fixes 2025-08-26T20:40:03.1238520Z * [new branch] mlazos/freezing -> origin/mlazos/freezing 2025-08-26T20:40:03.1238991Z * [new branch] mlazos/h-comp -> origin/mlazos/h-comp 2025-08-26T20:40:03.1239446Z * [new branch] mlazos/h-comp2 -> origin/mlazos/h-comp2 2025-08-26T20:40:03.1239908Z * [new branch] mlazos/hash-hop -> origin/mlazos/hash-hop 2025-08-26T20:40:03.1240368Z * [new branch] mlazos/hc -> origin/mlazos/hc 2025-08-26T20:40:03.1240824Z * [new branch] mlazos/hc-cycles -> origin/mlazos/hc-cycles 2025-08-26T20:40:03.1241297Z * [new branch] mlazos/hc-fixes -> origin/mlazos/hc-fixes 2025-08-26T20:40:03.1241773Z * [new branch] mlazos/hc-fixes3 -> origin/mlazos/hc-fixes3 2025-08-26T20:40:03.1242248Z * [new branch] mlazos/hc-fixes4 -> origin/mlazos/hc-fixes4 2025-08-26T20:40:03.1243310Z * [new branch] mlazos/hc-hf -> origin/mlazos/hc-hf 2025-08-26T20:40:03.1243759Z * [new branch] mlazos/hc-mut -> origin/mlazos/hc-mut 2025-08-26T20:40:03.1244210Z * [new branch] mlazos/hc10 -> origin/mlazos/hc10 2025-08-26T20:40:03.1244672Z * [new branch] mlazos/hc11 -> origin/mlazos/hc11 2025-08-26T20:40:03.1245100Z * [new branch] mlazos/hc12 -> origin/mlazos/hc12 2025-08-26T20:40:03.1245674Z * [new branch] mlazos/hc13 -> origin/mlazos/hc13 2025-08-26T20:40:03.1246101Z * [new branch] mlazos/hc14 -> origin/mlazos/hc14 2025-08-26T20:40:03.1246540Z * [new branch] mlazos/hc15 -> origin/mlazos/hc15 2025-08-26T20:40:03.1246979Z * [new branch] mlazos/hc2 -> origin/mlazos/hc2 2025-08-26T20:40:03.1247406Z * [new branch] mlazos/hc4 -> origin/mlazos/hc4 2025-08-26T20:40:03.1247837Z * [new branch] mlazos/hc5 -> origin/mlazos/hc5 2025-08-26T20:40:03.1248262Z * [new branch] mlazos/hc6 -> origin/mlazos/hc6 2025-08-26T20:40:03.1248694Z * [new branch] mlazos/hc7 -> origin/mlazos/hc7 2025-08-26T20:40:03.1249132Z * [new branch] mlazos/hc8 -> origin/mlazos/hc8 2025-08-26T20:40:03.1249561Z * [new branch] mlazos/hc9 -> origin/mlazos/hc9 2025-08-26T20:40:03.1250036Z * [new branch] mlazos/hc_baseline2 -> origin/mlazos/hc_baseline2 2025-08-26T20:40:03.1250524Z * [new branch] mlazos/hop-modes -> origin/mlazos/hop-modes 2025-08-26T20:40:03.1251048Z * [new branch] mlazos/init-per-param -> origin/mlazos/init-per-param 2025-08-26T20:40:03.1251577Z * [new branch] mlazos/init_per_param -> origin/mlazos/init_per_param 2025-08-26T20:40:03.1252098Z * [new branch] mlazos/less-guards -> origin/mlazos/less-guards 2025-08-26T20:40:03.1252639Z * [new branch] mlazos/lr-composibility -> origin/mlazos/lr-composibility 2025-08-26T20:40:03.1253136Z * [new branch] mlazos/main -> origin/mlazos/main 2025-08-26T20:40:03.1253666Z * [new branch] mlazos/main-test-enablement -> origin/mlazos/main-test-enablement 2025-08-26T20:40:03.1254192Z * [new branch] mlazos/main2 -> origin/mlazos/main2 2025-08-26T20:40:03.1254648Z * [new branch] mlazos/mcg -> origin/mlazos/mcg 2025-08-26T20:40:03.1255083Z * [new branch] mlazos/mcg2 -> origin/mlazos/mcg2 2025-08-26T20:40:03.1255557Z * [new branch] mlazos/meta-guards -> origin/mlazos/meta-guards 2025-08-26T20:40:03.1256057Z * [new branch] mlazos/mlazos/ck2 -> origin/mlazos/mlazos/ck2 2025-08-26T20:40:03.1706924Z * [new branch] mlazos/mlazos/foreach-map-adam -> origin/mlazos/mlazos/foreach-map-adam 2025-08-26T20:40:03.1707624Z * [new branch] mlazos/mlazos/tf-mode-backup -> origin/mlazos/mlazos/tf-mode-backup 2025-08-26T20:40:03.1708172Z * [new branch] mlazos/mod-fix -> origin/mlazos/mod-fix 2025-08-26T20:40:03.1708668Z * [new branch] mlazos/mode-fix -> origin/mlazos/mode-fix 2025-08-26T20:40:03.1709161Z * [new branch] mlazos/more-tests -> origin/mlazos/more-tests 2025-08-26T20:40:03.1709666Z * [new branch] mlazos/no-cpp -> origin/mlazos/no-cpp 2025-08-26T20:40:03.1710214Z * [new branch] mlazos/no-init-group-handling -> origin/mlazos/no-init-group-handling 2025-08-26T20:40:03.1710784Z * [new branch] mlazos/offsets -> origin/mlazos/offsets 2025-08-26T20:40:03.1711816Z * [new branch] mlazos/opt-bench-exp2 -> origin/mlazos/opt-bench-exp2 2025-08-26T20:40:03.1712333Z * [new branch] mlazos/opt-incr -> origin/mlazos/opt-incr 2025-08-26T20:40:03.1712818Z * [new branch] mlazos/proxy-ctors -> origin/mlazos/proxy-ctors 2025-08-26T20:40:03.1713320Z * [new branch] mlazos/quant-fix -> origin/mlazos/quant-fix 2025-08-26T20:40:03.1713825Z * [new branch] mlazos/rm-buf-names -> origin/mlazos/rm-buf-names 2025-08-26T20:40:03.1714816Z * [new branch] mlazos/rm-code -> origin/mlazos/rm-code 2025-08-26T20:40:03.1715293Z * [new branch] mlazos/rm-spam -> origin/mlazos/rm-spam 2025-08-26T20:40:03.1715737Z * [new branch] mlazos/rtp -> origin/mlazos/rtp 2025-08-26T20:40:03.1716230Z * [new branch] mlazos/static-idx-dbg -> origin/mlazos/static-idx-dbg 2025-08-26T20:40:03.1716789Z * [new branch] mlazos/static-inputs-log -> origin/mlazos/static-inputs-log 2025-08-26T20:40:03.1717347Z * [new branch] mlazos/sub-param-fix -> origin/mlazos/sub-param-fix 2025-08-26T20:40:03.1717850Z * [new branch] mlazos/td-fix2 -> origin/mlazos/td-fix2 2025-08-26T20:40:03.1718349Z * [new branch] mlazos/tensor-hasattr2 -> origin/mlazos/tensor-hasattr2 2025-08-26T20:40:03.1718845Z * [new branch] mlazos/test -> origin/mlazos/test 2025-08-26T20:40:03.1719301Z * [new branch] mlazos/tf-mode -> origin/mlazos/tf-mode 2025-08-26T20:40:03.1719799Z * [new branch] mlazos/tf-mode-backup2 -> origin/mlazos/tf-mode-backup2 2025-08-26T20:40:03.1720329Z * [new branch] mlazos/tf-mode-reland -> origin/mlazos/tf-mode-reland 2025-08-26T20:40:03.1720852Z * [new branch] mlazos/tf-mode-reland2 -> origin/mlazos/tf-mode-reland2 2025-08-26T20:40:03.1721380Z * [new branch] mlazos/tf-mode-reland3 -> origin/mlazos/tf-mode-reland3 2025-08-26T20:40:03.1721878Z * [new branch] mlazos/topo-fix -> origin/mlazos/topo-fix 2025-08-26T20:40:03.1722390Z * [new branch] mlazos/triton-no-epi -> origin/mlazos/triton-no-epi 2025-08-26T20:40:03.1722903Z * [new branch] mlazos/tune-proto -> origin/mlazos/tune-proto 2025-08-26T20:40:03.1723400Z * [new branch] mlazos/tuple-fixes -> origin/mlazos/tuple-fixes 2025-08-26T20:40:03.1723915Z * [new branch] mlazos/tuple-fixes2 -> origin/mlazos/tuple-fixes2 2025-08-26T20:40:03.1724433Z * [new branch] mlazos/tuple-handling -> origin/mlazos/tuple-handling 2025-08-26T20:40:03.1724956Z * [new branch] mlazos/user-streams -> origin/mlazos/user-streams 2025-08-26T20:40:03.1725460Z * [new branch] mlazos/vary-beta -> origin/mlazos/vary-beta 2025-08-26T20:40:03.1725942Z * [new branch] mlazos/vary-beta2 -> origin/mlazos/vary-beta2 2025-08-26T20:40:03.1726446Z * [new branch] mlazos/weird-perf1 -> origin/mlazos/weird-perf1 2025-08-26T20:40:03.1726942Z * [new branch] mm_out_dtype_compile -> origin/mm_out_dtype_compile 2025-08-26T20:40:03.1727438Z * [new branch] modify-setupvllm -> origin/modify-setupvllm 2025-08-26T20:40:03.1727945Z * [new branch] move-theme-out-docker -> origin/move-theme-out-docker 2025-08-26T20:40:03.1728457Z * [new branch] mps-linear-1d -> origin/mps-linear-1d 2025-08-26T20:40:03.1728921Z * [new branch] msaroufim/be1 -> origin/msaroufim/be1 2025-08-26T20:40:03.1729393Z * [new branch] msaroufim/cn_path -> origin/msaroufim/cn_path 2025-08-26T20:40:03.1729950Z * [new branch] msaroufim/dtensorfusedadam -> origin/msaroufim/dtensorfusedadam 2025-08-26T20:40:03.1730834Z * [new branch] msaroufim/reduce -> origin/msaroufim/reduce 2025-08-26T20:40:03.1731326Z * [new branch] mtia/basic-cmake -> origin/mtia/basic-cmake 2025-08-26T20:40:03.1731794Z * [new branch] muon_dev -> origin/muon_dev 2025-08-26T20:40:03.1732224Z * [new branch] muon_dev_1 -> origin/muon_dev_1 2025-08-26T20:40:03.2138186Z * [new branch] new-modifiy-setupvllm -> origin/new-modifiy-setupvllm 2025-08-26T20:40:03.2139058Z * [new branch] new-setupvllm -> origin/new-setupvllm 2025-08-26T20:40:03.2139787Z * [new branch] newtest-base -> origin/newtest-base 2025-08-26T20:40:03.2140591Z * [new branch] ngimel/cat_perf -> origin/ngimel/cat_perf 2025-08-26T20:40:03.2141450Z * [new branch] ngimel/error_index_list -> origin/ngimel/error_index_list 2025-08-26T20:40:03.2142389Z * [new branch] ngimel/fabric_check -> origin/ngimel/fabric_check 2025-08-26T20:40:03.2143367Z * [new branch] ngimel/fabric_driver_version -> origin/ngimel/fabric_driver_version 2025-08-26T20:40:03.2144358Z * [new branch] ngimel/fabric_fix -> origin/ngimel/fabric_fix 2025-08-26T20:40:03.2145257Z * [new branch] ngimel/fabric_symm -> origin/ngimel/fabric_symm 2025-08-26T20:40:03.2146301Z * [new branch] ngimel/fix_driver_init_error -> origin/ngimel/fix_driver_init_error 2025-08-26T20:40:03.2147292Z * [new branch] ngimel/fix_nccl_segment_seg -> origin/ngimel/fix_nccl_segment_seg 2025-08-26T20:40:03.2147936Z * [new branch] ngimel/gg_new -> origin/ngimel/gg_new 2025-08-26T20:40:03.2148488Z * [new branch] ngimel/grouped_mm_checks -> origin/ngimel/grouped_mm_checks 2025-08-26T20:40:03.2149127Z * [new branch] ngimel/guardfabric -> origin/ngimel/guardfabric 2025-08-26T20:40:03.2149714Z * [new branch] ngimel/modeguard -> origin/ngimel/modeguard 2025-08-26T20:40:03.2150278Z * [new branch] ngimel/multicast_fix -> origin/ngimel/multicast_fix 2025-08-26T20:40:03.2150896Z * [new branch] ngimel/unbind_multimem -> origin/ngimel/unbind_multimem 2025-08-26T20:40:03.2151425Z * [new branch] nightly -> origin/nightly 2025-08-26T20:40:03.2151955Z * [new branch] nmacchioni-patch-10 -> origin/nmacchioni-patch-10 2025-08-26T20:40:03.2152494Z * [new branch] nmacchioni-patch-7 -> origin/nmacchioni-patch-7 2025-08-26T20:40:03.2153012Z * [new branch] nmacchioni-patch-8 -> origin/nmacchioni-patch-8 2025-08-26T20:40:03.2153521Z * [new branch] nmacchioni-patch-9 -> origin/nmacchioni-patch-9 2025-08-26T20:40:03.2154046Z * [new branch] nullplay_fuse_matmul -> origin/nullplay_fuse_matmul 2025-08-26T20:40:03.2154746Z * [new branch] nweidia/enable-B200-inductor-nightly-ci -> origin/nweidia/enable-B200-inductor-nightly-ci 2025-08-26T20:40:03.2155365Z * [new branch] one-off -> origin/one-off 2025-08-26T20:40:03.2155824Z * [new branch] orig/release/1.10 -> origin/orig/release/1.10 2025-08-26T20:40:03.2156306Z * [new branch] orig/release/1.11 -> origin/orig/release/1.11 2025-08-26T20:40:03.2156801Z * [new branch] orig/release/1.12 -> origin/orig/release/1.12 2025-08-26T20:40:03.2157374Z * [new branch] orig/release/1.13 -> origin/orig/release/1.13 2025-08-26T20:40:03.2157900Z * [new branch] orig/release/1.6 -> origin/orig/release/1.6 2025-08-26T20:40:03.2158377Z * [new branch] orig/release/1.7 -> origin/orig/release/1.7 2025-08-26T20:40:03.2159364Z * [new branch] orig/release/1.8 -> origin/orig/release/1.8 2025-08-26T20:40:03.2159849Z * [new branch] orig/release/1.9 -> origin/orig/release/1.9 2025-08-26T20:40:03.2160323Z * [new branch] orig/release/2.0 -> origin/orig/release/2.0 2025-08-26T20:40:03.2160799Z * [new branch] orig/release/2.1 -> origin/orig/release/2.1 2025-08-26T20:40:03.2161278Z * [new branch] orig/release/2.2 -> origin/orig/release/2.2 2025-08-26T20:40:03.2161848Z * [new branch] orig/release/2.3 -> origin/orig/release/2.3 2025-08-26T20:40:03.2162334Z * [new branch] orig/release/2.4 -> origin/orig/release/2.4 2025-08-26T20:40:03.2162806Z * [new branch] orig/release/2.5 -> origin/orig/release/2.5 2025-08-26T20:40:03.2163389Z * [new branch] orig/release/2.6 -> origin/orig/release/2.6 2025-08-26T20:40:03.2163932Z * [new branch] orig/release/2.7 -> origin/orig/release/2.7 2025-08-26T20:40:03.2164408Z * [new branch] orig/release/2.8 -> origin/orig/release/2.8 2025-08-26T20:40:03.2164886Z * [new branch] oulgen/fx_graph -> origin/oulgen/fx_graph 2025-08-26T20:40:03.2165352Z * [new branch] padded-tensor -> origin/padded-tensor 2025-08-26T20:40:03.2165818Z * [new branch] parallel_cat -> origin/parallel_cat 2025-08-26T20:40:03.2166245Z * [new branch] pca2 -> origin/pca2 2025-08-26T20:40:03.2166701Z * [new branch] pianpwk-patch-1 -> origin/pianpwk-patch-1 2025-08-26T20:40:03.2569871Z * [new branch] pianpwk/backed_size_oblivious_export -> origin/pianpwk/backed_size_oblivious_export 2025-08-26T20:40:03.2570557Z * [new branch] pianpwk/dde_repeat_cat -> origin/pianpwk/dde_repeat_cat 2025-08-26T20:40:03.2571168Z * [new branch] pianpwk/invalidate_fake_memo -> origin/pianpwk/invalidate_fake_memo 2025-08-26T20:40:03.2571739Z * [new branch] pianpwk/max_1_strides -> origin/pianpwk/max_1_strides 2025-08-26T20:40:03.2572287Z * [new branch] pianpwk/nonzero_memo -> origin/pianpwk/nonzero_memo 2025-08-26T20:40:03.2572930Z * [new branch] pianpwk/oblivious_reshape_view_better -> origin/pianpwk/oblivious_reshape_view_better 2025-08-26T20:40:03.2573708Z * [new branch] pianpwk/oblivious_should_swap -> origin/pianpwk/oblivious_should_swap 2025-08-26T20:40:03.2574367Z * [new branch] pianpwk/oblivious_slice_forward -> origin/pianpwk/oblivious_slice_forward 2025-08-26T20:40:03.2574975Z * [new branch] pianpwk/oblivious_where -> origin/pianpwk/oblivious_where 2025-08-26T20:40:03.2575530Z * [new branch] pianpwk/param_static_pgo -> origin/pianpwk/param_static_pgo 2025-08-26T20:40:03.2576097Z * [new branch] pianpwk/pre_forward_hook -> origin/pianpwk/pre_forward_hook 2025-08-26T20:40:03.2576693Z * [new branch] pianpwk/remove_guard_fail_break -> origin/pianpwk/remove_guard_fail_break 2025-08-26T20:40:03.2577319Z * [new branch] pianpwk/slice_fresh_symbols -> origin/pianpwk/slice_fresh_symbols 2025-08-26T20:40:03.2577906Z * [new branch] pianpwk/test_slice_fake_impl -> origin/pianpwk/test_slice_fake_impl 2025-08-26T20:40:03.2578521Z * [new branch] pianpwk/unbacked_channels_last -> origin/pianpwk/unbacked_channels_last 2025-08-26T20:40:03.2579199Z * [new branch] pianpwk/unbacked_safe_conv1d -> origin/pianpwk/unbacked_safe_conv1d 2025-08-26T20:40:03.2579840Z * [new branch] pianpwk/unbacked_sdpa_flash -> origin/pianpwk/unbacked_sdpa_flash 2025-08-26T20:40:03.2580437Z * [new branch] pianpwk/unbacked_should_swap -> origin/pianpwk/unbacked_should_swap 2025-08-26T20:40:03.2581617Z * [new branch] pianpwk/unbacked_should_swap_2 -> origin/pianpwk/unbacked_should_swap_2 2025-08-26T20:40:03.2582250Z * [new branch] pianpwk/unbacked_slice_binding -> origin/pianpwk/unbacked_slice_binding 2025-08-26T20:40:03.2582893Z * [new branch] pianpwk/unbacked_slice_forward -> origin/pianpwk/unbacked_slice_forward 2025-08-26T20:40:03.2583473Z * [new branch] pianpwk/wan21_reshape -> origin/pianpwk/wan21_reshape 2025-08-26T20:40:03.2584185Z * [new branch] pianpwk/whitelist_optimizer -> origin/pianpwk/whitelist_optimizer 2025-08-26T20:40:03.2584780Z * [new branch] pin-torchao -> origin/pin-torchao 2025-08-26T20:40:03.2585338Z * [new branch] piz/fall_back_missing_0716 -> origin/piz/fall_back_missing_0716 2025-08-26T20:40:03.2585911Z * [new branch] piz/fix_sort_ -> origin/piz/fix_sort_ 2025-08-26T20:40:03.2586423Z * [new branch] piz/improve_scatter_0808 -> origin/piz/improve_scatter_0808 2025-08-26T20:40:03.2586947Z * [new branch] pool-separate -> origin/pool-separate 2025-08-26T20:40:03.2587393Z * [new branch] pr-156087 -> origin/pr-156087 2025-08-26T20:40:03.2587833Z * [new branch] pr/131860 -> origin/pr/131860 2025-08-26T20:40:03.2588295Z * [new branch] predispatch_to -> origin/predispatch_to 2025-08-26T20:40:03.2588762Z * [new branch] pt-opt-cuda3 -> origin/pt-opt-cuda3 2025-08-26T20:40:03.2589281Z * [new branch] pt2e-cache-model-device -> origin/pt2e-cache-model-device 2025-08-26T20:40:03.2589798Z * [new branch] pyobjectslot -> origin/pyobjectslot 2025-08-26T20:40:03.2590309Z * [new branch] python_compiled_autograd -> origin/python_compiled_autograd 2025-08-26T20:40:03.2590965Z * [new branch] qchip/export-D54134695 -> origin/qchip/export-D54134695 2025-08-26T20:40:03.2591459Z * [new branch] quint-bits -> origin/quint-bits 2025-08-26T20:40:03.2591907Z * [new branch] release/1.10 -> origin/release/1.10 2025-08-26T20:40:03.2592345Z * [new branch] release/1.11 -> origin/release/1.11 2025-08-26T20:40:03.2592789Z * [new branch] release/1.12 -> origin/release/1.12 2025-08-26T20:40:03.2593243Z * [new branch] release/1.13 -> origin/release/1.13 2025-08-26T20:40:03.2593681Z * [new branch] release/1.4 -> origin/release/1.4 2025-08-26T20:40:03.2594128Z * [new branch] release/1.4.1 -> origin/release/1.4.1 2025-08-26T20:40:03.2594563Z * [new branch] release/1.5 -> origin/release/1.5 2025-08-26T20:40:03.2595014Z * [new branch] release/1.6 -> origin/release/1.6 2025-08-26T20:40:03.2595440Z * [new branch] release/1.7 -> origin/release/1.7 2025-08-26T20:40:03.2982222Z * [new branch] release/1.8 -> origin/release/1.8 2025-08-26T20:40:03.2982737Z * [new branch] release/1.9 -> origin/release/1.9 2025-08-26T20:40:03.2983186Z * [new branch] release/2.0 -> origin/release/2.0 2025-08-26T20:40:03.2983630Z * [new branch] release/2.1 -> origin/release/2.1 2025-08-26T20:40:03.2984083Z * [new branch] release/2.2 -> origin/release/2.2 2025-08-26T20:40:03.2984528Z * [new branch] release/2.3 -> origin/release/2.3 2025-08-26T20:40:03.2984958Z * [new branch] release/2.4 -> origin/release/2.4 2025-08-26T20:40:03.2985430Z * [new branch] release/2.5 -> origin/release/2.5 2025-08-26T20:40:03.2986549Z * [new branch] release/2.6 -> origin/release/2.6 2025-08-26T20:40:03.2986984Z * [new branch] release/2.7 -> origin/release/2.7 2025-08-26T20:40:03.2987431Z * [new branch] release/2.8 -> origin/release/2.8 2025-08-26T20:40:03.2987876Z * [new branch] release_notes -> origin/release_notes 2025-08-26T20:40:03.2988388Z * [new branch] remove-actionable-label -> origin/remove-actionable-label 2025-08-26T20:40:03.2989036Z * [new branch] remove-ao -> origin/remove-ao 2025-08-26T20:40:03.2989667Z * [new branch] replace-pytorch-labs-20250812-195836 -> origin/replace-pytorch-labs-20250812-195836 2025-08-26T20:40:03.2990443Z * [new branch] replace-pytorch-labs-20250812-200248 -> origin/replace-pytorch-labs-20250812-200248 2025-08-26T20:40:03.2991262Z * [new branch] replace-pytorch-labs-20250812-200324 -> origin/replace-pytorch-labs-20250812-200324 2025-08-26T20:40:03.2992066Z * [new branch] replace-pytorch-labs-20250812-204020 -> origin/replace-pytorch-labs-20250812-204020 2025-08-26T20:40:03.2992822Z * [new branch] replace-pytorch-labs-20250812-204125 -> origin/replace-pytorch-labs-20250812-204125 2025-08-26T20:40:03.2993578Z * [new branch] replace-pytorch-labs-20250812-205624 -> origin/replace-pytorch-labs-20250812-205624 2025-08-26T20:40:03.2994376Z * [new branch] revert-131069-gh/krzysztofjordan/1/head -> origin/revert-131069-gh/krzysztofjordan/1/head 2025-08-26T20:40:03.2995136Z * [new branch] revert-131469-gh/andrewor14/51/head -> origin/revert-131469-gh/andrewor14/51/head 2025-08-26T20:40:03.2995820Z * [new branch] revert-156870-gh/skarjala/3/head -> origin/revert-156870-gh/skarjala/3/head 2025-08-26T20:40:03.2996712Z * [new branch] revert-157914-cherry-pick-157503-by-pytorch_bot_bot_ -> origin/revert-157914-cherry-pick-157503-by-pytorch_bot_bot_ 2025-08-26T20:40:03.2997549Z * [new branch] revert-direct-updates -> origin/revert-direct-updates 2025-08-26T20:40:03.2998078Z * [new branch] rocm-monitoring -> origin/rocm-monitoring 2025-08-26T20:40:03.2998773Z * [new branch] ryanguo99/cleanup-dynamo-expected-failures -> origin/ryanguo99/cleanup-dynamo-expected-failures 2025-08-26T20:40:03.2999515Z * [new branch] ryanguo99/fix-closure-var -> origin/ryanguo99/fix-closure-var 2025-08-26T20:40:03.3000078Z * [new branch] rzou/faketensor_bench -> origin/rzou/faketensor_bench 2025-08-26T20:40:03.3000551Z * [new branch] rzou/njt -> origin/rzou/njt 2025-08-26T20:40:03.3000999Z * [new branch] rzou/operator -> origin/rzou/operator 2025-08-26T20:40:03.3001445Z * [new branch] rzou/pca -> origin/rzou/pca 2025-08-26T20:40:03.3001889Z * [new branch] rzou/realprop -> origin/rzou/realprop 2025-08-26T20:40:03.3002417Z * [new branch] rzou/setup_context -> origin/rzou/setup_context 2025-08-26T20:40:03.3003093Z * [new branch] sanchitintel/refactor_aten_int8_woq_gemm -> origin/sanchitintel/refactor_aten_int8_woq_gemm 2025-08-26T20:40:03.3004005Z * [new branch] sanchitintel/weird_thing_with_test_cpu_select_algorithm -> origin/sanchitintel/weird_thing_with_test_cpu_select_algorithm 2025-08-26T20:40:03.3004823Z * [new branch] sapling-pr-archive-SS-JIA -> origin/sapling-pr-archive-SS-JIA 2025-08-26T20:40:03.3005319Z * [new branch] save -> origin/save 2025-08-26T20:40:03.3005742Z * [new branch] sdym/2.5.1 -> origin/sdym/2.5.1 2025-08-26T20:40:03.3006213Z * [new branch] seemethere-patch-1 -> origin/seemethere-patch-1 2025-08-26T20:40:03.3007316Z * [new branch] setup-torchci -> origin/setup-torchci 2025-08-26T20:40:03.3007769Z * [new branch] setupvllm -> origin/setupvllm 2025-08-26T20:40:03.3008282Z * [new branch] share_and_pin_fork -> origin/share_and_pin_fork 2025-08-26T20:40:03.3008834Z * [new branch] shengf/fx-xform-perf -> origin/shengf/fx-xform-perf 2025-08-26T20:40:03.3411067Z * [new branch] shikaili_fp8_allgather -> origin/shikaili_fp8_allgather 2025-08-26T20:40:03.3411901Z * [new branch] shoumikhin-patch-12 -> origin/shoumikhin-patch-12 2025-08-26T20:40:03.3412478Z * [new branch] simplify-fq-per-channel -> origin/simplify-fq-per-channel 2025-08-26T20:40:03.3413044Z * [new branch] solve-accuracy-fix -> origin/solve-accuracy-fix 2025-08-26T20:40:03.3413553Z * [new branch] sqzhang/flight4 -> origin/sqzhang/flight4 2025-08-26T20:40:03.3414071Z * [new branch] sqzhang/flight4plus -> origin/sqzhang/flight4plus 2025-08-26T20:40:03.3414632Z * [new branch] sraikund/record_funct_test -> origin/sraikund/record_funct_test 2025-08-26T20:40:03.3415171Z * [new branch] sraikund16/test -> origin/sraikund16/test 2025-08-26T20:40:03.3415710Z * [new branch] stablize-compilation-time -> origin/stablize-compilation-time 2025-08-26T20:40:03.3416332Z * [new branch] standalone-templates -> origin/standalone-templates 2025-08-26T20:40:03.3416947Z * [new branch] standalone_package_weights -> origin/standalone_package_weights 2025-08-26T20:40:03.3417496Z * [new branch] starterTaskUpdate -> origin/starterTaskUpdate 2025-08-26T20:40:03.3417981Z * [new branch] subgraph_fuse -> origin/subgraph_fuse 2025-08-26T20:40:03.3418495Z * [new branch] support-uv-in-collect_env -> origin/support-uv-in-collect_env 2025-08-26T20:40:03.3419012Z * [new branch] sve-poc -> origin/sve-poc 2025-08-26T20:40:03.3419463Z * [new branch] svekars-patch-1 -> origin/svekars-patch-1 2025-08-26T20:40:03.3419929Z * [new branch] switch-bn -> origin/switch-bn 2025-08-26T20:40:03.3420431Z * [new branch] sympy-bottleneck-repro -> origin/sympy-bottleneck-repro 2025-08-26T20:40:03.3421019Z * [new branch] tenpercent/ck_inductor_gfx950 -> origin/tenpercent/ck_inductor_gfx950 2025-08-26T20:40:03.3421606Z * [new branch] tensordict_integration -> origin/tensordict_integration 2025-08-26T20:40:03.3422138Z * [new branch] test-7054 -> origin/test-7054 2025-08-26T20:40:03.3422817Z * [new branch] test-half-migration-internally -> origin/test-half-migration-internally 2025-08-26T20:40:03.3423468Z * [new branch] test-move-conda-builds -> origin/test-move-conda-builds 2025-08-26T20:40:03.3424070Z * [new branch] test-myst-markdown-docstring -> origin/test-myst-markdown-docstring 2025-08-26T20:40:03.3424614Z * [new branch] test-old -> origin/test-old 2025-08-26T20:40:03.3425157Z * [new branch] test-vec-migration-internally -> origin/test-vec-migration-internally 2025-08-26T20:40:03.3425716Z * [new branch] test/bmm_heur -> origin/test/bmm_heur 2025-08-26T20:40:03.3426233Z * [new branch] test/inductor -> origin/test/inductor 2025-08-26T20:40:03.3426776Z * [new branch] tianren/flex_paged_attn_fix -> origin/tianren/flex_paged_attn_fix 2025-08-26T20:40:03.3427335Z * [new branch] tidy_performance_cyy -> origin/tidy_performance_cyy 2025-08-26T20:40:03.3427881Z * [new branch] torchtitan_ep -> origin/torchtitan_ep 2025-08-26T20:40:03.3428949Z * [new branch] trace_fsdp_torchtune_lora -> origin/trace_fsdp_torchtune_lora 2025-08-26T20:40:03.3429503Z * [new branch] traceable_fsdp_unit_tests -> origin/traceable_fsdp_unit_tests 2025-08-26T20:40:03.3430036Z * [new branch] tree_loop_vec_base -> origin/tree_loop_vec_base 2025-08-26T20:40:03.3430512Z * [new branch] tree_vec_base -> origin/tree_vec_base 2025-08-26T20:40:03.3430964Z * [new branch] triton-update -> origin/triton-update 2025-08-26T20:40:03.3431528Z * [new branch] triton_kernel -> origin/triton_kernel 2025-08-26T20:40:03.3432011Z * [new branch] triton_kernel_perf -> origin/triton_kernel_perf 2025-08-26T20:40:03.3432485Z * [new branch] try-runllm -> origin/try-runllm 2025-08-26T20:40:03.3432925Z * [new branch] tt_pkg_1908 -> origin/tt_pkg_1908 2025-08-26T20:40:03.3433530Z * [new branch] tweak-transformer-dependabot -> origin/tweak-transformer-dependabot 2025-08-26T20:40:03.3434127Z * [new branch] type_dec -> origin/type_dec 2025-08-26T20:40:03.3434635Z * [new branch] udate-sphinx-dependancies -> origin/udate-sphinx-dependancies 2025-08-26T20:40:03.3435369Z * [new branch] update-audio-commit-hash/16583472358-1693-1 -> origin/update-audio-commit-hash/16583472358-1693-1 2025-08-26T20:40:03.3436224Z * [new branch] update-audio-commit-hash/16663082088-1700-1 -> origin/update-audio-commit-hash/16663082088-1700-1 2025-08-26T20:40:03.3437057Z * [new branch] update-audio-commit-hash/16737365217-1704-1 -> origin/update-audio-commit-hash/16737365217-1704-1 2025-08-26T20:40:03.3739234Z * [new branch] update-audio-commit-hash/16791960928-1711-1 -> origin/update-audio-commit-hash/16791960928-1711-1 2025-08-26T20:40:03.3740142Z * [new branch] update-audio-commit-hash/16818882925-1712-1 -> origin/update-audio-commit-hash/16818882925-1712-1 2025-08-26T20:40:03.3741098Z * [new branch] update-audio-commit-hash/16895560422-1720-1 -> origin/update-audio-commit-hash/16895560422-1720-1 2025-08-26T20:40:03.3741991Z * [new branch] update-audio-commit-hash/16924174496-1738-1 -> origin/update-audio-commit-hash/16924174496-1738-1 2025-08-26T20:40:03.3742807Z * [new branch] update-audio-commit-hash/17002010821-1749-1 -> origin/update-audio-commit-hash/17002010821-1749-1 2025-08-26T20:40:03.3743646Z * [new branch] update-audio-commit-hash/17056004427-1766-1 -> origin/update-audio-commit-hash/17056004427-1766-1 2025-08-26T20:40:03.3744474Z * [new branch] update-audio-commit-hash/17085054029-1767-1 -> origin/update-audio-commit-hash/17085054029-1767-1 2025-08-26T20:40:03.3745297Z * [new branch] update-audio-commit-hash/17142507405-1771-1 -> origin/update-audio-commit-hash/17142507405-1771-1 2025-08-26T20:40:03.3746195Z * [new branch] update-audio-commit-hash/17168762740-1773-1 -> origin/update-audio-commit-hash/17168762740-1773-1 2025-08-26T20:40:03.3746918Z * [new branch] update-dynamic-shapes-doc -> origin/update-dynamic-shapes-doc 2025-08-26T20:40:03.3747714Z * [new branch] update-executorch-commit-hash/15694981040-1626-1 -> origin/update-executorch-commit-hash/15694981040-1626-1 2025-08-26T20:40:03.3748629Z * [new branch] update-triton-commit-hash/13663274526-1487-2 -> origin/update-triton-commit-hash/13663274526-1487-2 2025-08-26T20:40:03.3749479Z * [new branch] update-vision-commit-hash/15336342773-1607-1 -> origin/update-vision-commit-hash/15336342773-1607-1 2025-08-26T20:40:03.3750315Z * [new branch] update-vllm-commit-hash/16545403308-1687-1 -> origin/update-vllm-commit-hash/16545403308-1687-1 2025-08-26T20:40:03.3751130Z * [new branch] update-vllm-commit-hash/16557202787-1688-1 -> origin/update-vllm-commit-hash/16557202787-1688-1 2025-08-26T20:40:03.3752502Z * [new branch] update-vllm-commit-hash/16583472358-1693-1 -> origin/update-vllm-commit-hash/16583472358-1693-1 2025-08-26T20:40:03.3753320Z * [new branch] update-vllm-commit-hash/16663082088-1700-1 -> origin/update-vllm-commit-hash/16663082088-1700-1 2025-08-26T20:40:03.3754142Z * [new branch] update-vllm-commit-hash/16737365217-1704-1 -> origin/update-vllm-commit-hash/16737365217-1704-1 2025-08-26T20:40:03.3755062Z * [new branch] update-vllm-commit-hash/16843157111-1713-1 -> origin/update-vllm-commit-hash/16843157111-1713-1 2025-08-26T20:40:03.3755885Z * [new branch] update-vllm-commit-hash/16855312394-1714-1 -> origin/update-vllm-commit-hash/16855312394-1714-1 2025-08-26T20:40:03.3756690Z * [new branch] update-vllm-commit-hash/16924174496-1738-1 -> origin/update-vllm-commit-hash/16924174496-1738-1 2025-08-26T20:40:03.3757510Z * [new branch] update-vllm-commit-hash/16952608705-1745-1 -> origin/update-vllm-commit-hash/16952608705-1745-1 2025-08-26T20:40:03.3758316Z * [new branch] update-vllm-commit-hash/16979836546-1748-1 -> origin/update-vllm-commit-hash/16979836546-1748-1 2025-08-26T20:40:03.3759133Z * [new branch] update-vllm-commit-hash/17014576881-1756-1 -> origin/update-vllm-commit-hash/17014576881-1756-1 2025-08-26T20:40:03.3759943Z * [new branch] update-vllm-commit-hash/17027830869-1761-1 -> origin/update-vllm-commit-hash/17027830869-1761-1 2025-08-26T20:40:03.3760743Z * [new branch] update-vllm-commit-hash/17056004427-1766-1 -> origin/update-vllm-commit-hash/17056004427-1766-1 2025-08-26T20:40:03.3761548Z * [new branch] update-vllm-commit-hash/17085054029-1767-1 -> origin/update-vllm-commit-hash/17085054029-1767-1 2025-08-26T20:40:03.3762363Z * [new branch] update-vllm-commit-hash/17113610216-1768-1 -> origin/update-vllm-commit-hash/17113610216-1768-1 2025-08-26T20:40:03.3763165Z * [new branch] update-vllm-commit-hash/17142507405-1771-1 -> origin/update-vllm-commit-hash/17142507405-1771-1 2025-08-26T20:40:03.3763970Z * [new branch] update-vllm-commit-hash/17181878974-1774-1 -> origin/update-vllm-commit-hash/17181878974-1774-1 2025-08-26T20:40:03.3764757Z * [new branch] update-xla-commit-hash/16260974441-194-1 -> origin/update-xla-commit-hash/16260974441-194-1 2025-08-26T20:40:03.3765535Z * [new branch] update-xla-commit-hash/16717126778-197-1 -> origin/update-xla-commit-hash/16717126778-197-1 2025-08-26T20:40:03.3766305Z * [new branch] update-xla-commit-hash/16873912760-198-1 -> origin/update-xla-commit-hash/16873912760-198-1 2025-08-26T20:40:03.4192183Z * [new branch] update-xla-commit-hash/17034266655-199-1 -> origin/update-xla-commit-hash/17034266655-199-1 2025-08-26T20:40:03.4193170Z * [new branch] update-xla-commit-hash/17202464405-200-1 -> origin/update-xla-commit-hash/17202464405-200-1 2025-08-26T20:40:03.4194051Z * [new branch] update_docs_torch_multinomial_issue#125388 -> origin/update_docs_torch_multinomial_issue#125388 2025-08-26T20:40:03.4194800Z * [new branch] update_executorch_pin -> origin/update_executorch_pin 2025-08-26T20:40:03.4195440Z * [new branch] update_slow_tests_1722488736 -> origin/update_slow_tests_1722488736 2025-08-26T20:40:03.4196047Z * [new branch] update_slow_tests_1722879173 -> origin/update_slow_tests_1722879173 2025-08-26T20:40:03.4196717Z * [new branch] update_slow_tests_1752478971 -> origin/update_slow_tests_1752478971 2025-08-26T20:40:03.4197364Z * [new branch] update_slow_tests_1755502951 -> origin/update_slow_tests_1755502951 2025-08-26T20:40:03.4197959Z * [new branch] update_slow_tests_1756107664 -> origin/update_slow_tests_1756107664 2025-08-26T20:40:03.4199212Z * [new branch] update_submodule_FBGEMM -> origin/update_submodule_FBGEMM 2025-08-26T20:40:03.4199829Z * [new branch] update_submodule_kineto -> origin/update_submodule_kineto 2025-08-26T20:40:03.4200477Z * [new branch] update_submodule_tensorpipe -> origin/update_submodule_tensorpipe 2025-08-26T20:40:03.4201028Z * [new branch] v0.1.2 -> origin/v0.1.2 2025-08-26T20:40:03.4201485Z * [new branch] v1.0.1 -> origin/v1.0.1 2025-08-26T20:40:03.4202111Z * [new branch] v1.0.3 -> origin/v1.0.3 2025-08-26T20:40:03.4202551Z * [new branch] v1.1.0 -> origin/v1.1.0 2025-08-26T20:40:03.4202997Z * [new branch] v1.2.0 -> origin/v1.2.0 2025-08-26T20:40:03.4203431Z * [new branch] v1.3.0 -> origin/v1.3.0 2025-08-26T20:40:03.4203921Z * [new branch] v1.3.1 -> origin/v1.3.1 2025-08-26T20:40:03.4204390Z * [new branch] validate_fn -> origin/validate_fn 2025-08-26T20:40:03.4204897Z * [new branch] validations_2.6 -> origin/validations_2.6 2025-08-26T20:40:03.4205420Z * [new branch] validations_2.8 -> origin/validations_2.8 2025-08-26T20:40:03.4205960Z * [new branch] viable/strict -> origin/viable/strict 2025-08-26T20:40:03.4206460Z * [new branch] vllmbuildci -> origin/vllmbuildci 2025-08-26T20:40:03.4206956Z * [new branch] vllmpin -> origin/vllmpin 2025-08-26T20:40:03.4207524Z * [new branch] wdvr/conda_devcontainer -> origin/wdvr/conda_devcontainer 2025-08-26T20:40:03.4208165Z * [new branch] wdvr/fix_logging_test -> origin/wdvr/fix_logging_test 2025-08-26T20:40:03.4208687Z * [new branch] wdvr/iss_145259 -> origin/wdvr/iss_145259 2025-08-26T20:40:03.4209235Z * [new branch] weight_sharing_cpp -> origin/weight_sharing_cpp 2025-08-26T20:40:03.4209796Z * [new branch] whc/flight4 -> origin/whc/flight4 2025-08-26T20:40:03.4210285Z * [new branch] whc/flight51 -> origin/whc/flight51 2025-08-26T20:40:03.4210780Z * [new branch] whc/flight53 -> origin/whc/flight53 2025-08-26T20:40:03.4211316Z * [new branch] whc/p2phang -> origin/whc/p2phang 2025-08-26T20:40:03.4211810Z * [new branch] whc/stage2 -> origin/whc/stage2 2025-08-26T20:40:03.4212279Z * [new branch] whc/uneven -> origin/whc/uneven 2025-08-26T20:40:03.4212833Z * [new branch] whc/uneven-merge -> origin/whc/uneven-merge 2025-08-26T20:40:03.4213342Z * [new branch] win_warnings -> origin/win_warnings 2025-08-26T20:40:03.4213850Z * [new branch] workonoldcommit -> origin/workonoldcommit 2025-08-26T20:40:03.4214490Z * [new branch] wwen/programming-model-2.8 -> origin/wwen/programming-model-2.8 2025-08-26T20:40:03.4215054Z * [new branch] xmfan/ca_0516 -> origin/xmfan/ca_0516 2025-08-26T20:40:03.4215595Z * [new branch] xmfan/ca_1051b93192 -> origin/xmfan/ca_1051b93192 2025-08-26T20:40:03.4216360Z * [new branch] xmfan/ca_1a722f62c248391fc4a542e8851a5559aa356ae8 -> origin/xmfan/ca_1a722f62c248391fc4a542e8851a5559aa356ae8 2025-08-26T20:40:03.4217069Z * [new branch] xmfan/ca_5a2be192d1 -> origin/xmfan/ca_5a2be192d1 2025-08-26T20:40:03.4217556Z * [new branch] xmfan/ca_9d59b516e9 -> origin/xmfan/ca_9d59b516e9 2025-08-26T20:40:03.4218018Z * [new branch] xmfan/ca_api -> origin/xmfan/ca_api 2025-08-26T20:40:03.4218900Z * [new branch] xmfan/ca_apr8 -> origin/xmfan/ca_apr8 2025-08-26T20:40:03.4640171Z * [new branch] xmfan/ca_base -> origin/xmfan/ca_base 2025-08-26T20:40:03.4640687Z * [new branch] xmfan/ca_cudagraphs -> origin/xmfan/ca_cudagraphs 2025-08-26T20:40:03.4641272Z * [new branch] xmfan/ca_dynamic -> origin/xmfan/ca_dynamic 2025-08-26T20:40:03.4641747Z * [new branch] xmfan/ca_fix_dyn -> origin/xmfan/ca_fix_dyn 2025-08-26T20:40:03.4642404Z * [new branch] xmfan/ca_fix_lowering -> origin/xmfan/ca_fix_lowering 2025-08-26T20:40:03.4642932Z * [new branch] xmfan/ca_fix_polyfills -> origin/xmfan/ca_fix_polyfills 2025-08-26T20:40:03.4643421Z * [new branch] xmfan/ca_jan3 -> origin/xmfan/ca_jan3 2025-08-26T20:40:03.4643887Z * [new branch] xmfan/ca_jun18 -> origin/xmfan/ca_jun18 2025-08-26T20:40:03.4644345Z * [new branch] xmfan/ca_jun24 -> origin/xmfan/ca_jun24 2025-08-26T20:40:03.4644809Z * [new branch] xmfan/ca_mem_base -> origin/xmfan/ca_mem_base 2025-08-26T20:40:03.4645279Z * [new branch] xmfan/ca_mem_fix -> origin/xmfan/ca_mem_fix 2025-08-26T20:40:03.4645766Z * [new branch] xmfan/ca_memory_fix -> origin/xmfan/ca_memory_fix 2025-08-26T20:40:03.4646302Z * [new branch] xmfan/ca_memory_fix_rebased -> origin/xmfan/ca_memory_fix_rebased 2025-08-26T20:40:03.4646976Z * [new branch] xmfan/ca_memory_fix_rebased2 -> origin/xmfan/ca_memory_fix_rebased2 2025-08-26T20:40:03.4647521Z * [new branch] xmfan/ca_move_to_cuda -> origin/xmfan/ca_move_to_cuda 2025-08-26T20:40:03.4648019Z * [new branch] xmfan/ca_nested -> origin/xmfan/ca_nested 2025-08-26T20:40:03.4648489Z * [new branch] xmfan/ca_overhead -> origin/xmfan/ca_overhead 2025-08-26T20:40:03.4649030Z * [new branch] xmfan/ca_overhead_0eba7e5451 -> origin/xmfan/ca_overhead_0eba7e5451 2025-08-26T20:40:03.4649552Z * [new branch] xmfan/ca_scalar -> origin/xmfan/ca_scalar 2025-08-26T20:40:03.4650066Z * [new branch] xmfan/ca_subclass_mem_fix -> origin/xmfan/ca_subclass_mem_fix 2025-08-26T20:40:03.4650580Z * [new branch] xmfan/ca_warm_mem -> origin/xmfan/ca_warm_mem 2025-08-26T20:40:03.4651071Z * [new branch] xmfan/ca_warm_mem_base -> origin/xmfan/ca_warm_mem_base 2025-08-26T20:40:03.4651570Z * [new branch] xmfan/cacu_jun18 -> origin/xmfan/cacu_jun18 2025-08-26T20:40:03.4652038Z * [new branch] xmfan/cacu_jun19 -> origin/xmfan/cacu_jun19 2025-08-26T20:40:03.4652556Z * [new branch] xmfan/cacu_jun4 -> origin/xmfan/cacu_jun4 2025-08-26T20:40:03.4653095Z * [new branch] xmfan/cacu_may27 -> origin/xmfan/cacu_may27 2025-08-26T20:40:03.4653636Z * [new branch] xmfan/circular_dep -> origin/xmfan/circular_dep 2025-08-26T20:40:03.4654288Z * [new branch] xmfan/compiled_autograd_feb_29 -> origin/xmfan/compiled_autograd_feb_29 2025-08-26T20:40:03.4654951Z * [new branch] xmfan/disable_duck_shape -> origin/xmfan/disable_duck_shape 2025-08-26T20:40:03.4655586Z * [new branch] xmfan/fca_cpp_node_passthrough -> origin/xmfan/fca_cpp_node_passthrough 2025-08-26T20:40:03.4656219Z * [new branch] xmfan/issue_123374 -> origin/xmfan/issue_123374 2025-08-26T20:40:03.4657032Z * [new branch] xmfan/post_3945954741e2d37023c5d6954f9483008e0892f9 -> origin/xmfan/post_3945954741e2d37023c5d6954f9483008e0892f9 2025-08-26T20:40:03.4658085Z * [new branch] xmfan/pre_3945954741e2d37023c5d6954f9483008e0892f9 -> origin/xmfan/pre_3945954741e2d37023c5d6954f9483008e0892f9 2025-08-26T20:40:03.4659384Z * [new branch] xmfan/segfault_test -> origin/xmfan/segfault_test 2025-08-26T20:40:03.4659975Z * [new branch] xmfan/single_step -> origin/xmfan/single_step 2025-08-26T20:40:03.4660493Z * [new branch] xmfan/sth_0829 -> origin/xmfan/sth_0829 2025-08-26T20:40:03.4660987Z * [new branch] xmfan/test -> origin/xmfan/test 2025-08-26T20:40:03.4661574Z * [new branch] yguo/debug-0226-constexpr -> origin/yguo/debug-0226-constexpr 2025-08-26T20:40:03.4662269Z * [new branch] yguo/new_latest_changes -> origin/yguo/new_latest_changes 2025-08-26T20:40:03.4662930Z * [new branch] yguo/patch_constexpr_changes -> origin/yguo/patch_constexpr_changes 2025-08-26T20:40:03.4663560Z * [new branch] yihan_quantization -> origin/yihan_quantization 2025-08-26T20:40:03.4664172Z * [new branch] yiming/add_jit_trace_benchmark -> origin/yiming/add_jit_trace_benchmark 2025-08-26T20:40:03.4664872Z * [new branch] yiming/add_nativert_benchmark -> origin/yiming/add_nativert_benchmark 2025-08-26T20:40:03.4665494Z * [new branch] yiming/bootcamp -> origin/yiming/bootcamp 2025-08-26T20:40:03.4666086Z * [new branch] zainr/canary-test -> origin/zainr/canary-test 2025-08-26T20:40:03.4666666Z * [new branch] zainr/cleanup-gh-runners -> origin/zainr/cleanup-gh-runners 2025-08-26T20:40:03.5006592Z * [new branch] zainr/git-push-v2 -> origin/zainr/git-push-v2 2025-08-26T20:40:03.5007211Z * [new branch] zainr/pull-migration-c -> origin/zainr/pull-migration-c 2025-08-26T20:40:03.5007745Z * [new branch] zainr/test2 -> origin/zainr/test2 2025-08-26T20:40:03.5034625Z * [new branch] zainr/unstable -> origin/zainr/unstable 2025-08-26T20:40:03.5035290Z * [new branch] zainr/unstable-xla -> origin/zainr/unstable-xla 2025-08-26T20:40:03.5035820Z * [new branch] zainr/uv-pip-fix -> origin/zainr/uv-pip-fix 2025-08-26T20:40:03.5036289Z * [new branch] zainr/vs-aarch64 -> origin/zainr/vs-aarch64 2025-08-26T20:40:03.5036847Z * [new branch] zasdfgbnm-patch-3 -> origin/zasdfgbnm-patch-3 2025-08-26T20:40:03.5037344Z * [new branch] zb2p -> origin/zb2p 2025-08-26T20:40:03.5037801Z * [new branch] zdevito-patch-1 -> origin/zdevito-patch-1 2025-08-26T20:40:03.5038326Z * [new branch] zero_grad_optimization -> origin/zero_grad_optimization 2025-08-26T20:40:03.5038875Z * [new branch] zeros-and-scatter-part2 -> origin/zeros-and-scatter-part2 2025-08-26T20:40:03.5039419Z * [new branch] zhxchen17/scratch/0 -> origin/zhxchen17/scratch/0 2025-08-26T20:40:03.5039938Z * [new branch] zhxhcen17/moodycamel -> origin/zhxhcen17/moodycamel 2025-08-26T20:40:03.5040430Z * [new branch] zxiiro/main -> origin/zxiiro/main 2025-08-26T20:40:03.5040871Z * [new branch] zxiiro/test -> origin/zxiiro/test 2025-08-26T20:40:03.5041605Z * [new tag] bc2caa7fdf006894eff7af936babde69ab5a40f8-huydhn-debug -> bc2caa7fdf006894eff7af936babde69ab5a40f8-huydhn-debug 2025-08-26T20:40:03.5042361Z * [new tag] ci/binaries/77164 -> ci/binaries/77164 2025-08-26T20:40:03.5042793Z * [new tag] ciflow/binaries/153920 -> ciflow/binaries/153920 2025-08-26T20:40:03.5043275Z * [new tag] ciflow/binaries/158104 -> ciflow/binaries/158104 2025-08-26T20:40:03.5043712Z * [new tag] ciflow/binaries/160229 -> ciflow/binaries/160229 2025-08-26T20:40:03.5044158Z * [new tag] ciflow/binaries/160853 -> ciflow/binaries/160853 2025-08-26T20:40:03.5045107Z * [new tag] ciflow/binaries/161257 -> ciflow/binaries/161257 2025-08-26T20:40:03.5045619Z * [new tag] ciflow/binaries_libtorch/156049 -> ciflow/binaries_libtorch/156049 2025-08-26T20:40:03.5046151Z * [new tag] ciflow/binaries_wheel/156049 -> ciflow/binaries_wheel/156049 2025-08-26T20:40:03.5046652Z * [new tag] ciflow/binaries_wheel/158733 -> ciflow/binaries_wheel/158733 2025-08-26T20:40:03.5047182Z * [new tag] ciflow/binaries_wheel/160207 -> ciflow/binaries_wheel/160207 2025-08-26T20:40:03.5047767Z * [new tag] ciflow/h100-symm-mem/151845 -> ciflow/h100-symm-mem/151845 2025-08-26T20:40:03.5048288Z * [new tag] ciflow/h100-symm-mem/155923 -> ciflow/h100-symm-mem/155923 2025-08-26T20:40:03.5048796Z * [new tag] ciflow/h100-symm-mem/157635 -> ciflow/h100-symm-mem/157635 2025-08-26T20:40:03.5049258Z * [new tag] ciflow/h100-symm-mem/159562 -> ciflow/h100-symm-mem/159562 2025-08-26T20:40:03.5049722Z * [new tag] ciflow/h100-symm-mem/159889 -> ciflow/h100-symm-mem/159889 2025-08-26T20:40:03.5050181Z * [new tag] ciflow/h100-symm-mem/160825 -> ciflow/h100-symm-mem/160825 2025-08-26T20:40:03.5050639Z * [new tag] ciflow/h100-symm-mem/161008 -> ciflow/h100-symm-mem/161008 2025-08-26T20:40:03.5051108Z * [new tag] ciflow/h100-symm-mem/161090 -> ciflow/h100-symm-mem/161090 2025-08-26T20:40:03.5051578Z * [new tag] ciflow/h100-symm-mem/161214 -> ciflow/h100-symm-mem/161214 2025-08-26T20:40:03.5052056Z * [new tag] ciflow/h100-symm-mem/161217 -> ciflow/h100-symm-mem/161217 2025-08-26T20:40:03.5052526Z * [new tag] ciflow/h100-symm-mem/161232 -> ciflow/h100-symm-mem/161232 2025-08-26T20:40:03.5053008Z * [new tag] ciflow/h100-symm-mem/161257 -> ciflow/h100-symm-mem/161257 2025-08-26T20:40:03.5053488Z * [new tag] ciflow/h100-symm-mem/161309 -> ciflow/h100-symm-mem/161309 2025-08-26T20:40:03.5053958Z * [new tag] ciflow/h100-symm-mem/161470 -> ciflow/h100-symm-mem/161470 2025-08-26T20:40:03.5054478Z * [new tag] ciflow/h100-symm-mem/161471 -> ciflow/h100-symm-mem/161471 2025-08-26T20:40:03.5054988Z * [new tag] ciflow/h100-symm-mem/161532 -> ciflow/h100-symm-mem/161532 2025-08-26T20:40:03.5055471Z * [new tag] ciflow/h100-symm-mem/161533 -> ciflow/h100-symm-mem/161533 2025-08-26T20:40:03.5055934Z * [new tag] ciflow/h100/159158 -> ciflow/h100/159158 2025-08-26T20:40:03.5056337Z * [new tag] ciflow/h100/161225 -> ciflow/h100/161225 2025-08-26T20:40:03.5324623Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/151845 -> ciflow/inductor-perf-test-nightly-rocm/151845 2025-08-26T20:40:03.5325560Z * [new tag] ciflow/inductor-perf-test-nightly-x86-zen/161512 -> ciflow/inductor-perf-test-nightly-x86-zen/161512 2025-08-26T20:40:03.5326354Z * [new tag] ciflow/inductor-periodic/158137 -> ciflow/inductor-periodic/158137 2025-08-26T20:40:03.5326968Z * [new tag] ciflow/inductor-periodic/160807 -> ciflow/inductor-periodic/160807 2025-08-26T20:40:03.5327541Z * [new tag] ciflow/inductor-periodic/161461 -> ciflow/inductor-periodic/161461 2025-08-26T20:40:03.5328123Z * [new tag] ciflow/inductor-periodic/161536 -> ciflow/inductor-periodic/161536 2025-08-26T20:40:03.5329062Z * [new tag] ciflow/inductor-periodic/2f0de0ff9361ca4f2b1e6f9edbc600b5fb6abcd6 -> ciflow/inductor-periodic/2f0de0ff9361ca4f2b1e6f9edbc600b5fb6abcd6 2025-08-26T20:40:03.5330288Z * [new tag] ciflow/inductor-periodic/3e5b021f217a42ae55dc690083f67a28126808ed -> ciflow/inductor-periodic/3e5b021f217a42ae55dc690083f67a28126808ed 2025-08-26T20:40:03.5331491Z * [new tag] ciflow/inductor-periodic/f912c93344caa74e24c8164a2e25fe84a8203073 -> ciflow/inductor-periodic/f912c93344caa74e24c8164a2e25fe84a8203073 2025-08-26T20:40:03.5332557Z * [new tag] ciflow/inductor-rocm/151845 -> ciflow/inductor-rocm/151845 2025-08-26T20:40:03.5333063Z * [new tag] ciflow/inductor-rocm/159158 -> ciflow/inductor-rocm/159158 2025-08-26T20:40:03.5333563Z * [new tag] ciflow/inductor-rocm/160671 -> ciflow/inductor-rocm/160671 2025-08-26T20:40:03.5334057Z * [new tag] ciflow/inductor-rocm/161180 -> ciflow/inductor-rocm/161180 2025-08-26T20:40:03.5334681Z * [new tag] ciflow/inductor-rocm/161225 -> ciflow/inductor-rocm/161225 2025-08-26T20:40:03.5335177Z * [new tag] ciflow/inductor-rocm/161521 -> ciflow/inductor-rocm/161521 2025-08-26T20:40:03.5335708Z * [new tag] ciflow/inductor-windows/160406 -> ciflow/inductor-windows/160406 2025-08-26T20:40:03.5336234Z * [new tag] ciflow/inductor/148492 -> ciflow/inductor/148492 2025-08-26T20:40:03.5336693Z * [new tag] ciflow/inductor/151845 -> ciflow/inductor/151845 2025-08-26T20:40:03.5337145Z * [new tag] ciflow/inductor/154694 -> ciflow/inductor/154694 2025-08-26T20:40:03.5337593Z * [new tag] ciflow/inductor/155072 -> ciflow/inductor/155072 2025-08-26T20:40:03.5338046Z * [new tag] ciflow/inductor/155152 -> ciflow/inductor/155152 2025-08-26T20:40:03.5338489Z * [new tag] ciflow/inductor/155153 -> ciflow/inductor/155153 2025-08-26T20:40:03.5338931Z * [new tag] ciflow/inductor/155154 -> ciflow/inductor/155154 2025-08-26T20:40:03.5339381Z * [new tag] ciflow/inductor/155501 -> ciflow/inductor/155501 2025-08-26T20:40:03.5339820Z * [new tag] ciflow/inductor/155502 -> ciflow/inductor/155502 2025-08-26T20:40:03.5340269Z * [new tag] ciflow/inductor/155503 -> ciflow/inductor/155503 2025-08-26T20:40:03.5340715Z * [new tag] ciflow/inductor/155557 -> ciflow/inductor/155557 2025-08-26T20:40:03.5341159Z * [new tag] ciflow/inductor/155608 -> ciflow/inductor/155608 2025-08-26T20:40:03.5341606Z * [new tag] ciflow/inductor/155923 -> ciflow/inductor/155923 2025-08-26T20:40:03.5342042Z * [new tag] ciflow/inductor/155928 -> ciflow/inductor/155928 2025-08-26T20:40:03.5342494Z * [new tag] ciflow/inductor/156875 -> ciflow/inductor/156875 2025-08-26T20:40:03.5342940Z * [new tag] ciflow/inductor/156967 -> ciflow/inductor/156967 2025-08-26T20:40:03.5343382Z * [new tag] ciflow/inductor/157298 -> ciflow/inductor/157298 2025-08-26T20:40:03.5343830Z * [new tag] ciflow/inductor/157572 -> ciflow/inductor/157572 2025-08-26T20:40:03.5344274Z * [new tag] ciflow/inductor/157635 -> ciflow/inductor/157635 2025-08-26T20:40:03.5344719Z * [new tag] ciflow/inductor/157743 -> ciflow/inductor/157743 2025-08-26T20:40:03.5345160Z * [new tag] ciflow/inductor/157767 -> ciflow/inductor/157767 2025-08-26T20:40:03.5345608Z * [new tag] ciflow/inductor/157944 -> ciflow/inductor/157944 2025-08-26T20:40:03.5346136Z * [new tag] ciflow/inductor/158061 -> ciflow/inductor/158061 2025-08-26T20:40:03.5346575Z * [new tag] ciflow/inductor/158097 -> ciflow/inductor/158097 2025-08-26T20:40:03.5347029Z * [new tag] ciflow/inductor/158098 -> ciflow/inductor/158098 2025-08-26T20:40:03.5347463Z * [new tag] ciflow/inductor/158104 -> ciflow/inductor/158104 2025-08-26T20:40:03.5347904Z * [new tag] ciflow/inductor/158137 -> ciflow/inductor/158137 2025-08-26T20:40:03.5348353Z * [new tag] ciflow/inductor/158321 -> ciflow/inductor/158321 2025-08-26T20:40:03.5348916Z * [new tag] ciflow/inductor/158609 -> ciflow/inductor/158609 2025-08-26T20:40:03.5663629Z * [new tag] ciflow/inductor/158932 -> ciflow/inductor/158932 2025-08-26T20:40:03.5664184Z * [new tag] ciflow/inductor/159003 -> ciflow/inductor/159003 2025-08-26T20:40:03.5664688Z * [new tag] ciflow/inductor/159158 -> ciflow/inductor/159158 2025-08-26T20:40:03.5665234Z * [new tag] ciflow/inductor/159274 -> ciflow/inductor/159274 2025-08-26T20:40:03.5666007Z * [new tag] ciflow/inductor/159329 -> ciflow/inductor/159329 2025-08-26T20:40:03.5666507Z * [new tag] ciflow/inductor/159387 -> ciflow/inductor/159387 2025-08-26T20:40:03.5666989Z * [new tag] ciflow/inductor/159473 -> ciflow/inductor/159473 2025-08-26T20:40:03.5667534Z * [new tag] ciflow/inductor/159664 -> ciflow/inductor/159664 2025-08-26T20:40:03.5668041Z * [new tag] ciflow/inductor/159678 -> ciflow/inductor/159678 2025-08-26T20:40:03.5668524Z * [new tag] ciflow/inductor/159778 -> ciflow/inductor/159778 2025-08-26T20:40:03.5669018Z * [new tag] ciflow/inductor/159786 -> ciflow/inductor/159786 2025-08-26T20:40:03.5669543Z * [new tag] ciflow/inductor/159817 -> ciflow/inductor/159817 2025-08-26T20:40:03.5670043Z * [new tag] ciflow/inductor/159835 -> ciflow/inductor/159835 2025-08-26T20:40:03.5670597Z * [new tag] ciflow/inductor/159889 -> ciflow/inductor/159889 2025-08-26T20:40:03.5671091Z * [new tag] ciflow/inductor/159923 -> ciflow/inductor/159923 2025-08-26T20:40:03.5671575Z * [new tag] ciflow/inductor/159944 -> ciflow/inductor/159944 2025-08-26T20:40:03.5672056Z * [new tag] ciflow/inductor/160080 -> ciflow/inductor/160080 2025-08-26T20:40:03.5672600Z * [new tag] ciflow/inductor/160111 -> ciflow/inductor/160111 2025-08-26T20:40:03.5673096Z * [new tag] ciflow/inductor/160138 -> ciflow/inductor/160138 2025-08-26T20:40:03.5673580Z * [new tag] ciflow/inductor/160156 -> ciflow/inductor/160156 2025-08-26T20:40:03.5674108Z * [new tag] ciflow/inductor/160180 -> ciflow/inductor/160180 2025-08-26T20:40:03.5674591Z * [new tag] ciflow/inductor/160198 -> ciflow/inductor/160198 2025-08-26T20:40:03.5675084Z * [new tag] ciflow/inductor/160258 -> ciflow/inductor/160258 2025-08-26T20:40:03.5675606Z * [new tag] ciflow/inductor/160266 -> ciflow/inductor/160266 2025-08-26T20:40:03.5676102Z * [new tag] ciflow/inductor/160282 -> ciflow/inductor/160282 2025-08-26T20:40:03.5676587Z * [new tag] ciflow/inductor/160323 -> ciflow/inductor/160323 2025-08-26T20:40:03.5677073Z * [new tag] ciflow/inductor/160324 -> ciflow/inductor/160324 2025-08-26T20:40:03.5677607Z * [new tag] ciflow/inductor/160325 -> ciflow/inductor/160325 2025-08-26T20:40:03.5678095Z * [new tag] ciflow/inductor/160326 -> ciflow/inductor/160326 2025-08-26T20:40:03.5678589Z * [new tag] ciflow/inductor/160327 -> ciflow/inductor/160327 2025-08-26T20:40:03.5679112Z * [new tag] ciflow/inductor/160328 -> ciflow/inductor/160328 2025-08-26T20:40:03.5679610Z * [new tag] ciflow/inductor/160329 -> ciflow/inductor/160329 2025-08-26T20:40:03.5680107Z * [new tag] ciflow/inductor/160431 -> ciflow/inductor/160431 2025-08-26T20:40:03.5680587Z * [new tag] ciflow/inductor/160448 -> ciflow/inductor/160448 2025-08-26T20:40:03.5681030Z * [new tag] ciflow/inductor/160449 -> ciflow/inductor/160449 2025-08-26T20:40:03.5682016Z * [new tag] ciflow/inductor/160467 -> ciflow/inductor/160467 2025-08-26T20:40:03.5682464Z * [new tag] ciflow/inductor/160470 -> ciflow/inductor/160470 2025-08-26T20:40:03.5682913Z * [new tag] ciflow/inductor/160483 -> ciflow/inductor/160483 2025-08-26T20:40:03.5683360Z * [new tag] ciflow/inductor/160527 -> ciflow/inductor/160527 2025-08-26T20:40:03.5683807Z * [new tag] ciflow/inductor/160532 -> ciflow/inductor/160532 2025-08-26T20:40:03.5684356Z * [new tag] ciflow/inductor/160539 -> ciflow/inductor/160539 2025-08-26T20:40:03.5684809Z * [new tag] ciflow/inductor/160580 -> ciflow/inductor/160580 2025-08-26T20:40:03.5685254Z * [new tag] ciflow/inductor/160601 -> ciflow/inductor/160601 2025-08-26T20:40:03.5685748Z * [new tag] ciflow/inductor/160611 -> ciflow/inductor/160611 2025-08-26T20:40:03.5686247Z * [new tag] ciflow/inductor/160669 -> ciflow/inductor/160669 2025-08-26T20:40:03.5686734Z * [new tag] ciflow/inductor/160670 -> ciflow/inductor/160670 2025-08-26T20:40:03.5687182Z * [new tag] ciflow/inductor/160671 -> ciflow/inductor/160671 2025-08-26T20:40:03.5687625Z * [new tag] ciflow/inductor/160677 -> ciflow/inductor/160677 2025-08-26T20:40:03.5688071Z * [new tag] ciflow/inductor/160690 -> ciflow/inductor/160690 2025-08-26T20:40:03.5688515Z * [new tag] ciflow/inductor/160763 -> ciflow/inductor/160763 2025-08-26T20:40:03.6013969Z * [new tag] ciflow/inductor/160772 -> ciflow/inductor/160772 2025-08-26T20:40:03.6014514Z * [new tag] ciflow/inductor/160798 -> ciflow/inductor/160798 2025-08-26T20:40:03.6014967Z * [new tag] ciflow/inductor/160807 -> ciflow/inductor/160807 2025-08-26T20:40:03.6015430Z * [new tag] ciflow/inductor/160836 -> ciflow/inductor/160836 2025-08-26T20:40:03.6015894Z * [new tag] ciflow/inductor/160861 -> ciflow/inductor/160861 2025-08-26T20:40:03.6016331Z * [new tag] ciflow/inductor/160883 -> ciflow/inductor/160883 2025-08-26T20:40:03.6016775Z * [new tag] ciflow/inductor/160888 -> ciflow/inductor/160888 2025-08-26T20:40:03.6017212Z * [new tag] ciflow/inductor/160903 -> ciflow/inductor/160903 2025-08-26T20:40:03.6017662Z * [new tag] ciflow/inductor/160913 -> ciflow/inductor/160913 2025-08-26T20:40:03.6018106Z * [new tag] ciflow/inductor/160941 -> ciflow/inductor/160941 2025-08-26T20:40:03.6018539Z * [new tag] ciflow/inductor/160943 -> ciflow/inductor/160943 2025-08-26T20:40:03.6018982Z * [new tag] ciflow/inductor/160991 -> ciflow/inductor/160991 2025-08-26T20:40:03.6019429Z * [new tag] ciflow/inductor/160997 -> ciflow/inductor/160997 2025-08-26T20:40:03.6019939Z * [new tag] ciflow/inductor/161003 -> ciflow/inductor/161003 2025-08-26T20:40:03.6020396Z * [new tag] ciflow/inductor/161026 -> ciflow/inductor/161026 2025-08-26T20:40:03.6020835Z * [new tag] ciflow/inductor/161032 -> ciflow/inductor/161032 2025-08-26T20:40:03.6021272Z * [new tag] ciflow/inductor/161040 -> ciflow/inductor/161040 2025-08-26T20:40:03.6021723Z * [new tag] ciflow/inductor/161055 -> ciflow/inductor/161055 2025-08-26T20:40:03.6022159Z * [new tag] ciflow/inductor/161062 -> ciflow/inductor/161062 2025-08-26T20:40:03.6022599Z * [new tag] ciflow/inductor/161069 -> ciflow/inductor/161069 2025-08-26T20:40:03.6023034Z * [new tag] ciflow/inductor/161092 -> ciflow/inductor/161092 2025-08-26T20:40:03.6023674Z * [new tag] ciflow/inductor/161093 -> ciflow/inductor/161093 2025-08-26T20:40:03.6024108Z * [new tag] ciflow/inductor/161097 -> ciflow/inductor/161097 2025-08-26T20:40:03.6024557Z * [new tag] ciflow/inductor/161098 -> ciflow/inductor/161098 2025-08-26T20:40:03.6025009Z * [new tag] ciflow/inductor/161100 -> ciflow/inductor/161100 2025-08-26T20:40:03.6025491Z * [new tag] ciflow/inductor/161107 -> ciflow/inductor/161107 2025-08-26T20:40:03.6026043Z * [new tag] ciflow/inductor/161110 -> ciflow/inductor/161110 2025-08-26T20:40:03.6026613Z * [new tag] ciflow/inductor/161117 -> ciflow/inductor/161117 2025-08-26T20:40:03.6027072Z * [new tag] ciflow/inductor/161118 -> ciflow/inductor/161118 2025-08-26T20:40:03.6027519Z * [new tag] ciflow/inductor/161123 -> ciflow/inductor/161123 2025-08-26T20:40:03.6027960Z * [new tag] ciflow/inductor/161124 -> ciflow/inductor/161124 2025-08-26T20:40:03.6028407Z * [new tag] ciflow/inductor/161125 -> ciflow/inductor/161125 2025-08-26T20:40:03.6028847Z * [new tag] ciflow/inductor/161126 -> ciflow/inductor/161126 2025-08-26T20:40:03.6029297Z * [new tag] ciflow/inductor/161144 -> ciflow/inductor/161144 2025-08-26T20:40:03.6029738Z * [new tag] ciflow/inductor/161148 -> ciflow/inductor/161148 2025-08-26T20:40:03.6030170Z * [new tag] ciflow/inductor/161158 -> ciflow/inductor/161158 2025-08-26T20:40:03.6030631Z * [new tag] ciflow/inductor/161178 -> ciflow/inductor/161178 2025-08-26T20:40:03.6031114Z * [new tag] ciflow/inductor/161190 -> ciflow/inductor/161190 2025-08-26T20:40:03.6031606Z * [new tag] ciflow/inductor/161208 -> ciflow/inductor/161208 2025-08-26T20:40:03.6032038Z * [new tag] ciflow/inductor/161225 -> ciflow/inductor/161225 2025-08-26T20:40:03.6032483Z * [new tag] ciflow/inductor/161229 -> ciflow/inductor/161229 2025-08-26T20:40:03.6032926Z * [new tag] ciflow/inductor/161237 -> ciflow/inductor/161237 2025-08-26T20:40:03.6033362Z * [new tag] ciflow/inductor/161241 -> ciflow/inductor/161241 2025-08-26T20:40:03.6033804Z * [new tag] ciflow/inductor/161246 -> ciflow/inductor/161246 2025-08-26T20:40:03.6034240Z * [new tag] ciflow/inductor/161274 -> ciflow/inductor/161274 2025-08-26T20:40:03.6034687Z * [new tag] ciflow/inductor/161278 -> ciflow/inductor/161278 2025-08-26T20:40:03.6035130Z * [new tag] ciflow/inductor/161279 -> ciflow/inductor/161279 2025-08-26T20:40:03.6035563Z * [new tag] ciflow/inductor/161288 -> ciflow/inductor/161288 2025-08-26T20:40:03.6036002Z * [new tag] ciflow/inductor/161314 -> ciflow/inductor/161314 2025-08-26T20:40:03.6365570Z * [new tag] ciflow/inductor/161320 -> ciflow/inductor/161320 2025-08-26T20:40:03.6366080Z * [new tag] ciflow/inductor/161336 -> ciflow/inductor/161336 2025-08-26T20:40:03.6366542Z * [new tag] ciflow/inductor/161337 -> ciflow/inductor/161337 2025-08-26T20:40:03.6366986Z * [new tag] ciflow/inductor/161338 -> ciflow/inductor/161338 2025-08-26T20:40:03.6367435Z * [new tag] ciflow/inductor/161339 -> ciflow/inductor/161339 2025-08-26T20:40:03.6367912Z * [new tag] ciflow/inductor/161340 -> ciflow/inductor/161340 2025-08-26T20:40:03.6368359Z * [new tag] ciflow/inductor/161341 -> ciflow/inductor/161341 2025-08-26T20:40:03.6368812Z * [new tag] ciflow/inductor/161342 -> ciflow/inductor/161342 2025-08-26T20:40:03.6369253Z * [new tag] ciflow/inductor/161343 -> ciflow/inductor/161343 2025-08-26T20:40:03.6369905Z * [new tag] ciflow/inductor/161344 -> ciflow/inductor/161344 2025-08-26T20:40:03.6370351Z * [new tag] ciflow/inductor/161345 -> ciflow/inductor/161345 2025-08-26T20:40:03.6370810Z * [new tag] ciflow/inductor/161346 -> ciflow/inductor/161346 2025-08-26T20:40:03.6371261Z * [new tag] ciflow/inductor/161347 -> ciflow/inductor/161347 2025-08-26T20:40:03.6371697Z * [new tag] ciflow/inductor/161348 -> ciflow/inductor/161348 2025-08-26T20:40:03.6372781Z * [new tag] ciflow/inductor/161349 -> ciflow/inductor/161349 2025-08-26T20:40:03.6373232Z * [new tag] ciflow/inductor/161350 -> ciflow/inductor/161350 2025-08-26T20:40:03.6373681Z * [new tag] ciflow/inductor/161351 -> ciflow/inductor/161351 2025-08-26T20:40:03.6374134Z * [new tag] ciflow/inductor/161353 -> ciflow/inductor/161353 2025-08-26T20:40:03.6374582Z * [new tag] ciflow/inductor/161354 -> ciflow/inductor/161354 2025-08-26T20:40:03.6375033Z * [new tag] ciflow/inductor/161355 -> ciflow/inductor/161355 2025-08-26T20:40:03.6375475Z * [new tag] ciflow/inductor/161362 -> ciflow/inductor/161362 2025-08-26T20:40:03.6375927Z * [new tag] ciflow/inductor/161363 -> ciflow/inductor/161363 2025-08-26T20:40:03.6376368Z * [new tag] ciflow/inductor/161382 -> ciflow/inductor/161382 2025-08-26T20:40:03.6376812Z * [new tag] ciflow/inductor/161383 -> ciflow/inductor/161383 2025-08-26T20:40:03.6377266Z * [new tag] ciflow/inductor/161385 -> ciflow/inductor/161385 2025-08-26T20:40:03.6377707Z * [new tag] ciflow/inductor/161396 -> ciflow/inductor/161396 2025-08-26T20:40:03.6378157Z * [new tag] ciflow/inductor/161397 -> ciflow/inductor/161397 2025-08-26T20:40:03.6378597Z * [new tag] ciflow/inductor/161404 -> ciflow/inductor/161404 2025-08-26T20:40:03.6379041Z * [new tag] ciflow/inductor/161405 -> ciflow/inductor/161405 2025-08-26T20:40:03.6379484Z * [new tag] ciflow/inductor/161406 -> ciflow/inductor/161406 2025-08-26T20:40:03.6379920Z * [new tag] ciflow/inductor/161409 -> ciflow/inductor/161409 2025-08-26T20:40:03.6380374Z * [new tag] ciflow/inductor/161410 -> ciflow/inductor/161410 2025-08-26T20:40:03.6380821Z * [new tag] ciflow/inductor/161414 -> ciflow/inductor/161414 2025-08-26T20:40:03.6381269Z * [new tag] ciflow/inductor/161416 -> ciflow/inductor/161416 2025-08-26T20:40:03.6381717Z * [new tag] ciflow/inductor/161420 -> ciflow/inductor/161420 2025-08-26T20:40:03.6382151Z * [new tag] ciflow/inductor/161431 -> ciflow/inductor/161431 2025-08-26T20:40:03.6382620Z * [new tag] ciflow/inductor/161435 -> ciflow/inductor/161435 2025-08-26T20:40:03.6383055Z * [new tag] ciflow/inductor/161440 -> ciflow/inductor/161440 2025-08-26T20:40:03.6383500Z * [new tag] ciflow/inductor/161447 -> ciflow/inductor/161447 2025-08-26T20:40:03.6383937Z * [new tag] ciflow/inductor/161452 -> ciflow/inductor/161452 2025-08-26T20:40:03.6384385Z * [new tag] ciflow/inductor/161453 -> ciflow/inductor/161453 2025-08-26T20:40:03.6384845Z * [new tag] ciflow/inductor/161458 -> ciflow/inductor/161458 2025-08-26T20:40:03.6385289Z * [new tag] ciflow/inductor/161461 -> ciflow/inductor/161461 2025-08-26T20:40:03.6385730Z * [new tag] ciflow/inductor/161464 -> ciflow/inductor/161464 2025-08-26T20:40:03.6386263Z * [new tag] ciflow/inductor/161466 -> ciflow/inductor/161466 2025-08-26T20:40:03.6386845Z * [new tag] ciflow/inductor/161468 -> ciflow/inductor/161468 2025-08-26T20:40:03.6387278Z * [new tag] ciflow/inductor/161469 -> ciflow/inductor/161469 2025-08-26T20:40:03.6387722Z * [new tag] ciflow/inductor/161474 -> ciflow/inductor/161474 2025-08-26T20:40:03.6388161Z * [new tag] ciflow/inductor/161477 -> ciflow/inductor/161477 2025-08-26T20:40:03.6701916Z * [new tag] ciflow/inductor/161479 -> ciflow/inductor/161479 2025-08-26T20:40:03.6702705Z * [new tag] ciflow/inductor/161485 -> ciflow/inductor/161485 2025-08-26T20:40:03.6703156Z * [new tag] ciflow/inductor/161486 -> ciflow/inductor/161486 2025-08-26T20:40:03.6703612Z * [new tag] ciflow/inductor/161487 -> ciflow/inductor/161487 2025-08-26T20:40:03.6704060Z * [new tag] ciflow/inductor/161495 -> ciflow/inductor/161495 2025-08-26T20:40:03.6704527Z * [new tag] ciflow/inductor/161497 -> ciflow/inductor/161497 2025-08-26T20:40:03.6704968Z * [new tag] ciflow/inductor/161499 -> ciflow/inductor/161499 2025-08-26T20:40:03.6705405Z * [new tag] ciflow/inductor/161512 -> ciflow/inductor/161512 2025-08-26T20:40:03.6705922Z * [new tag] ciflow/inductor/161521 -> ciflow/inductor/161521 2025-08-26T20:40:03.6706362Z * [new tag] ciflow/inductor/161526 -> ciflow/inductor/161526 2025-08-26T20:40:03.6706817Z * [new tag] ciflow/inductor/161530 -> ciflow/inductor/161530 2025-08-26T20:40:03.6707268Z * [new tag] ciflow/inductor/161534 -> ciflow/inductor/161534 2025-08-26T20:40:03.6707756Z * [new tag] ciflow/inductor/161536 -> ciflow/inductor/161536 2025-08-26T20:40:03.6708253Z * [new tag] ciflow/inductor/3b9a386 -> ciflow/inductor/3b9a386 2025-08-26T20:40:03.6708759Z * [new tag] ciflow/inductor/3d4b92b -> ciflow/inductor/3d4b92b 2025-08-26T20:40:03.6709220Z * [new tag] ciflow/inductor/d224ac7 -> ciflow/inductor/d224ac7 2025-08-26T20:40:03.6709688Z * [new tag] ciflow/linux-aarch64/159737 -> ciflow/linux-aarch64/159737 2025-08-26T20:40:03.6710210Z * [new tag] ciflow/linux-aarch64/160078 -> ciflow/linux-aarch64/160078 2025-08-26T20:40:03.6710693Z * [new tag] ciflow/linux-aarch64/160080 -> ciflow/linux-aarch64/160080 2025-08-26T20:40:03.6711144Z * [new tag] ciflow/mps/155923 -> ciflow/mps/155923 2025-08-26T20:40:03.6711550Z * [new tag] ciflow/mps/157553 -> ciflow/mps/157553 2025-08-26T20:40:03.6711948Z * [new tag] ciflow/mps/157635 -> ciflow/mps/157635 2025-08-26T20:40:03.6712353Z * [new tag] ciflow/mps/160839 -> ciflow/mps/160839 2025-08-26T20:40:03.6712760Z * [new tag] ciflow/mps/161511 -> ciflow/mps/161511 2025-08-26T20:40:03.6713176Z * [new tag] ciflow/nightly/158104 -> ciflow/nightly/158104 2025-08-26T20:40:03.6713710Z * [new tag] ciflow/periodic-rocm-mi300/161180 -> ciflow/periodic-rocm-mi300/161180 2025-08-26T20:40:03.6714246Z * [new tag] ciflow/periodic/054a2fd -> ciflow/periodic/054a2fd 2025-08-26T20:40:03.6715024Z * [new tag] ciflow/periodic/0dea191ff7b844352dc2cd5e3b5ef5ea13a76756 -> ciflow/periodic/0dea191ff7b844352dc2cd5e3b5ef5ea13a76756 2025-08-26T20:40:03.6715795Z * [new tag] ciflow/periodic/161013 -> ciflow/periodic/161013 2025-08-26T20:40:03.6716252Z * [new tag] ciflow/periodic/2a6d37d -> ciflow/periodic/2a6d37d 2025-08-26T20:40:03.6716720Z * [new tag] ciflow/periodic/317eeb8 -> ciflow/periodic/317eeb8 2025-08-26T20:40:03.6717303Z * [new tag] ciflow/periodic/3c32 -> ciflow/periodic/3c32 2025-08-26T20:40:03.6717772Z * [new tag] ciflow/periodic/3e98831 -> ciflow/periodic/3e98831 2025-08-26T20:40:03.6718256Z * [new tag] ciflow/periodic/94512-point -> ciflow/periodic/94512-point 2025-08-26T20:40:03.6719146Z * [new tag] ciflow/periodic/bc7eaa0d8a1f5ca8ec0eaac461d1df500dcaea84 -> ciflow/periodic/bc7eaa0d8a1f5ca8ec0eaac461d1df500dcaea84 2025-08-26T20:40:03.6720018Z * [new tag] ciflow/periodic/csl/test87519 -> ciflow/periodic/csl/test87519 2025-08-26T20:40:03.6720650Z * [new tag] ciflow/periodic/csltest88275 -> ciflow/periodic/csltest88275 2025-08-26T20:40:03.6721187Z * [new tag] ciflow/periodic/csltest88761 -> ciflow/periodic/csltest88761 2025-08-26T20:40:03.6721724Z * [new tag] ciflow/periodic/release_1.12 -> ciflow/periodic/release_1.12 2025-08-26T20:40:03.6722257Z * [new tag] ciflow/periodic/release_1.12.0 -> ciflow/periodic/release_1.12.0 2025-08-26T20:40:03.6722794Z * [new tag] ciflow/periodic/sha-ec5b83 -> ciflow/periodic/sha-ec5b83 2025-08-26T20:40:03.6723271Z * [new tag] ciflow/rocm-mi300/159158 -> ciflow/rocm-mi300/159158 2025-08-26T20:40:03.6723741Z * [new tag] ciflow/rocm-mi300/161040 -> ciflow/rocm-mi300/161040 2025-08-26T20:40:03.6724195Z * [new tag] ciflow/rocm-mi300/161180 -> ciflow/rocm-mi300/161180 2025-08-26T20:40:03.6724638Z * [new tag] ciflow/rocm-mi300/161225 -> ciflow/rocm-mi300/161225 2025-08-26T20:40:03.6725089Z * [new tag] ciflow/rocm-mi300/161429 -> ciflow/rocm-mi300/161429 2025-08-26T20:40:03.6725531Z * [new tag] ciflow/rocm-mi355/160215 -> ciflow/rocm-mi355/160215 2025-08-26T20:40:03.7047551Z * [new tag] ciflow/rocm/148492 -> ciflow/rocm/148492 2025-08-26T20:40:03.7048022Z * [new tag] ciflow/rocm/151845 -> ciflow/rocm/151845 2025-08-26T20:40:03.7048463Z * [new tag] ciflow/rocm/152526 -> ciflow/rocm/152526 2025-08-26T20:40:03.7048883Z * [new tag] ciflow/rocm/154864 -> ciflow/rocm/154864 2025-08-26T20:40:03.7049293Z * [new tag] ciflow/rocm/158352 -> ciflow/rocm/158352 2025-08-26T20:40:03.7049709Z * [new tag] ciflow/rocm/159158 -> ciflow/rocm/159158 2025-08-26T20:40:03.7050111Z * [new tag] ciflow/rocm/160215 -> ciflow/rocm/160215 2025-08-26T20:40:03.7050531Z * [new tag] ciflow/rocm/160671 -> ciflow/rocm/160671 2025-08-26T20:40:03.7050941Z * [new tag] ciflow/rocm/160676 -> ciflow/rocm/160676 2025-08-26T20:40:03.7051337Z * [new tag] ciflow/rocm/161180 -> ciflow/rocm/161180 2025-08-26T20:40:03.7051748Z * [new tag] ciflow/rocm/161225 -> ciflow/rocm/161225 2025-08-26T20:40:03.7052154Z * [new tag] ciflow/rocm/161277 -> ciflow/rocm/161277 2025-08-26T20:40:03.7052559Z * [new tag] ciflow/rocm/161429 -> ciflow/rocm/161429 2025-08-26T20:40:03.7052963Z * [new tag] ciflow/rocm/161496 -> ciflow/rocm/161496 2025-08-26T20:40:03.7053359Z * [new tag] ciflow/s390/160893 -> ciflow/s390/160893 2025-08-26T20:40:03.7053771Z * [new tag] ciflow/slow/01c7106 -> ciflow/slow/01c7106 2025-08-26T20:40:03.7054192Z * [new tag] ciflow/slow/0577043 -> ciflow/slow/0577043 2025-08-26T20:40:03.7054970Z * [new tag] ciflow/slow/0d5b74da0cab798fbfdb9caa53fad816999c8386-sdym -> ciflow/slow/0d5b74da0cab798fbfdb9caa53fad816999c8386-sdym 2025-08-26T20:40:03.7055737Z * [new tag] ciflow/slow/0e81104 -> ciflow/slow/0e81104 2025-08-26T20:40:03.7056146Z * [new tag] ciflow/slow/161182 -> ciflow/slow/161182 2025-08-26T20:40:03.7056744Z * [new tag] ciflow/slow/161395 -> ciflow/slow/161395 2025-08-26T20:40:03.7057152Z * [new tag] ciflow/slow/1732077 -> ciflow/slow/1732077 2025-08-26T20:40:03.7057568Z * [new tag] ciflow/slow/187eb7c -> ciflow/slow/187eb7c 2025-08-26T20:40:03.7057990Z * [new tag] ciflow/slow/1faef89 -> ciflow/slow/1faef89 2025-08-26T20:40:03.7058398Z * [new tag] ciflow/slow/3920ec1 -> ciflow/slow/3920ec1 2025-08-26T20:40:03.7058926Z * [new tag] ciflow/slow/3b7c6b2 -> ciflow/slow/3b7c6b2 2025-08-26T20:40:03.7059337Z * [new tag] ciflow/slow/59a3759 -> ciflow/slow/59a3759 2025-08-26T20:40:03.7059755Z * [new tag] ciflow/slow/70ef0bb -> ciflow/slow/70ef0bb 2025-08-26T20:40:03.7060162Z * [new tag] ciflow/slow/788ff06 -> ciflow/slow/788ff06 2025-08-26T20:40:03.7060895Z * [new tag] ciflow/slow/8751002215790a3a88750faa8f4366933e296693-sdym -> ciflow/slow/8751002215790a3a88750faa8f4366933e296693-sdym 2025-08-26T20:40:03.7061621Z * [new tag] ciflow/slow/9d85864 -> ciflow/slow/9d85864 2025-08-26T20:40:03.7062030Z * [new tag] ciflow/slow/9ffad5b -> ciflow/slow/9ffad5b 2025-08-26T20:40:03.7062444Z * [new tag] ciflow/slow/a206e8b -> ciflow/slow/a206e8b 2025-08-26T20:40:03.7062848Z * [new tag] ciflow/slow/a837609 -> ciflow/slow/a837609 2025-08-26T20:40:03.7063265Z * [new tag] ciflow/slow/af841f3 -> ciflow/slow/af841f3 2025-08-26T20:40:03.7064027Z * [new tag] ciflow/slow/da3aba1e46157c4df504b067477cdf2b3c96b194-sdym -> ciflow/slow/da3aba1e46157c4df504b067477cdf2b3c96b194-sdym 2025-08-26T20:40:03.7064802Z * [new tag] ciflow/torchbench/158137 -> ciflow/torchbench/158137 2025-08-26T20:40:03.7065252Z * [new tag] ciflow/trunk/148492 -> ciflow/trunk/148492 2025-08-26T20:40:03.7065664Z * [new tag] ciflow/trunk/151845 -> ciflow/trunk/151845 2025-08-26T20:40:03.7066165Z * [new tag] ciflow/trunk/153784 -> ciflow/trunk/153784 2025-08-26T20:40:03.7066582Z * [new tag] ciflow/trunk/154694 -> ciflow/trunk/154694 2025-08-26T20:40:03.7066989Z * [new tag] ciflow/trunk/154864 -> ciflow/trunk/154864 2025-08-26T20:40:03.7067413Z * [new tag] ciflow/trunk/156418 -> ciflow/trunk/156418 2025-08-26T20:40:03.7067828Z * [new tag] ciflow/trunk/157196 -> ciflow/trunk/157196 2025-08-26T20:40:03.7068252Z * [new tag] ciflow/trunk/157537 -> ciflow/trunk/157537 2025-08-26T20:40:03.7068660Z * [new tag] ciflow/trunk/157767 -> ciflow/trunk/157767 2025-08-26T20:40:03.7069067Z * [new tag] ciflow/trunk/157944 -> ciflow/trunk/157944 2025-08-26T20:40:03.7069484Z * [new tag] ciflow/trunk/158104 -> ciflow/trunk/158104 2025-08-26T20:40:03.7069897Z * [new tag] ciflow/trunk/158541 -> ciflow/trunk/158541 2025-08-26T20:40:03.7405369Z * [new tag] ciflow/trunk/158733 -> ciflow/trunk/158733 2025-08-26T20:40:03.7405848Z * [new tag] ciflow/trunk/158747 -> ciflow/trunk/158747 2025-08-26T20:40:03.7406277Z * [new tag] ciflow/trunk/159158 -> ciflow/trunk/159158 2025-08-26T20:40:03.7406728Z * [new tag] ciflow/trunk/159387 -> ciflow/trunk/159387 2025-08-26T20:40:03.7407142Z * [new tag] ciflow/trunk/159562 -> ciflow/trunk/159562 2025-08-26T20:40:03.7407559Z * [new tag] ciflow/trunk/159786 -> ciflow/trunk/159786 2025-08-26T20:40:03.7407961Z * [new tag] ciflow/trunk/159835 -> ciflow/trunk/159835 2025-08-26T20:40:03.7408584Z * [new tag] ciflow/trunk/159889 -> ciflow/trunk/159889 2025-08-26T20:40:03.7408997Z * [new tag] ciflow/trunk/159923 -> ciflow/trunk/159923 2025-08-26T20:40:03.7409404Z * [new tag] ciflow/trunk/160156 -> ciflow/trunk/160156 2025-08-26T20:40:03.7409822Z * [new tag] ciflow/trunk/160180 -> ciflow/trunk/160180 2025-08-26T20:40:03.7410230Z * [new tag] ciflow/trunk/160198 -> ciflow/trunk/160198 2025-08-26T20:40:03.7410787Z * [new tag] ciflow/trunk/160258 -> ciflow/trunk/160258 2025-08-26T20:40:03.7411213Z * [new tag] ciflow/trunk/160431 -> ciflow/trunk/160431 2025-08-26T20:40:03.7411617Z * [new tag] ciflow/trunk/160448 -> ciflow/trunk/160448 2025-08-26T20:40:03.7412029Z * [new tag] ciflow/trunk/160449 -> ciflow/trunk/160449 2025-08-26T20:40:03.7412435Z * [new tag] ciflow/trunk/160527 -> ciflow/trunk/160527 2025-08-26T20:40:03.7412852Z * [new tag] ciflow/trunk/160532 -> ciflow/trunk/160532 2025-08-26T20:40:03.7413266Z * [new tag] ciflow/trunk/160671 -> ciflow/trunk/160671 2025-08-26T20:40:03.7413664Z * [new tag] ciflow/trunk/160677 -> ciflow/trunk/160677 2025-08-26T20:40:03.7414072Z * [new tag] ciflow/trunk/160692 -> ciflow/trunk/160692 2025-08-26T20:40:03.7414481Z * [new tag] ciflow/trunk/160781 -> ciflow/trunk/160781 2025-08-26T20:40:03.7414888Z * [new tag] ciflow/trunk/160825 -> ciflow/trunk/160825 2025-08-26T20:40:03.7415301Z * [new tag] ciflow/trunk/160836 -> ciflow/trunk/160836 2025-08-26T20:40:03.7415710Z * [new tag] ciflow/trunk/160866 -> ciflow/trunk/160866 2025-08-26T20:40:03.7416130Z * [new tag] ciflow/trunk/160915 -> ciflow/trunk/160915 2025-08-26T20:40:03.7416537Z * [new tag] ciflow/trunk/160991 -> ciflow/trunk/160991 2025-08-26T20:40:03.7416953Z * [new tag] ciflow/trunk/160992 -> ciflow/trunk/160992 2025-08-26T20:40:03.7417358Z * [new tag] ciflow/trunk/161004 -> ciflow/trunk/161004 2025-08-26T20:40:03.7417774Z * [new tag] ciflow/trunk/161016 -> ciflow/trunk/161016 2025-08-26T20:40:03.7418185Z * [new tag] ciflow/trunk/161023 -> ciflow/trunk/161023 2025-08-26T20:40:03.7418596Z * [new tag] ciflow/trunk/161026 -> ciflow/trunk/161026 2025-08-26T20:40:03.7419003Z * [new tag] ciflow/trunk/161032 -> ciflow/trunk/161032 2025-08-26T20:40:03.7419515Z * [new tag] ciflow/trunk/161035 -> ciflow/trunk/161035 2025-08-26T20:40:03.7419933Z * [new tag] ciflow/trunk/161040 -> ciflow/trunk/161040 2025-08-26T20:40:03.7420356Z * [new tag] ciflow/trunk/161094 -> ciflow/trunk/161094 2025-08-26T20:40:03.7420767Z * [new tag] ciflow/trunk/161097 -> ciflow/trunk/161097 2025-08-26T20:40:03.7421181Z * [new tag] ciflow/trunk/161098 -> ciflow/trunk/161098 2025-08-26T20:40:03.7421584Z * [new tag] ciflow/trunk/161100 -> ciflow/trunk/161100 2025-08-26T20:40:03.7422004Z * [new tag] ciflow/trunk/161106 -> ciflow/trunk/161106 2025-08-26T20:40:03.7422411Z * [new tag] ciflow/trunk/161110 -> ciflow/trunk/161110 2025-08-26T20:40:03.7422822Z * [new tag] ciflow/trunk/161114 -> ciflow/trunk/161114 2025-08-26T20:40:03.7423237Z * [new tag] ciflow/trunk/161117 -> ciflow/trunk/161117 2025-08-26T20:40:03.7423638Z * [new tag] ciflow/trunk/161123 -> ciflow/trunk/161123 2025-08-26T20:40:03.7424182Z * [new tag] ciflow/trunk/161124 -> ciflow/trunk/161124 2025-08-26T20:40:03.7424590Z * [new tag] ciflow/trunk/161126 -> ciflow/trunk/161126 2025-08-26T20:40:03.7425009Z * [new tag] ciflow/trunk/161131 -> ciflow/trunk/161131 2025-08-26T20:40:03.7425433Z * [new tag] ciflow/trunk/161143 -> ciflow/trunk/161143 2025-08-26T20:40:03.7425895Z * [new tag] ciflow/trunk/161144 -> ciflow/trunk/161144 2025-08-26T20:40:03.7426424Z * [new tag] ciflow/trunk/161164 -> ciflow/trunk/161164 2025-08-26T20:40:03.7426836Z * [new tag] ciflow/trunk/161180 -> ciflow/trunk/161180 2025-08-26T20:40:03.7779448Z * [new tag] ciflow/trunk/161214 -> ciflow/trunk/161214 2025-08-26T20:40:03.7779924Z * [new tag] ciflow/trunk/161217 -> ciflow/trunk/161217 2025-08-26T20:40:03.7780367Z * [new tag] ciflow/trunk/161225 -> ciflow/trunk/161225 2025-08-26T20:40:03.7780788Z * [new tag] ciflow/trunk/161236 -> ciflow/trunk/161236 2025-08-26T20:40:03.7781200Z * [new tag] ciflow/trunk/161237 -> ciflow/trunk/161237 2025-08-26T20:40:03.7781629Z * [new tag] ciflow/trunk/161241 -> ciflow/trunk/161241 2025-08-26T20:40:03.7782047Z * [new tag] ciflow/trunk/161262 -> ciflow/trunk/161262 2025-08-26T20:40:03.7782459Z * [new tag] ciflow/trunk/161263 -> ciflow/trunk/161263 2025-08-26T20:40:03.7782876Z * [new tag] ciflow/trunk/161279 -> ciflow/trunk/161279 2025-08-26T20:40:03.7783297Z * [new tag] ciflow/trunk/161288 -> ciflow/trunk/161288 2025-08-26T20:40:03.7783706Z * [new tag] ciflow/trunk/161306 -> ciflow/trunk/161306 2025-08-26T20:40:03.7784128Z * [new tag] ciflow/trunk/161311 -> ciflow/trunk/161311 2025-08-26T20:40:03.7784533Z * [new tag] ciflow/trunk/161354 -> ciflow/trunk/161354 2025-08-26T20:40:03.7784955Z * [new tag] ciflow/trunk/161355 -> ciflow/trunk/161355 2025-08-26T20:40:03.7785371Z * [new tag] ciflow/trunk/161362 -> ciflow/trunk/161362 2025-08-26T20:40:03.7785822Z * [new tag] ciflow/trunk/161363 -> ciflow/trunk/161363 2025-08-26T20:40:03.7786241Z * [new tag] ciflow/trunk/161370 -> ciflow/trunk/161370 2025-08-26T20:40:03.7786658Z * [new tag] ciflow/trunk/161383 -> ciflow/trunk/161383 2025-08-26T20:40:03.7787064Z * [new tag] ciflow/trunk/161385 -> ciflow/trunk/161385 2025-08-26T20:40:03.7787559Z * [new tag] ciflow/trunk/161389 -> ciflow/trunk/161389 2025-08-26T20:40:03.7787968Z * [new tag] ciflow/trunk/161392 -> ciflow/trunk/161392 2025-08-26T20:40:03.7788389Z * [new tag] ciflow/trunk/161395 -> ciflow/trunk/161395 2025-08-26T20:40:03.7788794Z * [new tag] ciflow/trunk/161396 -> ciflow/trunk/161396 2025-08-26T20:40:03.7789208Z * [new tag] ciflow/trunk/161409 -> ciflow/trunk/161409 2025-08-26T20:40:03.7789621Z * [new tag] ciflow/trunk/161410 -> ciflow/trunk/161410 2025-08-26T20:40:03.7790035Z * [new tag] ciflow/trunk/161435 -> ciflow/trunk/161435 2025-08-26T20:40:03.7790459Z * [new tag] ciflow/trunk/161437 -> ciflow/trunk/161437 2025-08-26T20:40:03.7790867Z * [new tag] ciflow/trunk/161451 -> ciflow/trunk/161451 2025-08-26T20:40:03.7791277Z * [new tag] ciflow/trunk/161453 -> ciflow/trunk/161453 2025-08-26T20:40:03.7791688Z * [new tag] ciflow/trunk/161454 -> ciflow/trunk/161454 2025-08-26T20:40:03.7792280Z * [new tag] ciflow/trunk/161489 -> ciflow/trunk/161489 2025-08-26T20:40:03.7792702Z * [new tag] ciflow/trunk/161517 -> ciflow/trunk/161517 2025-08-26T20:40:03.7793107Z * [new tag] ciflow/trunk/161538 -> ciflow/trunk/161538 2025-08-26T20:40:03.7793522Z * [new tag] ciflow/unstable/123 -> ciflow/unstable/123 2025-08-26T20:40:03.7793931Z * [new tag] ciflow/vllm/161537 -> ciflow/vllm/161537 2025-08-26T20:40:03.7794478Z * [new tag] ciflow/win-arm64/158104 -> ciflow/win-arm64/158104 2025-08-26T20:40:03.7794941Z * [new tag] ciflow/win-arm64/159562 -> ciflow/win-arm64/159562 2025-08-26T20:40:03.7795381Z * [new tag] ciflow/win-arm64/160258 -> ciflow/win-arm64/160258 2025-08-26T20:40:03.7795833Z * [new tag] ciflow/win-arm64/161504 -> ciflow/win-arm64/161504 2025-08-26T20:40:03.7796258Z * [new tag] ciflow/xpu/143553 -> ciflow/xpu/143553 2025-08-26T20:40:03.7796678Z * [new tag] ciflow/xpu/158733 -> ciflow/xpu/158733 2025-08-26T20:40:03.7797090Z * [new tag] ciflow/xpu/159473 -> ciflow/xpu/159473 2025-08-26T20:40:03.7797491Z * [new tag] ciflow/xpu/159944 -> ciflow/xpu/159944 2025-08-26T20:40:03.7797908Z * [new tag] ciflow/xpu/160067 -> ciflow/xpu/160067 2025-08-26T20:40:03.7798299Z * [new tag] ciflow/xpu/160158 -> ciflow/xpu/160158 2025-08-26T20:40:03.7798705Z * [new tag] ciflow/xpu/160940 -> ciflow/xpu/160940 2025-08-26T20:40:03.7799109Z * [new tag] ciflow/xpu/161041 -> ciflow/xpu/161041 2025-08-26T20:40:03.7799508Z * [new tag] ciflow/xpu/161045 -> ciflow/xpu/161045 2025-08-26T20:40:03.7799907Z * [new tag] ciflow/xpu/161142 -> ciflow/xpu/161142 2025-08-26T20:40:03.7800312Z * [new tag] ciflow/xpu/161152 -> ciflow/xpu/161152 2025-08-26T20:40:03.7800715Z * [new tag] ciflow/xpu/161246 -> ciflow/xpu/161246 2025-08-26T20:40:03.7801111Z * [new tag] ciflow/xpu/161389 -> ciflow/xpu/161389 2025-08-26T20:40:03.8099967Z * [new tag] ciflow/xpu/161392 -> ciflow/xpu/161392 2025-08-26T20:40:03.8100532Z * [new tag] ciflow/xpu/161397 -> ciflow/xpu/161397 2025-08-26T20:40:03.8100977Z * [new tag] ciflow/xpu/161477 -> ciflow/xpu/161477 2025-08-26T20:40:03.8101411Z * [new tag] ciflow/xpu/161489 -> ciflow/xpu/161489 2025-08-26T20:40:03.8101807Z * [new tag] cslpull75 -> cslpull75 2025-08-26T20:40:03.8102185Z * [new tag] cslpull76 -> cslpull76 2025-08-26T20:40:03.8102630Z * [new tag] cslpull77 -> cslpull77 2025-08-26T20:40:03.8102990Z * [new tag] cslpull78 -> cslpull78 2025-08-26T20:40:03.8103352Z * [new tag] cslpull79 -> cslpull79 2025-08-26T20:40:03.8103716Z * [new tag] cslpull80 -> cslpull80 2025-08-26T20:40:03.8104083Z * [new tag] cslpull81 -> cslpull81 2025-08-26T20:40:03.8104449Z * [new tag] cslpull82 -> cslpull82 2025-08-26T20:40:03.8104810Z * [new tag] cslpull83 -> cslpull83 2025-08-26T20:40:03.8105170Z * [new tag] cslpull84 -> cslpull84 2025-08-26T20:40:03.8105566Z * [new tag] cslpull85 -> cslpull85 2025-08-26T20:40:03.8106009Z * [new tag] cslpull86 -> cslpull86 2025-08-26T20:40:03.8106365Z * [new tag] cslpull87 -> cslpull87 2025-08-26T20:40:03.8106930Z * [new tag] cslpull88 -> cslpull88 2025-08-26T20:40:03.8107308Z * [new tag] cslpull89 -> cslpull89 2025-08-26T20:40:03.8107671Z * [new tag] cslpull90 -> cslpull90 2025-08-26T20:40:03.8108039Z * [new tag] cslpull91 -> cslpull91 2025-08-26T20:40:03.8108403Z * [new tag] cslpull92 -> cslpull92 2025-08-26T20:40:03.8108777Z * [new tag] flight_5 -> flight_5 2025-08-26T20:40:03.8109228Z * [new tag] flight_5.1 -> flight_5.1 2025-08-26T20:40:03.8109607Z * [new tag] flight_5.2 -> flight_5.2 2025-08-26T20:40:03.8109975Z * [new tag] flight_5.3 -> flight_5.3 2025-08-26T20:40:03.8110340Z * [new tag] forpull1 -> forpull1 2025-08-26T20:40:03.8110746Z * [new tag] malfet/tag-2ef5611 -> malfet/tag-2ef5611 2025-08-26T20:40:03.8111168Z * [new tag] malfet/tag-317b1a0 -> malfet/tag-317b1a0 2025-08-26T20:40:03.8111637Z * [new tag] malfet/tag-ec6f767 -> malfet/tag-ec6f767 2025-08-26T20:40:03.8112103Z * [new tag] nightly-binary -> nightly-binary 2025-08-26T20:40:03.8112524Z * [new tag] sqzhang_flight4_plus -> sqzhang_flight4_plus 2025-08-26T20:40:03.8112950Z * [new tag] sqzhang_flight_3 -> sqzhang_flight_3 2025-08-26T20:40:03.8113588Z * [new tag] trunk/00efeabc295e072fb9d6e68b008a31fb04201fd1 -> trunk/00efeabc295e072fb9d6e68b008a31fb04201fd1 2025-08-26T20:40:03.8114450Z * [new tag] trunk/037c43d3b24d4db733011cb904c385eaa6e11bcf -> trunk/037c43d3b24d4db733011cb904c385eaa6e11bcf 2025-08-26T20:40:03.8115303Z * [new tag] trunk/0533ff2ccba7e77622ac3c6758f1032bdc10feff -> trunk/0533ff2ccba7e77622ac3c6758f1032bdc10feff 2025-08-26T20:40:03.8116226Z * [new tag] trunk/05e8fac4f374c4dbf0cd0e85e925e9112cf234a2 -> trunk/05e8fac4f374c4dbf0cd0e85e925e9112cf234a2 2025-08-26T20:40:03.8117090Z * [new tag] trunk/089ad1d88bf31ddab769a4f87750b474ed1214c8 -> trunk/089ad1d88bf31ddab769a4f87750b474ed1214c8 2025-08-26T20:40:03.8118004Z * [new tag] trunk/0924304e728b9507a54eced28c812fbd5b13c397 -> trunk/0924304e728b9507a54eced28c812fbd5b13c397 2025-08-26T20:40:03.8118867Z * [new tag] trunk/0a5ab612dd2b9fc5bb2e1281ec7ca8730c5c3c89 -> trunk/0a5ab612dd2b9fc5bb2e1281ec7ca8730c5c3c89 2025-08-26T20:40:03.8119714Z * [new tag] trunk/0d19541284c38212235f78db24e3ac3ae4787e45 -> trunk/0d19541284c38212235f78db24e3ac3ae4787e45 2025-08-26T20:40:03.8120551Z * [new tag] trunk/0d9da384ef76e3ce2e7eaf951252ae9edb922863 -> trunk/0d9da384ef76e3ce2e7eaf951252ae9edb922863 2025-08-26T20:40:03.8121417Z * [new tag] trunk/0dea191ff7b844352dc2cd5e3b5ef5ea13a76756 -> trunk/0dea191ff7b844352dc2cd5e3b5ef5ea13a76756 2025-08-26T20:40:03.8122261Z * [new tag] trunk/0f801a510f5f185543388717241adb7237c3d46a -> trunk/0f801a510f5f185543388717241adb7237c3d46a 2025-08-26T20:40:03.8123093Z * [new tag] trunk/10e67f5ec3834da93fc2022caa7ac69cf97c01f0 -> trunk/10e67f5ec3834da93fc2022caa7ac69cf97c01f0 2025-08-26T20:40:03.8124015Z * [new tag] trunk/1113e7de30da95973c1eac7921601f9a0e94f2db -> trunk/1113e7de30da95973c1eac7921601f9a0e94f2db 2025-08-26T20:40:03.8380199Z * [new tag] trunk/117f11adb4b41a5485b570c4337c22ecc8e00aeb -> trunk/117f11adb4b41a5485b570c4337c22ecc8e00aeb 2025-08-26T20:40:03.8381097Z * [new tag] trunk/1471b20cb3fc502931ef12b1420414e32facd5b0 -> trunk/1471b20cb3fc502931ef12b1420414e32facd5b0 2025-08-26T20:40:03.8381955Z * [new tag] trunk/16e811e0b5073c7b42fe76f650ca2b79e339e053 -> trunk/16e811e0b5073c7b42fe76f650ca2b79e339e053 2025-08-26T20:40:03.8382989Z * [new tag] trunk/17b0263e86aec8aed068bb8b6744b129233e8084 -> trunk/17b0263e86aec8aed068bb8b6744b129233e8084 2025-08-26T20:40:03.8383833Z * [new tag] trunk/18271148d32da3d48897e9e7515de45066fce5bc -> trunk/18271148d32da3d48897e9e7515de45066fce5bc 2025-08-26T20:40:03.8384675Z * [new tag] trunk/19c70c2f3dc345a6555318f5f8b46cd55c42d0b4 -> trunk/19c70c2f3dc345a6555318f5f8b46cd55c42d0b4 2025-08-26T20:40:03.8385628Z * [new tag] trunk/1a566c4909ccf16ace1fbf1f65d90c995b362712 -> trunk/1a566c4909ccf16ace1fbf1f65d90c995b362712 2025-08-26T20:40:03.8386547Z * [new tag] trunk/1d458e294755ff2bfa314c67ddc5cb1dacc2aee8 -> trunk/1d458e294755ff2bfa314c67ddc5cb1dacc2aee8 2025-08-26T20:40:03.8387390Z * [new tag] trunk/1d46aa736fc8870dc88015c729a8c64470fa985c -> trunk/1d46aa736fc8870dc88015c729a8c64470fa985c 2025-08-26T20:40:03.8388237Z * [new tag] trunk/1de4540449ad6b9df8f452ab72da30ce8908af60 -> trunk/1de4540449ad6b9df8f452ab72da30ce8908af60 2025-08-26T20:40:03.8389070Z * [new tag] trunk/1e3fe78a104776cd708f150116348540346dae25 -> trunk/1e3fe78a104776cd708f150116348540346dae25 2025-08-26T20:40:03.8389909Z * [new tag] trunk/1ea918caf990c84bcb4e4ee5eee90f1102815b0a -> trunk/1ea918caf990c84bcb4e4ee5eee90f1102815b0a 2025-08-26T20:40:03.8390760Z * [new tag] trunk/1eccfb157ab9855b3f81872a23502fb15f455e0a -> trunk/1eccfb157ab9855b3f81872a23502fb15f455e0a 2025-08-26T20:40:03.8391620Z * [new tag] trunk/1fbe230b0d82251c6de8b5ae86c4da456b1db05c -> trunk/1fbe230b0d82251c6de8b5ae86c4da456b1db05c 2025-08-26T20:40:03.8392446Z * [new tag] trunk/209143ddeb99b0b075d16525088cee4893be7492 -> trunk/209143ddeb99b0b075d16525088cee4893be7492 2025-08-26T20:40:03.8393287Z * [new tag] trunk/22df59efc0a845b3ff37019029efd07c5a25c456 -> trunk/22df59efc0a845b3ff37019029efd07c5a25c456 2025-08-26T20:40:03.8394115Z * [new tag] trunk/23b033452fb1d4b404216279bbf5b6d06d8570c3 -> trunk/23b033452fb1d4b404216279bbf5b6d06d8570c3 2025-08-26T20:40:03.8394953Z * [new tag] trunk/24e7f3c21c9452c81d72bbd4b0c6b1f96f33536a -> trunk/24e7f3c21c9452c81d72bbd4b0c6b1f96f33536a 2025-08-26T20:40:03.8395825Z * [new tag] trunk/25df65afd8b5e2fffbcaf2b7ed63ef7a1e37ecb9 -> trunk/25df65afd8b5e2fffbcaf2b7ed63ef7a1e37ecb9 2025-08-26T20:40:03.8396701Z * [new tag] trunk/262640fd220236042fbf4443cc163c8838c84c3d -> trunk/262640fd220236042fbf4443cc163c8838c84c3d 2025-08-26T20:40:03.8397528Z * [new tag] trunk/266784ec6ae82f823abe406582e7a91f2ebb564a -> trunk/266784ec6ae82f823abe406582e7a91f2ebb564a 2025-08-26T20:40:03.8398379Z * [new tag] trunk/2835cc5e91eda8cbc4ac59de2ca990fa17107409 -> trunk/2835cc5e91eda8cbc4ac59de2ca990fa17107409 2025-08-26T20:40:03.8399218Z * [new tag] trunk/284b7190054686e68d9cc683b6ce43e45dd22338 -> trunk/284b7190054686e68d9cc683b6ce43e45dd22338 2025-08-26T20:40:03.8400045Z * [new tag] trunk/29afde20203ee6773641b4e3552942a37315316f -> trunk/29afde20203ee6773641b4e3552942a37315316f 2025-08-26T20:40:03.8400883Z * [new tag] trunk/2a7a7ad7116d930fde86cda02f668e624d26ec3e -> trunk/2a7a7ad7116d930fde86cda02f668e624d26ec3e 2025-08-26T20:40:03.8401815Z * [new tag] trunk/2b62ef74208792c7c4bf923f872e54b5f384efc8 -> trunk/2b62ef74208792c7c4bf923f872e54b5f384efc8 2025-08-26T20:40:03.8402663Z * [new tag] trunk/2beffb3311a41589021c121dac543994a7cbdff2 -> trunk/2beffb3311a41589021c121dac543994a7cbdff2 2025-08-26T20:40:03.8403500Z * [new tag] trunk/2c0650a00a0a0dd2bbf25ed22780fdd881bcda54 -> trunk/2c0650a00a0a0dd2bbf25ed22780fdd881bcda54 2025-08-26T20:40:03.8404348Z * [new tag] trunk/2cf69fe0e1bdb1413fe9e802c4b84d8958708421 -> trunk/2cf69fe0e1bdb1413fe9e802c4b84d8958708421 2025-08-26T20:40:03.8405312Z * [new tag] trunk/2cf7ac2fb7ab4067e17cc5ca71034b1c61a4fb10 -> trunk/2cf7ac2fb7ab4067e17cc5ca71034b1c61a4fb10 2025-08-26T20:40:03.8406183Z * [new tag] trunk/2f0cba934de7094a66c6ce68f5e937254f23142a -> trunk/2f0cba934de7094a66c6ce68f5e937254f23142a 2025-08-26T20:40:03.8407042Z * [new tag] trunk/2f0de0ff9361ca4f2b1e6f9edbc600b5fb6abcd6 -> trunk/2f0de0ff9361ca4f2b1e6f9edbc600b5fb6abcd6 2025-08-26T20:40:03.8407980Z * [new tag] trunk/2f50ae7d2022cb096c4156f5a207c291e36ddecf -> trunk/2f50ae7d2022cb096c4156f5a207c291e36ddecf 2025-08-26T20:40:03.8617925Z * [new tag] trunk/2fdd4f918cdc5fc8070e4c9c0d87b9045d316c06 -> trunk/2fdd4f918cdc5fc8070e4c9c0d87b9045d316c06 2025-08-26T20:40:03.8618821Z * [new tag] trunk/30384abcb1d181e774c0ac21b580aa34336a96c6 -> trunk/30384abcb1d181e774c0ac21b580aa34336a96c6 2025-08-26T20:40:03.8619716Z * [new tag] trunk/31a41daff49f2cde941d8b9e35cb2eaeeb606c0d -> trunk/31a41daff49f2cde941d8b9e35cb2eaeeb606c0d 2025-08-26T20:40:03.8620564Z * [new tag] trunk/332fa5b388521c05a19217649745c6edfdc2836d -> trunk/332fa5b388521c05a19217649745c6edfdc2836d 2025-08-26T20:40:03.8621383Z * [new tag] trunk/33346b58148c55592994a43385c321ae8c8808f2 -> trunk/33346b58148c55592994a43385c321ae8c8808f2 2025-08-26T20:40:03.8622196Z * [new tag] trunk/3373b074f5ea5277974fa6e945544fdfb16bb446 -> trunk/3373b074f5ea5277974fa6e945544fdfb16bb446 2025-08-26T20:40:03.8623118Z * [new tag] trunk/33c3794533844236a6e30ba377e0a6802b279fc8 -> trunk/33c3794533844236a6e30ba377e0a6802b279fc8 2025-08-26T20:40:03.8623939Z * [new tag] trunk/35e4d97e047bff8b38fee1dcf6ef6503f0fc9208 -> trunk/35e4d97e047bff8b38fee1dcf6ef6503f0fc9208 2025-08-26T20:40:03.8624776Z * [new tag] trunk/36ac916929ca67b533cc45932970297e9824324e -> trunk/36ac916929ca67b533cc45932970297e9824324e 2025-08-26T20:40:03.8625618Z * [new tag] trunk/371909cfd10e0da1bab1e12fb54a2403c37c5f76 -> trunk/371909cfd10e0da1bab1e12fb54a2403c37c5f76 2025-08-26T20:40:03.8626488Z * [new tag] trunk/373e25c2eb9f882356a9c7a2f18020935ff1d78b -> trunk/373e25c2eb9f882356a9c7a2f18020935ff1d78b 2025-08-26T20:40:03.8627314Z * [new tag] trunk/37a34022b59a6ff2757e5cec0fdc72278418f339 -> trunk/37a34022b59a6ff2757e5cec0fdc72278418f339 2025-08-26T20:40:03.8628147Z * [new tag] trunk/38a492d40d7ebb2856cb120df337c6cdac244528 -> trunk/38a492d40d7ebb2856cb120df337c6cdac244528 2025-08-26T20:40:03.8629079Z * [new tag] trunk/394728bab2de21e8002fc6a47aa4d3acb2d7a728 -> trunk/394728bab2de21e8002fc6a47aa4d3acb2d7a728 2025-08-26T20:40:03.8629978Z * [new tag] trunk/39862acb2e320783245d2a03acfd1b14cae28038 -> trunk/39862acb2e320783245d2a03acfd1b14cae28038 2025-08-26T20:40:03.8630820Z * [new tag] trunk/3a4140bf8e783db3f0094d2a2ce1d8534066432f -> trunk/3a4140bf8e783db3f0094d2a2ce1d8534066432f 2025-08-26T20:40:03.8631666Z * [new tag] trunk/3caddd4daa5b1a167663c07219e065e86247ad76 -> trunk/3caddd4daa5b1a167663c07219e065e86247ad76 2025-08-26T20:40:03.8632520Z * [new tag] trunk/3dacaf0e1eb3286e70bf8d572000ecebf2c1f4c9 -> trunk/3dacaf0e1eb3286e70bf8d572000ecebf2c1f4c9 2025-08-26T20:40:03.8633380Z * [new tag] trunk/3e210f90c2cbd5817aa23d430da10cad200a3ffa -> trunk/3e210f90c2cbd5817aa23d430da10cad200a3ffa 2025-08-26T20:40:03.8634224Z * [new tag] trunk/3e3e83418d0f6b1495f79380f3a3dbc8b2d23062 -> trunk/3e3e83418d0f6b1495f79380f3a3dbc8b2d23062 2025-08-26T20:40:03.8635138Z * [new tag] trunk/3e5b021f217a42ae55dc690083f67a28126808ed -> trunk/3e5b021f217a42ae55dc690083f67a28126808ed 2025-08-26T20:40:03.8635971Z * [new tag] trunk/3ea6cc8c2d443d6104159d50e8328c144f6caa39 -> trunk/3ea6cc8c2d443d6104159d50e8328c144f6caa39 2025-08-26T20:40:03.8636995Z * [new tag] trunk/3f1a97a99cad4cc682b20b43c1178ed9e1b81f24 -> trunk/3f1a97a99cad4cc682b20b43c1178ed9e1b81f24 2025-08-26T20:40:03.8637844Z * [new tag] trunk/3f5a8e2003f2234ca8be19fdc307ba7b995f9be3 -> trunk/3f5a8e2003f2234ca8be19fdc307ba7b995f9be3 2025-08-26T20:40:03.8638695Z * [new tag] trunk/40c0e700a488191cd8f541b30d8e3b9f2c0bc759 -> trunk/40c0e700a488191cd8f541b30d8e3b9f2c0bc759 2025-08-26T20:40:03.8639527Z * [new tag] trunk/419a2dbf5f69cee52382090200b532a81da92c69 -> trunk/419a2dbf5f69cee52382090200b532a81da92c69 2025-08-26T20:40:03.8640518Z * [new tag] trunk/431846a6323c6f1d02da49e311ac694324f386f4 -> trunk/431846a6323c6f1d02da49e311ac694324f386f4 2025-08-26T20:40:03.8641405Z * [new tag] trunk/44549c7146bd6c4166f97e856037babe1b7f4f49 -> trunk/44549c7146bd6c4166f97e856037babe1b7f4f49 2025-08-26T20:40:03.8642252Z * [new tag] trunk/447d34b5f80fb7350f79decd855cb599cab39083 -> trunk/447d34b5f80fb7350f79decd855cb599cab39083 2025-08-26T20:40:03.8643091Z * [new tag] trunk/46429be72323c1807a785234164bd91011f68d08 -> trunk/46429be72323c1807a785234164bd91011f68d08 2025-08-26T20:40:03.8643926Z * [new tag] trunk/4651aaac47ff855e08a74e2fdbfa605bc53afba8 -> trunk/4651aaac47ff855e08a74e2fdbfa605bc53afba8 2025-08-26T20:40:03.8644784Z * [new tag] trunk/46576f5a164fcf95ec7fceaa13516bcb1ca4f6ab -> trunk/46576f5a164fcf95ec7fceaa13516bcb1ca4f6ab 2025-08-26T20:40:03.8845606Z * [new tag] trunk/47d267364cad407b5612bf4a5faa160d2f4a7121 -> trunk/47d267364cad407b5612bf4a5faa160d2f4a7121 2025-08-26T20:40:03.8846500Z * [new tag] trunk/49ff884b1edc3b872eeb2387ec60ef230cae7f24 -> trunk/49ff884b1edc3b872eeb2387ec60ef230cae7f24 2025-08-26T20:40:03.8847383Z * [new tag] trunk/4a1aca11c20cfa29a1513b9f289d75bfe32d05d4 -> trunk/4a1aca11c20cfa29a1513b9f289d75bfe32d05d4 2025-08-26T20:40:03.8848262Z * [new tag] trunk/4acdbb8311f760513556e2e4fdd7bfd88c225e52 -> trunk/4acdbb8311f760513556e2e4fdd7bfd88c225e52 2025-08-26T20:40:03.8849094Z * [new tag] trunk/4c36c8a99463c898190a462300ba7f05b5b3384e -> trunk/4c36c8a99463c898190a462300ba7f05b5b3384e 2025-08-26T20:40:03.8850026Z * [new tag] trunk/4e19c1906a830714c1d9d71361357ce616a034d6 -> trunk/4e19c1906a830714c1d9d71361357ce616a034d6 2025-08-26T20:40:03.8850979Z * [new tag] trunk/4ed3184dee1bf4f775839bfd1448a7a34fe5a898 -> trunk/4ed3184dee1bf4f775839bfd1448a7a34fe5a898 2025-08-26T20:40:03.8851921Z * [new tag] trunk/50cfe76231768ee2c784f68a1eba03369f386019 -> trunk/50cfe76231768ee2c784f68a1eba03369f386019 2025-08-26T20:40:03.8852853Z * [new tag] trunk/510825e5fed8b56eb5e9352c12f0df1feeadb810 -> trunk/510825e5fed8b56eb5e9352c12f0df1feeadb810 2025-08-26T20:40:03.8853827Z * [new tag] trunk/512fc768e94c937df350911aaa4ebce757d1f9df -> trunk/512fc768e94c937df350911aaa4ebce757d1f9df 2025-08-26T20:40:03.8854769Z * [new tag] trunk/517d38d3406abbba35d0694bff259a698cad3ec9 -> trunk/517d38d3406abbba35d0694bff259a698cad3ec9 2025-08-26T20:40:03.8855754Z * [new tag] trunk/5255e65c01bf48bbcd916ecf16ed81cf28d3c6e2 -> trunk/5255e65c01bf48bbcd916ecf16ed81cf28d3c6e2 2025-08-26T20:40:03.8856679Z * [new tag] trunk/543896fcf3312f2053018edf9ee74c0fbb1d28ed -> trunk/543896fcf3312f2053018edf9ee74c0fbb1d28ed 2025-08-26T20:40:03.8857652Z * [new tag] trunk/54c2b66592d168e4a7525f7a58f8ca020517a9cb -> trunk/54c2b66592d168e4a7525f7a58f8ca020517a9cb 2025-08-26T20:40:03.8858582Z * [new tag] trunk/54cc63b467f24242cf0d6538d3e1df39e553daf1 -> trunk/54cc63b467f24242cf0d6538d3e1df39e553daf1 2025-08-26T20:40:03.8859549Z * [new tag] trunk/56ebed627a23eea36190e1ced5024a18ffcedbd7 -> trunk/56ebed627a23eea36190e1ced5024a18ffcedbd7 2025-08-26T20:40:03.8860711Z * [new tag] trunk/576a0e64ed2470abd2c430205d1984a11951ce05 -> trunk/576a0e64ed2470abd2c430205d1984a11951ce05 2025-08-26T20:40:03.8861626Z * [new tag] trunk/5805c4210b477f0a7315d6038078dc4a8be1c8fa -> trunk/5805c4210b477f0a7315d6038078dc4a8be1c8fa 2025-08-26T20:40:03.8862586Z * [new tag] trunk/58f9a3dd6391397e439c5f5075837e8f983735aa -> trunk/58f9a3dd6391397e439c5f5075837e8f983735aa 2025-08-26T20:40:03.8863513Z * [new tag] trunk/595987d28d4c8aee68de83734af919c7710ad58b -> trunk/595987d28d4c8aee68de83734af919c7710ad58b 2025-08-26T20:40:03.8864619Z * [new tag] trunk/599f639ddb8bb45abb2dc305542f38288427183d -> trunk/599f639ddb8bb45abb2dc305542f38288427183d 2025-08-26T20:40:03.8865575Z * [new tag] trunk/5afa4187dfe1e99278f8e372ec09102d5b937572 -> trunk/5afa4187dfe1e99278f8e372ec09102d5b937572 2025-08-26T20:40:03.8866603Z * [new tag] trunk/5d9653d90ee003173dd03f93e09fed236500ef06 -> trunk/5d9653d90ee003173dd03f93e09fed236500ef06 2025-08-26T20:40:03.8867561Z * [new tag] trunk/5dad5b4f57ade4001c0f421dbdad2e418304870e -> trunk/5dad5b4f57ade4001c0f421dbdad2e418304870e 2025-08-26T20:40:03.8868557Z * [new tag] trunk/5ee464db5c4293ac09521f9069fa7d2106680a7f -> trunk/5ee464db5c4293ac09521f9069fa7d2106680a7f 2025-08-26T20:40:03.8869475Z * [new tag] trunk/6096d277c543f5dd40351431ef9a8d556134c74d -> trunk/6096d277c543f5dd40351431ef9a8d556134c74d 2025-08-26T20:40:03.8870446Z * [new tag] trunk/62db8ec39116544ae247f876b3e06753178db49b -> trunk/62db8ec39116544ae247f876b3e06753178db49b 2025-08-26T20:40:03.8871377Z * [new tag] trunk/639b8cc51ddebf10361f3840a6b0a244eb6092a1 -> trunk/639b8cc51ddebf10361f3840a6b0a244eb6092a1 2025-08-26T20:40:03.8872351Z * [new tag] trunk/6443ea337df843681bc558d99efa84a3e5559b7f -> trunk/6443ea337df843681bc558d99efa84a3e5559b7f 2025-08-26T20:40:03.8873295Z * [new tag] trunk/6598f00c18dfcc4fc50427305b6b5724e617246f -> trunk/6598f00c18dfcc4fc50427305b6b5724e617246f 2025-08-26T20:40:03.8874277Z * [new tag] trunk/65d21dae18a34e8bd1b2f0e5aec7144b9dd33611 -> trunk/65d21dae18a34e8bd1b2f0e5aec7144b9dd33611 2025-08-26T20:40:03.8875228Z * [new tag] trunk/660b5656a436dcccb0275ea5421d3eb4f1157b43 -> trunk/660b5656a436dcccb0275ea5421d3eb4f1157b43 2025-08-26T20:40:03.8876202Z * [new tag] trunk/66166cf1e7696bf25f6f7bb815a93df367db48dc -> trunk/66166cf1e7696bf25f6f7bb815a93df367db48dc 2025-08-26T20:40:03.9064953Z * [new tag] trunk/667245dc60242a35ae0a6b0072628eb8e15a6d03 -> trunk/667245dc60242a35ae0a6b0072628eb8e15a6d03 2025-08-26T20:40:03.9065890Z * [new tag] trunk/67b98da1b262317f9c0375d64a4b467c82712548 -> trunk/67b98da1b262317f9c0375d64a4b467c82712548 2025-08-26T20:40:03.9066799Z * [new tag] trunk/67d31f6b281d3b15b205756fc7ebc450cdde1dab -> trunk/67d31f6b281d3b15b205756fc7ebc450cdde1dab 2025-08-26T20:40:03.9067658Z * [new tag] trunk/67fc16c7447f4fc04e7d28bfe201a4a0c78f3ea4 -> trunk/67fc16c7447f4fc04e7d28bfe201a4a0c78f3ea4 2025-08-26T20:40:03.9068504Z * [new tag] trunk/6aef9f3a6906c011a57541c1de7a246222bc9ac9 -> trunk/6aef9f3a6906c011a57541c1de7a246222bc9ac9 2025-08-26T20:40:03.9069323Z * [new tag] trunk/6afd766401659e0ba40589939c2576a29e9c64e7 -> trunk/6afd766401659e0ba40589939c2576a29e9c64e7 2025-08-26T20:40:03.9070161Z * [new tag] trunk/6ea4be1e2eca952ea66090182bd2eede89799a45 -> trunk/6ea4be1e2eca952ea66090182bd2eede89799a45 2025-08-26T20:40:03.9071013Z * [new tag] trunk/7006fd0c8874cb0228d3f2bfd83a989bde4b7021 -> trunk/7006fd0c8874cb0228d3f2bfd83a989bde4b7021 2025-08-26T20:40:03.9071839Z * [new tag] trunk/710514a2a51facaba445d2c188541d778f9fdb59 -> trunk/710514a2a51facaba445d2c188541d778f9fdb59 2025-08-26T20:40:03.9072694Z * [new tag] trunk/7131bfab89c46ffe31b61ea4937a8727e9cf33c1 -> trunk/7131bfab89c46ffe31b61ea4937a8727e9cf33c1 2025-08-26T20:40:03.9073736Z * [new tag] trunk/726dce3c944cbda16e54d3b15cdb4b6ced05af72 -> trunk/726dce3c944cbda16e54d3b15cdb4b6ced05af72 2025-08-26T20:40:03.9074578Z * [new tag] trunk/72e4786d1635681b8d053d0168c7d16b980e5124 -> trunk/72e4786d1635681b8d053d0168c7d16b980e5124 2025-08-26T20:40:03.9075386Z * [new tag] trunk/7376111d59f3170c2814d565c09d09435189692a -> trunk/7376111d59f3170c2814d565c09d09435189692a 2025-08-26T20:40:03.9076309Z * [new tag] trunk/74124d1b46774f2a73aa1aadc2b0874cb523b1c1 -> trunk/74124d1b46774f2a73aa1aadc2b0874cb523b1c1 2025-08-26T20:40:03.9077140Z * [new tag] trunk/74280d091321343b47a2975e17584b973d7c22c4 -> trunk/74280d091321343b47a2975e17584b973d7c22c4 2025-08-26T20:40:03.9077958Z * [new tag] trunk/74c4c758afa8c28162f00a456c185552e1159fd3 -> trunk/74c4c758afa8c28162f00a456c185552e1159fd3 2025-08-26T20:40:03.9078772Z * [new tag] trunk/763053dc536341997641e920d8887b3010901b3b -> trunk/763053dc536341997641e920d8887b3010901b3b 2025-08-26T20:40:03.9079649Z * [new tag] trunk/774b4befa18741b3115802cae71000168a40c384 -> trunk/774b4befa18741b3115802cae71000168a40c384 2025-08-26T20:40:03.9080492Z * [new tag] trunk/77bc959fe122bfd131e339ca36cab445a1860806 -> trunk/77bc959fe122bfd131e339ca36cab445a1860806 2025-08-26T20:40:03.9081322Z * [new tag] trunk/78a8e6a671c5631bc0e89b0e674790a424540547 -> trunk/78a8e6a671c5631bc0e89b0e674790a424540547 2025-08-26T20:40:03.9082175Z * [new tag] trunk/7e4bfa74eafab994b01f8b5501d4d061cbf64808 -> trunk/7e4bfa74eafab994b01f8b5501d4d061cbf64808 2025-08-26T20:40:03.9083025Z * [new tag] trunk/7e6ce41555d595e3fa0d91059491f21cee3eb5ea -> trunk/7e6ce41555d595e3fa0d91059491f21cee3eb5ea 2025-08-26T20:40:03.9083868Z * [new tag] trunk/7f201baf414301b3312576893b7f6f2698acd9ba -> trunk/7f201baf414301b3312576893b7f6f2698acd9ba 2025-08-26T20:40:03.9084730Z * [new tag] trunk/7fcdd8d6afeda6a4c8630816e12bf7cca44b8f8a -> trunk/7fcdd8d6afeda6a4c8630816e12bf7cca44b8f8a 2025-08-26T20:40:03.9085564Z * [new tag] trunk/801851086d09506d081800108c9e214edb3f5b7d -> trunk/801851086d09506d081800108c9e214edb3f5b7d 2025-08-26T20:40:03.9086389Z * [new tag] trunk/8047cde0f3a27f3afa218792b8464d5e0c9d942f -> trunk/8047cde0f3a27f3afa218792b8464d5e0c9d942f 2025-08-26T20:40:03.9087331Z * [new tag] trunk/80df27a612be3433516d7e6dfc8d8be058425d3e -> trunk/80df27a612be3433516d7e6dfc8d8be058425d3e 2025-08-26T20:40:03.9088253Z * [new tag] trunk/818ba434c7de4cd604184b2857d544e0ad95735f -> trunk/818ba434c7de4cd604184b2857d544e0ad95735f 2025-08-26T20:40:03.9089084Z * [new tag] trunk/83283ce7f5a7847b4e561e22be9b0f4530b05527 -> trunk/83283ce7f5a7847b4e561e22be9b0f4530b05527 2025-08-26T20:40:03.9089917Z * [new tag] trunk/85adf80cf15538a7e010fa235036fe8e06f8bede -> trunk/85adf80cf15538a7e010fa235036fe8e06f8bede 2025-08-26T20:40:03.9090779Z * [new tag] trunk/8aad3a60ce16a4acab17a8e46e5df339db2ff740 -> trunk/8aad3a60ce16a4acab17a8e46e5df339db2ff740 2025-08-26T20:40:03.9091699Z * [new tag] trunk/8c442e4fd3310e15f57770944f883ac1d73e77e2 -> trunk/8c442e4fd3310e15f57770944f883ac1d73e77e2 2025-08-26T20:40:03.9299474Z * [new tag] trunk/8c506e6310b9b5295151fb725be479d0f80ce5e8 -> trunk/8c506e6310b9b5295151fb725be479d0f80ce5e8 2025-08-26T20:40:03.9300393Z * [new tag] trunk/8cfc119491f533c4edded4263a78eb0af782a2d5 -> trunk/8cfc119491f533c4edded4263a78eb0af782a2d5 2025-08-26T20:40:03.9301260Z * [new tag] trunk/8dbe7f99bd707ee28ae12ecb9cab54e1785bf13e -> trunk/8dbe7f99bd707ee28ae12ecb9cab54e1785bf13e 2025-08-26T20:40:03.9302106Z * [new tag] trunk/8e1770905565cd67d6c3a91c7afa462f4ef6e6aa -> trunk/8e1770905565cd67d6c3a91c7afa462f4ef6e6aa 2025-08-26T20:40:03.9303131Z * [new tag] trunk/8f31aa97a3e1e17bed29b6cedf9884f0c6b145e9 -> trunk/8f31aa97a3e1e17bed29b6cedf9884f0c6b145e9 2025-08-26T20:40:03.9303962Z * [new tag] trunk/8f766d68397736053883aa281cae0eb46bb233bb -> trunk/8f766d68397736053883aa281cae0eb46bb233bb 2025-08-26T20:40:03.9304815Z * [new tag] trunk/908b0ccb1f70ed2cfa830484e05ee32af13b1836 -> trunk/908b0ccb1f70ed2cfa830484e05ee32af13b1836 2025-08-26T20:40:03.9305856Z * [new tag] trunk/90ea9ccefe3e2d9a9e4840016d1af10c1814d48b -> trunk/90ea9ccefe3e2d9a9e4840016d1af10c1814d48b 2025-08-26T20:40:03.9306697Z * [new tag] trunk/9225c6199412f8a2ee99b7c29f533fb98b9ff62e -> trunk/9225c6199412f8a2ee99b7c29f533fb98b9ff62e 2025-08-26T20:40:03.9307528Z * [new tag] trunk/923bc46122d173a7964c646311a3bea3cd8dd561 -> trunk/923bc46122d173a7964c646311a3bea3cd8dd561 2025-08-26T20:40:03.9308431Z * [new tag] trunk/92ab18482459a63e97f1374e27e8411964da9762 -> trunk/92ab18482459a63e97f1374e27e8411964da9762 2025-08-26T20:40:03.9309253Z * [new tag] trunk/94b9569c4a86e12b944ca66e3125357a14d0eb9e -> trunk/94b9569c4a86e12b944ca66e3125357a14d0eb9e 2025-08-26T20:40:03.9310092Z * [new tag] trunk/957b170d8efe2a51147e0cdb7515acc345ba81da -> trunk/957b170d8efe2a51147e0cdb7515acc345ba81da 2025-08-26T20:40:03.9310932Z * [new tag] trunk/958f9ca88e9a1580de7c94a5a2ca8a750b1335ae -> trunk/958f9ca88e9a1580de7c94a5a2ca8a750b1335ae 2025-08-26T20:40:03.9311774Z * [new tag] trunk/96682103026b5ea27f19e6db9303e17572095b0e -> trunk/96682103026b5ea27f19e6db9303e17572095b0e 2025-08-26T20:40:03.9312591Z * [new tag] trunk/97200c971110d54030feaad999698c7341f8acc7 -> trunk/97200c971110d54030feaad999698c7341f8acc7 2025-08-26T20:40:03.9313410Z * [new tag] trunk/981ac533c6e69a77538aaa7a9747c3d840dfa8be -> trunk/981ac533c6e69a77538aaa7a9747c3d840dfa8be 2025-08-26T20:40:03.9314295Z * [new tag] trunk/995397d47a0e27394ee1010f158e181eb304100a -> trunk/995397d47a0e27394ee1010f158e181eb304100a 2025-08-26T20:40:03.9315150Z * [new tag] trunk/9a41570199155eee92ebd28452a556075e34e1b4 -> trunk/9a41570199155eee92ebd28452a556075e34e1b4 2025-08-26T20:40:03.9315985Z * [new tag] trunk/9b3ebd25acfd2ff4e9b7428079ba364d6f8a14da -> trunk/9b3ebd25acfd2ff4e9b7428079ba364d6f8a14da 2025-08-26T20:40:03.9316928Z * [new tag] trunk/9b4adc4db7494dbc4dbbac5dd85ccbf5babaef44 -> trunk/9b4adc4db7494dbc4dbbac5dd85ccbf5babaef44 2025-08-26T20:40:03.9317794Z * [new tag] trunk/9d18bf01b1661d227f6af41ac07a1e9ef20a9e1a -> trunk/9d18bf01b1661d227f6af41ac07a1e9ef20a9e1a 2025-08-26T20:40:03.9318643Z * [new tag] trunk/9d7cecdd6c44c5421d341bcc359be4097ea9a2f5 -> trunk/9d7cecdd6c44c5421d341bcc359be4097ea9a2f5 2025-08-26T20:40:03.9319503Z * [new tag] trunk/9d882fd9ffc6ad2a292fee548740aabfea745002 -> trunk/9d882fd9ffc6ad2a292fee548740aabfea745002 2025-08-26T20:40:03.9320368Z * [new tag] trunk/9d9cc9897ac44a1a8df38211b03d8342a8af48c3 -> trunk/9d9cc9897ac44a1a8df38211b03d8342a8af48c3 2025-08-26T20:40:03.9321204Z * [new tag] trunk/9e1c9541344b2aa1c946edb779d275072f3b8f4a -> trunk/9e1c9541344b2aa1c946edb779d275072f3b8f4a 2025-08-26T20:40:03.9322030Z * [new tag] trunk/9e491f753ee521a70e6a7e7dbb36f96c9350f5ea -> trunk/9e491f753ee521a70e6a7e7dbb36f96c9350f5ea 2025-08-26T20:40:03.9322867Z * [new tag] trunk/9f6e1b8730d6a7a7d012be90ae08674294aa4933 -> trunk/9f6e1b8730d6a7a7d012be90ae08674294aa4933 2025-08-26T20:40:03.9323708Z * [new tag] trunk/a03cc53e6f6e2fe67316cb8c74c25f5b953f445b -> trunk/a03cc53e6f6e2fe67316cb8c74c25f5b953f445b 2025-08-26T20:40:03.9324541Z * [new tag] trunk/a154c2093c0f2646346f032e1f30012779b3c51d -> trunk/a154c2093c0f2646346f032e1f30012779b3c51d 2025-08-26T20:40:03.9326080Z * [new tag] trunk/a391fa1c42dd32e32a2e5b1cb196bac56daaca88 -> trunk/a391fa1c42dd32e32a2e5b1cb196bac56daaca88 2025-08-26T20:40:03.9326954Z * [new tag] trunk/a3a82e3da85a53afc4bbf3d75bd3d3dcc2e06645 -> trunk/a3a82e3da85a53afc4bbf3d75bd3d3dcc2e06645 2025-08-26T20:40:03.9327824Z * [new tag] trunk/a3fe1ced409d186628ff2975f05ba529a86fae84 -> trunk/a3fe1ced409d186628ff2975f05ba529a86fae84 2025-08-26T20:40:03.9520227Z * [new tag] trunk/a43480d19cdd68e544163b1a07c328a9c54723b8 -> trunk/a43480d19cdd68e544163b1a07c328a9c54723b8 2025-08-26T20:40:03.9521364Z * [new tag] trunk/a445b41e4f11daa82a53a21ec413c15d5079ae77 -> trunk/a445b41e4f11daa82a53a21ec413c15d5079ae77 2025-08-26T20:40:03.9522220Z * [new tag] trunk/a44a0d3671b4ccf2fe915896a8a5204fe79b1e7b -> trunk/a44a0d3671b4ccf2fe915896a8a5204fe79b1e7b 2025-08-26T20:40:03.9523075Z * [new tag] trunk/a4fb65701b1b6408a949529442f26248b40f139b -> trunk/a4fb65701b1b6408a949529442f26248b40f139b 2025-08-26T20:40:03.9523919Z * [new tag] trunk/a6401cb5aa51622045c3f9a03b2cebef236e4182 -> trunk/a6401cb5aa51622045c3f9a03b2cebef236e4182 2025-08-26T20:40:03.9524756Z * [new tag] trunk/a68f63e33161b4665e0f4c399bf8072135a35a57 -> trunk/a68f63e33161b4665e0f4c399bf8072135a35a57 2025-08-26T20:40:03.9525585Z * [new tag] trunk/a72803f1e3c69c780b7d7bcdd9b35360fd98148b -> trunk/a72803f1e3c69c780b7d7bcdd9b35360fd98148b 2025-08-26T20:40:03.9526432Z * [new tag] trunk/a7aa480e55ef5cdf56af53d93b381eca6680e2ae -> trunk/a7aa480e55ef5cdf56af53d93b381eca6680e2ae 2025-08-26T20:40:03.9527291Z * [new tag] trunk/a7b5955ea8851d73e35f50a0de5bb0626bae24cb -> trunk/a7b5955ea8851d73e35f50a0de5bb0626bae24cb 2025-08-26T20:40:03.9528122Z * [new tag] trunk/a818fa77e3a72271f144514ef349c5a666313205 -> trunk/a818fa77e3a72271f144514ef349c5a666313205 2025-08-26T20:40:03.9528939Z * [new tag] trunk/a825557ed53507e85ac613862311a81eb88710a4 -> trunk/a825557ed53507e85ac613862311a81eb88710a4 2025-08-26T20:40:03.9529762Z * [new tag] trunk/a85711d565f37b0095af9f7dafa77f392c9aa31e -> trunk/a85711d565f37b0095af9f7dafa77f392c9aa31e 2025-08-26T20:40:03.9530605Z * [new tag] trunk/a941d7ffe54b5f256c1fbd3959ddbf608b7eea88 -> trunk/a941d7ffe54b5f256c1fbd3959ddbf608b7eea88 2025-08-26T20:40:03.9531466Z * [new tag] trunk/a9fabeb012a4b804836a2b8d4b3742b92c9a6b58 -> trunk/a9fabeb012a4b804836a2b8d4b3742b92c9a6b58 2025-08-26T20:40:03.9532322Z * [new tag] trunk/ab7787fb82dd777b2f777ef58bc20dbb7bd8289b -> trunk/ab7787fb82dd777b2f777ef58bc20dbb7bd8289b 2025-08-26T20:40:03.9533167Z * [new tag] trunk/ab8d60f4c86ca19ed00d6e79ae8e6939266f28e6 -> trunk/ab8d60f4c86ca19ed00d6e79ae8e6939266f28e6 2025-08-26T20:40:03.9534021Z * [new tag] trunk/ac8d9418aee4543fa193c86ae0bc3e63707bcd3b -> trunk/ac8d9418aee4543fa193c86ae0bc3e63707bcd3b 2025-08-26T20:40:03.9534880Z * [new tag] trunk/acb00d3ccf5f2d566225f07ed66bd579d5d3e44e -> trunk/acb00d3ccf5f2d566225f07ed66bd579d5d3e44e 2025-08-26T20:40:03.9535795Z * [new tag] trunk/adecb0c9e89e0dfe18d944d292c98c97b686fc83 -> trunk/adecb0c9e89e0dfe18d944d292c98c97b686fc83 2025-08-26T20:40:03.9536664Z * [new tag] trunk/ae8d319fd4a0b0fa7b1372aa07690a36ce823abc -> trunk/ae8d319fd4a0b0fa7b1372aa07690a36ce823abc 2025-08-26T20:40:03.9537508Z * [new tag] trunk/af3265d20f763e5366bfa37e3d4a6307036d0c18 -> trunk/af3265d20f763e5366bfa37e3d4a6307036d0c18 2025-08-26T20:40:03.9538348Z * [new tag] trunk/b0420d24386263f2727fd5714b63cfa6bc89f3e6 -> trunk/b0420d24386263f2727fd5714b63cfa6bc89f3e6 2025-08-26T20:40:03.9539194Z * [new tag] trunk/b1380f434da2fa2de0e5ff6fd70f73082dc08687 -> trunk/b1380f434da2fa2de0e5ff6fd70f73082dc08687 2025-08-26T20:40:03.9540138Z * [new tag] trunk/b2632e79828300302fd11e093d765196c3c0db58 -> trunk/b2632e79828300302fd11e093d765196c3c0db58 2025-08-26T20:40:03.9540968Z * [new tag] trunk/b2e06e0194c3fa8f7578a1b48751cc027394fb67 -> trunk/b2e06e0194c3fa8f7578a1b48751cc027394fb67 2025-08-26T20:40:03.9541805Z * [new tag] trunk/b3e215b864e6ca43b2c4e50ce666673f80feee27 -> trunk/b3e215b864e6ca43b2c4e50ce666673f80feee27 2025-08-26T20:40:03.9542644Z * [new tag] trunk/b708966201811b31ee765ec57715ac21d06ef652 -> trunk/b708966201811b31ee765ec57715ac21d06ef652 2025-08-26T20:40:03.9543570Z * [new tag] trunk/b9e9e92817fd7d1a778f074105603efb07e05004 -> trunk/b9e9e92817fd7d1a778f074105603efb07e05004 2025-08-26T20:40:03.9544431Z * [new tag] trunk/bc7eaa0d8a1f5ca8ec0eaac461d1df500dcaea84 -> trunk/bc7eaa0d8a1f5ca8ec0eaac461d1df500dcaea84 2025-08-26T20:40:03.9545309Z * [new tag] trunk/bcfe1b2d714cbb2716495e09ae010e7c34daf045 -> trunk/bcfe1b2d714cbb2716495e09ae010e7c34daf045 2025-08-26T20:40:03.9546230Z * [new tag] trunk/bd5857a1d6d5455d4f0057c182dff5e8ad2a4c8a -> trunk/bd5857a1d6d5455d4f0057c182dff5e8ad2a4c8a 2025-08-26T20:40:03.9547066Z * [new tag] trunk/be2e6b3158552405acc13ef7829a0217826fb271 -> trunk/be2e6b3158552405acc13ef7829a0217826fb271 2025-08-26T20:40:03.9752054Z * [new tag] trunk/be87f22dfba4488963fcc854699829e2782ee0f2 -> trunk/be87f22dfba4488963fcc854699829e2782ee0f2 2025-08-26T20:40:03.9752956Z * [new tag] trunk/becd6cd744bdf950578519437652a0d1f4b48781 -> trunk/becd6cd744bdf950578519437652a0d1f4b48781 2025-08-26T20:40:03.9753825Z * [new tag] trunk/bf8431ba062efa9ff0cdd5032a3ddf2e007a3216 -> trunk/bf8431ba062efa9ff0cdd5032a3ddf2e007a3216 2025-08-26T20:40:03.9754671Z * [new tag] trunk/c02e26bf31eb3da301158a061aa68527dbfb4d32 -> trunk/c02e26bf31eb3da301158a061aa68527dbfb4d32 2025-08-26T20:40:03.9755596Z * [new tag] trunk/c081481bbebdb568d07ee19cfe2cd3125de6cba7 -> trunk/c081481bbebdb568d07ee19cfe2cd3125de6cba7 2025-08-26T20:40:03.9756561Z * [new tag] trunk/c2390087c34c964ef648addf43efb8c6a34e30c2 -> trunk/c2390087c34c964ef648addf43efb8c6a34e30c2 2025-08-26T20:40:03.9757380Z * [new tag] trunk/c4670e40c9b741d50a79b714e3830149833be908 -> trunk/c4670e40c9b741d50a79b714e3830149833be908 2025-08-26T20:40:03.9758214Z * [new tag] trunk/c5cb255625deb4cdbc5780e6911b73498e17ed5a -> trunk/c5cb255625deb4cdbc5780e6911b73498e17ed5a 2025-08-26T20:40:03.9759058Z * [new tag] trunk/c60dea5261d9648d1da51528a07731966bb6823e -> trunk/c60dea5261d9648d1da51528a07731966bb6823e 2025-08-26T20:40:03.9759883Z * [new tag] trunk/c74e5f60611b7eac4321f53a9e4a15b077fb1bcc -> trunk/c74e5f60611b7eac4321f53a9e4a15b077fb1bcc 2025-08-26T20:40:03.9760776Z * [new tag] trunk/c7a77470c54b28e555319e34048af14d1d66198a -> trunk/c7a77470c54b28e555319e34048af14d1d66198a 2025-08-26T20:40:03.9761654Z * [new tag] trunk/c7fb031706330684fc3a2d8d169bebea874d4e95 -> trunk/c7fb031706330684fc3a2d8d169bebea874d4e95 2025-08-26T20:40:03.9762597Z * [new tag] trunk/c8bb0e4720ddddf3cd1b0b48b336978f763c71ca -> trunk/c8bb0e4720ddddf3cd1b0b48b336978f763c71ca 2025-08-26T20:40:03.9763452Z * [new tag] trunk/ca9fe0107e165a4a4147325ff6d34235ebde447f -> trunk/ca9fe0107e165a4a4147325ff6d34235ebde447f 2025-08-26T20:40:03.9764295Z * [new tag] trunk/caf98fde0d5c47452af45dc77099449edd521579 -> trunk/caf98fde0d5c47452af45dc77099449edd521579 2025-08-26T20:40:03.9765149Z * [new tag] trunk/cb579532150c9e87e7c143adcb020fb7de7cc6b1 -> trunk/cb579532150c9e87e7c143adcb020fb7de7cc6b1 2025-08-26T20:40:03.9766004Z * [new tag] trunk/cc2b65a91ae7773d4ecf9a600dda48fc3e69aa8f -> trunk/cc2b65a91ae7773d4ecf9a600dda48fc3e69aa8f 2025-08-26T20:40:03.9766847Z * [new tag] trunk/cc791d5857f4aa06b8d4e567b1fb2852e3ae963d -> trunk/cc791d5857f4aa06b8d4e567b1fb2852e3ae963d 2025-08-26T20:40:03.9767939Z * [new tag] trunk/cd31be28ec5cd0c4d9cdb6742efe151eee1406ec -> trunk/cd31be28ec5cd0c4d9cdb6742efe151eee1406ec 2025-08-26T20:40:03.9768883Z * [new tag] trunk/cd87f3029582cedb3b88747a3bd7d200b05c1138 -> trunk/cd87f3029582cedb3b88747a3bd7d200b05c1138 2025-08-26T20:40:03.9769712Z * [new tag] trunk/ce048de608180fa88335e5821070472539968b54 -> trunk/ce048de608180fa88335e5821070472539968b54 2025-08-26T20:40:03.9771177Z * [new tag] trunk/ce467df5d1d763d1648aee51c93ce3e9a4699936 -> trunk/ce467df5d1d763d1648aee51c93ce3e9a4699936 2025-08-26T20:40:03.9772035Z * [new tag] trunk/cee72119b2dec7776bc2550dd39a9b1349772751 -> trunk/cee72119b2dec7776bc2550dd39a9b1349772751 2025-08-26T20:40:03.9772919Z * [new tag] trunk/cf94cadbeee31a4d1d46a57f11bce7c9fd1cebc0 -> trunk/cf94cadbeee31a4d1d46a57f11bce7c9fd1cebc0 2025-08-26T20:40:03.9773811Z * [new tag] trunk/cfdaaaaa26d7f34427ba941569eca46f02f79f3e -> trunk/cfdaaaaa26d7f34427ba941569eca46f02f79f3e 2025-08-26T20:40:03.9774780Z * [new tag] trunk/d1faf2ef0476eb60b42c057baee9af0f48ae849a -> trunk/d1faf2ef0476eb60b42c057baee9af0f48ae849a 2025-08-26T20:40:03.9775685Z * [new tag] trunk/d228a776e90368bb693837ae23285ad8fc33def5 -> trunk/d228a776e90368bb693837ae23285ad8fc33def5 2025-08-26T20:40:03.9776520Z * [new tag] trunk/d2b8c0d431e00ad57354c5247e46c1bea0b8cd31 -> trunk/d2b8c0d431e00ad57354c5247e46c1bea0b8cd31 2025-08-26T20:40:03.9777369Z * [new tag] trunk/d2bd55d8de784df439b38378f161271dc43b744c -> trunk/d2bd55d8de784df439b38378f161271dc43b744c 2025-08-26T20:40:03.9778197Z * [new tag] trunk/d4703fb91c3510460d71f648da113177edf593c8 -> trunk/d4703fb91c3510460d71f648da113177edf593c8 2025-08-26T20:40:03.9779013Z * [new tag] trunk/d875d3ca1e5099636c766c9df70ac5888c25215a -> trunk/d875d3ca1e5099636c766c9df70ac5888c25215a 2025-08-26T20:40:03.9779866Z * [new tag] trunk/d8fcb2a4acb506f9c72a1f44fc8b857158bda892 -> trunk/d8fcb2a4acb506f9c72a1f44fc8b857158bda892 2025-08-26T20:40:03.9780811Z * [new tag] trunk/daeb3a6094c62d1881ea68091fcadb02d1dc687e -> trunk/daeb3a6094c62d1881ea68091fcadb02d1dc687e 2025-08-26T20:40:03.9960292Z * [new tag] trunk/db38c44ad639e7ada3e9df2ba026a2cb5e40feb0 -> trunk/db38c44ad639e7ada3e9df2ba026a2cb5e40feb0 2025-08-26T20:40:03.9961227Z * [new tag] trunk/db44de4c0d3e9f1fe5334ff4cc261fb8fe4390c8 -> trunk/db44de4c0d3e9f1fe5334ff4cc261fb8fe4390c8 2025-08-26T20:40:03.9962156Z * [new tag] trunk/dbef6066311a1ce6e60e1f2b6084249d1ad45769 -> trunk/dbef6066311a1ce6e60e1f2b6084249d1ad45769 2025-08-26T20:40:03.9963028Z * [new tag] trunk/df571ae7ad7dacf77ce42c00189cf369d7993387 -> trunk/df571ae7ad7dacf77ce42c00189cf369d7993387 2025-08-26T20:40:03.9963882Z * [new tag] trunk/df6073641079c781e66a905e4f15ee49ac257eb2 -> trunk/df6073641079c781e66a905e4f15ee49ac257eb2 2025-08-26T20:40:03.9964717Z * [new tag] trunk/e1a64b75ff3dc834774a9174c2e7b1c46dea35ec -> trunk/e1a64b75ff3dc834774a9174c2e7b1c46dea35ec 2025-08-26T20:40:03.9965560Z * [new tag] trunk/e20f6d798606f3245686e950c43635bbe526232d -> trunk/e20f6d798606f3245686e950c43635bbe526232d 2025-08-26T20:40:03.9966386Z * [new tag] trunk/e25ee0290ef16503f178e04890c15717f6e9ea44 -> trunk/e25ee0290ef16503f178e04890c15717f6e9ea44 2025-08-26T20:40:03.9967225Z * [new tag] trunk/e34b6a01039df5d8940acdccd8d8989f3cd827aa -> trunk/e34b6a01039df5d8940acdccd8d8989f3cd827aa 2025-08-26T20:40:03.9968253Z * [new tag] trunk/e3d68dfae2dee15e74d3b95beaed7149b6afb94a -> trunk/e3d68dfae2dee15e74d3b95beaed7149b6afb94a 2025-08-26T20:40:03.9969117Z * [new tag] trunk/e3ebf364e6d2fb8008da113a596d3cc426ba9c79 -> trunk/e3ebf364e6d2fb8008da113a596d3cc426ba9c79 2025-08-26T20:40:03.9970125Z * [new tag] trunk/e4839470470168648dee5997f57347bb8541ea2b -> trunk/e4839470470168648dee5997f57347bb8541ea2b 2025-08-26T20:40:03.9970945Z * [new tag] trunk/e63155751825ba026ced3a1fc89563231bc85ccc -> trunk/e63155751825ba026ced3a1fc89563231bc85ccc 2025-08-26T20:40:03.9971784Z * [new tag] trunk/e6aa7287f8c8cac76d792097f20ba1dae6dc8717 -> trunk/e6aa7287f8c8cac76d792097f20ba1dae6dc8717 2025-08-26T20:40:03.9972747Z * [new tag] trunk/e6e45e6ae8452f0bc5e3e258027c42eb9a1394fb -> trunk/e6e45e6ae8452f0bc5e3e258027c42eb9a1394fb 2025-08-26T20:40:03.9973584Z * [new tag] trunk/e795450a35bca909902e12de99245e1c0e7e2872 -> trunk/e795450a35bca909902e12de99245e1c0e7e2872 2025-08-26T20:40:03.9974431Z * [new tag] trunk/e7e270a33a3f368c3ef0c3339950a47fdbfadd71 -> trunk/e7e270a33a3f368c3ef0c3339950a47fdbfadd71 2025-08-26T20:40:03.9975286Z * [new tag] trunk/e836323a23f5750e800abe04ef8ca386b3066b58 -> trunk/e836323a23f5750e800abe04ef8ca386b3066b58 2025-08-26T20:40:03.9976124Z * [new tag] trunk/e83825f91cb2901567fedbf31ba7cc434a897271 -> trunk/e83825f91cb2901567fedbf31ba7cc434a897271 2025-08-26T20:40:03.9976981Z * [new tag] trunk/e9d42b3880dcdbd823bbdc9370c8b0b3af0ba2e3 -> trunk/e9d42b3880dcdbd823bbdc9370c8b0b3af0ba2e3 2025-08-26T20:40:03.9977834Z * [new tag] trunk/eb5549a43164cdf8689cd7d177c03b2508c699f4 -> trunk/eb5549a43164cdf8689cd7d177c03b2508c699f4 2025-08-26T20:40:03.9978677Z * [new tag] trunk/eba1ad09e47b66478f973e03cece7f314ac3b412 -> trunk/eba1ad09e47b66478f973e03cece7f314ac3b412 2025-08-26T20:40:03.9979537Z * [new tag] trunk/eba20d2d748cb17dce9aa26e5513e4567bfd8282 -> trunk/eba20d2d748cb17dce9aa26e5513e4567bfd8282 2025-08-26T20:40:03.9980385Z * [new tag] trunk/ec21cafd85d491d2d220e4e54080fe340a37c4c2 -> trunk/ec21cafd85d491d2d220e4e54080fe340a37c4c2 2025-08-26T20:40:03.9981258Z * [new tag] trunk/ed8bcccf31e1ba01a35e818a4afbb74c333e8dc3 -> trunk/ed8bcccf31e1ba01a35e818a4afbb74c333e8dc3 2025-08-26T20:40:03.9982138Z * [new tag] trunk/eddaaa6c2a66a84e17b17bf8af5131852067b259 -> trunk/eddaaa6c2a66a84e17b17bf8af5131852067b259 2025-08-26T20:40:03.9983009Z * [new tag] trunk/ef761c43538abae5bccc0c4b6ebaf42ff676db7a -> trunk/ef761c43538abae5bccc0c4b6ebaf42ff676db7a 2025-08-26T20:40:03.9983867Z * [new tag] trunk/f085f299584b06a2a7d8855eda2a411313e782ad -> trunk/f085f299584b06a2a7d8855eda2a411313e782ad 2025-08-26T20:40:03.9984706Z * [new tag] trunk/f09458c2e16b4fe7063d73d80fd3e7e354bad3f8 -> trunk/f09458c2e16b4fe7063d73d80fd3e7e354bad3f8 2025-08-26T20:40:03.9985547Z * [new tag] trunk/f0e0a6897ee5cb31ccee10ee8e2d3c01140ff999 -> trunk/f0e0a6897ee5cb31ccee10ee8e2d3c01140ff999 2025-08-26T20:40:03.9986453Z * [new tag] trunk/f30501937738a2440f90988d1d46920529309ba8 -> trunk/f30501937738a2440f90988d1d46920529309ba8 2025-08-26T20:40:03.9987281Z * [new tag] trunk/f391afe9bf8c542fdbb822423d2a1e454b3d9744 -> trunk/f391afe9bf8c542fdbb822423d2a1e454b3d9744 2025-08-26T20:40:04.0290570Z * [new tag] trunk/f521e82a4e80df502fa57e5852af14d8779dcbd1 -> trunk/f521e82a4e80df502fa57e5852af14d8779dcbd1 2025-08-26T20:40:04.0291455Z * [new tag] trunk/f5bf5147ad18994c9a6e0f565d7831362bf5a18a -> trunk/f5bf5147ad18994c9a6e0f565d7831362bf5a18a 2025-08-26T20:40:04.0292411Z * [new tag] trunk/f795e92802c55608ad4f4f198726d250056d0232 -> trunk/f795e92802c55608ad4f4f198726d250056d0232 2025-08-26T20:40:04.0293368Z * [new tag] trunk/f8bd85827d465a8a2a610c27ed9e62a4c27ac07d -> trunk/f8bd85827d465a8a2a610c27ed9e62a4c27ac07d 2025-08-26T20:40:04.0294234Z * [new tag] trunk/f90ccad1651b5a1698b2232acc3e92e2829b7935 -> trunk/f90ccad1651b5a1698b2232acc3e92e2829b7935 2025-08-26T20:40:04.0295330Z * [new tag] trunk/f912c93344caa74e24c8164a2e25fe84a8203073 -> trunk/f912c93344caa74e24c8164a2e25fe84a8203073 2025-08-26T20:40:04.0296172Z * [new tag] trunk/f9875166a953a51bbd454d963ee03d41818a27e8 -> trunk/f9875166a953a51bbd454d963ee03d41818a27e8 2025-08-26T20:40:04.0297031Z * [new tag] trunk/f9df4ec2af0ac19b42f658ae87acf12067e67b36 -> trunk/f9df4ec2af0ac19b42f658ae87acf12067e67b36 2025-08-26T20:40:04.0298000Z * [new tag] trunk/fab5dac734344105ae107e85c08151758a4a9b4d -> trunk/fab5dac734344105ae107e85c08151758a4a9b4d 2025-08-26T20:40:04.0298973Z * [new tag] trunk/fb241d0a448f1dd88471098ac149418124a7c4aa -> trunk/fb241d0a448f1dd88471098ac149418124a7c4aa 2025-08-26T20:40:04.0299811Z * [new tag] trunk/fc0683b1e75fdf3182e0855b3f79e80fe0124ef1 -> trunk/fc0683b1e75fdf3182e0855b3f79e80fe0124ef1 2025-08-26T20:40:04.0300667Z * [new tag] trunk/fc69c2bc67672c3b2d0c62c1821895f09288f1c0 -> trunk/fc69c2bc67672c3b2d0c62c1821895f09288f1c0 2025-08-26T20:40:04.0301529Z * [new tag] trunk/febfc3ec03004116dfd6d504e6853ff02a1dd6e0 -> trunk/febfc3ec03004116dfd6d504e6853ff02a1dd6e0 2025-08-26T20:40:04.0302409Z * [new tag] trunk/fecc5f600110209aaaedead11770a445b3c879e6 -> trunk/fecc5f600110209aaaedead11770a445b3c879e6 2025-08-26T20:40:04.0303274Z * [new tag] trunk/ff4f5dd8ed8e2aaee903c7d30cd4f8bd04d883c8 -> trunk/ff4f5dd8ed8e2aaee903c7d30cd4f8bd04d883c8 2025-08-26T20:40:04.0304166Z * [new tag] trunk/ffa1ce7650766c2ae6eaa96415dfc29e9eb0b3ec -> trunk/ffa1ce7650766c2ae6eaa96415dfc29e9eb0b3ec 2025-08-26T20:40:04.0304856Z * [new tag] v0.1.1 -> v0.1.1 2025-08-26T20:40:04.0305238Z * [new tag] v0.1.10 -> v0.1.10 2025-08-26T20:40:04.0305604Z * [new tag] v0.1.11 -> v0.1.11 2025-08-26T20:40:04.0306017Z * [new tag] v0.1.12 -> v0.1.12 2025-08-26T20:40:04.0306383Z * [new tag] v0.1.2 -> v0.1.2 2025-08-26T20:40:04.0306730Z * [new tag] v0.1.3 -> v0.1.3 2025-08-26T20:40:04.0307097Z * [new tag] v0.1.4 -> v0.1.4 2025-08-26T20:40:04.0307440Z * [new tag] v0.1.5 -> v0.1.5 2025-08-26T20:40:04.0307797Z * [new tag] v0.1.6 -> v0.1.6 2025-08-26T20:40:04.0308153Z * [new tag] v0.1.7 -> v0.1.7 2025-08-26T20:40:04.0308500Z * [new tag] v0.1.8 -> v0.1.8 2025-08-26T20:40:04.0308856Z * [new tag] v0.1.9 -> v0.1.9 2025-08-26T20:40:04.0309202Z * [new tag] v0.2.0 -> v0.2.0 2025-08-26T20:40:04.0309556Z * [new tag] v0.3.0 -> v0.3.0 2025-08-26T20:40:04.0309911Z * [new tag] v0.3.1 -> v0.3.1 2025-08-26T20:40:04.0310271Z * [new tag] v0.4.0 -> v0.4.0 2025-08-26T20:40:04.0310628Z * [new tag] v0.4.1 -> v0.4.1 2025-08-26T20:40:04.0310974Z * [new tag] v1.0.0 -> v1.0.0 2025-08-26T20:40:04.0311346Z * [new tag] v1.0.0a0 -> v1.0.0a0 2025-08-26T20:40:04.0311707Z * [new tag] v1.0.1 -> v1.0.1 2025-08-26T20:40:04.0312077Z * [new tag] v1.0rc0 -> v1.0rc0 2025-08-26T20:40:04.0312435Z * [new tag] v1.0rc1 -> v1.0rc1 2025-08-26T20:40:04.0312811Z * [new tag] v1.1.0 -> v1.1.0 2025-08-26T20:40:04.0313183Z * [new tag] v1.1.0a0 -> v1.1.0a0 2025-08-26T20:40:04.0313678Z * [new tag] v1.10.0 -> v1.10.0 2025-08-26T20:40:04.0314057Z * [new tag] v1.10.0-rc1 -> v1.10.0-rc1 2025-08-26T20:40:04.0314431Z * [new tag] v1.10.0-rc2 -> v1.10.0-rc2 2025-08-26T20:40:04.0314810Z * [new tag] v1.10.0-rc3 -> v1.10.0-rc3 2025-08-26T20:40:04.0315262Z * [new tag] v1.10.1 -> v1.10.1 2025-08-26T20:40:04.0315637Z * [new tag] v1.10.1-rc1 -> v1.10.1-rc1 2025-08-26T20:40:04.0316129Z * [new tag] v1.10.2 -> v1.10.2 2025-08-26T20:40:04.0700039Z * [new tag] v1.10.2-rc1 -> v1.10.2-rc1 2025-08-26T20:40:04.0700477Z * [new tag] v1.11.0 -> v1.11.0 2025-08-26T20:40:04.0700850Z * [new tag] v1.11.0-rc1 -> v1.11.0-rc1 2025-08-26T20:40:04.0701240Z * [new tag] v1.11.0-rc2 -> v1.11.0-rc2 2025-08-26T20:40:04.0701660Z * [new tag] v1.11.0-rc3 -> v1.11.0-rc3 2025-08-26T20:40:04.0702027Z * [new tag] v1.11.0-rc4 -> v1.11.0-rc4 2025-08-26T20:40:04.0702412Z * [new tag] v1.11.0-rc5 -> v1.11.0-rc5 2025-08-26T20:40:04.0702783Z * [new tag] v1.11.0-rc6 -> v1.11.0-rc6 2025-08-26T20:40:04.0703154Z * [new tag] v1.11.0-rc7 -> v1.11.0-rc7 2025-08-26T20:40:04.0703549Z * [new tag] v1.12.0 -> v1.12.0 2025-08-26T20:40:04.0703910Z * [new tag] v1.12.0-rc1 -> v1.12.0-rc1 2025-08-26T20:40:04.0704299Z * [new tag] v1.12.0-rc2 -> v1.12.0-rc2 2025-08-26T20:40:04.0704663Z * [new tag] v1.12.0-rc3 -> v1.12.0-rc3 2025-08-26T20:40:04.0705048Z * [new tag] v1.12.0-rc4 -> v1.12.0-rc4 2025-08-26T20:40:04.0705417Z * [new tag] v1.12.0-rc5 -> v1.12.0-rc5 2025-08-26T20:40:04.0705838Z * [new tag] v1.12.0-rc6 -> v1.12.0-rc6 2025-08-26T20:40:04.0706225Z * [new tag] v1.12.0-rc7 -> v1.12.0-rc7 2025-08-26T20:40:04.0706592Z * [new tag] v1.12.0-rc8 -> v1.12.0-rc8 2025-08-26T20:40:04.0706992Z * [new tag] v1.12.1 -> v1.12.1 2025-08-26T20:40:04.0707349Z * [new tag] v1.12.1-rc1 -> v1.12.1-rc1 2025-08-26T20:40:04.0707786Z * [new tag] v1.12.1-rc2 -> v1.12.1-rc2 2025-08-26T20:40:04.0708205Z * [new tag] v1.12.1-rc3 -> v1.12.1-rc3 2025-08-26T20:40:04.0708612Z * [new tag] v1.12.1-rc4 -> v1.12.1-rc4 2025-08-26T20:40:04.0709046Z * [new tag] v1.12.1-rc5 -> v1.12.1-rc5 2025-08-26T20:40:04.0709422Z * [new tag] v1.13.0 -> v1.13.0 2025-08-26T20:40:04.0709786Z * [new tag] v1.13.0-rc1 -> v1.13.0-rc1 2025-08-26T20:40:04.0710156Z * [new tag] v1.13.0-rc2 -> v1.13.0-rc2 2025-08-26T20:40:04.0710517Z * [new tag] v1.13.0-rc3 -> v1.13.0-rc3 2025-08-26T20:40:04.0710881Z * [new tag] v1.13.0-rc4 -> v1.13.0-rc4 2025-08-26T20:40:04.0711239Z * [new tag] v1.13.0-rc5 -> v1.13.0-rc5 2025-08-26T20:40:04.0711609Z * [new tag] v1.13.0-rc6 -> v1.13.0-rc6 2025-08-26T20:40:04.0711963Z * [new tag] v1.13.1 -> v1.13.1 2025-08-26T20:40:04.0712328Z * [new tag] v1.13.1-rc1 -> v1.13.1-rc1 2025-08-26T20:40:04.0712702Z * [new tag] v1.2.0 -> v1.2.0 2025-08-26T20:40:04.0713279Z * [new tag] v1.2.0a0 -> v1.2.0a0 2025-08-26T20:40:04.0713653Z * [new tag] v1.3.0 -> v1.3.0 2025-08-26T20:40:04.0714020Z * [new tag] v1.3.0a0 -> v1.3.0a0 2025-08-26T20:40:04.0714392Z * [new tag] v1.3.1 -> v1.3.1 2025-08-26T20:40:04.0714745Z * [new tag] v1.4.0 -> v1.4.0 2025-08-26T20:40:04.0715112Z * [new tag] v1.4.0a0 -> v1.4.0a0 2025-08-26T20:40:04.0715592Z * [new tag] v1.4.1 -> v1.4.1 2025-08-26T20:40:04.0715945Z * [new tag] v1.5.0 -> v1.5.0 2025-08-26T20:40:04.0716311Z * [new tag] v1.5.0-rc1 -> v1.5.0-rc1 2025-08-26T20:40:04.0716757Z * [new tag] v1.5.0-rc2 -> v1.5.0-rc2 2025-08-26T20:40:04.0717142Z * [new tag] v1.5.0-rc3 -> v1.5.0-rc3 2025-08-26T20:40:04.0717503Z * [new tag] v1.5.0-rc4 -> v1.5.0-rc4 2025-08-26T20:40:04.0717878Z * [new tag] v1.5.0-rc5 -> v1.5.0-rc5 2025-08-26T20:40:04.0718245Z * [new tag] v1.5.1 -> v1.5.1 2025-08-26T20:40:04.0718604Z * [new tag] v1.5.1-rc1 -> v1.5.1-rc1 2025-08-26T20:40:04.0718964Z * [new tag] v1.6.0 -> v1.6.0 2025-08-26T20:40:04.0719312Z * [new tag] v1.6.0-rc1 -> v1.6.0-rc1 2025-08-26T20:40:04.0719686Z * [new tag] v1.6.0-rc2 -> v1.6.0-rc2 2025-08-26T20:40:04.0720055Z * [new tag] v1.6.0-rc3 -> v1.6.0-rc3 2025-08-26T20:40:04.0720413Z * [new tag] v1.6.0-rc4 -> v1.6.0-rc4 2025-08-26T20:40:04.0720773Z * [new tag] v1.6.0-rc5 -> v1.6.0-rc5 2025-08-26T20:40:04.0721129Z * [new tag] v1.6.0-rc6 -> v1.6.0-rc6 2025-08-26T20:40:04.0721491Z * [new tag] v1.6.0-rc7 -> v1.6.0-rc7 2025-08-26T20:40:04.0721843Z * [new tag] v1.7.0 -> v1.7.0 2025-08-26T20:40:04.1104138Z * [new tag] v1.7.0-rc1 -> v1.7.0-rc1 2025-08-26T20:40:04.1105011Z * [new tag] v1.7.0-rc2 -> v1.7.0-rc2 2025-08-26T20:40:04.1105689Z * [new tag] v1.7.0-rc3 -> v1.7.0-rc3 2025-08-26T20:40:04.1106395Z * [new tag] v1.7.0-rc4 -> v1.7.0-rc4 2025-08-26T20:40:04.1107031Z * [new tag] v1.7.1 -> v1.7.1 2025-08-26T20:40:04.1107738Z * [new tag] v1.7.1-rc1 -> v1.7.1-rc1 2025-08-26T20:40:04.1108424Z * [new tag] v1.7.1-rc2 -> v1.7.1-rc2 2025-08-26T20:40:04.1109077Z * [new tag] v1.7.1-rc3 -> v1.7.1-rc3 2025-08-26T20:40:04.1109715Z * [new tag] v1.8.0 -> v1.8.0 2025-08-26T20:40:04.1110327Z * [new tag] v1.8.0-rc1 -> v1.8.0-rc1 2025-08-26T20:40:04.1110966Z * [new tag] v1.8.0-rc2 -> v1.8.0-rc2 2025-08-26T20:40:04.1111611Z * [new tag] v1.8.0-rc3 -> v1.8.0-rc3 2025-08-26T20:40:04.1112252Z * [new tag] v1.8.0-rc4 -> v1.8.0-rc4 2025-08-26T20:40:04.1112911Z * [new tag] v1.8.0-rc5 -> v1.8.0-rc5 2025-08-26T20:40:04.1113536Z * [new tag] v1.8.1 -> v1.8.1 2025-08-26T20:40:04.1114251Z * [new tag] v1.8.1-rc1 -> v1.8.1-rc1 2025-08-26T20:40:04.1114884Z * [new tag] v1.8.1-rc2 -> v1.8.1-rc2 2025-08-26T20:40:04.1115791Z * [new tag] v1.8.1-rc3 -> v1.8.1-rc3 2025-08-26T20:40:04.1116418Z * [new tag] v1.8.2 -> v1.8.2 2025-08-26T20:40:04.1117044Z * [new tag] v1.8.2-rc1 -> v1.8.2-rc1 2025-08-26T20:40:04.1117682Z * [new tag] v1.9.0 -> v1.9.0 2025-08-26T20:40:04.1118286Z * [new tag] v1.9.0-rc1 -> v1.9.0-rc1 2025-08-26T20:40:04.1118922Z * [new tag] v1.9.0-rc2 -> v1.9.0-rc2 2025-08-26T20:40:04.1119837Z * [new tag] v1.9.0-rc3 -> v1.9.0-rc3 2025-08-26T20:40:04.1120522Z * [new tag] v1.9.0-rc4 -> v1.9.0-rc4 2025-08-26T20:40:04.1121141Z * [new tag] v1.9.1 -> v1.9.1 2025-08-26T20:40:04.1121749Z * [new tag] v1.9.1-rc1 -> v1.9.1-rc1 2025-08-26T20:40:04.1122393Z * [new tag] v1.9.1-rc2 -> v1.9.1-rc2 2025-08-26T20:40:04.1123018Z * [new tag] v2.0.0 -> v2.0.0 2025-08-26T20:40:04.1123635Z * [new tag] v2.0.0-rc1 -> v2.0.0-rc1 2025-08-26T20:40:04.1124283Z * [new tag] v2.0.0-rc2 -> v2.0.0-rc2 2025-08-26T20:40:04.1124901Z * [new tag] v2.0.0-rc3 -> v2.0.0-rc3 2025-08-26T20:40:04.1125539Z * [new tag] v2.0.0-rc4 -> v2.0.0-rc4 2025-08-26T20:40:04.1126254Z * [new tag] v2.0.0-rc5 -> v2.0.0-rc5 2025-08-26T20:40:04.1126888Z * [new tag] v2.0.0-rc6 -> v2.0.0-rc6 2025-08-26T20:40:04.1127504Z * [new tag] v2.0.1 -> v2.0.1 2025-08-26T20:40:04.1128121Z * [new tag] v2.0.1-rc1 -> v2.0.1-rc1 2025-08-26T20:40:04.1128763Z * [new tag] v2.0.1-rc2 -> v2.0.1-rc2 2025-08-26T20:40:04.1129389Z * [new tag] v2.0.1-rc3 -> v2.0.1-rc3 2025-08-26T20:40:04.1130017Z * [new tag] v2.0.1-rc4 -> v2.0.1-rc4 2025-08-26T20:40:04.1130628Z * [new tag] v2.1.0 -> v2.1.0 2025-08-26T20:40:04.1131248Z * [new tag] v2.1.0-rc1 -> v2.1.0-rc1 2025-08-26T20:40:04.1131928Z * [new tag] v2.1.0-rc2 -> v2.1.0-rc2 2025-08-26T20:40:04.1132605Z * [new tag] v2.1.0-rc3 -> v2.1.0-rc3 2025-08-26T20:40:04.1133251Z * [new tag] v2.1.0-rc4 -> v2.1.0-rc4 2025-08-26T20:40:04.1133869Z * [new tag] v2.1.0-rc5 -> v2.1.0-rc5 2025-08-26T20:40:04.1134503Z * [new tag] v2.1.0-rc6 -> v2.1.0-rc6 2025-08-26T20:40:04.1135116Z * [new tag] v2.1.1 -> v2.1.1 2025-08-26T20:40:04.1135785Z * [new tag] v2.1.1-rc1 -> v2.1.1-rc1 2025-08-26T20:40:04.1136409Z * [new tag] v2.1.1-rc2 -> v2.1.1-rc2 2025-08-26T20:40:04.1136999Z * [new tag] v2.1.1-rc3 -> v2.1.1-rc3 2025-08-26T20:40:04.1137655Z * [new tag] v2.1.1-rc4 -> v2.1.1-rc4 2025-08-26T20:40:04.1138299Z * [new tag] v2.1.1-rc5 -> v2.1.1-rc5 2025-08-26T20:40:04.1138915Z * [new tag] v2.1.1-rc6 -> v2.1.1-rc6 2025-08-26T20:40:04.1139535Z * [new tag] v2.1.2 -> v2.1.2 2025-08-26T20:40:04.1140144Z * [new tag] v2.1.2-rc1 -> v2.1.2-rc1 2025-08-26T20:40:04.1140779Z * [new tag] v2.1.2-rc2 -> v2.1.2-rc2 2025-08-26T20:40:04.1141404Z * [new tag] v2.1.2-rc3 -> v2.1.2-rc3 2025-08-26T20:40:04.1142208Z * [new tag] v2.2.0 -> v2.2.0 2025-08-26T20:40:04.1467351Z * [new tag] v2.2.0-rc1 -> v2.2.0-rc1 2025-08-26T20:40:04.1467789Z * [new tag] v2.2.0-rc2 -> v2.2.0-rc2 2025-08-26T20:40:04.1468172Z * [new tag] v2.2.0-rc3 -> v2.2.0-rc3 2025-08-26T20:40:04.1468539Z * [new tag] v2.2.0-rc4 -> v2.2.0-rc4 2025-08-26T20:40:04.1468909Z * [new tag] v2.2.0-rc5 -> v2.2.0-rc5 2025-08-26T20:40:04.1469468Z * [new tag] v2.2.0-rc6 -> v2.2.0-rc6 2025-08-26T20:40:04.1469838Z * [new tag] v2.2.0-rc7 -> v2.2.0-rc7 2025-08-26T20:40:04.1470197Z * [new tag] v2.2.0-rc8 -> v2.2.0-rc8 2025-08-26T20:40:04.1470568Z * [new tag] v2.2.1 -> v2.2.1 2025-08-26T20:40:04.1470952Z * [new tag] v2.2.1-rc1 -> v2.2.1-rc1 2025-08-26T20:40:04.1471300Z * [new tag] v2.2.1-rc2 -> v2.2.1-rc2 2025-08-26T20:40:04.1471656Z * [new tag] v2.2.1-rc3 -> v2.2.1-rc3 2025-08-26T20:40:04.1472009Z * [new tag] v2.2.2 -> v2.2.2 2025-08-26T20:40:04.1472370Z * [new tag] v2.2.2-rc1 -> v2.2.2-rc1 2025-08-26T20:40:04.1472731Z * [new tag] v2.2.2-rc2 -> v2.2.2-rc2 2025-08-26T20:40:04.1473102Z * [new tag] v2.2.2-rc3 -> v2.2.2-rc3 2025-08-26T20:40:04.1473460Z * [new tag] v2.3.0 -> v2.3.0 2025-08-26T20:40:04.1473802Z * [new tag] v2.3.0-rc1 -> v2.3.0-rc1 2025-08-26T20:40:04.1474169Z * [new tag] v2.3.0-rc10 -> v2.3.0-rc10 2025-08-26T20:40:04.1474552Z * [new tag] v2.3.0-rc11 -> v2.3.0-rc11 2025-08-26T20:40:04.1474913Z * [new tag] v2.3.0-rc12 -> v2.3.0-rc12 2025-08-26T20:40:04.1475279Z * [new tag] v2.3.0-rc2 -> v2.3.0-rc2 2025-08-26T20:40:04.1475646Z * [new tag] v2.3.0-rc3 -> v2.3.0-rc3 2025-08-26T20:40:04.1476012Z * [new tag] v2.3.0-rc4 -> v2.3.0-rc4 2025-08-26T20:40:04.1476363Z * [new tag] v2.3.0-rc5 -> v2.3.0-rc5 2025-08-26T20:40:04.1476726Z * [new tag] v2.3.0-rc6 -> v2.3.0-rc6 2025-08-26T20:40:04.1477092Z * [new tag] v2.3.0-rc7 -> v2.3.0-rc7 2025-08-26T20:40:04.1477442Z * [new tag] v2.3.0-rc8 -> v2.3.0-rc8 2025-08-26T20:40:04.1477803Z * [new tag] v2.3.0-rc9 -> v2.3.0-rc9 2025-08-26T20:40:04.1478155Z * [new tag] v2.3.1 -> v2.3.1 2025-08-26T20:40:04.1478516Z * [new tag] v2.3.1-rc1 -> v2.3.1-rc1 2025-08-26T20:40:04.1478875Z * [new tag] v2.3.1-rc2 -> v2.3.1-rc2 2025-08-26T20:40:04.1479227Z * [new tag] v2.3.1-rc3 -> v2.3.1-rc3 2025-08-26T20:40:04.1479588Z * [new tag] v2.4.0 -> v2.4.0 2025-08-26T20:40:04.1479936Z * [new tag] v2.4.0-rc1 -> v2.4.0-rc1 2025-08-26T20:40:04.1480300Z * [new tag] v2.4.0-rc2 -> v2.4.0-rc2 2025-08-26T20:40:04.1480662Z * [new tag] v2.4.0-rc3 -> v2.4.0-rc3 2025-08-26T20:40:04.1481138Z * [new tag] v2.4.0-rc4 -> v2.4.0-rc4 2025-08-26T20:40:04.1481508Z * [new tag] v2.4.0-rc5 -> v2.4.0-rc5 2025-08-26T20:40:04.1481868Z * [new tag] v2.4.0-rc6 -> v2.4.0-rc6 2025-08-26T20:40:04.1482396Z * [new tag] v2.4.0-rc7 -> v2.4.0-rc7 2025-08-26T20:40:04.1482750Z * [new tag] v2.4.0-rc8 -> v2.4.0-rc8 2025-08-26T20:40:04.1483120Z * [new tag] v2.4.0-rc9 -> v2.4.0-rc9 2025-08-26T20:40:04.1483474Z * [new tag] v2.4.1 -> v2.4.1 2025-08-26T20:40:04.1483837Z * [new tag] v2.4.1-rc1 -> v2.4.1-rc1 2025-08-26T20:40:04.1484202Z * [new tag] v2.4.1-rc2 -> v2.4.1-rc2 2025-08-26T20:40:04.1484653Z * [new tag] v2.4.1-rc3 -> v2.4.1-rc3 2025-08-26T20:40:04.1485021Z * [new tag] v2.5.0 -> v2.5.0 2025-08-26T20:40:04.1485377Z * [new tag] v2.5.0-rc1 -> v2.5.0-rc1 2025-08-26T20:40:04.1485757Z * [new tag] v2.5.0-rc10 -> v2.5.0-rc10 2025-08-26T20:40:04.1486140Z * [new tag] v2.5.0-rc2 -> v2.5.0-rc2 2025-08-26T20:40:04.1486498Z * [new tag] v2.5.0-rc3 -> v2.5.0-rc3 2025-08-26T20:40:04.1486870Z * [new tag] v2.5.0-rc4 -> v2.5.0-rc4 2025-08-26T20:40:04.1487228Z * [new tag] v2.5.0-rc5 -> v2.5.0-rc5 2025-08-26T20:40:04.1487597Z * [new tag] v2.5.0-rc6 -> v2.5.0-rc6 2025-08-26T20:40:04.1487950Z * [new tag] v2.5.0-rc7 -> v2.5.0-rc7 2025-08-26T20:40:04.1488320Z * [new tag] v2.5.0-rc8 -> v2.5.0-rc8 2025-08-26T20:40:04.1488680Z * [new tag] v2.5.0-rc9 -> v2.5.0-rc9 2025-08-26T20:40:04.5317964Z * [new tag] v2.5.1 -> v2.5.1 2025-08-26T20:40:04.5318366Z * [new tag] v2.5.1-rc1 -> v2.5.1-rc1 2025-08-26T20:40:04.5318755Z * [new tag] v2.6.0 -> v2.6.0 2025-08-26T20:40:04.5319105Z * [new tag] v2.6.0-rc1 -> v2.6.0-rc1 2025-08-26T20:40:04.5319491Z * [new tag] v2.6.0-rc2 -> v2.6.0-rc2 2025-08-26T20:40:04.5319896Z * [new tag] v2.6.0-rc3 -> v2.6.0-rc3 2025-08-26T20:40:04.5320290Z * [new tag] v2.6.0-rc4 -> v2.6.0-rc4 2025-08-26T20:40:04.5320658Z * [new tag] v2.6.0-rc5 -> v2.6.0-rc5 2025-08-26T20:40:04.5321021Z * [new tag] v2.6.0-rc6 -> v2.6.0-rc6 2025-08-26T20:40:04.5321378Z * [new tag] v2.6.0-rc7 -> v2.6.0-rc7 2025-08-26T20:40:04.5321727Z * [new tag] v2.6.0-rc8 -> v2.6.0-rc8 2025-08-26T20:40:04.5322088Z * [new tag] v2.6.0-rc9 -> v2.6.0-rc9 2025-08-26T20:40:04.5322445Z * [new tag] v2.7.0 -> v2.7.0 2025-08-26T20:40:04.5322790Z * [new tag] v2.7.0-rc1 -> v2.7.0-rc1 2025-08-26T20:40:04.5323163Z * [new tag] v2.7.0-rc10 -> v2.7.0-rc10 2025-08-26T20:40:04.5323523Z * [new tag] v2.7.0-rc2 -> v2.7.0-rc2 2025-08-26T20:40:04.5323890Z * [new tag] v2.7.0-rc3 -> v2.7.0-rc3 2025-08-26T20:40:04.5324256Z * [new tag] v2.7.0-rc4 -> v2.7.0-rc4 2025-08-26T20:40:04.5324613Z * [new tag] v2.7.0-rc5 -> v2.7.0-rc5 2025-08-26T20:40:04.5324979Z * [new tag] v2.7.0-rc6 -> v2.7.0-rc6 2025-08-26T20:40:04.5325331Z * [new tag] v2.7.0-rc7 -> v2.7.0-rc7 2025-08-26T20:40:04.5325694Z * [new tag] v2.7.0-rc8 -> v2.7.0-rc8 2025-08-26T20:40:04.5326247Z * [new tag] v2.7.0-rc9 -> v2.7.0-rc9 2025-08-26T20:40:04.5326606Z * [new tag] v2.7.1 -> v2.7.1 2025-08-26T20:40:04.5326976Z * [new tag] v2.7.1-rc1 -> v2.7.1-rc1 2025-08-26T20:40:04.5327329Z * [new tag] v2.7.1-rc2 -> v2.7.1-rc2 2025-08-26T20:40:04.5327696Z * [new tag] v2.7.1-rc3 -> v2.7.1-rc3 2025-08-26T20:40:04.5328060Z * [new tag] v2.7.1-rc4 -> v2.7.1-rc4 2025-08-26T20:40:04.5328548Z * [new tag] v2.7.1-rc5 -> v2.7.1-rc5 2025-08-26T20:40:04.5328901Z * [new tag] v2.8.0 -> v2.8.0 2025-08-26T20:40:04.5329271Z * [new tag] v2.8.0-rc1 -> v2.8.0-rc1 2025-08-26T20:40:04.5329643Z * [new tag] v2.8.0-rc2 -> v2.8.0-rc2 2025-08-26T20:40:04.5329998Z * [new tag] v2.8.0-rc3 -> v2.8.0-rc3 2025-08-26T20:40:04.5330375Z * [new tag] v2.8.0-rc4 -> v2.8.0-rc4 2025-08-26T20:40:04.5330724Z * [new tag] v2.8.0-rc5 -> v2.8.0-rc5 2025-08-26T20:40:04.5331081Z * [new tag] v2.8.0-rc6 -> v2.8.0-rc6 2025-08-26T20:40:04.5331440Z * [new tag] v2.8.0-rc7 -> v2.8.0-rc7 2025-08-26T20:40:04.5331788Z * [new tag] v2.8.0-rc8 -> v2.8.0-rc8 2025-08-26T20:40:04.5332170Z * [new tag] whc_flight_1 -> whc_flight_1 2025-08-26T20:40:04.5332540Z * [new tag] whc_flight_2 -> whc_flight_2 2025-08-26T20:40:04.5332909Z * [new tag] whc_flight_4 -> whc_flight_4 2025-08-26T20:40:04.5527056Z [command]"C:\Program Files\Git\cmd\git.exe" rev-parse --verify --quiet 262640fd220236042fbf4443cc163c8838c84c3d^{object} 2025-08-26T20:40:04.5751742Z 262640fd220236042fbf4443cc163c8838c84c3d 2025-08-26T20:40:04.5789067Z ##[endgroup] 2025-08-26T20:40:04.5789449Z ##[group]Determining the checkout info 2025-08-26T20:40:04.5791773Z ##[endgroup] 2025-08-26T20:40:04.5802808Z [command]"C:\Program Files\Git\cmd\git.exe" sparse-checkout disable 2025-08-26T20:40:04.6073418Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --unset-all extensions.worktreeConfig 2025-08-26T20:40:04.6309345Z ##[group]Checking out the ref 2025-08-26T20:40:04.6320738Z [command]"C:\Program Files\Git\cmd\git.exe" checkout --progress --force 262640fd220236042fbf4443cc163c8838c84c3d 2025-08-26T20:40:05.7035126Z Updating files: 10% (2121/19395) 2025-08-26T20:40:05.8177206Z Updating files: 11% (2134/19395) 2025-08-26T20:40:05.8876371Z Updating files: 12% (2328/19395) 2025-08-26T20:40:05.9557770Z Updating files: 13% (2522/19395) 2025-08-26T20:40:06.0348310Z Updating files: 14% (2716/19395) 2025-08-26T20:40:06.0939264Z Updating files: 15% (2910/19395) 2025-08-26T20:40:06.1612881Z Updating files: 16% (3104/19395) 2025-08-26T20:40:06.2346487Z Updating files: 17% (3298/19395) 2025-08-26T20:40:06.3141367Z Updating files: 18% (3492/19395) 2025-08-26T20:40:06.3877921Z Updating files: 19% (3686/19395) 2025-08-26T20:40:06.7053991Z Updating files: 20% (3879/19395) 2025-08-26T20:40:06.7193023Z Updating files: 20% (4038/19395) 2025-08-26T20:40:06.7778412Z Updating files: 21% (4073/19395) 2025-08-26T20:40:06.9348627Z Updating files: 22% (4267/19395) 2025-08-26T20:40:07.0776181Z Updating files: 23% (4461/19395) 2025-08-26T20:40:07.1398841Z Updating files: 24% (4655/19395) 2025-08-26T20:40:07.1760794Z Updating files: 25% (4849/19395) 2025-08-26T20:40:07.2070617Z Updating files: 26% (5043/19395) 2025-08-26T20:40:07.2354161Z Updating files: 27% (5237/19395) 2025-08-26T20:40:07.2654111Z Updating files: 28% (5431/19395) 2025-08-26T20:40:07.2979992Z Updating files: 29% (5625/19395) 2025-08-26T20:40:07.3274441Z Updating files: 30% (5819/19395) 2025-08-26T20:40:07.4249851Z Updating files: 31% (6013/19395) 2025-08-26T20:40:07.4977266Z Updating files: 32% (6207/19395) 2025-08-26T20:40:07.6081436Z Updating files: 33% (6401/19395) 2025-08-26T20:40:07.6799921Z Updating files: 34% (6595/19395) 2025-08-26T20:40:07.7015711Z Updating files: 34% (6746/19395) 2025-08-26T20:40:07.7750405Z Updating files: 35% (6789/19395) 2025-08-26T20:40:07.8471670Z Updating files: 36% (6983/19395) 2025-08-26T20:40:07.8848340Z Updating files: 37% (7177/19395) 2025-08-26T20:40:07.9625916Z Updating files: 38% (7371/19395) 2025-08-26T20:40:08.0014413Z Updating files: 39% (7565/19395) 2025-08-26T20:40:08.0409503Z Updating files: 40% (7758/19395) 2025-08-26T20:40:08.1043470Z Updating files: 41% (7952/19395) 2025-08-26T20:40:08.1412551Z Updating files: 42% (8146/19395) 2025-08-26T20:40:08.1757677Z Updating files: 43% (8340/19395) 2025-08-26T20:40:08.2435146Z Updating files: 44% (8534/19395) 2025-08-26T20:40:08.2774069Z Updating files: 45% (8728/19395) 2025-08-26T20:40:08.4012535Z Updating files: 46% (8922/19395) 2025-08-26T20:40:08.4514847Z Updating files: 47% (9116/19395) 2025-08-26T20:40:08.4934666Z Updating files: 48% (9310/19395) 2025-08-26T20:40:08.5667142Z Updating files: 49% (9504/19395) 2025-08-26T20:40:08.6061296Z Updating files: 50% (9698/19395) 2025-08-26T20:40:08.6451529Z Updating files: 51% (9892/19395) 2025-08-26T20:40:08.7082118Z Updating files: 52% (10086/19395) 2025-08-26T20:40:08.7421560Z Updating files: 52% (10122/19395) 2025-08-26T20:40:08.7840445Z Updating files: 53% (10280/19395) 2025-08-26T20:40:08.8500082Z Updating files: 54% (10474/19395) 2025-08-26T20:40:08.8929029Z Updating files: 55% (10668/19395) 2025-08-26T20:40:08.9334171Z Updating files: 56% (10862/19395) 2025-08-26T20:40:09.0232148Z Updating files: 57% (11056/19395) 2025-08-26T20:40:09.0661252Z Updating files: 58% (11250/19395) 2025-08-26T20:40:09.2571767Z Updating files: 59% (11444/19395) 2025-08-26T20:40:09.3453418Z Updating files: 60% (11637/19395) 2025-08-26T20:40:09.3921869Z Updating files: 61% (11831/19395) 2025-08-26T20:40:09.4671130Z Updating files: 62% (12025/19395) 2025-08-26T20:40:09.5137536Z Updating files: 63% (12219/19395) 2025-08-26T20:40:09.5611080Z Updating files: 64% (12413/19395) 2025-08-26T20:40:09.7216270Z Updating files: 65% (12607/19395) 2025-08-26T20:40:09.7523647Z Updating files: 65% (12730/19395) 2025-08-26T20:40:09.8798353Z Updating files: 66% (12801/19395) 2025-08-26T20:40:09.9340445Z Updating files: 67% (12995/19395) 2025-08-26T20:40:10.0126079Z Updating files: 68% (13189/19395) 2025-08-26T20:40:10.0823700Z Updating files: 69% (13383/19395) 2025-08-26T20:40:10.2297439Z Updating files: 70% (13577/19395) 2025-08-26T20:40:10.2775385Z Updating files: 71% (13771/19395) 2025-08-26T20:40:10.3262384Z Updating files: 72% (13965/19395) 2025-08-26T20:40:10.4594747Z Updating files: 73% (14159/19395) 2025-08-26T20:40:10.5724702Z Updating files: 74% (14353/19395) 2025-08-26T20:40:10.6849561Z Updating files: 75% (14547/19395) 2025-08-26T20:40:10.7430423Z Updating files: 75% (14673/19395) 2025-08-26T20:40:11.0235700Z Updating files: 76% (14741/19395) 2025-08-26T20:40:11.2331313Z Updating files: 77% (14935/19395) 2025-08-26T20:40:11.3205009Z Updating files: 78% (15129/19395) 2025-08-26T20:40:11.4249729Z Updating files: 79% (15323/19395) 2025-08-26T20:40:11.5612435Z Updating files: 80% (15516/19395) 2025-08-26T20:40:11.6817080Z Updating files: 81% (15710/19395) 2025-08-26T20:40:11.6995529Z Updating files: 82% (15904/19395) 2025-08-26T20:40:11.8099826Z Updating files: 82% (15945/19395) 2025-08-26T20:40:11.8980460Z Updating files: 83% (16098/19395) 2025-08-26T20:40:11.9798197Z Updating files: 84% (16292/19395) 2025-08-26T20:40:12.0748250Z Updating files: 85% (16486/19395) 2025-08-26T20:40:12.1748793Z Updating files: 86% (16680/19395) 2025-08-26T20:40:12.2643554Z Updating files: 87% (16874/19395) 2025-08-26T20:40:12.3515395Z Updating files: 88% (17068/19395) 2025-08-26T20:40:12.4659404Z Updating files: 89% (17262/19395) 2025-08-26T20:40:12.7077211Z Updating files: 90% (17456/19395) 2025-08-26T20:40:12.7382023Z Updating files: 90% (17619/19395) 2025-08-26T20:40:12.8193558Z Updating files: 91% (17650/19395) 2025-08-26T20:40:12.9462886Z Updating files: 92% (17844/19395) 2025-08-26T20:40:13.0467068Z Updating files: 93% (18038/19395) 2025-08-26T20:40:13.1802933Z Updating files: 94% (18232/19395) 2025-08-26T20:40:13.2731273Z Updating files: 95% (18426/19395) 2025-08-26T20:40:13.3892256Z Updating files: 96% (18620/19395) 2025-08-26T20:40:13.4793127Z Updating files: 97% (18814/19395) 2025-08-26T20:40:13.5895725Z Updating files: 98% (19008/19395) 2025-08-26T20:40:13.7142764Z Updating files: 99% (19202/19395) 2025-08-26T20:40:13.7230121Z Updating files: 99% (19382/19395) 2025-08-26T20:40:13.7230445Z Updating files: 100% (19395/19395) 2025-08-26T20:40:13.7230767Z Updating files: 100% (19395/19395), done. 2025-08-26T20:40:13.7662375Z Note: switching to '262640fd220236042fbf4443cc163c8838c84c3d'. 2025-08-26T20:40:13.7663243Z 2025-08-26T20:40:13.7663722Z You are in 'detached HEAD' state. You can look around, make experimental 2025-08-26T20:40:13.7664663Z changes and commit them, and you can discard any commits you make in this 2025-08-26T20:40:13.7665687Z state without impacting any branches by switching back to a branch. 2025-08-26T20:40:13.7666269Z 2025-08-26T20:40:13.7666501Z If you want to create a new branch to retain commits you create, you may 2025-08-26T20:40:13.7666977Z do so (now or later) by using -c with the switch command. Example: 2025-08-26T20:40:13.7667247Z 2025-08-26T20:40:13.7667361Z git switch -c 2025-08-26T20:40:13.7667546Z 2025-08-26T20:40:13.7667638Z Or undo this operation with: 2025-08-26T20:40:13.7667804Z 2025-08-26T20:40:13.7667883Z git switch - 2025-08-26T20:40:13.7668070Z 2025-08-26T20:40:13.7668297Z Turn off this advice by setting config variable advice.detachedHead to false 2025-08-26T20:40:13.7668644Z 2025-08-26T20:40:13.7668863Z HEAD is now at 262640fd220 [ROCm][CI] restore test_flex_attention tests (#161519) 2025-08-26T20:40:13.7908238Z ##[endgroup] 2025-08-26T20:40:13.7908647Z ##[group]Setting up auth for fetching submodules 2025-08-26T20:40:13.7920725Z [command]"C:\Program Files\Git\cmd\git.exe" config --global http.https://github.com/.extraheader "AUTHORIZATION: basic ***" 2025-08-26T20:40:13.8175163Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --unset-all url.https://github.com/.insteadOf 2025-08-26T20:40:13.8417184Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add url.https://github.com/.insteadOf git@github.com: 2025-08-26T20:40:13.8659551Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2025-08-26T20:40:13.8922491Z ##[endgroup] 2025-08-26T20:40:13.8922864Z ##[group]Fetching submodules 2025-08-26T20:40:13.8932849Z [command]"C:\Program Files\Git\cmd\git.exe" submodule sync --recursive 2025-08-26T20:40:14.2808175Z [command]"C:\Program Files\Git\cmd\git.exe" -c protocol.version=2 submodule update --init --force --recursive 2025-08-26T20:40:14.7216662Z Submodule 'android/libs/fbjni' (https://github.com/facebookincubator/fbjni.git) registered for path 'android/libs/fbjni' 2025-08-26T20:40:14.7217684Z Submodule 'third_party/NNPACK_deps/FP16' (https://github.com/Maratyszcza/FP16.git) registered for path 'third_party/FP16' 2025-08-26T20:40:14.7218630Z Submodule 'third_party/NNPACK_deps/FXdiv' (https://github.com/Maratyszcza/FXdiv.git) registered for path 'third_party/FXdiv' 2025-08-26T20:40:14.7219617Z Submodule 'third_party/NNPACK' (https://github.com/Maratyszcza/NNPACK.git) registered for path 'third_party/NNPACK' 2025-08-26T20:40:14.7220451Z Submodule 'third_party/NVTX' (https://github.com/NVIDIA/NVTX.git) registered for path 'third_party/NVTX' 2025-08-26T20:40:14.7221590Z Submodule 'third_party/VulkanMemoryAllocator' (https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git) registered for path 'third_party/VulkanMemoryAllocator' 2025-08-26T20:40:14.7223104Z Submodule 'third_party/XNNPACK' (https://github.com/google/XNNPACK.git) registered for path 'third_party/XNNPACK' 2025-08-26T20:40:14.7223940Z Submodule 'third_party/aiter' (https://github.com/ROCm/aiter.git) registered for path 'third_party/aiter' 2025-08-26T20:40:14.7224812Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/benchmark' 2025-08-26T20:40:14.7226041Z Submodule 'third_party/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/composable_kernel' 2025-08-26T20:40:14.7227094Z Submodule 'third_party/cpp-httplib' (https://github.com/yhirose/cpp-httplib.git) registered for path 'third_party/cpp-httplib' 2025-08-26T20:40:14.7228147Z Submodule 'third_party/cpuinfo' (https://github.com/pytorch/cpuinfo.git) registered for path 'third_party/cpuinfo' 2025-08-26T20:40:14.7229117Z Submodule 'third_party/cudnn_frontend' (https://github.com/NVIDIA/cudnn-frontend.git) registered for path 'third_party/cudnn_frontend' 2025-08-26T20:40:14.7230099Z Submodule 'third_party/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/cutlass' 2025-08-26T20:40:14.7230949Z Submodule 'third_party/fbgemm' (https://github.com/pytorch/fbgemm) registered for path 'third_party/fbgemm' 2025-08-26T20:40:14.7231913Z Submodule 'third_party/flash-attention' (https://github.com/Dao-AILab/flash-attention.git) registered for path 'third_party/flash-attention' 2025-08-26T20:40:14.7232975Z Submodule 'third_party/flatbuffers' (https://github.com/google/flatbuffers.git) registered for path 'third_party/flatbuffers' 2025-08-26T20:40:14.7233941Z Submodule 'third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/fmt' 2025-08-26T20:40:14.7234852Z Submodule 'third_party/gemmlowp/gemmlowp' (https://github.com/google/gemmlowp.git) registered for path 'third_party/gemmlowp/gemmlowp' 2025-08-26T20:40:14.7235776Z Submodule 'third_party/gloo' (https://github.com/pytorch/gloo) registered for path 'third_party/gloo' 2025-08-26T20:40:14.7236625Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/googletest' 2025-08-26T20:40:14.7237497Z Submodule 'third_party/ideep' (https://github.com/intel/ideep) registered for path 'third_party/ideep' 2025-08-26T20:40:14.7238304Z Submodule 'third_party/ittapi' (https://github.com/intel/ittapi.git) registered for path 'third_party/ittapi' 2025-08-26T20:40:14.7239171Z Submodule 'third_party/kineto' (https://github.com/pytorch/kineto) registered for path 'third_party/kineto' 2025-08-26T20:40:14.7240115Z Submodule 'third_party/kleidiai' (https://github.com/ARM-software/kleidiai.git) registered for path 'third_party/kleidiai' 2025-08-26T20:40:14.7241045Z Submodule 'third_party/mimalloc' (https://github.com/microsoft/mimalloc.git) registered for path 'third_party/mimalloc' 2025-08-26T20:40:14.7241953Z Submodule 'third_party/nlohmann' (https://github.com/nlohmann/json.git) registered for path 'third_party/nlohmann' 2025-08-26T20:40:14.7242774Z Submodule 'third_party/onnx' (https://github.com/onnx/onnx.git) registered for path 'third_party/onnx' 2025-08-26T20:40:14.7243768Z Submodule 'third_party/opentelemetry-cpp' (https://github.com/open-telemetry/opentelemetry-cpp.git) registered for path 'third_party/opentelemetry-cpp' 2025-08-26T20:40:14.7244908Z Submodule 'third_party/pocketfft' (https://github.com/mreineck/pocketfft) registered for path 'third_party/pocketfft' 2025-08-26T20:40:14.7245917Z Submodule 'third_party/protobuf' (https://github.com/protocolbuffers/protobuf.git) registered for path 'third_party/protobuf' 2025-08-26T20:40:14.7246909Z Submodule 'third_party/NNPACK_deps/psimd' (https://github.com/Maratyszcza/psimd.git) registered for path 'third_party/psimd' 2025-08-26T20:40:14.7247973Z Submodule 'third_party/NNPACK_deps/pthreadpool' (https://github.com/Maratyszcza/pthreadpool.git) registered for path 'third_party/pthreadpool' 2025-08-26T20:40:14.7288825Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/pybind11' 2025-08-26T20:40:14.7289806Z Submodule 'third_party/python-peachpy' (https://github.com/malfet/PeachPy.git) registered for path 'third_party/python-peachpy' 2025-08-26T20:40:14.7290774Z Submodule 'third_party/sleef' (https://github.com/shibatch/sleef) registered for path 'third_party/sleef' 2025-08-26T20:40:14.7291713Z Submodule 'third_party/tensorpipe' (https://github.com/pytorch/tensorpipe.git) registered for path 'third_party/tensorpipe' 2025-08-26T20:40:14.7900736Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/android/libs/fbjni'... 2025-08-26T20:40:15.2506297Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/FXdiv'... 2025-08-26T20:40:15.2507307Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/FP16'... 2025-08-26T20:40:15.2809782Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fmt'... 2025-08-26T20:40:23.5283803Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/NNPACK'... 2025-08-26T20:40:23.5284433Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/NVTX'... 2025-08-26T20:40:23.5285004Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/benchmark'... 2025-08-26T20:40:23.5285559Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/gloo'... 2025-08-26T20:40:23.5286111Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cpuinfo'... 2025-08-26T20:40:23.5286809Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention'... 2025-08-26T20:40:23.5287440Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cpp-httplib'... 2025-08-26T20:40:23.5288068Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/gemmlowp/gemmlowp'... 2025-08-26T20:40:23.5288703Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cudnn_frontend'... 2025-08-26T20:40:23.5289300Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ideep'... 2025-08-26T20:40:23.5289835Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kleidiai'... 2025-08-26T20:40:23.5290393Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ittapi'... 2025-08-26T20:40:23.5290941Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cutlass'... 2025-08-26T20:40:23.6960931Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flatbuffers'... 2025-08-26T20:40:24.7155950Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/aiter'... 2025-08-26T20:40:24.7157306Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/googletest'... 2025-08-26T20:40:24.7158470Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pocketfft'... 2025-08-26T20:40:42.6492362Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf'... 2025-08-26T20:40:42.6493052Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/mimalloc'... 2025-08-26T20:40:42.6493695Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/VulkanMemoryAllocator'... 2025-08-26T20:40:42.6494331Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/psimd'... 2025-08-26T20:40:42.6494897Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pthreadpool'... 2025-08-26T20:40:42.6495473Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm'... 2025-08-26T20:40:42.6496047Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/python-peachpy'... 2025-08-26T20:40:42.6496709Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe'... 2025-08-26T20:40:42.6497261Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto'... 2025-08-26T20:40:42.6497844Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/sleef'... 2025-08-26T20:40:42.6498474Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/composable_kernel'... 2025-08-26T20:40:42.6499280Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pybind11'... 2025-08-26T20:40:42.6499831Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/onnx'... 2025-08-26T20:40:42.6500370Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/nlohmann'... 2025-08-26T20:40:42.6500929Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/XNNPACK'... 2025-08-26T20:40:42.6501528Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp'... 2025-08-26T20:40:42.7521770Z Submodule path 'android/libs/fbjni': checked out '7e1e1fe3858c63c251c637ae41a20de425dde96f' 2025-08-26T20:40:42.8867372Z Submodule path 'third_party/FP16': checked out '4dfe081cf6bcd15db339cf2680b9281b8451eeb3' 2025-08-26T20:40:42.9722074Z Submodule path 'third_party/FXdiv': checked out 'b408327ac2a15ec3e43352421954f5b1967701d1' 2025-08-26T20:40:43.1440049Z Submodule path 'third_party/NNPACK': checked out 'c07e3a0400713d546e0dea2d5466dd22ea389c73' 2025-08-26T20:40:43.5882553Z Submodule path 'third_party/NVTX': checked out '2942f167cc30c5e3a44a2aecd5b0d9c07ff61a07' 2025-08-26T20:40:43.7982738Z Submodule path 'third_party/VulkanMemoryAllocator': checked out '1d8f600fd424278486eade7ed3e877c99f0846b1' 2025-08-26T20:40:50.3551059Z Submodule path 'third_party/XNNPACK': checked out '51a0103656eff6fc9bfd39a4597923c4b542c883' 2025-08-26T20:40:53.7265372Z Submodule path 'third_party/aiter': checked out '01aae101b9e5e94d6c16a9514c9fb8df99c93150' 2025-08-26T20:40:53.7399111Z Submodule '3rdparty/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/aiter/3rdparty/composable_kernel' 2025-08-26T20:40:57.5848066Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/aiter/3rdparty/composable_kernel'... 2025-08-26T20:41:00.2684914Z Submodule path 'third_party/aiter/3rdparty/composable_kernel': checked out 'cffe8fa2a442ac8e80dd236a1a5d24fe3d7e0cbf' 2025-08-26T20:41:00.4361740Z Submodule path 'third_party/benchmark': checked out '299e5928955cc62af9968370293b916f5130916f' 2025-08-26T20:41:04.2261343Z Submodule path 'third_party/composable_kernel': checked out '7fe50dc3da2069d6645d9deb8c017a876472a977' 2025-08-26T20:41:04.4919113Z Submodule path 'third_party/cpp-httplib': checked out '3af7f2c16147f3fbc6e4d717032daf505dc1652c' 2025-08-26T20:41:05.0693620Z Submodule path 'third_party/cpuinfo': checked out '5e3d2445e6a84d9599bee2bf78edbb4d80865e1d' 2025-08-26T20:41:05.3452302Z Submodule path 'third_party/cudnn_frontend': checked out 'f937055efc6d414d11f4c6577e3977fe74f35fb6' 2025-08-26T20:41:10.1791531Z Submodule path 'third_party/cutlass': checked out 'e51efbfe18fe4f4cbb66ab814c55bf4aa0185491' 2025-08-26T20:41:11.3949434Z Submodule path 'third_party/fbgemm': checked out '21c7d30c526c0f1ad873ecc632dca6cfa8a69067' 2025-08-26T20:41:11.4363408Z Submodule 'external/asmjit' (https://github.com/asmjit/asmjit.git) registered for path 'third_party/fbgemm/external/asmjit' 2025-08-26T20:41:11.4364620Z Submodule 'external/composable_kernel' (https://github.com/jwfromm/composable_kernel.git) registered for path 'third_party/fbgemm/external/composable_kernel' 2025-08-26T20:41:11.4365731Z Submodule 'external/cpuinfo' (https://github.com/pytorch/cpuinfo) registered for path 'third_party/fbgemm/external/cpuinfo' 2025-08-26T20:41:11.4366711Z Submodule 'external/cutlass' (https://github.com/jwfromm/cutlass) registered for path 'third_party/fbgemm/external/cutlass' 2025-08-26T20:41:11.4367731Z Submodule 'external/googletest' (https://github.com/google/googletest) registered for path 'third_party/fbgemm/external/googletest' 2025-08-26T20:41:11.4368881Z Submodule 'external/hipify_torch' (https://github.com/ROCmSoftwarePlatform/hipify_torch.git) registered for path 'third_party/fbgemm/external/hipify_torch' 2025-08-26T20:41:11.4370055Z Submodule 'external/json' (https://github.com/nlohmann/json.git) registered for path 'third_party/fbgemm/external/json' 2025-08-26T20:41:20.1936282Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/asmjit'... 2025-08-26T20:41:20.1937092Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/hipify_torch'... 2025-08-26T20:41:20.1937826Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/cpuinfo'... 2025-08-26T20:41:20.1938559Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/googletest'... 2025-08-26T20:41:20.1939334Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/composable_kernel'... 2025-08-26T20:41:20.1940285Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/cutlass'... 2025-08-26T20:41:20.1941053Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/json'... 2025-08-26T20:41:20.4087910Z Submodule path 'third_party/fbgemm/external/asmjit': checked out 'a3199e8857792cd10b7589ff5d58343d2c9008ea' 2025-08-26T20:41:24.5533307Z Submodule path 'third_party/fbgemm/external/composable_kernel': checked out 'b1281b8b08d973a7064f864f47eeb30f3e2596e9' 2025-08-26T20:41:25.0192856Z Submodule path 'third_party/fbgemm/external/cpuinfo': checked out '6543fec09b2f04ac4a666882998b534afc9c1349' 2025-08-26T20:41:30.2653634Z Submodule path 'third_party/fbgemm/external/cutlass': checked out 'b40777404c174b9694a870bff5c13ce6b7f656ad' 2025-08-26T20:41:30.5710423Z Submodule path 'third_party/fbgemm/external/googletest': checked out '52eb8108c5bdec04579160ae17225d66034bd723' 2025-08-26T20:41:30.6582811Z Submodule path 'third_party/fbgemm/external/hipify_torch': checked out 'a4337c69fe0e2552a7b7b0669178926beeed828c' 2025-08-26T20:41:31.3408604Z Submodule path 'third_party/fbgemm/external/json': checked out '9cca280a4d0ccf0c08f47a99aa71d1b0e52f8d03' 2025-08-26T20:41:32.0017469Z Submodule path 'third_party/flash-attention': checked out '979702c87a8713a8e0a5e9fee122b90d2ef13be5' 2025-08-26T20:41:32.0148389Z Submodule 'csrc/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/flash-attention/csrc/composable_kernel' 2025-08-26T20:41:32.0149580Z Submodule 'csrc/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/flash-attention/csrc/cutlass' 2025-08-26T20:41:36.3042133Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention/csrc/composable_kernel'... 2025-08-26T20:41:36.3042998Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention/csrc/cutlass'... 2025-08-26T20:41:39.0962635Z Submodule path 'third_party/flash-attention/csrc/composable_kernel': checked out '888317e698e9803c62bd38568abc9e05d7709f33' 2025-08-26T20:41:46.5193895Z Submodule path 'third_party/flash-attention/csrc/cutlass': checked out 'c506e16788cb08416a4a57e11a9067beeee29420' 2025-08-26T20:41:56.2792839Z Submodule path 'third_party/flatbuffers': checked out 'a2cd1ea3b6d3fee220106b5fed3f7ce8da9eb757' 2025-08-26T20:41:56.5728403Z Submodule path 'third_party/fmt': checked out '40626af88bd7df9a5fb80be7b25ac85b122d6c21' 2025-08-26T20:41:57.1583507Z Submodule path 'third_party/gemmlowp/gemmlowp': checked out '3fb5c176c17c765a3492cd2f0321b0dab712f350' 2025-08-26T20:41:57.4197153Z Submodule path 'third_party/gloo': checked out 'c7b7b022c124d9643957d9bd55f57ac59fce8fa2' 2025-08-26T20:41:58.9706813Z Submodule path 'third_party/googletest': checked out '52eb8108c5bdec04579160ae17225d66034bd723' 2025-08-26T20:41:59.0798103Z Submodule path 'third_party/ideep': checked out '719d8e6cd7f7a0e01b155657526d693acf97c2b3' 2025-08-26T20:41:59.0907838Z Submodule 'mkl-dnn' (https://github.com/intel/mkl-dnn.git) registered for path 'third_party/ideep/mkl-dnn' 2025-08-26T20:42:12.3233021Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ideep/mkl-dnn'... 2025-08-26T20:42:18.7087381Z Submodule path 'third_party/ideep/mkl-dnn': checked out '8d263e693366ef8db40acc569cc7d8edf644556d' 2025-08-26T20:42:18.9574200Z Submodule path 'third_party/ittapi': checked out 'dec1d23ca65ab069d225dfe40dea14f455170959' 2025-08-26T20:42:19.9683016Z Submodule path 'third_party/kineto': checked out '5e7501833f1021ce6f618572d3baf657b6319658' 2025-08-26T20:42:19.9841608Z Submodule 'libkineto/third_party/dynolog' (https://github.com/facebookincubator/dynolog.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-26T20:42:19.9842862Z Submodule 'libkineto/third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/kineto/libkineto/third_party/fmt' 2025-08-26T20:42:19.9844748Z Submodule 'libkineto/third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/kineto/libkineto/third_party/googletest' 2025-08-26T20:42:29.1756488Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog'... 2025-08-26T20:42:29.1757404Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/fmt'... 2025-08-26T20:42:29.1758325Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/googletest'... 2025-08-26T20:42:29.5784311Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog': checked out '7d04a0053a845370ae06ce317a22a48e9edcc74e' 2025-08-26T20:42:29.6021307Z Submodule 'third_party/DCGM' (https://github.com/NVIDIA/DCGM.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-26T20:42:29.6022533Z Submodule 'third_party/cpr' (https://github.com/libcpr/cpr.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-26T20:42:29.6023709Z Submodule 'third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-26T20:42:29.6024932Z Submodule 'third_party/gflags' (https://github.com/gflags/gflags.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-26T20:42:29.6026154Z Submodule 'third_party/glog' (https://github.com/google/glog.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-26T20:42:29.6027432Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-26T20:42:29.6028730Z Submodule 'third_party/json' (https://github.com/nlohmann/json.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-26T20:42:29.6029934Z Submodule 'third_party/pfs' (https://github.com/dtrugman/pfs.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-26T20:42:37.5355056Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM'... 2025-08-26T20:42:37.5356166Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/pfs'... 2025-08-26T20:42:37.5357233Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/cpr'... 2025-08-26T20:42:37.5358259Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags'... 2025-08-26T20:42:37.5359293Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/glog'... 2025-08-26T20:42:37.5360313Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/googletest'... 2025-08-26T20:42:37.5361359Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/fmt'... 2025-08-26T20:42:37.5362454Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/json'... 2025-08-26T20:42:38.4776324Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM': checked out 'ffde4e54bc7249a6039a5e6b45b395141e1217f9' 2025-08-26T20:42:38.7399012Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr': checked out '871ed52d350214a034f6ef8a3b8f51c5ce1bd400' 2025-08-26T20:42:38.9547350Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt': checked out 'cd4af11efc9c622896a3e4cb599fa28668ca3d05' 2025-08-26T20:42:39.0571444Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags': checked out 'e171aa2d15ed9eb17054558e0b3a6a413bb01067' 2025-08-26T20:42:39.0685572Z Submodule 'doc' (https://github.com/gflags/gflags.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-26T20:42:39.4791232Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc'... 2025-08-26T20:42:39.5310782Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc': checked out '8411df715cf522606e3b1aca386ddfc0b63d34b4' 2025-08-26T20:42:39.6506328Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog': checked out 'b33e3bad4c46c8a6345525fd822af355e5ef9446' 2025-08-26T20:42:39.9266889Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest': checked out '58d77fa8070e8cec2dc1ed015d66b454c8d78850' 2025-08-26T20:42:40.5560402Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json': checked out '4f8fba14066156b73f1189a2b8bd568bde5284c5' 2025-08-26T20:42:40.6673795Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs': checked out 'f68a2fa8ea36c783bdd760371411fcb495aa3150' 2025-08-26T20:42:40.8318001Z Submodule path 'third_party/kineto/libkineto/third_party/fmt': checked out '0041a40c1350ba702d475b9c4ad62da77caea164' 2025-08-26T20:42:41.0987097Z Submodule path 'third_party/kineto/libkineto/third_party/googletest': checked out '7aca84427f224eeed3144123d5230d5871e93347' 2025-08-26T20:42:41.4311034Z Submodule path 'third_party/kleidiai': checked out 'cca02c2f69dd18e1f12647c1c0bdc8cf90e680c7' 2025-08-26T20:42:41.6323431Z Submodule path 'third_party/mimalloc': checked out 'fbd8b99c2b828428947d70fdc046bb55609be93e' 2025-08-26T20:42:42.3219837Z Submodule path 'third_party/nlohmann': checked out '55f93686c01528224f448c19128836e7df245f72' 2025-08-26T20:42:45.9790028Z Submodule path 'third_party/onnx': checked out 'e709452ef2bbc1d113faf678c24e6d3467696e83' 2025-08-26T20:42:45.9926504Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/onnx/third_party/pybind11' 2025-08-26T20:42:47.1064278Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/onnx/third_party/pybind11'... 2025-08-26T20:42:47.2767250Z Submodule path 'third_party/onnx/third_party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-08-26T20:42:47.7589294Z Submodule path 'third_party/opentelemetry-cpp': checked out 'a799f4aed9c94b765dcdaabaeab7d5e7e2310878' 2025-08-26T20:42:47.7820502Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark) registered for path 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-26T20:42:47.7821727Z Submodule 'third_party/googletest' (https://github.com/google/googletest) registered for path 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-26T20:42:47.7822858Z Submodule 'third_party/ms-gsl' (https://github.com/microsoft/GSL) registered for path 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-26T20:42:47.7823986Z Submodule 'third_party/nlohmann-json' (https://github.com/nlohmann/json) registered for path 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-26T20:42:47.7825354Z Submodule 'third_party/opentelemetry-proto' (https://github.com/open-telemetry/opentelemetry-proto) registered for path 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-26T20:42:47.7827050Z Submodule 'third_party/opentracing-cpp' (https://github.com/opentracing/opentracing-cpp.git) registered for path 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-26T20:42:47.7828392Z Submodule 'third_party/prometheus-cpp' (https://github.com/jupp0r/prometheus-cpp) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-26T20:42:47.7829546Z Submodule 'tools/vcpkg' (https://github.com/Microsoft/vcpkg) registered for path 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-26T20:42:47.8849831Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/benchmark'... 2025-08-26T20:42:59.9471978Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/opentracing-cpp'... 2025-08-26T20:42:59.9472999Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/opentelemetry-proto'... 2025-08-26T20:42:59.9473904Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/ms-gsl'... 2025-08-26T20:42:59.9474811Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp'... 2025-08-26T20:42:59.9475697Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/googletest'... 2025-08-26T20:42:59.9476592Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/nlohmann-json'... 2025-08-26T20:42:59.9477440Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/tools/vcpkg'... 2025-08-26T20:43:00.0681281Z Submodule path 'third_party/opentelemetry-cpp/third_party/benchmark': checked out 'd572f4777349d43653b21d6c2fc63020ab326db2' 2025-08-26T20:43:00.2579886Z Submodule path 'third_party/opentelemetry-cpp/third_party/googletest': checked out 'b796f7d44681514f58a683a3a71ff17c94edb0c1' 2025-08-26T20:43:00.3620535Z Submodule path 'third_party/opentelemetry-cpp/third_party/ms-gsl': checked out '6f4529395c5b7c2d661812257cd6780c67e54afa' 2025-08-26T20:43:00.9143224Z Submodule path 'third_party/opentelemetry-cpp/third_party/nlohmann-json': checked out 'bc889afb4c5bf1c0d8ee29ef35eaaf4c8bef8a5d' 2025-08-26T20:43:01.0159203Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto': checked out '4ca4f0335c63cda7ab31ea7ed70d6553aee14dce' 2025-08-26T20:43:01.1914798Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentracing-cpp': checked out '06b57f48ded1fa3bdd3d4346f6ef29e40e08eaf5' 2025-08-26T20:43:01.3613162Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp': checked out 'c9ffcdda9086ffd9e1283ea7a0276d831f3c8a8d' 2025-08-26T20:43:01.3740772Z Submodule 'civetweb' (https://github.com/civetweb/civetweb.git) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-26T20:43:01.3742248Z Submodule 'googletest' (https://github.com/google/googletest.git) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-26T20:43:03.6436666Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb'... 2025-08-26T20:43:03.6437813Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest'... 2025-08-26T20:43:04.4422991Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb': checked out 'eefb26f82b233268fc98577d265352720d477ba4' 2025-08-26T20:43:04.6401408Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest': checked out 'e2239ee6043f73722e7aa812a459f54a28552929' 2025-08-26T20:43:10.0067863Z Submodule path 'third_party/opentelemetry-cpp/tools/vcpkg': checked out '8eb57355a4ffb410a2e94c07b4dca2dffbee8e50' 2025-08-26T20:43:10.0903975Z Submodule path 'third_party/pocketfft': checked out '0fa0ef591e38c2758e3184c6c23e497b9f732ffa' 2025-08-26T20:43:11.3149469Z Submodule path 'third_party/protobuf': checked out 'd1eca4e4b421cd2997495c4b4e65cea6be4e9b8a' 2025-08-26T20:43:11.3283554Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/protobuf/third_party/benchmark' 2025-08-26T20:43:11.3284802Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/protobuf/third_party/googletest' 2025-08-26T20:43:12.5575198Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf/third_party/benchmark'... 2025-08-26T20:43:12.5576264Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf/third_party/googletest'... 2025-08-26T20:43:12.6395424Z Submodule path 'third_party/protobuf/third_party/benchmark': checked out '5b7683f49e1e9223cf9927b24f6fd3d6bd82e3f8' 2025-08-26T20:43:12.9044331Z Submodule path 'third_party/protobuf/third_party/googletest': checked out '5ec7f0c4a113e2f18ac2c6cc7df51ad6afc24081' 2025-08-26T20:43:12.9864068Z Submodule path 'third_party/psimd': checked out '072586a71b55b7f8c584153d223e95687148a900' 2025-08-26T20:43:13.0863182Z Submodule path 'third_party/pthreadpool': checked out '4fe0e1e183925bf8cfa6aae24237e724a96479b8' 2025-08-26T20:43:13.2995152Z Submodule path 'third_party/pybind11': checked out 'f5fbe867d2d26e4a0a9177a51f6e568868ad3dc8' 2025-08-26T20:43:13.4497007Z Submodule path 'third_party/python-peachpy': checked out 'f45429b087dd7d5bc78bb40dc7cf06425c252d67' 2025-08-26T20:43:13.8435414Z Submodule path 'third_party/sleef': checked out '5a1d179df9cf652951b59010a2d2075372d67f68' 2025-08-26T20:43:14.0427602Z Submodule path 'third_party/tensorpipe': checked out 'af0118d13e52f5a08841464a768e01a0bf3e3075' 2025-08-26T20:43:14.0597105Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/tensorpipe/third_party/googletest' 2025-08-26T20:43:14.0598244Z Submodule 'third_party/libnop' (https://github.com/google/libnop.git) registered for path 'third_party/tensorpipe/third_party/libnop' 2025-08-26T20:43:14.0599344Z Submodule 'third_party/libuv' (https://github.com/libuv/libuv.git) registered for path 'third_party/tensorpipe/third_party/libuv' 2025-08-26T20:43:14.0600448Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/tensorpipe/third_party/pybind11' 2025-08-26T20:43:16.6186823Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/googletest'... 2025-08-26T20:43:16.6187735Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/libnop'... 2025-08-26T20:43:16.6188533Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/pybind11'... 2025-08-26T20:43:16.6189310Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/libuv'... 2025-08-26T20:43:16.8189482Z Submodule path 'third_party/tensorpipe/third_party/googletest': checked out 'aee0f9d9b5b87796ee8a0ab26b7587ec30e8858e' 2025-08-26T20:43:16.9366405Z Submodule path 'third_party/tensorpipe/third_party/libnop': checked out '910b55815be16109f04f4180e9adee14fb4ce281' 2025-08-26T20:43:17.2249507Z Submodule path 'third_party/tensorpipe/third_party/libuv': checked out '5152db2cbfeb5582e9c27c5ea1dba2cd9e10759b' 2025-08-26T20:43:17.3769997Z Submodule path 'third_party/tensorpipe/third_party/pybind11': checked out 'a23996fce38ff6ccfbcdc09f1e63f2c4be5ea2ef' 2025-08-26T20:43:17.3904665Z Submodule 'tools/clang' (https://github.com/wjakob/clang-cindex-python3) registered for path 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-26T20:43:17.8746686Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/pybind11/tools/clang'... 2025-08-26T20:43:17.9436280Z Submodule path 'third_party/tensorpipe/third_party/pybind11/tools/clang': checked out '6a00cbc4a9b8e68b71caf7f774b3f9c753ae84d5' 2025-08-26T20:43:17.9679013Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local gc.auto 0" 2025-08-26T20:43:18.3671838Z Entering 'android/libs/fbjni' 2025-08-26T20:43:18.4062841Z Entering 'third_party/FP16' 2025-08-26T20:43:18.4428761Z Entering 'third_party/FXdiv' 2025-08-26T20:43:18.4796564Z Entering 'third_party/NNPACK' 2025-08-26T20:43:18.5200186Z Entering 'third_party/NVTX' 2025-08-26T20:43:18.5568880Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-26T20:43:18.5942068Z Entering 'third_party/XNNPACK' 2025-08-26T20:43:18.6321541Z Entering 'third_party/aiter' 2025-08-26T20:43:18.6677445Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-26T20:43:18.7073196Z Entering 'third_party/benchmark' 2025-08-26T20:43:18.7447171Z Entering 'third_party/composable_kernel' 2025-08-26T20:43:18.7845730Z Entering 'third_party/cpp-httplib' 2025-08-26T20:43:18.8259311Z Entering 'third_party/cpuinfo' 2025-08-26T20:43:18.8656235Z Entering 'third_party/cudnn_frontend' 2025-08-26T20:43:18.9045050Z Entering 'third_party/cutlass' 2025-08-26T20:43:18.9444492Z Entering 'third_party/fbgemm' 2025-08-26T20:43:18.9804801Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-26T20:43:19.0214049Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-26T20:43:19.0618077Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-26T20:43:19.0988057Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-26T20:43:19.1372989Z Entering 'third_party/fbgemm/external/googletest' 2025-08-26T20:43:19.1741440Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-26T20:43:19.2100575Z Entering 'third_party/fbgemm/external/json' 2025-08-26T20:43:19.2482811Z Entering 'third_party/flash-attention' 2025-08-26T20:43:19.2844593Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-26T20:43:19.3218752Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-26T20:43:19.3611634Z Entering 'third_party/flatbuffers' 2025-08-26T20:43:19.3977795Z Entering 'third_party/fmt' 2025-08-26T20:43:19.4509233Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-26T20:43:19.4878668Z Entering 'third_party/gloo' 2025-08-26T20:43:19.5240072Z Entering 'third_party/googletest' 2025-08-26T20:43:19.5621567Z Entering 'third_party/ideep' 2025-08-26T20:43:19.5966989Z Entering 'third_party/ideep/mkl-dnn' 2025-08-26T20:43:19.6408967Z Entering 'third_party/ittapi' 2025-08-26T20:43:19.6777986Z Entering 'third_party/kineto' 2025-08-26T20:43:19.7126731Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-26T20:43:19.7484042Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-26T20:43:19.7867982Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-26T20:43:19.8237658Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-26T20:43:19.8614530Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-26T20:43:19.8977983Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-26T20:43:19.9376303Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-26T20:43:19.9779046Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-26T20:43:20.0145200Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-26T20:43:20.0517255Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-26T20:43:20.0903221Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-26T20:43:20.1288810Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-26T20:43:20.1674425Z Entering 'third_party/kleidiai' 2025-08-26T20:43:20.2039365Z Entering 'third_party/mimalloc' 2025-08-26T20:43:20.2420488Z Entering 'third_party/nlohmann' 2025-08-26T20:43:20.2794400Z Entering 'third_party/onnx' 2025-08-26T20:43:20.3163815Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-26T20:43:20.3548021Z Entering 'third_party/opentelemetry-cpp' 2025-08-26T20:43:20.3908182Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-26T20:43:20.4273544Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-26T20:43:20.4651037Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-26T20:43:20.5017192Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-26T20:43:20.5384860Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-26T20:43:20.5794031Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-26T20:43:20.6180074Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-26T20:43:20.6542419Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-26T20:43:20.6927973Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-26T20:43:20.7338136Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-26T20:43:20.7764322Z Entering 'third_party/pocketfft' 2025-08-26T20:43:20.8141668Z Entering 'third_party/protobuf' 2025-08-26T20:43:20.8505265Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-26T20:43:20.8900279Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-26T20:43:20.9308160Z Entering 'third_party/psimd' 2025-08-26T20:43:20.9689704Z Entering 'third_party/pthreadpool' 2025-08-26T20:43:21.0072299Z Entering 'third_party/pybind11' 2025-08-26T20:43:21.0467071Z Entering 'third_party/python-peachpy' 2025-08-26T20:43:21.0845943Z Entering 'third_party/sleef' 2025-08-26T20:43:21.1224788Z Entering 'third_party/tensorpipe' 2025-08-26T20:43:21.1602455Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-26T20:43:21.1987410Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-26T20:43:21.2368792Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-26T20:43:21.2758258Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-26T20:43:21.3118680Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-26T20:43:21.3605297Z ##[endgroup] 2025-08-26T20:43:21.3605724Z ##[group]Persisting credentials for submodules 2025-08-26T20:43:21.3619699Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'url\.https\:\/\/github\.com\/\.insteadOf' && git config --local --unset-all 'url.https://github.com/.insteadOf' || :\"" 2025-08-26T20:43:21.7528856Z Entering 'android/libs/fbjni' 2025-08-26T20:43:21.8104747Z Entering 'third_party/FP16' 2025-08-26T20:43:21.8663198Z Entering 'third_party/FXdiv' 2025-08-26T20:43:21.9252880Z Entering 'third_party/NNPACK' 2025-08-26T20:43:21.9836344Z Entering 'third_party/NVTX' 2025-08-26T20:43:22.0409072Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-26T20:43:22.0975285Z Entering 'third_party/XNNPACK' 2025-08-26T20:43:22.1574396Z Entering 'third_party/aiter' 2025-08-26T20:43:22.2154931Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-26T20:43:22.2797469Z Entering 'third_party/benchmark' 2025-08-26T20:43:22.3386874Z Entering 'third_party/composable_kernel' 2025-08-26T20:43:22.3959138Z Entering 'third_party/cpp-httplib' 2025-08-26T20:43:22.4531955Z Entering 'third_party/cpuinfo' 2025-08-26T20:43:22.5130297Z Entering 'third_party/cudnn_frontend' 2025-08-26T20:43:22.5690672Z Entering 'third_party/cutlass' 2025-08-26T20:43:22.6269966Z Entering 'third_party/fbgemm' 2025-08-26T20:43:22.6848530Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-26T20:43:22.7438312Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-26T20:43:22.8031452Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-26T20:43:22.8607868Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-26T20:43:22.9194428Z Entering 'third_party/fbgemm/external/googletest' 2025-08-26T20:43:22.9775780Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-26T20:43:23.0356806Z Entering 'third_party/fbgemm/external/json' 2025-08-26T20:43:23.0939179Z Entering 'third_party/flash-attention' 2025-08-26T20:43:23.1500208Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-26T20:43:23.2096445Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-26T20:43:23.2699535Z Entering 'third_party/flatbuffers' 2025-08-26T20:43:23.3277389Z Entering 'third_party/fmt' 2025-08-26T20:43:23.3859801Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-26T20:43:23.4440719Z Entering 'third_party/gloo' 2025-08-26T20:43:23.5019488Z Entering 'third_party/googletest' 2025-08-26T20:43:23.5594588Z Entering 'third_party/ideep' 2025-08-26T20:43:23.6163997Z Entering 'third_party/ideep/mkl-dnn' 2025-08-26T20:43:23.6772318Z Entering 'third_party/ittapi' 2025-08-26T20:43:23.7349873Z Entering 'third_party/kineto' 2025-08-26T20:43:23.7929267Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-26T20:43:23.8494260Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-26T20:43:23.9069414Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-26T20:43:23.9670655Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-26T20:43:24.0271333Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-26T20:43:24.0865261Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-26T20:43:24.1483952Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-26T20:43:24.2055446Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-26T20:43:24.2632427Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-26T20:43:24.3200396Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-26T20:43:24.3829233Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-26T20:43:24.4423739Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-26T20:43:24.5000559Z Entering 'third_party/kleidiai' 2025-08-26T20:43:24.5580942Z Entering 'third_party/mimalloc' 2025-08-26T20:43:24.6133033Z Entering 'third_party/nlohmann' 2025-08-26T20:43:24.6712533Z Entering 'third_party/onnx' 2025-08-26T20:43:24.7344045Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-26T20:43:24.7942610Z Entering 'third_party/opentelemetry-cpp' 2025-08-26T20:43:24.8500173Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-26T20:43:24.9111599Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-26T20:43:24.9683385Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-26T20:43:25.0274240Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-26T20:43:25.0829407Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-26T20:43:25.1381858Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-26T20:43:25.1937878Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-26T20:43:25.2485272Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-26T20:43:25.3067032Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-26T20:43:25.3710518Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-26T20:43:25.4331336Z Entering 'third_party/pocketfft' 2025-08-26T20:43:25.4892775Z Entering 'third_party/protobuf' 2025-08-26T20:43:25.5447396Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-26T20:43:25.6021337Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-26T20:43:25.6622545Z Entering 'third_party/psimd' 2025-08-26T20:43:25.7173924Z Entering 'third_party/pthreadpool' 2025-08-26T20:43:25.7735885Z Entering 'third_party/pybind11' 2025-08-26T20:43:25.8296558Z Entering 'third_party/python-peachpy' 2025-08-26T20:43:25.8862103Z Entering 'third_party/sleef' 2025-08-26T20:43:25.9428357Z Entering 'third_party/tensorpipe' 2025-08-26T20:43:26.0039982Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-26T20:43:26.0619616Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-26T20:43:26.1191506Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-26T20:43:26.1761804Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-26T20:43:26.2343708Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-26T20:43:26.3034173Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local 'http.https://github.com/.extraheader' 'AUTHORIZATION: basic ***' && git config --local --show-origin --name-only --get-regexp remote.origin.url\"" 2025-08-26T20:43:26.6839579Z Entering 'android/libs/fbjni' 2025-08-26T20:43:26.7386534Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/android/libs/fbjni/config remote.origin.url 2025-08-26T20:43:26.7527545Z Entering 'third_party/FP16' 2025-08-26T20:43:26.8093655Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FP16/config remote.origin.url 2025-08-26T20:43:26.8232493Z Entering 'third_party/FXdiv' 2025-08-26T20:43:26.8787305Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FXdiv/config remote.origin.url 2025-08-26T20:43:26.8945245Z Entering 'third_party/NNPACK' 2025-08-26T20:43:26.9493514Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK/config remote.origin.url 2025-08-26T20:43:26.9634757Z Entering 'third_party/NVTX' 2025-08-26T20:43:27.0207598Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NVTX/config remote.origin.url 2025-08-26T20:43:27.0346235Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-26T20:43:27.0876095Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/VulkanMemoryAllocator/config remote.origin.url 2025-08-26T20:43:27.1024472Z Entering 'third_party/XNNPACK' 2025-08-26T20:43:27.1555202Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/XNNPACK/config remote.origin.url 2025-08-26T20:43:27.1710439Z Entering 'third_party/aiter' 2025-08-26T20:43:27.2268580Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/aiter/config remote.origin.url 2025-08-26T20:43:27.2394765Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-26T20:43:27.2934771Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/aiter/modules/3rdparty/composable_kernel/config remote.origin.url 2025-08-26T20:43:27.3104427Z Entering 'third_party/benchmark' 2025-08-26T20:43:27.3634448Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/benchmark/config remote.origin.url 2025-08-26T20:43:27.3773387Z Entering 'third_party/composable_kernel' 2025-08-26T20:43:27.4310088Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/composable_kernel/config remote.origin.url 2025-08-26T20:43:27.4460446Z Entering 'third_party/cpp-httplib' 2025-08-26T20:43:27.5025015Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cpp-httplib/config remote.origin.url 2025-08-26T20:43:27.5166454Z Entering 'third_party/cpuinfo' 2025-08-26T20:43:27.5696551Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cpuinfo/config remote.origin.url 2025-08-26T20:43:27.5833642Z Entering 'third_party/cudnn_frontend' 2025-08-26T20:43:27.6363554Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cudnn_frontend/config remote.origin.url 2025-08-26T20:43:27.6511935Z Entering 'third_party/cutlass' 2025-08-26T20:43:27.7043261Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cutlass/config remote.origin.url 2025-08-26T20:43:27.7195890Z Entering 'third_party/fbgemm' 2025-08-26T20:43:27.7739234Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/config remote.origin.url 2025-08-26T20:43:27.7866045Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-26T20:43:27.8460246Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/asmjit/config remote.origin.url 2025-08-26T20:43:27.8609844Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-26T20:43:27.9177780Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/composable_kernel/config remote.origin.url 2025-08-26T20:43:27.9331675Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-26T20:43:27.9893478Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/cpuinfo/config remote.origin.url 2025-08-26T20:43:28.0041636Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-26T20:43:28.0625316Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/cutlass/config remote.origin.url 2025-08-26T20:43:28.0785737Z Entering 'third_party/fbgemm/external/googletest' 2025-08-26T20:43:28.1360489Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/googletest/config remote.origin.url 2025-08-26T20:43:28.1510756Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-26T20:43:28.2096995Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/hipify_torch/config remote.origin.url 2025-08-26T20:43:28.2268081Z Entering 'third_party/fbgemm/external/json' 2025-08-26T20:43:28.2837693Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/json/config remote.origin.url 2025-08-26T20:43:28.3003977Z Entering 'third_party/flash-attention' 2025-08-26T20:43:28.3586194Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/config remote.origin.url 2025-08-26T20:43:28.3724590Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-26T20:43:28.4296813Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/composable_kernel/config remote.origin.url 2025-08-26T20:43:28.4451847Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-26T20:43:28.5020969Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/cutlass/config remote.origin.url 2025-08-26T20:43:28.5229654Z Entering 'third_party/flatbuffers' 2025-08-26T20:43:28.5797337Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flatbuffers/config remote.origin.url 2025-08-26T20:43:28.5944935Z Entering 'third_party/fmt' 2025-08-26T20:43:28.6539759Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fmt/config remote.origin.url 2025-08-26T20:43:28.6713666Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-26T20:43:28.7786673Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/gemmlowp/gemmlowp/config remote.origin.url 2025-08-26T20:43:28.7934263Z Entering 'third_party/gloo' 2025-08-26T20:43:28.8515858Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/gloo/config remote.origin.url 2025-08-26T20:43:28.8685340Z Entering 'third_party/googletest' 2025-08-26T20:43:28.9292320Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/googletest/config remote.origin.url 2025-08-26T20:43:28.9439131Z Entering 'third_party/ideep' 2025-08-26T20:43:29.0061438Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/config remote.origin.url 2025-08-26T20:43:29.0200214Z Entering 'third_party/ideep/mkl-dnn' 2025-08-26T20:43:29.0784474Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/modules/mkl-dnn/config remote.origin.url 2025-08-26T20:43:29.0957635Z Entering 'third_party/ittapi' 2025-08-26T20:43:29.1534867Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ittapi/config remote.origin.url 2025-08-26T20:43:29.1730507Z Entering 'third_party/kineto' 2025-08-26T20:43:29.2324194Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/config remote.origin.url 2025-08-26T20:43:29.2458216Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-26T20:43:29.3038373Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/config remote.origin.url 2025-08-26T20:43:29.3169877Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-26T20:43:29.3723376Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/DCGM/config remote.origin.url 2025-08-26T20:43:29.3868226Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-26T20:43:29.4420233Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/cpr/config remote.origin.url 2025-08-26T20:43:29.4563261Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-26T20:43:29.5120711Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/fmt/config remote.origin.url 2025-08-26T20:43:29.5268965Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-26T20:43:29.5845722Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/gflags/config remote.origin.url 2025-08-26T20:43:29.5977789Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-26T20:43:29.6584845Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/gflags/modules/doc/config remote.origin.url 2025-08-26T20:43:29.6762125Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-26T20:43:29.7362709Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/glog/config remote.origin.url 2025-08-26T20:43:29.7543245Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-26T20:43:29.8146544Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/googletest/config remote.origin.url 2025-08-26T20:43:29.8299733Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-26T20:43:29.8890851Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/json/config remote.origin.url 2025-08-26T20:43:29.9036660Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-26T20:43:29.9633564Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/pfs/config remote.origin.url 2025-08-26T20:43:29.9797222Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-26T20:43:30.0342290Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/fmt/config remote.origin.url 2025-08-26T20:43:30.0482560Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-26T20:43:30.1042924Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/googletest/config remote.origin.url 2025-08-26T20:43:30.1212337Z Entering 'third_party/kleidiai' 2025-08-26T20:43:30.1817718Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kleidiai/config remote.origin.url 2025-08-26T20:43:30.1960435Z Entering 'third_party/mimalloc' 2025-08-26T20:43:30.2504173Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/mimalloc/config remote.origin.url 2025-08-26T20:43:30.2646547Z Entering 'third_party/nlohmann' 2025-08-26T20:43:30.3184560Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/nlohmann/config remote.origin.url 2025-08-26T20:43:30.3329355Z Entering 'third_party/onnx' 2025-08-26T20:43:30.3859365Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/config remote.origin.url 2025-08-26T20:43:30.4011241Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-26T20:43:30.4564235Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/modules/third_party/pybind11/config remote.origin.url 2025-08-26T20:43:30.4723230Z Entering 'third_party/opentelemetry-cpp' 2025-08-26T20:43:30.5254691Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/config remote.origin.url 2025-08-26T20:43:30.5392898Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-26T20:43:30.5923401Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/benchmark/config remote.origin.url 2025-08-26T20:43:30.6062160Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-26T20:43:30.6621260Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/googletest/config remote.origin.url 2025-08-26T20:43:30.6764319Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-26T20:43:30.7392499Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/ms-gsl/config remote.origin.url 2025-08-26T20:43:30.7539032Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-26T20:43:30.8144188Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/nlohmann-json/config remote.origin.url 2025-08-26T20:43:30.8288513Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-26T20:43:30.8907737Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentelemetry-proto/config remote.origin.url 2025-08-26T20:43:30.9081933Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-26T20:43:30.9656769Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentracing-cpp/config remote.origin.url 2025-08-26T20:43:30.9803658Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-26T20:43:31.0358719Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/config remote.origin.url 2025-08-26T20:43:31.0491314Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-26T20:43:31.1070462Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/modules/civetweb/config remote.origin.url 2025-08-26T20:43:31.1214797Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-26T20:43:31.1782276Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/modules/googletest/config remote.origin.url 2025-08-26T20:43:31.1939692Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-26T20:43:31.2482000Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/tools/vcpkg/config remote.origin.url 2025-08-26T20:43:31.2665534Z Entering 'third_party/pocketfft' 2025-08-26T20:43:31.3201709Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/pocketfft/config remote.origin.url 2025-08-26T20:43:31.3348577Z Entering 'third_party/protobuf' 2025-08-26T20:43:31.3913389Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/config remote.origin.url 2025-08-26T20:43:31.4044344Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-26T20:43:31.4629605Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/benchmark/config remote.origin.url 2025-08-26T20:43:31.4774533Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-26T20:43:31.5317162Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/googletest/config remote.origin.url 2025-08-26T20:43:31.5480851Z Entering 'third_party/psimd' 2025-08-26T20:43:31.6028038Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/psimd/config remote.origin.url 2025-08-26T20:43:31.6165843Z Entering 'third_party/pthreadpool' 2025-08-26T20:43:31.6743675Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/pthreadpool/config remote.origin.url 2025-08-26T20:43:31.6892784Z Entering 'third_party/pybind11' 2025-08-26T20:43:31.7437394Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/pybind11/config remote.origin.url 2025-08-26T20:43:31.7578461Z Entering 'third_party/python-peachpy' 2025-08-26T20:43:31.8118404Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/python-peachpy/config remote.origin.url 2025-08-26T20:43:31.8278108Z Entering 'third_party/sleef' 2025-08-26T20:43:31.8821320Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/sleef/config remote.origin.url 2025-08-26T20:43:31.8958868Z Entering 'third_party/tensorpipe' 2025-08-26T20:43:31.9540824Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/config remote.origin.url 2025-08-26T20:43:31.9665965Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-26T20:43:32.0210579Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/googletest/config remote.origin.url 2025-08-26T20:43:32.0356031Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-26T20:43:32.0906956Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libnop/config remote.origin.url 2025-08-26T20:43:32.1047665Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-26T20:43:32.1585086Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libuv/config remote.origin.url 2025-08-26T20:43:32.1724236Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-26T20:43:32.2323227Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/config remote.origin.url 2025-08-26T20:43:32.2453402Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-26T20:43:32.3022649Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/modules/tools/clang/config remote.origin.url 2025-08-26T20:43:32.3659182Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:'" 2025-08-26T20:43:32.7711204Z Entering 'android/libs/fbjni' 2025-08-26T20:43:32.8094650Z Entering 'third_party/FP16' 2025-08-26T20:43:32.8477639Z Entering 'third_party/FXdiv' 2025-08-26T20:43:32.8856322Z Entering 'third_party/NNPACK' 2025-08-26T20:43:32.9229601Z Entering 'third_party/NVTX' 2025-08-26T20:43:32.9601483Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-26T20:43:33.0015434Z Entering 'third_party/XNNPACK' 2025-08-26T20:43:33.0404620Z Entering 'third_party/aiter' 2025-08-26T20:43:33.0781403Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-26T20:43:33.1192872Z Entering 'third_party/benchmark' 2025-08-26T20:43:33.1570125Z Entering 'third_party/composable_kernel' 2025-08-26T20:43:33.1957585Z Entering 'third_party/cpp-httplib' 2025-08-26T20:43:33.2342220Z Entering 'third_party/cpuinfo' 2025-08-26T20:43:33.2730973Z Entering 'third_party/cudnn_frontend' 2025-08-26T20:43:33.3119449Z Entering 'third_party/cutlass' 2025-08-26T20:43:33.3528453Z Entering 'third_party/fbgemm' 2025-08-26T20:43:33.3911542Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-26T20:43:33.4316564Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-26T20:43:33.4727940Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-26T20:43:33.5133613Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-26T20:43:33.5577590Z Entering 'third_party/fbgemm/external/googletest' 2025-08-26T20:43:33.5977836Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-26T20:43:33.6373401Z Entering 'third_party/fbgemm/external/json' 2025-08-26T20:43:33.6800009Z Entering 'third_party/flash-attention' 2025-08-26T20:43:33.7187544Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-26T20:43:33.7617239Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-26T20:43:33.8044561Z Entering 'third_party/flatbuffers' 2025-08-26T20:43:33.8434376Z Entering 'third_party/fmt' 2025-08-26T20:43:33.8864403Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-26T20:43:33.9259467Z Entering 'third_party/gloo' 2025-08-26T20:43:33.9650987Z Entering 'third_party/googletest' 2025-08-26T20:43:34.0048800Z Entering 'third_party/ideep' 2025-08-26T20:43:34.0431690Z Entering 'third_party/ideep/mkl-dnn' 2025-08-26T20:43:34.0854607Z Entering 'third_party/ittapi' 2025-08-26T20:43:34.1246031Z Entering 'third_party/kineto' 2025-08-26T20:43:34.1626823Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-26T20:43:34.2002451Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-26T20:43:34.2398332Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-26T20:43:34.2791834Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-26T20:43:34.3197651Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-26T20:43:34.3584186Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-26T20:43:34.4037768Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-26T20:43:34.4429599Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-26T20:43:34.4835164Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-26T20:43:34.5262846Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-26T20:43:34.5681380Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-26T20:43:34.6107994Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-26T20:43:34.6536847Z Entering 'third_party/kleidiai' 2025-08-26T20:43:34.6936011Z Entering 'third_party/mimalloc' 2025-08-26T20:43:34.7344795Z Entering 'third_party/nlohmann' 2025-08-26T20:43:34.7736395Z Entering 'third_party/onnx' 2025-08-26T20:43:34.8148821Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-26T20:43:34.8624082Z Entering 'third_party/opentelemetry-cpp' 2025-08-26T20:43:34.9001530Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-26T20:43:34.9397847Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-26T20:43:34.9818541Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-26T20:43:35.0215889Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-26T20:43:35.0610396Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-26T20:43:35.1007415Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-26T20:43:35.1399014Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-26T20:43:35.1770060Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-26T20:43:35.2165468Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-26T20:43:35.2579522Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-26T20:43:35.3005375Z Entering 'third_party/pocketfft' 2025-08-26T20:43:35.3392401Z Entering 'third_party/protobuf' 2025-08-26T20:43:35.3765104Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-26T20:43:35.4150442Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-26T20:43:35.4551773Z Entering 'third_party/psimd' 2025-08-26T20:43:35.4932413Z Entering 'third_party/pthreadpool' 2025-08-26T20:43:35.5318212Z Entering 'third_party/pybind11' 2025-08-26T20:43:35.5708475Z Entering 'third_party/python-peachpy' 2025-08-26T20:43:35.6092132Z Entering 'third_party/sleef' 2025-08-26T20:43:35.6474433Z Entering 'third_party/tensorpipe' 2025-08-26T20:43:35.6844802Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-26T20:43:35.7252599Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-26T20:43:35.7644489Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-26T20:43:35.8030766Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-26T20:43:35.8424588Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-26T20:43:35.8956783Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local --add 'url.https://github.com/.insteadOf' 'org-21003710@github.com:'" 2025-08-26T20:43:36.2968604Z Entering 'android/libs/fbjni' 2025-08-26T20:43:36.3349865Z Entering 'third_party/FP16' 2025-08-26T20:43:36.3720230Z Entering 'third_party/FXdiv' 2025-08-26T20:43:36.4091359Z Entering 'third_party/NNPACK' 2025-08-26T20:43:36.4464065Z Entering 'third_party/NVTX' 2025-08-26T20:43:36.4857419Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-26T20:43:36.5252500Z Entering 'third_party/XNNPACK' 2025-08-26T20:43:36.5641950Z Entering 'third_party/aiter' 2025-08-26T20:43:36.6050204Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-26T20:43:36.6483048Z Entering 'third_party/benchmark' 2025-08-26T20:43:36.6887612Z Entering 'third_party/composable_kernel' 2025-08-26T20:43:36.7318407Z Entering 'third_party/cpp-httplib' 2025-08-26T20:43:36.7706059Z Entering 'third_party/cpuinfo' 2025-08-26T20:43:36.8088061Z Entering 'third_party/cudnn_frontend' 2025-08-26T20:43:36.8458168Z Entering 'third_party/cutlass' 2025-08-26T20:43:36.8846135Z Entering 'third_party/fbgemm' 2025-08-26T20:43:36.9218375Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-26T20:43:36.9598326Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-26T20:43:37.0004655Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-26T20:43:37.0391430Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-26T20:43:37.0782976Z Entering 'third_party/fbgemm/external/googletest' 2025-08-26T20:43:37.1163786Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-26T20:43:37.1547277Z Entering 'third_party/fbgemm/external/json' 2025-08-26T20:43:37.1937173Z Entering 'third_party/flash-attention' 2025-08-26T20:43:37.2312465Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-26T20:43:37.2706669Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-26T20:43:37.3110003Z Entering 'third_party/flatbuffers' 2025-08-26T20:43:37.3482716Z Entering 'third_party/fmt' 2025-08-26T20:43:37.3866665Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-26T20:43:37.4257195Z Entering 'third_party/gloo' 2025-08-26T20:43:37.4643208Z Entering 'third_party/googletest' 2025-08-26T20:43:37.5034341Z Entering 'third_party/ideep' 2025-08-26T20:43:37.5418477Z Entering 'third_party/ideep/mkl-dnn' 2025-08-26T20:43:37.5861365Z Entering 'third_party/ittapi' 2025-08-26T20:43:37.6265093Z Entering 'third_party/kineto' 2025-08-26T20:43:37.6644348Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-26T20:43:37.7038820Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-26T20:43:37.7486918Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-26T20:43:37.7897562Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-26T20:43:37.8320290Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-26T20:43:37.8717236Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-26T20:43:37.9151419Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-26T20:43:37.9576198Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-26T20:43:37.9990662Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-26T20:43:38.0407824Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-26T20:43:38.0842536Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-26T20:43:38.1261867Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-26T20:43:38.1687456Z Entering 'third_party/kleidiai' 2025-08-26T20:43:38.2091495Z Entering 'third_party/mimalloc' 2025-08-26T20:43:38.2492739Z Entering 'third_party/nlohmann' 2025-08-26T20:43:38.2955578Z Entering 'third_party/onnx' 2025-08-26T20:43:38.3356420Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-26T20:43:38.3749389Z Entering 'third_party/opentelemetry-cpp' 2025-08-26T20:43:38.4111750Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-26T20:43:38.4504989Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-26T20:43:38.5024552Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-26T20:43:38.5431321Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-26T20:43:38.5818677Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-26T20:43:38.6212496Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-26T20:43:38.6605314Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-26T20:43:38.6966332Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-26T20:43:38.7377191Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-26T20:43:38.7785419Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-26T20:43:38.8219016Z Entering 'third_party/pocketfft' 2025-08-26T20:43:38.8615725Z Entering 'third_party/protobuf' 2025-08-26T20:43:38.9000719Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-26T20:43:38.9508237Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-26T20:43:38.9935352Z Entering 'third_party/psimd' 2025-08-26T20:43:39.0315128Z Entering 'third_party/pthreadpool' 2025-08-26T20:43:39.0688598Z Entering 'third_party/pybind11' 2025-08-26T20:43:39.1064534Z Entering 'third_party/python-peachpy' 2025-08-26T20:43:39.1462126Z Entering 'third_party/sleef' 2025-08-26T20:43:39.1830365Z Entering 'third_party/tensorpipe' 2025-08-26T20:43:39.2194164Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-26T20:43:39.2594083Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-26T20:43:39.2992604Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-26T20:43:39.3384669Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-26T20:43:39.3759109Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-26T20:43:39.4284793Z ##[endgroup] 2025-08-26T20:43:39.4586882Z [command]"C:\Program Files\Git\cmd\git.exe" log -1 --format=%H 2025-08-26T20:43:39.4798194Z 262640fd220236042fbf4443cc163c8838c84c3d 2025-08-26T20:43:39.5132692Z Prepare all required actions 2025-08-26T20:43:39.5203154Z ##[group]Run ./.github/actions/setup-win 2025-08-26T20:43:39.5203460Z with: 2025-08-26T20:43:39.5203647Z cuda-version: cpu 2025-08-26T20:43:39.5203857Z env: 2025-08-26T20:43:39.5204036Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:43:39.5204269Z ##[endgroup] 2025-08-26T20:43:39.5286553Z ##[group]Run set -euo pipefail 2025-08-26T20:43:39.5286847Z set -euo pipefail 2025-08-26T20:43:39.5287167Z function get_ec2_metadata() { 2025-08-26T20:43:39.5287511Z  # Pulled from instance metadata endpoint for EC2 2025-08-26T20:43:39.5288151Z  # see https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html 2025-08-26T20:43:39.5288672Z  category=$1 2025-08-26T20:43:39.5289554Z  curl -H "X-aws-ec2-metadata-token: $(curl -s -X PUT "http://169.254.169.254/latest/api/token" -H "X-aws-ec2-metadata-token-ttl-seconds: 30")" -fsSL "http://169.254.169.254/latest/meta-data/${category}" 2025-08-26T20:43:39.5291049Z } 2025-08-26T20:43:39.5291278Z echo "ami-id: $(get_ec2_metadata ami-id)" 2025-08-26T20:43:39.5291748Z echo "instance-id: $(get_ec2_metadata instance-id)" 2025-08-26T20:43:39.5292185Z echo "instance-type: $(get_ec2_metadata instance-type)" 2025-08-26T20:43:39.5292567Z echo "system info $(uname -a)" 2025-08-26T20:43:39.5311882Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T20:43:39.5312392Z env: 2025-08-26T20:43:39.5312576Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:43:39.5312851Z ##[endgroup] 2025-08-26T20:43:39.5925147Z ami-id: ami-0eb22074cad29e297 2025-08-26T20:43:39.6262655Z instance-id: i-0d7df880c5a372abc 2025-08-26T20:43:39.6767690Z instance-type: c5d.4xlarge 2025-08-26T20:43:39.6952648Z system info MSYS_NT-10.0-17763 EC2AMAZ-TE6SPGV 3.6.3-7674c51e.x86_64 2025-07-01 09:13 UTC x86_64 Msys 2025-08-26T20:43:39.7052266Z ##[group]Run Set-ItemProperty -Path "HKLM:\\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 2025-08-26T20:43:39.7053214Z Set-ItemProperty -Path "HKLM:\\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 2025-08-26T20:43:39.7068807Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-26T20:43:39.7069264Z env: 2025-08-26T20:43:39.7069444Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:43:39.7069670Z ##[endgroup] 2025-08-26T20:43:40.0568908Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-26T20:43:40.0622658Z Finished 2025-08-26T20:43:40.0927204Z ##[group]Run # Windows conda is baked into the AMI at this location 2025-08-26T20:43:40.0927698Z # Windows conda is baked into the AMI at this location 2025-08-26T20:43:40.0928133Z CONDA="C:\Jenkins\Miniconda3\condabin\conda.bat" 2025-08-26T20:43:40.0928497Z  2025-08-26T20:43:40.0928684Z { 2025-08-26T20:43:40.0928965Z  echo "CONDA_RUN=${CONDA} run --no-capture-output"; 2025-08-26T20:43:40.0929358Z  echo "CONDA_BUILD=${CONDA} run conda-build"; 2025-08-26T20:43:40.0929718Z  echo "CONDA_INSTALL=${CONDA} install"; 2025-08-26T20:43:40.0930025Z } >> "${GITHUB_ENV}" 2025-08-26T20:43:40.0950652Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T20:43:40.0951093Z env: 2025-08-26T20:43:40.0951301Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:43:40.0951537Z ##[endgroup] 2025-08-26T20:43:40.1230526Z ##[group]Run set +e 2025-08-26T20:43:40.1230791Z set +e 2025-08-26T20:43:40.1242757Z set -x 2025-08-26T20:43:40.1242984Z  2025-08-26T20:43:40.1243197Z PYTHON3=$(${CONDA_RUN} which python3) 2025-08-26T20:43:40.1243506Z EXIT_CODE=$? 2025-08-26T20:43:40.1243737Z  2025-08-26T20:43:40.1245233Z if [[ "${EXIT_CODE}" == "0" ]]; then 2025-08-26T20:43:40.1245652Z  echo "Found Python3 at ${PYTHON3}, adding it into GITHUB_PATH" 2025-08-26T20:43:40.1246039Z  2025-08-26T20:43:40.1246247Z  PYTHON_PATH=$(dirname "${PYTHON3}") 2025-08-26T20:43:40.1246585Z  echo "${PYTHON_PATH}" >> "${GITHUB_PATH}" 2025-08-26T20:43:40.1246931Z else 2025-08-26T20:43:40.1247388Z  # According to https://docs.conda.io/en/latest/miniconda.html, we are using the Miniconda3 2025-08-26T20:43:40.1248147Z  # installation, which is Python 3 based. Its Python is default to Python 3. Further, there 2025-08-26T20:43:40.1248820Z  # is also the Miniconda installation that is Python 2 based, and both can be installed if 2025-08-26T20:43:40.1249385Z  # needed. In both cases, Python binary is just called python 2025-08-26T20:43:40.1249779Z  PYTHON=$(${CONDA_RUN} which python) 2025-08-26T20:43:40.1250232Z  EXIT_CODE=$? 2025-08-26T20:43:40.1250467Z  2025-08-26T20:43:40.1250667Z  if [[ "${EXIT_CODE}" == "0" ]]; then 2025-08-26T20:43:40.1251120Z  echo "Found Python at ${PYTHON}, set Python3 alias and add it into GITHUB_PATH" 2025-08-26T20:43:40.1251600Z  2025-08-26T20:43:40.1251863Z  PYTHON3=$(echo "${PYTHON}" | sed "s/python/python3/") 2025-08-26T20:43:40.1252391Z  # It's difficult to setup alias across GitHub action steps, so I just add a softlink 2025-08-26T20:43:40.1252899Z  # here pointing to Python 2025-08-26T20:43:40.1253242Z  ln -s "${PYTHON}" "${PYTHON3}" 2025-08-26T20:43:40.1253511Z  2025-08-26T20:43:40.1253716Z  PYTHON_PATH=$(dirname "${PYTHON}") 2025-08-26T20:43:40.1254049Z  echo "${PYTHON_PATH}" >> "${GITHUB_PATH}" 2025-08-26T20:43:40.1254358Z  else 2025-08-26T20:43:40.1254597Z  echo "Found no Python using ${CONDA_RUN}" 2025-08-26T20:43:40.1254899Z  fi 2025-08-26T20:43:40.1255082Z fi 2025-08-26T20:43:40.1273721Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T20:43:40.1274159Z env: 2025-08-26T20:43:40.1274340Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:43:40.1274720Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:43:40.1275231Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:43:40.1275780Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:43:40.1276177Z ##[endgroup] 2025-08-26T20:43:40.1519371Z ++ 'C:\Jenkins\Miniconda3\condabin\conda.bat' run --no-capture-output which python3 2025-08-26T20:43:48.1834908Z which: no python3 in (/c/Jenkins/Miniconda3:/c/Jenkins/Miniconda3/Library/mingw-w64/bin:/c/Jenkins/Miniconda3/Library/usr/bin:/c/Jenkins/Miniconda3/Library/bin:/c/Jenkins/Miniconda3/Scripts:/c/Jenkins/Miniconda3/bin:/c/Jenkins/Miniconda3/condabin:/c/Windows/system32:/c/Windows:/c/Windows/System32/Wbem:/c/Windows/System32/WindowsPowerShell/v1.0:/c/Windows/System32/OpenSSH:/c/Program Files/Amazon/cfn-bootstrap:/c/ProgramData/chocolatey/bin:/c/Program Files/Amazon/AWSCLIV2:/cmd:/mingw64/bin:/usr/bin:/c/Program Files (x86)/Windows Kits/10/Windows Performance Toolkit:/c/Users/runneruser/AppData/Local/Microsoft/WindowsApps) 2025-08-26T20:43:48.1864959Z ERROR conda.cli.main_run:execute(49): `conda run which python3` failed. (See above for error) 2025-08-26T20:43:48.2725939Z + PYTHON3= 2025-08-26T20:43:48.2726171Z + EXIT_CODE=1 2025-08-26T20:43:48.2726551Z + [[ 1 == \0 ]] 2025-08-26T20:43:48.2786858Z ++ 'C:\Jenkins\Miniconda3\condabin\conda.bat' run --no-capture-output which python 2025-08-26T20:43:49.9176000Z + PYTHON=/c/Jenkins/Miniconda3/python 2025-08-26T20:43:49.9176358Z + EXIT_CODE=0 2025-08-26T20:43:49.9176534Z + [[ 0 == \0 ]] 2025-08-26T20:43:49.9176973Z + echo 'Found Python at /c/Jenkins/Miniconda3/python, set Python3 alias and add it into GITHUB_PATH' 2025-08-26T20:43:49.9178579Z Found Python at /c/Jenkins/Miniconda3/python, set Python3 alias and add it into GITHUB_PATH 2025-08-26T20:43:49.9304917Z ++ echo /c/Jenkins/Miniconda3/python 2025-08-26T20:43:49.9357024Z ++ sed s/python/python3/ 2025-08-26T20:43:49.9423420Z + PYTHON3=/c/Jenkins/Miniconda3/python3 2025-08-26T20:43:49.9423861Z + ln -s /c/Jenkins/Miniconda3/python /c/Jenkins/Miniconda3/python3 2025-08-26T20:43:49.9628800Z ++ dirname /c/Jenkins/Miniconda3/python 2025-08-26T20:43:49.9700285Z + PYTHON_PATH=/c/Jenkins/Miniconda3 2025-08-26T20:43:49.9700623Z + echo /c/Jenkins/Miniconda3 2025-08-26T20:43:49.9800536Z ##[group]Run TMPDIR=$(python -c 'import tempfile; print(tempfile.gettempdir());') 2025-08-26T20:43:49.9801139Z TMPDIR=$(python -c 'import tempfile; print(tempfile.gettempdir());') 2025-08-26T20:43:49.9801606Z echo "TMPDIR=${TMPDIR}" >> "${GITHUB_ENV}" 2025-08-26T20:43:49.9823426Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T20:43:49.9823873Z env: 2025-08-26T20:43:49.9824057Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:43:49.9824434Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:43:49.9825079Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:43:49.9825613Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:43:49.9825965Z ##[endgroup] 2025-08-26T20:43:50.0754081Z ##[group]Run Add-MpPreference -ExclusionPath $(Get-Location).tostring(),$Env:TMPDIR,"C:\Jenkins\Miniconda3" -ErrorAction Ignore 2025-08-26T20:43:50.0755044Z Add-MpPreference -ExclusionPath $(Get-Location).tostring(),$Env:TMPDIR,"C:\Jenkins\Miniconda3" -ErrorAction Ignore 2025-08-26T20:43:50.0755829Z # Let's both exclude the path and disable Windows Defender completely just to be sure 2025-08-26T20:43:50.0756291Z # that it doesn't interfere 2025-08-26T20:43:50.0756760Z Set-MpPreference -DisableRealtimeMonitoring $True -ErrorAction Ignore 2025-08-26T20:43:50.0772368Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-26T20:43:50.0772824Z env: 2025-08-26T20:43:50.0773001Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:43:50.0773376Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:43:50.0773897Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:43:50.0774366Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:43:50.0774761Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:43:50.0775046Z ##[endgroup] 2025-08-26T20:43:50.4244035Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-26T20:43:50.4299626Z Finished 2025-08-26T20:43:51.1975327Z ##[group]Run choco install handle -y 2025-08-26T20:43:51.1975668Z choco install handle -y 2025-08-26T20:43:51.1975987Z handle C:\actions-runner\_work\ 2025-08-26T20:43:51.1992126Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-26T20:43:51.1992584Z env: 2025-08-26T20:43:51.1992789Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:43:51.1993168Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:43:51.1993709Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:43:51.1994203Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:43:51.1994604Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:43:51.1994915Z ##[endgroup] 2025-08-26T20:43:51.5647025Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-26T20:43:51.5699868Z Finished 2025-08-26T20:43:53.5951669Z Chocolatey v2.5.0 2025-08-26T20:43:53.7648270Z Installing the following packages: 2025-08-26T20:43:53.7653281Z handle 2025-08-26T20:43:53.7657094Z By installing, you accept licenses for the packages. 2025-08-26T20:43:55.2263897Z Downloading package from source 'https://community.chocolatey.org/api/v2/' 2025-08-26T20:43:55.4390100Z 2025-08-26T20:43:55.4390788Z Progress: Downloading Handle 5.0... 15% 2025-08-26T20:43:55.4391243Z Progress: Downloading Handle 5.0... 45% 2025-08-26T20:43:55.4391537Z Progress: Downloading Handle 5.0... 75% 2025-08-26T20:43:55.4391840Z Progress: Downloading Handle 5.0... 100% 2025-08-26T20:43:55.6295553Z 2025-08-26T20:43:55.6295998Z handle v5.0.0 [Approved] 2025-08-26T20:43:55.6533021Z handle package files install completed. Performing other installation steps. 2025-08-26T20:43:56.7018188Z Downloading Handle 2025-08-26T20:43:56.7018574Z from 'https://download.sysinternals.com/files/Handle.zip' 2025-08-26T20:43:56.8279244Z 2025-08-26T20:43:56.8297232Z Progress: 19% - Saving 143.51 KB of 729.82 KB 2025-08-26T20:43:56.8311428Z Progress: 41% - Saving 303.51 KB of 729.82 KB 2025-08-26T20:43:56.8327872Z Progress: 63% - Saving 463.51 KB of 729.82 KB 2025-08-26T20:43:56.8345985Z Progress: 85% - Saving 623.51 KB of 729.82 KB 2025-08-26T20:43:56.8349456Z Progress: 100% - Completed download of C:\Users\runneruser\AppData\Local\Temp\chocolatey\Handle\5.0.0\Handle.zip (729.82 KB). 2025-08-26T20:43:56.8355843Z Download of Handle.zip (729.82 KB) completed. 2025-08-26T20:43:59.9133332Z Hashes match. 2025-08-26T20:43:59.9403715Z Extracting C:\Users\runneruser\AppData\Local\Temp\chocolatey\Handle\5.0.0\Handle.zip to C:\ProgramData\chocolatey\lib\Handle\tools... 2025-08-26T20:44:00.2027267Z C:\ProgramData\chocolatey\lib\Handle\tools 2025-08-26T20:44:00.2200840Z HKEY_CURRENT_USER\Software\Sysinternals 2025-08-26T20:44:00.2230793Z HKEY_CURRENT_USER\Software\Sysinternals\Handle 2025-08-26T20:44:00.6148079Z ShimGen has successfully created a shim for handle.exe 2025-08-26T20:44:00.7934764Z ShimGen has successfully created a shim for handle64.exe 2025-08-26T20:44:00.9746854Z ShimGen has successfully created a shim for handle64a.exe 2025-08-26T20:44:01.0057641Z The install of handle was successful. 2025-08-26T20:44:01.0062089Z Deployed to 'C:\ProgramData\chocolatey\lib\Handle\tools' 2025-08-26T20:44:01.0186955Z 2025-08-26T20:44:01.0187335Z Chocolatey installed 1/1 packages. 2025-08-26T20:44:01.0187781Z See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log). 2025-08-26T20:44:01.2623502Z 2025-08-26T20:44:01.2623921Z Nthandle v5.0 - Handle viewer 2025-08-26T20:44:01.2624259Z Copyright (C) 1997-2022 Mark Russinovich 2025-08-26T20:44:01.2624564Z Sysinternals - www.sysinternals.com 2025-08-26T20:44:01.2624755Z 2025-08-26T20:44:01.3057275Z powershell.exe pid: 3248 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-08-26T20:44:01.3057911Z handle.exe pid: 6088 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-08-26T20:44:01.3058486Z handle.exe pid: 3476 type: File 94: C:\actions-runner\_work\pytorch\pytorch 2025-08-26T20:44:01.3059147Z handle64.exe pid: 452 type: File 50: C:\actions-runner\_work\pytorch\pytorch 2025-08-26T20:44:01.3396296Z ##[group]Run nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e 2025-08-26T20:44:01.3396715Z with: 2025-08-26T20:44:01.3396895Z shell: bash 2025-08-26T20:44:01.3397077Z timeout_minutes: 5 2025-08-26T20:44:01.3397287Z max_attempts: 5 2025-08-26T20:44:01.3397480Z retry_wait_seconds: 30 2025-08-26T20:44:01.3397789Z command: set -eu python3 -m pip install 'xdoctest>=1.1.0' 2025-08-26T20:44:01.3398148Z polling_interval_seconds: 1 2025-08-26T20:44:01.3398395Z warning_on_retry: true 2025-08-26T20:44:01.3398616Z continue_on_error: false 2025-08-26T20:44:01.3398832Z env: 2025-08-26T20:44:01.3399016Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:44:01.3399374Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:44:01.3399908Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:44:01.3400397Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:44:01.3400824Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:44:01.3401107Z ##[endgroup] 2025-08-26T20:44:04.9915062Z Collecting xdoctest>=1.1.0 2025-08-26T20:44:05.1797201Z Downloading xdoctest-1.2.0-py3-none-any.whl.metadata (37 kB) 2025-08-26T20:44:05.5571621Z Downloading xdoctest-1.2.0-py3-none-any.whl (151 kB) 2025-08-26T20:44:05.6401422Z ---------------------------------------- 151.2/151.2 kB 1.8 MB/s eta 0:00:00 2025-08-26T20:44:07.4247348Z Installing collected packages: xdoctest 2025-08-26T20:44:07.4248275Z Attempting uninstall: xdoctest 2025-08-26T20:44:07.4272229Z Found existing installation: xdoctest 1.0.2 2025-08-26T20:44:07.4396671Z Uninstalling xdoctest-1.0.2: 2025-08-26T20:44:07.4436272Z Successfully uninstalled xdoctest-1.0.2 2025-08-26T20:44:07.5527799Z WARNING: The script xdoctest.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-26T20:44:07.5529461Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-26T20:44:07.6036748Z Successfully installed xdoctest-1.2.0 2025-08-26T20:44:08.4490193Z Command completed after 1 attempt(s). 2025-08-26T20:44:08.4658169Z Prepare all required actions 2025-08-26T20:44:08.4702245Z ##[group]Run ./.github/actions/get-workflow-job-id 2025-08-26T20:44:08.4702569Z with: 2025-08-26T20:44:08.4703061Z github-token: *** 2025-08-26T20:44:08.4703254Z env: 2025-08-26T20:44:08.4703426Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:44:08.4703806Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:44:08.4704349Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:44:08.4704820Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:44:08.4705219Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:44:08.4705509Z ##[endgroup] 2025-08-26T20:44:08.4774063Z ##[group]Run set -eux 2025-08-26T20:44:08.4774302Z set -eux 2025-08-26T20:44:08.4774700Z python3 .github/scripts/get_workflow_job_id.py "${GITHUB_RUN_ID}" "${RUNNER_NAME}" 2025-08-26T20:44:08.4793339Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T20:44:08.4793769Z env: 2025-08-26T20:44:08.4793963Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:44:08.4794336Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:44:08.4794861Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:44:08.4795330Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:44:08.4795728Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:44:08.4796205Z GITHUB_TOKEN: *** 2025-08-26T20:44:08.4796396Z ##[endgroup] 2025-08-26T20:44:08.4993511Z + python3 .github/scripts/get_workflow_job_id.py 17248463647 i-0d7df880c5a372abc 2025-08-26T20:44:09.6969285Z Setting output job-id=48947911988 2025-08-26T20:44:09.6969889Z Setting output job-name=win-vs2022-cpu-py3 / test (default, 1, 3, windows.4xlarge.nonephemeral) 2025-08-26T20:44:09.7214601Z ##[group]Run # Windows conda doesn't have python3 binary, only python, but it's python3 2025-08-26T20:44:09.7215320Z # Windows conda doesn't have python3 binary, only python, but it's python3 2025-08-26T20:44:09.7215951Z ${CONDA_RUN} python -m pip install psutil==5.9.8 dataclasses_json==0.6.7 nvidia-ml-py==11.525.84 2025-08-26T20:44:09.7216934Z ${CONDA_RUN} python -m tools.stats.monitor --log-interval "$MONITOR_LOG_INTERVAL" --data-collect-interval "$MONITOR_DATA_COLLECT_INTERVAL" > usage_log.txt 2>&1 & 2025-08-26T20:44:09.7217774Z echo "monitor-script-pid=${!}" >> "${GITHUB_OUTPUT}" 2025-08-26T20:44:09.7237445Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T20:44:09.7237952Z env: 2025-08-26T20:44:09.7238177Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:44:09.7238599Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:44:09.7239227Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:44:09.7239744Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:44:09.7240178Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:44:09.7240509Z JOB_ID: 48947911988 2025-08-26T20:44:09.7240921Z JOB_NAME: win-vs2022-cpu-py3 / test (default, 1, 3, windows.4xlarge.nonephemeral) 2025-08-26T20:44:09.7241396Z WORKFLOW_NAME: trunk 2025-08-26T20:44:09.7241651Z WORKFLOW_RUN_ID: 17248463647 2025-08-26T20:44:09.7241934Z MONITOR_LOG_INTERVAL: 5 2025-08-26T20:44:09.7242167Z MONITOR_DATA_COLLECT_INTERVAL: 1 2025-08-26T20:44:09.7242461Z ##[endgroup] 2025-08-26T20:44:12.2288375Z Collecting psutil==5.9.8 2025-08-26T20:44:12.4106355Z Downloading psutil-5.9.8-cp37-abi3-win_amd64.whl.metadata (22 kB) 2025-08-26T20:44:12.4985573Z Collecting dataclasses_json==0.6.7 2025-08-26T20:44:12.5027905Z Downloading dataclasses_json-0.6.7-py3-none-any.whl.metadata (25 kB) 2025-08-26T20:44:12.5337600Z Collecting nvidia-ml-py==11.525.84 2025-08-26T20:44:12.5387033Z Downloading nvidia_ml_py-11.525.84-py3-none-any.whl.metadata (8.6 kB) 2025-08-26T20:44:12.6276515Z Collecting marshmallow<4.0.0,>=3.18.0 (from dataclasses_json==0.6.7) 2025-08-26T20:44:12.6319848Z Downloading marshmallow-3.26.1-py3-none-any.whl.metadata (7.3 kB) 2025-08-26T20:44:12.6590432Z Collecting typing-inspect<1,>=0.4.0 (from dataclasses_json==0.6.7) 2025-08-26T20:44:12.6635124Z Downloading typing_inspect-0.9.0-py3-none-any.whl.metadata (1.5 kB) 2025-08-26T20:44:12.6884149Z Requirement already satisfied: packaging>=17.0 in c:\jenkins\miniconda3\lib\site-packages (from marshmallow<4.0.0,>=3.18.0->dataclasses_json==0.6.7) (23.2) 2025-08-26T20:44:12.7098345Z Collecting mypy-extensions>=0.3.0 (from typing-inspect<1,>=0.4.0->dataclasses_json==0.6.7) 2025-08-26T20:44:12.7151525Z Downloading mypy_extensions-1.1.0-py3-none-any.whl.metadata (1.1 kB) 2025-08-26T20:44:12.7252203Z Requirement already satisfied: typing-extensions>=3.7.4 in c:\jenkins\miniconda3\lib\site-packages (from typing-inspect<1,>=0.4.0->dataclasses_json==0.6.7) (4.12.2) 2025-08-26T20:44:12.7611184Z Downloading psutil-5.9.8-cp37-abi3-win_amd64.whl (255 kB) 2025-08-26T20:44:12.8200991Z ---------------------------------------- 255.1/255.1 kB 5.2 MB/s eta 0:00:00 2025-08-26T20:44:12.8254922Z Downloading dataclasses_json-0.6.7-py3-none-any.whl (28 kB) 2025-08-26T20:44:12.8391710Z Downloading nvidia_ml_py-11.525.84-py3-none-any.whl (34 kB) 2025-08-26T20:44:12.8580797Z Downloading marshmallow-3.26.1-py3-none-any.whl (50 kB) 2025-08-26T20:44:12.8688358Z ---------------------------------------- 50.9/50.9 kB ? eta 0:00:00 2025-08-26T20:44:12.8728471Z Downloading typing_inspect-0.9.0-py3-none-any.whl (8.8 kB) 2025-08-26T20:44:12.8866892Z Downloading mypy_extensions-1.1.0-py3-none-any.whl (5.0 kB) 2025-08-26T20:44:13.6943982Z Installing collected packages: nvidia-ml-py, psutil, mypy-extensions, marshmallow, typing-inspect, dataclasses_json 2025-08-26T20:44:13.7406781Z Attempting uninstall: psutil 2025-08-26T20:44:13.7419423Z Found existing installation: psutil 5.9.1 2025-08-26T20:44:13.7534217Z Uninstalling psutil-5.9.1: 2025-08-26T20:44:13.7570384Z Successfully uninstalled psutil-5.9.1 2025-08-26T20:44:14.1438121Z Successfully installed dataclasses_json-0.6.7 marshmallow-3.26.1 mypy-extensions-1.1.0 nvidia-ml-py-11.525.84 psutil-5.9.8 typing-inspect-0.9.0 2025-08-26T20:44:14.3398236Z ##[group]Run seemethere/download-artifact-s3@1da556a7aa0a088e3153970611f6c432d58e80e6 2025-08-26T20:44:14.3398791Z with: 2025-08-26T20:44:14.3399038Z name: win-vs2022-cpu-py3 2025-08-26T20:44:14.3399298Z path: C:\17248463647\build-results 2025-08-26T20:44:14.3399561Z s3-bucket: gha-artifacts 2025-08-26T20:44:14.3399800Z region: us-east-1 2025-08-26T20:44:14.3400001Z env: 2025-08-26T20:44:14.3400180Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:44:14.3400551Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:44:14.3401081Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:44:14.3401547Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:44:14.3401947Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:44:14.3402229Z ##[endgroup] 2025-08-26T20:44:14.8895038Z (node:3968) NOTE: We are formalizing our plans to enter AWS SDK for JavaScript (v2) into maintenance mode in 2023. 2025-08-26T20:44:14.8895561Z 2025-08-26T20:44:14.8895748Z Please migrate your code to use AWS SDK for JavaScript (v3). 2025-08-26T20:44:14.8896291Z For more information, check the migration guide at https://a.co/7PzMCcy 2025-08-26T20:44:14.8896864Z (Use `node --trace-warnings ...` to show where the warning was created) 2025-08-26T20:44:15.0186940Z Found 4 objects with prefix pytorch/pytorch/17248463647/win-vs2022-cpu-py3/ 2025-08-26T20:44:15.0194239Z Starting download (1/4): C:\17248463647\build-results\.additional_ci_files\test-class-times.json 2025-08-26T20:44:15.1281887Z Finished download (1/4): C:\17248463647\build-results\.additional_ci_files\test-class-times.json 2025-08-26T20:44:15.1283089Z Starting download (2/4): C:\17248463647\build-results\.additional_ci_files\test-times.json 2025-08-26T20:44:15.1983168Z Finished download (2/4): C:\17248463647\build-results\.additional_ci_files\test-times.json 2025-08-26T20:44:15.1984769Z Starting download (3/4): C:\17248463647\build-results\.ninja_log 2025-08-26T20:44:15.2580464Z Finished download (3/4): C:\17248463647\build-results\.ninja_log 2025-08-26T20:44:15.2581300Z Starting download (4/4): C:\17248463647\build-results\torch-2.9.0a0+git262640f-cp39-cp39-win_amd64.whl 2025-08-26T20:44:18.0234011Z Finished download (4/4): C:\17248463647\build-results\torch-2.9.0a0+git262640f-cp39-cp39-win_amd64.whl 2025-08-26T20:44:18.0245287Z Artifact download has finished successfully 2025-08-26T20:44:18.0496443Z ##[group]Run tree /F C:\$Env:GITHUB_RUN_ID\build-results 2025-08-26T20:44:18.0496878Z tree /F C:\$Env:GITHUB_RUN_ID\build-results 2025-08-26T20:44:18.0512169Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-26T20:44:18.0512626Z env: 2025-08-26T20:44:18.0512807Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:44:18.0513178Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:44:18.0513693Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:44:18.0514171Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:44:18.0514557Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:44:18.0514842Z ##[endgroup] 2025-08-26T20:44:18.4559639Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-26T20:44:18.4638322Z Finished 2025-08-26T20:44:18.4764648Z Folder PATH listing 2025-08-26T20:44:18.4765017Z Volume serial number is EA7F-0099 2025-08-26T20:44:18.4765292Z C:\17248463647\BUILD-RESULTS 2025-08-26T20:44:18.4770593Z � .ninja_log 2025-08-26T20:44:18.4771011Z � torch-2.9.0a0+git262640f-cp39-cp39-win_amd64.whl 2025-08-26T20:44:18.4771378Z � 2025-08-26T20:44:18.4771596Z ����.additional_ci_files 2025-08-26T20:44:18.4771853Z test-class-times.json 2025-08-26T20:44:18.4772089Z test-times.json 2025-08-26T20:44:18.4772298Z 2025-08-26T20:44:18.5012389Z Prepare all required actions 2025-08-26T20:44:18.5012843Z Getting action download info 2025-08-26T20:44:18.6554759Z Download action repository 'seemethere/download-artifact-s3@v4' (SHA:1da556a7aa0a088e3153970611f6c432d58e80e6) 2025-08-26T20:44:18.9183238Z Download action repository 'actions/download-artifact@v4' (SHA:d3f86a106a0bac45b974a628896c90dbdf5c8093) 2025-08-26T20:44:19.1826331Z ##[group]Run ./.github/actions/download-td-artifacts 2025-08-26T20:44:19.1826998Z with: 2025-08-26T20:44:19.1827275Z env: 2025-08-26T20:44:19.1827606Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:44:19.1828298Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:44:19.1829281Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:44:19.1830192Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:44:19.1830713Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:44:19.1831048Z ##[endgroup] 2025-08-26T20:44:19.1920594Z ##[group]Run seemethere/download-artifact-s3@v4 2025-08-26T20:44:19.1920911Z with: 2025-08-26T20:44:19.1921089Z name: td_results 2025-08-26T20:44:19.1921296Z s3-bucket: gha-artifacts 2025-08-26T20:44:19.1921531Z region: us-east-1 2025-08-26T20:44:19.1921717Z env: 2025-08-26T20:44:19.1921901Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:44:19.1922272Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:44:19.1922968Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:44:19.1923434Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:44:19.1923838Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:44:19.1924128Z ##[endgroup] 2025-08-26T20:44:19.7220750Z (node:3872) NOTE: We are formalizing our plans to enter AWS SDK for JavaScript (v2) into maintenance mode in 2023. 2025-08-26T20:44:19.7221231Z 2025-08-26T20:44:19.7221437Z Please migrate your code to use AWS SDK for JavaScript (v3). 2025-08-26T20:44:19.7221945Z For more information, check the migration guide at https://a.co/7PzMCcy 2025-08-26T20:44:19.7222462Z (Use `node --trace-warnings ...` to show where the warning was created) 2025-08-26T20:44:19.8314181Z Found 1 objects with prefix pytorch/pytorch/17248463647/td_results/ 2025-08-26T20:44:19.8315795Z Starting download (1/1): C:\actions-runner\_work\pytorch\pytorch\td_results.json 2025-08-26T20:44:19.9024409Z Finished download (1/1): C:\actions-runner\_work\pytorch\pytorch\td_results.json 2025-08-26T20:44:19.9033282Z Artifact download has finished successfully 2025-08-26T20:44:19.9275702Z ##[group]Run mkdir -p .additional_ci_files 2025-08-26T20:44:19.9276058Z mkdir -p .additional_ci_files 2025-08-26T20:44:19.9276459Z mv td_results.json .additional_ci_files/td_results.json || true 2025-08-26T20:44:19.9295832Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T20:44:19.9296333Z env: 2025-08-26T20:44:19.9296516Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:44:19.9296905Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:44:19.9297420Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:44:19.9297898Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:44:19.9298302Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:44:19.9298604Z ##[endgroup] 2025-08-26T20:44:19.9941841Z Prepare all required actions 2025-08-26T20:44:19.9942251Z Getting action download info 2025-08-26T20:44:20.1029834Z Download action repository 'nick-fields/retry@v3.0.0' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-08-26T20:44:20.4006523Z ##[group]Run ./.github/actions/filter-test-configs 2025-08-26T20:44:20.4006850Z with: 2025-08-26T20:44:20.4007209Z github-token: *** 2025-08-26T20:44:20.4008272Z 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-08-26T20:44:20.4009654Z job-name: win-vs2022-cpu-py3 / test (default, 1, 3, windows.4xlarge.nonephemeral) 2025-08-26T20:44:20.4010090Z env: 2025-08-26T20:44:20.4010273Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:44:20.4010711Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:44:20.4011233Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:44:20.4011714Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:44:20.4012108Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:44:20.4012396Z ##[endgroup] 2025-08-26T20:44:20.4106919Z ##[group]Run nick-fields/retry@v3.0.0 2025-08-26T20:44:20.4107201Z with: 2025-08-26T20:44:20.4107378Z shell: bash 2025-08-26T20:44:20.4107563Z timeout_minutes: 10 2025-08-26T20:44:20.4107772Z max_attempts: 5 2025-08-26T20:44:20.4107970Z retry_wait_seconds: 30 2025-08-26T20:44:20.4108721Z command: set -eux # PyYAML 6.0 doesn't work with MacOS x86 anymore # This must run on Python-3.7 (AmazonLinux2) so can't use request=3.32.2 python3 -m pip install requests==2.27.1 pyyaml==6.0.2 2025-08-26T20:44:20.4109531Z polling_interval_seconds: 1 2025-08-26T20:44:20.4109920Z warning_on_retry: true 2025-08-26T20:44:20.4110179Z continue_on_error: false 2025-08-26T20:44:20.4110399Z env: 2025-08-26T20:44:20.4110587Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:44:20.4110951Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:44:20.4111475Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:44:20.4111953Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:44:20.4112344Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:44:20.4112814Z GITHUB_TOKEN: *** 2025-08-26T20:44:20.4113012Z ##[endgroup] 2025-08-26T20:44:20.5281695Z + python3 -m pip install requests==2.27.1 pyyaml==6.0.2 2025-08-26T20:44:21.2923004Z Collecting requests==2.27.1 2025-08-26T20:44:21.4754860Z Downloading requests-2.27.1-py2.py3-none-any.whl.metadata (5.0 kB) 2025-08-26T20:44:21.5150253Z Requirement already satisfied: pyyaml==6.0.2 in c:\jenkins\miniconda3\lib\site-packages (6.0.2) 2025-08-26T20:44:21.5279660Z Requirement already satisfied: urllib3<1.27,>=1.21.1 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (1.26.19) 2025-08-26T20:44:21.5285373Z Requirement already satisfied: certifi>=2017.4.17 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (2025.8.3) 2025-08-26T20:44:21.5297399Z Requirement already satisfied: charset-normalizer~=2.0.0 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (2.0.4) 2025-08-26T20:44:21.5310928Z Requirement already satisfied: idna<4,>=2.5 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (3.7) 2025-08-26T20:44:21.5590587Z Downloading requests-2.27.1-py2.py3-none-any.whl (63 kB) 2025-08-26T20:44:21.6282692Z ---------------------------------------- 63.1/63.1 kB 853.1 kB/s eta 0:00:00 2025-08-26T20:44:22.3860785Z Installing collected packages: requests 2025-08-26T20:44:22.3861308Z Attempting uninstall: requests 2025-08-26T20:44:22.3873111Z Found existing installation: requests 2.32.4 2025-08-26T20:44:22.3954152Z Uninstalling requests-2.32.4: 2025-08-26T20:44:22.3976465Z Successfully uninstalled requests-2.32.4 2025-08-26T20:44:22.4913426Z Successfully installed requests-2.27.1 2025-08-26T20:44:23.5224596Z Command completed after 1 attempt(s). 2025-08-26T20:44:23.5372363Z ##[group]Run set -x 2025-08-26T20:44:23.5372606Z set -x 2025-08-26T20:44:23.5372796Z  2025-08-26T20:44:23.5373157Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-08-26T20:44:23.5373615Z # in runner workspace 2025-08-26T20:44:23.5373958Z python3 "${GITHUB_ACTION_PATH}/../../scripts/parse_ref.py" 2025-08-26T20:44:23.5393218Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T20:44:23.5393656Z env: 2025-08-26T20:44:23.5393846Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:44:23.5394212Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:44:23.5394851Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:44:23.5395360Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:44:23.5395771Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:44:23.5396063Z ##[endgroup] 2025-08-26T20:44:23.5579009Z + python3 'C:\actions-runner\_work\pytorch\pytorch\./.github/actions/filter-test-configs/../../scripts/parse_ref.py' 2025-08-26T20:44:23.6011610Z Setting output branch=main 2025-08-26T20:44:23.6159434Z ##[group]Run echo "Workflow: ${GITHUB_WORKFLOW}" 2025-08-26T20:44:23.6159805Z echo "Workflow: ${GITHUB_WORKFLOW}" 2025-08-26T20:44:23.6160116Z echo "Job name: ${JOB_NAME}" 2025-08-26T20:44:23.6160375Z  2025-08-26T20:44:23.6160720Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-08-26T20:44:23.6161159Z # in runner workspace 2025-08-26T20:44:23.6161574Z python3 "${GITHUB_ACTION_PATH}/../../scripts/filter_test_configs.py" \ 2025-08-26T20:44:23.6162172Z  --workflow "${GITHUB_WORKFLOW}" \ 2025-08-26T20:44:23.6162478Z  --job-name "${JOB_NAME}" \ 2025-08-26T20:44:23.6163630Z  --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-08-26T20:44:23.6164873Z  --selected-test-configs "" \ 2025-08-26T20:44:23.6165182Z  --pr-number "${PR_NUMBER}" \ 2025-08-26T20:44:23.6165469Z  --tag "${TAG}" \ 2025-08-26T20:44:23.6165725Z  --event-name "${EVENT_NAME}" \ 2025-08-26T20:44:23.6166023Z  --schedule "${SCHEDULE}" \ 2025-08-26T20:44:23.6166297Z  --branch "${HEAD_BRANCH}" 2025-08-26T20:44:23.6185560Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T20:44:23.6186015Z env: 2025-08-26T20:44:23.6186205Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:44:23.6186579Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:44:23.6187095Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:44:23.6187560Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:44:23.6187954Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:44:23.6188465Z GITHUB_TOKEN: *** 2025-08-26T20:44:23.6188825Z JOB_NAME: win-vs2022-cpu-py3 / test (default, 1, 3, windows.4xlarge.nonephemeral) 2025-08-26T20:44:23.6189263Z PR_NUMBER: 2025-08-26T20:44:23.6189446Z TAG: 2025-08-26T20:44:23.6189625Z EVENT_NAME: push 2025-08-26T20:44:23.6189814Z SCHEDULE: 2025-08-26T20:44:23.6190003Z HEAD_BRANCH: main 2025-08-26T20:44:23.6190196Z ##[endgroup] 2025-08-26T20:44:23.6366293Z Workflow: trunk 2025-08-26T20:44:23.6367352Z Job name: win-vs2022-cpu-py3 / test (default, 1, 3, windows.4xlarge.nonephemeral) 2025-08-26T20:44:24.0901650Z Setting output keep-going=True 2025-08-26T20:44:24.0902058Z Setting output ci-verbose-test-logs=False 2025-08-26T20:44:24.0902383Z Setting output ci-test-showlocals=False 2025-08-26T20:44:24.0902736Z Setting output ci-no-test-timeout=False 2025-08-26T20:44:24.0903017Z Setting output ci-no-td=False 2025-08-26T20:44:24.0903295Z Setting output ci-td-distributed=False 2025-08-26T20:44:24.0903583Z Setting output is-unstable=False 2025-08-26T20:44:24.0903856Z Setting output reenabled-issues= 2025-08-26T20:44:24.0905053Z 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-08-26T20:44:24.0906285Z Setting output is-test-matrix-empty=False 2025-08-26T20:44:24.1129064Z ##[group]Run echo "Filtered matrix:" 2025-08-26T20:44:24.1129429Z echo "Filtered matrix:" 2025-08-26T20:44:24.1130733Z 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-08-26T20:44:24.1131910Z  2025-08-26T20:44:24.1132087Z echo 2025-08-26T20:44:24.1132319Z echo "Is the current job unstable? False" 2025-08-26T20:44:24.1132617Z  2025-08-26T20:44:24.1132787Z echo 2025-08-26T20:44:24.1133004Z echo "Is keep-going label set? True" 2025-08-26T20:44:24.1133287Z  2025-08-26T20:44:24.1133445Z echo 2025-08-26T20:44:24.1133644Z echo "Reenabled issues? " 2025-08-26T20:44:24.1154935Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T20:44:24.1155454Z env: 2025-08-26T20:44:24.1155645Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:44:24.1156065Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:44:24.1156674Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:44:24.1157202Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:44:24.1157640Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:44:24.1157966Z ##[endgroup] 2025-08-26T20:44:24.1337349Z Filtered matrix: 2025-08-26T20:44:24.1338586Z {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-08-26T20:44:24.1339669Z 2025-08-26T20:44:24.1339795Z Is the current job unstable? False 2025-08-26T20:44:24.1340021Z 2025-08-26T20:44:24.1340111Z Is keep-going label set? True 2025-08-26T20:44:24.1340277Z 2025-08-26T20:44:24.1340359Z Reenabled issues? 2025-08-26T20:44:24.1459660Z ##[group]Run echo "timeout=$((JOB_TIMEOUT-30))" >> "${GITHUB_OUTPUT}" 2025-08-26T20:44:24.1460221Z echo "timeout=$((JOB_TIMEOUT-30))" >> "${GITHUB_OUTPUT}" 2025-08-26T20:44:24.1479146Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T20:44:24.1479576Z env: 2025-08-26T20:44:24.1479765Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:44:24.1480135Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:44:24.1480664Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:44:24.1481132Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:44:24.1481533Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:44:24.1481826Z JOB_TIMEOUT: 240 2025-08-26T20:44:24.1482031Z ##[endgroup] 2025-08-26T20:44:24.1780411Z ##[group]Run pushd "${PYTORCH_FINAL_PACKAGE_DIR}" 2025-08-26T20:44:24.1780821Z pushd "${PYTORCH_FINAL_PACKAGE_DIR}" 2025-08-26T20:44:24.1781152Z # shellcheck disable=SC2046,SC2102 2025-08-26T20:44:24.1781572Z python3 -mpip install $(echo *.whl)[opt-einsum,optree] optree==0.13.0 2025-08-26T20:44:24.1781987Z popd 2025-08-26T20:44:24.1782170Z  2025-08-26T20:44:24.1782358Z .ci/pytorch/win-test.sh 2025-08-26T20:44:24.1800762Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T20:44:24.1801195Z env: 2025-08-26T20:44:24.1801371Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:44:24.1801816Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:44:24.1802400Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:44:24.1802879Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:44:24.1803313Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:44:24.1803609Z USE_CUDA: 0 2025-08-26T20:44:24.1803804Z INSTALL_WINDOWS_SDK: 1 2025-08-26T20:44:24.1804024Z PYTHON_VERSION: 3.9 2025-08-26T20:44:24.1804247Z CONTINUE_THROUGH_ERROR: True 2025-08-26T20:44:24.1804487Z VERBOSE_TEST_LOGS: False 2025-08-26T20:44:24.1804720Z TEST_SHOWLOCALS: False 2025-08-26T20:44:24.1804939Z NO_TEST_TIMEOUT: False 2025-08-26T20:44:24.1805155Z NO_TD: False 2025-08-26T20:44:24.1805340Z VC_PRODUCT: BuildTools 2025-08-26T20:44:24.1805563Z VC_VERSION: 2025-08-26T20:44:24.1805750Z VS_VERSION: 17.4.1 2025-08-26T20:44:24.1805947Z VC_YEAR: 2022 2025-08-26T20:44:24.1806152Z AWS_DEFAULT_REGION: us-east-1 2025-08-26T20:44:24.1806381Z PR_NUMBER: 2025-08-26T20:44:24.1806585Z GITHUB_REPOSITORY: pytorch/pytorch 2025-08-26T20:44:24.1806847Z GITHUB_WORKFLOW: trunk 2025-08-26T20:44:24.1807061Z GITHUB_JOB: test 2025-08-26T20:44:24.1807411Z GITHUB_RUN_ID: 17248463647 2025-08-26T20:44:24.1807663Z GITHUB_RUN_NUMBER: 141812 2025-08-26T20:44:24.1807946Z GITHUB_RUN_ATTEMPT: 1 2025-08-26T20:44:24.1808158Z JOB_ID: 48947911988 2025-08-26T20:44:24.1808566Z JOB_NAME: win-vs2022-cpu-py3 / test (default, 1, 3, windows.4xlarge.nonephemeral) 2025-08-26T20:44:24.1809112Z SHA1: 262640fd220236042fbf4443cc163c8838c84c3d 2025-08-26T20:44:24.1809411Z CUDA_VERSION: cpu 2025-08-26T20:44:24.1809688Z PYTORCH_FINAL_PACKAGE_DIR: /c/17248463647/build-results/ 2025-08-26T20:44:24.1810044Z BUILD_ENVIRONMENT: win-vs2022-cpu-py3 2025-08-26T20:44:24.1810445Z ALPINE_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-08-26T20:44:24.1810839Z SHARD_NUMBER: 1 2025-08-26T20:44:24.1811028Z NUM_TEST_SHARDS: 3 2025-08-26T20:44:24.1811235Z TEST_CONFIG: default 2025-08-26T20:44:24.1811439Z REENABLED_ISSUES: 2025-08-26T20:44:24.1811662Z TORCH_CUDA_ARCH_LIST: 8.6 2025-08-26T20:44:24.1811913Z PYTORCH_TEST_CUDA_MEM_LEAK_CHECK: 0 2025-08-26T20:44:24.1812206Z PYTORCH_TEST_RERUN_DISABLED_TESTS: 0 2025-08-26T20:44:24.1812477Z ##[endgroup] 2025-08-26T20:44:24.2015044Z /c/17248463647/build-results /c/actions-runner/_work/pytorch/pytorch 2025-08-26T20:44:24.7090599Z Processing c:\17248463647\build-results\torch-2.9.0a0+git262640f-cp39-cp39-win_amd64.whl (from torch==2.9.0a0+git262640f) 2025-08-26T20:44:25.9041618Z Collecting optree==0.13.0 2025-08-26T20:44:26.1018732Z Downloading optree-0.13.0-cp39-cp39-win_amd64.whl.metadata (48 kB) 2025-08-26T20:44:26.1880386Z -------------------------------------- 48.7/48.7 kB 409.4 kB/s eta 0:00:00 2025-08-26T20:44:26.2238783Z Requirement already satisfied: typing-extensions>=4.5.0 in c:\jenkins\miniconda3\lib\site-packages (from optree==0.13.0) (4.12.2) 2025-08-26T20:44:26.2639359Z Collecting filelock (from torch==2.9.0a0+git262640f->torch==2.9.0a0+git262640f) 2025-08-26T20:44:26.2685565Z Downloading filelock-3.19.1-py3-none-any.whl.metadata (2.1 kB) 2025-08-26T20:44:26.3032122Z Collecting sympy>=1.13.3 (from torch==2.9.0a0+git262640f->torch==2.9.0a0+git262640f) 2025-08-26T20:44:26.3071788Z Downloading sympy-1.14.0-py3-none-any.whl.metadata (12 kB) 2025-08-26T20:44:26.3139684Z Requirement already satisfied: networkx>=2.5.1 in c:\jenkins\miniconda3\lib\site-packages (from torch==2.9.0a0+git262640f->torch==2.9.0a0+git262640f) (2.8.8) 2025-08-26T20:44:26.3355456Z Collecting jinja2 (from torch==2.9.0a0+git262640f->torch==2.9.0a0+git262640f) 2025-08-26T20:44:26.3397371Z Downloading jinja2-3.1.6-py3-none-any.whl.metadata (2.9 kB) 2025-08-26T20:44:26.3823138Z Collecting fsspec>=0.8.5 (from torch==2.9.0a0+git262640f->torch==2.9.0a0+git262640f) 2025-08-26T20:44:26.3862755Z Downloading fsspec-2025.7.0-py3-none-any.whl.metadata (12 kB) 2025-08-26T20:44:26.3968690Z Requirement already satisfied: opt-einsum>=3.3 in c:\jenkins\miniconda3\lib\site-packages (from torch==2.9.0a0+git262640f->torch==2.9.0a0+git262640f) (3.4.0) 2025-08-26T20:44:26.5315017Z Requirement already satisfied: mpmath<1.4,>=1.1.0 in c:\jenkins\miniconda3\lib\site-packages (from sympy>=1.13.3->torch==2.9.0a0+git262640f->torch==2.9.0a0+git262640f) (1.2.1) 2025-08-26T20:44:26.6088466Z Collecting MarkupSafe>=2.0 (from jinja2->torch==2.9.0a0+git262640f->torch==2.9.0a0+git262640f) 2025-08-26T20:44:26.6143412Z Downloading MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl.metadata (4.1 kB) 2025-08-26T20:44:26.6365897Z Downloading optree-0.13.0-cp39-cp39-win_amd64.whl (270 kB) 2025-08-26T20:44:26.6832811Z ---------------------------------------- 270.1/270.1 kB 5.5 MB/s eta 0:00:00 2025-08-26T20:44:26.6875170Z Downloading fsspec-2025.7.0-py3-none-any.whl (199 kB) 2025-08-26T20:44:26.6977101Z ---------------------------------------- 199.6/199.6 kB ? eta 0:00:00 2025-08-26T20:44:26.7017694Z Downloading sympy-1.14.0-py3-none-any.whl (6.3 MB) 2025-08-26T20:44:26.7495850Z ---------------------------------------- 6.3/6.3 MB 101.4 MB/s eta 0:00:00 2025-08-26T20:44:26.7536597Z Downloading filelock-3.19.1-py3-none-any.whl (15 kB) 2025-08-26T20:44:26.7629719Z Downloading jinja2-3.1.6-py3-none-any.whl (134 kB) 2025-08-26T20:44:26.7712338Z ---------------------------------------- 134.9/134.9 kB ? eta 0:00:00 2025-08-26T20:44:26.7769161Z Downloading MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl (15 kB) 2025-08-26T20:44:27.7842204Z Installing collected packages: sympy, optree, MarkupSafe, fsspec, filelock, jinja2, torch 2025-08-26T20:44:27.7845603Z Attempting uninstall: sympy 2025-08-26T20:44:27.7869932Z Found existing installation: sympy 1.11.1 2025-08-26T20:44:28.2447408Z Uninstalling sympy-1.11.1: 2025-08-26T20:44:28.6126201Z Successfully uninstalled sympy-1.11.1 2025-08-26T20:44:35.9950542Z WARNING: The script isympy.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-26T20:44:35.9951366Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-26T20:44:56.6967350Z WARNING: The scripts torchfrtrace.exe and torchrun.exe are installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-26T20:44:56.6968317Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-26T20:44:56.8617562Z Successfully installed MarkupSafe-3.0.2 filelock-3.19.1 fsspec-2025.7.0 jinja2-3.1.6 optree-0.13.0 sympy-1.14.0 torch-2.9.0a0+git262640f 2025-08-26T20:44:56.9638635Z /c/actions-runner/_work/pytorch/pytorch 2025-08-26T20:44:56.9943665Z +++ dirname .ci/pytorch/win-test.sh 2025-08-26T20:44:57.0014336Z ++ cd .ci/pytorch 2025-08-26T20:44:57.0019106Z ++ pwd 2025-08-26T20:44:57.0025376Z + SCRIPT_PARENT_DIR=/c/actions-runner/_work/pytorch/pytorch/.ci/pytorch 2025-08-26T20:44:57.0025947Z + source /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/common.sh 2025-08-26T20:44:57.0080096Z +++ dirname /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/common.sh 2025-08-26T20:44:57.0148145Z ++ source /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/common_utils.sh 2025-08-26T20:44:57.0151689Z +++ declare -f -t trap_add 2025-08-26T20:44:57.0158213Z ++ set -ex -o pipefail 2025-08-26T20:44:57.0158481Z ++ [[ win-vs2022-cpu-py3 == *rocm* ]] 2025-08-26T20:44:57.0158761Z ++ BUILD_TEST_LIBTORCH=0 2025-08-26T20:44:57.0159115Z + export TMP_DIR=/c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-08-26T20:44:57.0159688Z + TMP_DIR=/c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-08-26T20:44:57.0216752Z ++ cygpath -w /c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-08-26T20:44:57.0314263Z + TMP_DIR_WIN='C:\actions-runner\_work\pytorch\pytorch\build\win_tmp' 2025-08-26T20:44:57.0314699Z + export TMP_DIR_WIN 2025-08-26T20:44:57.0315008Z + export PROJECT_DIR=/c/actions-runner/_work/pytorch/pytorch 2025-08-26T20:44:57.0315436Z + PROJECT_DIR=/c/actions-runner/_work/pytorch/pytorch 2025-08-26T20:44:57.0368962Z ++ cygpath -w /c/actions-runner/_work/pytorch/pytorch 2025-08-26T20:44:57.0458106Z + PROJECT_DIR_WIN='C:\actions-runner\_work\pytorch\pytorch' 2025-08-26T20:44:57.0458772Z + export PROJECT_DIR_WIN 2025-08-26T20:44:57.0459317Z + export TEST_DIR=/c/actions-runner/_work/pytorch/pytorch/test 2025-08-26T20:44:57.0459754Z + TEST_DIR=/c/actions-runner/_work/pytorch/pytorch/test 2025-08-26T20:44:57.0516020Z ++ cygpath -w /c/actions-runner/_work/pytorch/pytorch/test 2025-08-26T20:44:57.0604733Z + TEST_DIR_WIN='C:\actions-runner\_work\pytorch\pytorch\test' 2025-08-26T20:44:57.0605208Z + export TEST_DIR_WIN 2025-08-26T20:44:57.0605528Z + export PYTORCH_FINAL_PACKAGE_DIR=/c/17248463647/build-results/ 2025-08-26T20:44:57.0605965Z + PYTORCH_FINAL_PACKAGE_DIR=/c/17248463647/build-results/ 2025-08-26T20:44:57.0660441Z ++ cygpath -w /c/17248463647/build-results/ 2025-08-26T20:44:57.0752603Z + PYTORCH_FINAL_PACKAGE_DIR_WIN='C:\17248463647\build-results\' 2025-08-26T20:44:57.0753028Z + export PYTORCH_FINAL_PACKAGE_DIR_WIN 2025-08-26T20:44:57.0753322Z + export TORCH_SERIALIZATION_DEBUG=1 2025-08-26T20:44:57.0753605Z + TORCH_SERIALIZATION_DEBUG=1 2025-08-26T20:44:57.0754243Z + mkdir -p /c/actions-runner/_work/pytorch/pytorch/build/win_tmp/build/torch 2025-08-26T20:44:57.0892885Z + export SCRIPT_HELPERS_DIR=/c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-08-26T20:44:57.0893614Z + SCRIPT_HELPERS_DIR=/c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-08-26T20:44:57.0894105Z + [[ default = \f\o\r\c\e\_\o\n\_\c\p\u ]] 2025-08-26T20:44:57.0894403Z + [[ win-vs2022-cpu-py3 == *cuda* ]] 2025-08-26T20:44:57.0894996Z + python -m pip install pytest-rerunfailures==10.3 pytest-cpp==2.3.0 tensorboard==2.13.0 protobuf==5.29.4 pytest-subtests==0.13.1 2025-08-26T20:44:57.8089730Z Collecting pytest-rerunfailures==10.3 2025-08-26T20:44:57.9974489Z Downloading pytest_rerunfailures-10.3-py3-none-any.whl.metadata (15 kB) 2025-08-26T20:44:58.0285228Z Requirement already satisfied: pytest-cpp==2.3.0 in c:\jenkins\miniconda3\lib\site-packages (2.3.0) 2025-08-26T20:44:58.0568122Z Collecting tensorboard==2.13.0 2025-08-26T20:44:58.0617812Z Downloading tensorboard-2.13.0-py3-none-any.whl.metadata (1.8 kB) 2025-08-26T20:44:58.4482012Z Collecting protobuf==5.29.4 2025-08-26T20:44:58.4540075Z Downloading protobuf-5.29.4-cp39-cp39-win_amd64.whl.metadata (592 bytes) 2025-08-26T20:44:58.4761376Z Collecting pytest-subtests==0.13.1 2025-08-26T20:44:58.4822294Z Downloading pytest_subtests-0.13.1-py3-none-any.whl.metadata (6.1 kB) 2025-08-26T20:44:58.4918217Z Requirement already satisfied: packaging>=17.1 in c:\jenkins\miniconda3\lib\site-packages (from pytest-rerunfailures==10.3) (23.2) 2025-08-26T20:44:58.4924818Z Requirement already satisfied: pytest>=5.3 in c:\jenkins\miniconda3\lib\site-packages (from pytest-rerunfailures==10.3) (7.1.3) 2025-08-26T20:44:58.4950508Z Requirement already satisfied: colorama in c:\jenkins\miniconda3\lib\site-packages (from pytest-cpp==2.3.0) (0.4.6) 2025-08-26T20:44:58.5227346Z Collecting absl-py>=0.4 (from tensorboard==2.13.0) 2025-08-26T20:44:58.5278864Z Downloading absl_py-2.3.1-py3-none-any.whl.metadata (3.3 kB) 2025-08-26T20:44:59.2454680Z Collecting grpcio>=1.48.2 (from tensorboard==2.13.0) 2025-08-26T20:44:59.2516355Z Downloading grpcio-1.74.0-cp39-cp39-win_amd64.whl.metadata (4.0 kB) 2025-08-26T20:44:59.3609174Z Collecting google-auth<3,>=1.6.3 (from tensorboard==2.13.0) 2025-08-26T20:44:59.3654659Z Downloading google_auth-2.40.3-py2.py3-none-any.whl.metadata (6.2 kB) 2025-08-26T20:44:59.3900384Z Collecting google-auth-oauthlib<1.1,>=0.5 (from tensorboard==2.13.0) 2025-08-26T20:44:59.3947907Z Downloading google_auth_oauthlib-1.0.0-py2.py3-none-any.whl.metadata (2.7 kB) 2025-08-26T20:44:59.4286630Z Collecting markdown>=2.6.8 (from tensorboard==2.13.0) 2025-08-26T20:44:59.4328786Z Downloading markdown-3.8.2-py3-none-any.whl.metadata (5.1 kB) 2025-08-26T20:44:59.4389439Z Requirement already satisfied: numpy>=1.12.0 in c:\jenkins\miniconda3\lib\site-packages (from tensorboard==2.13.0) (1.22.3) 2025-08-26T20:44:59.4535029Z Requirement already satisfied: requests<3,>=2.21.0 in c:\jenkins\miniconda3\lib\site-packages (from tensorboard==2.13.0) (2.27.1) 2025-08-26T20:44:59.4541705Z Requirement already satisfied: setuptools>=41.0.0 in c:\jenkins\miniconda3\lib\site-packages (from tensorboard==2.13.0) (78.1.1) 2025-08-26T20:44:59.4689289Z Collecting tensorboard-data-server<0.8.0,>=0.7.0 (from tensorboard==2.13.0) 2025-08-26T20:44:59.4741600Z Downloading tensorboard_data_server-0.7.2-py3-none-any.whl.metadata (1.1 kB) 2025-08-26T20:44:59.5482386Z Collecting werkzeug>=1.0.1 (from tensorboard==2.13.0) 2025-08-26T20:44:59.5527972Z Downloading werkzeug-3.1.3-py3-none-any.whl.metadata (3.7 kB) 2025-08-26T20:44:59.5595772Z Requirement already satisfied: wheel>=0.26 in c:\jenkins\miniconda3\lib\site-packages (from tensorboard==2.13.0) (0.43.0) 2025-08-26T20:44:59.5650700Z Requirement already satisfied: attrs>=19.2.0 in c:\jenkins\miniconda3\lib\site-packages (from pytest-subtests==0.13.1) (25.3.0) 2025-08-26T20:44:59.7404848Z Collecting cachetools<6.0,>=2.0.0 (from google-auth<3,>=1.6.3->tensorboard==2.13.0) 2025-08-26T20:44:59.7491354Z Downloading cachetools-5.5.2-py3-none-any.whl.metadata (5.4 kB) 2025-08-26T20:44:59.7824647Z Collecting pyasn1-modules>=0.2.1 (from google-auth<3,>=1.6.3->tensorboard==2.13.0) 2025-08-26T20:44:59.7870162Z Downloading pyasn1_modules-0.4.2-py3-none-any.whl.metadata (3.5 kB) 2025-08-26T20:44:59.8135752Z Collecting rsa<5,>=3.1.4 (from google-auth<3,>=1.6.3->tensorboard==2.13.0) 2025-08-26T20:44:59.8178925Z Downloading rsa-4.9.1-py3-none-any.whl.metadata (5.6 kB) 2025-08-26T20:44:59.8623262Z Collecting requests-oauthlib>=0.7.0 (from google-auth-oauthlib<1.1,>=0.5->tensorboard==2.13.0) 2025-08-26T20:44:59.8665721Z Downloading requests_oauthlib-2.0.0-py2.py3-none-any.whl.metadata (11 kB) 2025-08-26T20:44:59.8886382Z Requirement already satisfied: importlib-metadata>=4.4 in c:\jenkins\miniconda3\lib\site-packages (from markdown>=2.6.8->tensorboard==2.13.0) (8.5.0) 2025-08-26T20:44:59.9050550Z Requirement already satisfied: iniconfig in c:\jenkins\miniconda3\lib\site-packages (from pytest>=5.3->pytest-rerunfailures==10.3) (2.1.0) 2025-08-26T20:44:59.9058647Z Requirement already satisfied: pluggy<2.0,>=0.12 in c:\jenkins\miniconda3\lib\site-packages (from pytest>=5.3->pytest-rerunfailures==10.3) (1.0.0) 2025-08-26T20:44:59.9065193Z Requirement already satisfied: py>=1.8.2 in c:\jenkins\miniconda3\lib\site-packages (from pytest>=5.3->pytest-rerunfailures==10.3) (1.11.0) 2025-08-26T20:44:59.9076358Z Requirement already satisfied: tomli>=1.0.0 in c:\jenkins\miniconda3\lib\site-packages (from pytest>=5.3->pytest-rerunfailures==10.3) (2.2.1) 2025-08-26T20:44:59.9206685Z Requirement already satisfied: urllib3<1.27,>=1.21.1 in c:\jenkins\miniconda3\lib\site-packages (from requests<3,>=2.21.0->tensorboard==2.13.0) (1.26.19) 2025-08-26T20:44:59.9213621Z Requirement already satisfied: certifi>=2017.4.17 in c:\jenkins\miniconda3\lib\site-packages (from requests<3,>=2.21.0->tensorboard==2.13.0) (2025.8.3) 2025-08-26T20:44:59.9228229Z Requirement already satisfied: charset-normalizer~=2.0.0 in c:\jenkins\miniconda3\lib\site-packages (from requests<3,>=2.21.0->tensorboard==2.13.0) (2.0.4) 2025-08-26T20:44:59.9239784Z Requirement already satisfied: idna<4,>=2.5 in c:\jenkins\miniconda3\lib\site-packages (from requests<3,>=2.21.0->tensorboard==2.13.0) (3.7) 2025-08-26T20:44:59.9526156Z Requirement already satisfied: MarkupSafe>=2.1.1 in c:\jenkins\miniconda3\lib\site-packages (from werkzeug>=1.0.1->tensorboard==2.13.0) (3.0.2) 2025-08-26T20:44:59.9925257Z Requirement already satisfied: zipp>=3.20 in c:\jenkins\miniconda3\lib\site-packages (from importlib-metadata>=4.4->markdown>=2.6.8->tensorboard==2.13.0) (3.21.0) 2025-08-26T20:45:00.0420210Z Collecting pyasn1<0.7.0,>=0.6.1 (from pyasn1-modules>=0.2.1->google-auth<3,>=1.6.3->tensorboard==2.13.0) 2025-08-26T20:45:00.0466632Z Downloading pyasn1-0.6.1-py3-none-any.whl.metadata (8.4 kB) 2025-08-26T20:45:00.0779729Z Collecting oauthlib>=3.0.0 (from requests-oauthlib>=0.7.0->google-auth-oauthlib<1.1,>=0.5->tensorboard==2.13.0) 2025-08-26T20:45:00.0826077Z Downloading oauthlib-3.3.1-py3-none-any.whl.metadata (7.9 kB) 2025-08-26T20:45:00.1661524Z Downloading pytest_rerunfailures-10.3-py3-none-any.whl (11 kB) 2025-08-26T20:45:00.1784613Z Downloading tensorboard-2.13.0-py3-none-any.whl (5.6 MB) 2025-08-26T20:45:00.2392158Z ---------------------------------------- 5.6/5.6 MB 88.2 MB/s eta 0:00:00 2025-08-26T20:45:00.2462396Z Downloading protobuf-5.29.4-cp39-cp39-win_amd64.whl (434 kB) 2025-08-26T20:45:00.2570202Z ---------------------------------------- 434.6/434.6 kB ? eta 0:00:00 2025-08-26T20:45:00.2622052Z Downloading pytest_subtests-0.13.1-py3-none-any.whl (8.0 kB) 2025-08-26T20:45:00.2710318Z Downloading absl_py-2.3.1-py3-none-any.whl (135 kB) 2025-08-26T20:45:00.2801528Z ---------------------------------------- 135.8/135.8 kB 7.8 MB/s eta 0:00:00 2025-08-26T20:45:00.2842788Z Downloading google_auth-2.40.3-py2.py3-none-any.whl (216 kB) 2025-08-26T20:45:00.2948697Z --------------------------------------- 216.1/216.1 kB 13.7 MB/s eta 0:00:00 2025-08-26T20:45:00.2990608Z Downloading google_auth_oauthlib-1.0.0-py2.py3-none-any.whl (18 kB) 2025-08-26T20:45:00.3121249Z Downloading grpcio-1.74.0-cp39-cp39-win_amd64.whl (4.5 MB) 2025-08-26T20:45:00.3500562Z ---------------------------------------- 4.5/4.5 MB 144.7 MB/s eta 0:00:00 2025-08-26T20:45:00.3542410Z Downloading markdown-3.8.2-py3-none-any.whl (106 kB) 2025-08-26T20:45:00.3628959Z ---------------------------------------- 106.8/106.8 kB ? eta 0:00:00 2025-08-26T20:45:00.3671404Z Downloading tensorboard_data_server-0.7.2-py3-none-any.whl (2.4 kB) 2025-08-26T20:45:00.3758125Z Downloading werkzeug-3.1.3-py3-none-any.whl (224 kB) 2025-08-26T20:45:00.3851473Z --------------------------------------- 224.5/224.5 kB 13.4 MB/s eta 0:00:00 2025-08-26T20:45:00.3894681Z Downloading cachetools-5.5.2-py3-none-any.whl (10 kB) 2025-08-26T20:45:00.3985748Z Downloading pyasn1_modules-0.4.2-py3-none-any.whl (181 kB) 2025-08-26T20:45:00.4079618Z --------------------------------------- 181.3/181.3 kB 10.7 MB/s eta 0:00:00 2025-08-26T20:45:00.4121117Z Downloading requests_oauthlib-2.0.0-py2.py3-none-any.whl (24 kB) 2025-08-26T20:45:00.4212266Z Downloading rsa-4.9.1-py3-none-any.whl (34 kB) 2025-08-26T20:45:00.4310246Z Downloading oauthlib-3.3.1-py3-none-any.whl (160 kB) 2025-08-26T20:45:00.4397299Z ---------------------------------------- 160.1/160.1 kB ? eta 0:00:00 2025-08-26T20:45:00.4437258Z Downloading pyasn1-0.6.1-py3-none-any.whl (83 kB) 2025-08-26T20:45:00.4521007Z ---------------------------------------- 83.1/83.1 kB 4.9 MB/s eta 0:00:00 2025-08-26T20:45:01.3732119Z Installing collected packages: werkzeug, tensorboard-data-server, pyasn1, protobuf, oauthlib, grpcio, cachetools, absl-py, rsa, requests-oauthlib, pytest-subtests, pytest-rerunfailures, pyasn1-modules, markdown, google-auth, google-auth-oauthlib, tensorboard 2025-08-26T20:45:01.6717441Z Attempting uninstall: protobuf 2025-08-26T20:45:01.6728507Z Found existing installation: protobuf 5.29.3 2025-08-26T20:45:01.6911449Z Uninstalling protobuf-5.29.3: 2025-08-26T20:45:01.6953572Z Successfully uninstalled protobuf-5.29.3 2025-08-26T20:45:02.4586055Z WARNING: The scripts pyrsa-decrypt.exe, pyrsa-encrypt.exe, pyrsa-keygen.exe, pyrsa-priv2pub.exe, pyrsa-sign.exe and pyrsa-verify.exe are installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-26T20:45:02.4587455Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-26T20:45:02.6348019Z Attempting uninstall: pytest-rerunfailures 2025-08-26T20:45:02.6361878Z Found existing installation: pytest-rerunfailures 10.2 2025-08-26T20:45:02.6401367Z Uninstalling pytest-rerunfailures-10.2: 2025-08-26T20:45:03.1128436Z Successfully uninstalled pytest-rerunfailures-10.2 2025-08-26T20:45:03.5068751Z WARNING: The script markdown_py.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-26T20:45:03.5069648Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-26T20:45:03.7034534Z WARNING: The script google-oauthlib-tool.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-26T20:45:03.7035471Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-26T20:45:04.6578115Z WARNING: The script tensorboard.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-26T20:45:04.6579022Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-26T20:45:04.7090175Z Successfully installed absl-py-2.3.1 cachetools-5.5.2 google-auth-2.40.3 google-auth-oauthlib-1.0.0 grpcio-1.74.0 markdown-3.8.2 oauthlib-3.3.1 protobuf-5.29.4 pyasn1-0.6.1 pyasn1-modules-0.4.2 pytest-rerunfailures-10.3 pytest-subtests-0.13.1 requests-oauthlib-2.0.0 rsa-4.9.1 tensorboard-2.13.0 tensorboard-data-server-0.7.2 werkzeug-3.1.3 2025-08-26T20:45:04.9250593Z + python -m pip install z3-solver==4.15.1.0 2025-08-26T20:45:05.6959668Z Collecting z3-solver==4.15.1.0 2025-08-26T20:45:05.8797061Z Downloading z3_solver-4.15.1.0-py3-none-win_amd64.whl.metadata (778 bytes) 2025-08-26T20:45:05.8950599Z Downloading z3_solver-4.15.1.0-py3-none-win_amd64.whl (16.4 MB) 2025-08-26T20:45:06.2033437Z ---------------------------------------- 16.4/16.4 MB 131.1 MB/s eta 0:00:00 2025-08-26T20:45:07.2526689Z Installing collected packages: z3-solver 2025-08-26T20:45:07.7142996Z Successfully installed z3-solver-4.15.1.0 2025-08-26T20:45:07.7981713Z + python -m pip install tlparse==0.3.30 2025-08-26T20:45:08.6174667Z Collecting tlparse==0.3.30 2025-08-26T20:45:08.8388313Z Downloading tlparse-0.3.30-py3-none-win_amd64.whl.metadata (2.0 kB) 2025-08-26T20:45:08.8611211Z Downloading tlparse-0.3.30-py3-none-win_amd64.whl (1.8 MB) 2025-08-26T20:45:09.0711897Z ---------------------------------------- 1.8/1.8 MB 9.0 MB/s eta 0:00:00 2025-08-26T20:45:10.0455642Z Installing collected packages: tlparse 2025-08-26T20:45:10.1197105Z Successfully installed tlparse-0.3.30 2025-08-26T20:45:10.2090347Z + python -m pip install parameterized==0.8.1 2025-08-26T20:45:10.9835853Z Collecting parameterized==0.8.1 2025-08-26T20:45:11.1664525Z Downloading parameterized-0.8.1-py2.py3-none-any.whl.metadata (18 kB) 2025-08-26T20:45:11.1994406Z Downloading parameterized-0.8.1-py2.py3-none-any.whl (26 kB) 2025-08-26T20:45:12.1905761Z Installing collected packages: parameterized 2025-08-26T20:45:12.2776859Z Successfully installed parameterized-0.8.1 2025-08-26T20:45:12.3615879Z + python -m pip install pulp==2.9.0 2025-08-26T20:45:13.0817485Z Collecting pulp==2.9.0 2025-08-26T20:45:13.2677745Z Downloading PuLP-2.9.0-py3-none-any.whl.metadata (5.4 kB) 2025-08-26T20:45:13.2842286Z Downloading PuLP-2.9.0-py3-none-any.whl (17.7 MB) 2025-08-26T20:45:13.5688566Z ---------------------------------------- 17.7/17.7 MB 108.8 MB/s eta 0:00:00 2025-08-26T20:45:14.6651010Z Installing collected packages: pulp 2025-08-26T20:45:15.0468457Z WARNING: The script pulptest.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-26T20:45:15.0469313Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-26T20:45:15.0985061Z Successfully installed pulp-2.9.0 2025-08-26T20:45:15.1813732Z + python -m pip install expecttest==0.3.0 2025-08-26T20:45:15.8953158Z Collecting expecttest==0.3.0 2025-08-26T20:45:16.0840235Z Downloading expecttest-0.3.0-py3-none-any.whl.metadata (3.8 kB) 2025-08-26T20:45:16.1016270Z Downloading expecttest-0.3.0-py3-none-any.whl (8.2 kB) 2025-08-26T20:45:17.1026564Z Installing collected packages: expecttest 2025-08-26T20:45:17.1027922Z Attempting uninstall: expecttest 2025-08-26T20:45:17.1036814Z Found existing installation: expecttest 0.1.3 2025-08-26T20:45:17.1075463Z Uninstalling expecttest-0.1.3: 2025-08-26T20:45:17.1105214Z Successfully uninstalled expecttest-0.1.3 2025-08-26T20:45:17.1694269Z Successfully installed expecttest-0.3.0 2025-08-26T20:45:17.2540063Z + run_tests 2025-08-26T20:45:17.2540610Z + for path in '/c/Program Files/NVIDIA Corporation/NVSMI/nvidia-smi.exe' /c/Windows/System32/nvidia-smi.exe 2025-08-26T20:45:17.2541295Z + [[ -x /c/Program Files/NVIDIA Corporation/NVSMI/nvidia-smi.exe ]] 2025-08-26T20:45:17.2541960Z + for path in '/c/Program Files/NVIDIA Corporation/NVSMI/nvidia-smi.exe' /c/Windows/System32/nvidia-smi.exe 2025-08-26T20:45:17.2542533Z + [[ -x /c/Windows/System32/nvidia-smi.exe ]] 2025-08-26T20:45:17.2543219Z + /c/Windows/System32/nvidia-smi.exe 2025-08-26T20:45:17.3941987Z NVIDIA-SMI has failed because it couldn't communicate with the NVIDIA driver. Make sure that the latest NVIDIA driver is installed and running. This can also be happening if non-NVIDIA GPU is running as primary display, and NVIDIA GPU is in WDDM mode. 2025-08-26T20:45:17.3943272Z 2025-08-26T20:45:17.3987656Z + echo true 2025-08-26T20:45:17.3987943Z + break 2025-08-26T20:45:17.3988120Z true 2025-08-26T20:45:17.3988364Z + [[ 3 -eq 1 ]] 2025-08-26T20:45:17.3988861Z + /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/test_python_shard.bat 2025-08-26T20:45:17.4119852Z 2025-08-26T20:45:17.4120723Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\setup_pytorch_env.bat 2025-08-26T20:45:17.4129473Z 2025-08-26T20:45:17.4132049Z C:\actions-runner\_work\pytorch\pytorch>set PATH=C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps 2025-08-26T20:45:17.4134656Z 2025-08-26T20:45:17.4135188Z C:\actions-runner\_work\pytorch\pytorch>set INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-08-26T20:45:17.4135843Z 2025-08-26T20:45:17.4136486Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers\activate_miniconda3.bat 2025-08-26T20:45:17.4146128Z 2025-08-26T20:45:17.4146835Z 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-08-26T20:45:17.4150956Z 2025-08-26T20:45:17.4151563Z C:\actions-runner\_work\pytorch\pytorch>if not exist C:\Jenkins\Miniconda3 (set INSTALL_FRESH_CONDA=1 ) 2025-08-26T20:45:17.4153987Z 2025-08-26T20:45:17.4154275Z C:\actions-runner\_work\pytorch\pytorch>if "" == "1" ( 2025-08-26T20:45:17.4155371Z curl --retry 3 --retry-all-errors -k https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe --output C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\Miniconda3-latest-Windows-x86_64.exe 2025-08-26T20:45:17.4156386Z if errorlevel 1 exit /b 2025-08-26T20:45:17.4156634Z if not errorlevel 0 exit /b 2025-08-26T20:45:17.4157452Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\Miniconda3-latest-Windows-x86_64.exe /InstallationType=JustMe /RegisterPython=0 /S /AddToPath=0 /D=C:\Jenkins\Miniconda3 2025-08-26T20:45:17.4158284Z if errorlevel 1 exit /b 2025-08-26T20:45:17.4158531Z if not errorlevel 0 exit /b 2025-08-26T20:45:17.4158773Z ) 2025-08-26T20:45:17.4158869Z 2025-08-26T20:45:17.4159233Z C:\actions-runner\_work\pytorch\pytorch>call C:\Jenkins\Miniconda3\Scripts\activate.bat C:\Jenkins\Miniconda3 2025-08-26T20:45:18.0832021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\functional.py 2025-08-26T20:45:18.0836891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\hub.py 2025-08-26T20:45:18.0840720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\library.py 2025-08-26T20:45:18.0845114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\overrides.py 2025-08-26T20:45:18.0849651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\py.typed 2025-08-26T20:45:18.0856752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quasirandom.py 2025-08-26T20:45:18.0860194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\random.py 2025-08-26T20:45:18.0863333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\return_types.py 2025-08-26T20:45:18.0866776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\return_types.pyi 2025-08-26T20:45:18.0870134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\serialization.py 2025-08-26T20:45:18.0874694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\storage.py 2025-08-26T20:45:18.0878532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\torch_version.py 2025-08-26T20:45:18.0883017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\types.py 2025-08-26T20:45:18.0886520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\version.py 2025-08-26T20:45:18.0889896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_appdirs.py 2025-08-26T20:45:18.0893602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C.cp39-win_amd64.pyd 2025-08-26T20:45:18.0897147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_classes.py 2025-08-26T20:45:18.0900637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_compile.py 2025-08-26T20:45:18.0904076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_ops.py 2025-08-26T20:45:18.0907642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_environment.py 2025-08-26T20:45:18.0911374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_guards.py 2025-08-26T20:45:18.0915057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_jit_internal.py 2025-08-26T20:45:18.0918823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_linalg_utils.py 2025-08-26T20:45:18.0922508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lobpcg.py 2025-08-26T20:45:18.0926068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lowrank.py 2025-08-26T20:45:18.0934960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_meta_registrations.py 2025-08-26T20:45:18.0940586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_namedtensor_internals.py 2025-08-26T20:45:18.0944244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_ops.py 2025-08-26T20:45:18.0948225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_python_dispatcher.py 2025-08-26T20:45:18.0951800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_size_docs.py 2025-08-26T20:45:18.0955261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_sources.py 2025-08-26T20:45:18.0958616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_storage_docs.py 2025-08-26T20:45:18.0962318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_streambase.py 2025-08-26T20:45:18.0965927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_tensor.py 2025-08-26T20:45:18.0969778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_tensor_docs.py 2025-08-26T20:45:18.0973969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_tensor_str.py 2025-08-26T20:45:18.0982002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_thread_safe_fork.py 2025-08-26T20:45:18.0984906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_torch_docs.py 2025-08-26T20:45:18.0990470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_utils.py 2025-08-26T20:45:18.0994057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_utils_internal.py 2025-08-26T20:45:18.0997675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_VF.py 2025-08-26T20:45:18.1001154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_VF.pyi 2025-08-26T20:45:18.1011582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vmap_internals.py 2025-08-26T20:45:18.1015539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_weights_only_unpickler.py 2025-08-26T20:45:18.1020545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__config__.py 2025-08-26T20:45:18.1025254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__future__.py 2025-08-26T20:45:18.1029063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__init__.py 2025-08-26T20:45:18.1044271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\accelerator\memory.py 2025-08-26T20:45:18.1047867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\accelerator\_utils.py 2025-08-26T20:45:18.1051478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\accelerator\__init__.py 2025-08-26T20:45:18.1059208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\accelerator\__pycache__\memory.cpython-39.pyc 2025-08-26T20:45:18.1063005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\accelerator\__pycache__\_utils.cpython-39.pyc 2025-08-26T20:45:18.1066886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\accelerator\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.1078559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\autocast_mode.py 2025-08-26T20:45:18.1082291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\grad_scaler.py 2025-08-26T20:45:18.1086044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\__init__.py 2025-08-26T20:45:18.1097881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\__pycache__\autocast_mode.cpython-39.pyc 2025-08-26T20:45:18.1101602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\__pycache__\grad_scaler.cpython-39.pyc 2025-08-26T20:45:18.1105510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.1119522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\__init__.py 2025-08-26T20:45:18.1127993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\__init__.py 2025-08-26T20:45:18.1135813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\__init__.py 2025-08-26T20:45:18.1142983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\modules\fused.py 2025-08-26T20:45:18.1146421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\modules\__init__.py 2025-08-26T20:45:18.1153227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\modules\__pycache__\fused.cpython-39.pyc 2025-08-26T20:45:18.1156909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.1164876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\__init__.py 2025-08-26T20:45:18.1172996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\conv_fused.py 2025-08-26T20:45:18.1177534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\linear_fused.py 2025-08-26T20:45:18.1180994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\linear_relu.py 2025-08-26T20:45:18.1184730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\__init__.py 2025-08-26T20:45:18.1197009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\__pycache__\conv_fused.cpython-39.pyc 2025-08-26T20:45:18.1201686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\__pycache__\linear_fused.cpython-39.pyc 2025-08-26T20:45:18.1205363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\__pycache__\linear_relu.cpython-39.pyc 2025-08-26T20:45:18.1214218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.1222690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.1233153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\__init__.py 2025-08-26T20:45:18.1241054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\__init__.py 2025-08-26T20:45:18.1248082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\modules\linear_relu.py 2025-08-26T20:45:18.1251911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\modules\__init__.py 2025-08-26T20:45:18.1259127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\modules\__pycache__\linear_relu.cpython-39.pyc 2025-08-26T20:45:18.1262756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.1270512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.1278368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\bn_relu.py 2025-08-26T20:45:18.1281986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\conv_add.py 2025-08-26T20:45:18.1285405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\conv_relu.py 2025-08-26T20:45:18.1289075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\linear_relu.py 2025-08-26T20:45:18.1293125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__init__.py 2025-08-26T20:45:18.1305864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__pycache__\bn_relu.cpython-39.pyc 2025-08-26T20:45:18.1309489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__pycache__\conv_add.cpython-39.pyc 2025-08-26T20:45:18.1313241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__pycache__\conv_relu.cpython-39.pyc 2025-08-26T20:45:18.1320972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__pycache__\linear_relu.cpython-39.pyc 2025-08-26T20:45:18.1324689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.1332653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.1345978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.1354656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\__init__.py 2025-08-26T20:45:18.1362227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\__init__.py 2025-08-26T20:45:18.1369627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\modules\linear.py 2025-08-26T20:45:18.1373265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\modules\__init__.py 2025-08-26T20:45:18.1380605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\modules\__pycache__\linear.cpython-39.pyc 2025-08-26T20:45:18.1384315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.1392003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.1400004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\conv.py 2025-08-26T20:45:18.1403541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\embedding_ops.py 2025-08-26T20:45:18.1407226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\linear.py 2025-08-26T20:45:18.1410433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\__init__.py 2025-08-26T20:45:18.1422599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\__pycache__\conv.cpython-39.pyc 2025-08-26T20:45:18.1426317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\__pycache__\embedding_ops.cpython-39.pyc 2025-08-26T20:45:18.1429851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\__pycache__\linear.cpython-39.pyc 2025-08-26T20:45:18.1438329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.1446094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.1454874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\__init__.py 2025-08-26T20:45:18.1461871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\activation.py 2025-08-26T20:45:18.1465388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\rnn.py 2025-08-26T20:45:18.1470047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\__init__.py 2025-08-26T20:45:18.1486724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\__pycache__\activation.cpython-39.pyc 2025-08-26T20:45:18.1487565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\__pycache__\rnn.cpython-39.pyc 2025-08-26T20:45:18.1489678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.1502634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.1515908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\functional.py 2025-08-26T20:45:18.1519758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\__init__.py 2025-08-26T20:45:18.1527183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\__init__.py 2025-08-26T20:45:18.1533634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\conv.py 2025-08-26T20:45:18.1536970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\linear.py 2025-08-26T20:45:18.1540302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\rnn.py 2025-08-26T20:45:18.1544020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\__init__.py 2025-08-26T20:45:18.1551343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\__pycache__\conv.cpython-39.pyc 2025-08-26T20:45:18.1555115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\__pycache__\linear.cpython-39.pyc 2025-08-26T20:45:18.1558591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\__pycache__\rnn.cpython-39.pyc 2025-08-26T20:45:18.1566855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.1574489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.1582055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\activation.py 2025-08-26T20:45:18.1585524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\batchnorm.py 2025-08-26T20:45:18.1589126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\conv.py 2025-08-26T20:45:18.1592712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\dropout.py 2025-08-26T20:45:18.1595911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\embedding_ops.py 2025-08-26T20:45:18.1604057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\functional_modules.py 2025-08-26T20:45:18.1607633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\linear.py 2025-08-26T20:45:18.1611110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\normalization.py 2025-08-26T20:45:18.1614308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\rnn.py 2025-08-26T20:45:18.1617541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\utils.py 2025-08-26T20:45:18.1620802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__init__.py 2025-08-26T20:45:18.1628401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\activation.cpython-39.pyc 2025-08-26T20:45:18.1631911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\batchnorm.cpython-39.pyc 2025-08-26T20:45:18.1635241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\conv.cpython-39.pyc 2025-08-26T20:45:18.1644284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\dropout.cpython-39.pyc 2025-08-26T20:45:18.1647999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\embedding_ops.cpython-39.pyc 2025-08-26T20:45:18.1651633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\functional_modules.cpython-39.pyc 2025-08-26T20:45:18.1655174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\linear.cpython-39.pyc 2025-08-26T20:45:18.1658900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\normalization.cpython-39.pyc 2025-08-26T20:45:18.1662496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\rnn.cpython-39.pyc 2025-08-26T20:45:18.1666030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:18.1669458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.1682124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\__init__.py 2025-08-26T20:45:18.1689054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\conv.py 2025-08-26T20:45:18.1692512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\linear.py 2025-08-26T20:45:18.1695857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\rnn.py 2025-08-26T20:45:18.1699612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\sparse.py 2025-08-26T20:45:18.1702821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\utils.py 2025-08-26T20:45:18.1706378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__init__.py 2025-08-26T20:45:18.1717203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\conv.cpython-39.pyc 2025-08-26T20:45:18.1721085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\linear.cpython-39.pyc 2025-08-26T20:45:18.1724785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\rnn.cpython-39.pyc 2025-08-26T20:45:18.1732881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\sparse.cpython-39.pyc 2025-08-26T20:45:18.1737117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:18.1740966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.1748755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.1757277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\__pycache__\functional.cpython-39.pyc 2025-08-26T20:45:18.1760979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.1770628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\__init__.py 2025-08-26T20:45:18.1777817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\linear.py 2025-08-26T20:45:18.1781247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\utils.py 2025-08-26T20:45:18.1784631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\__init__.py 2025-08-26T20:45:18.1791265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\dynamic\linear.py 2025-08-26T20:45:18.1794609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\dynamic\__init__.py 2025-08-26T20:45:18.1802153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\dynamic\__pycache__\linear.cpython-39.pyc 2025-08-26T20:45:18.1806118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\dynamic\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.1818852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\__pycache__\linear.cpython-39.pyc 2025-08-26T20:45:18.1822324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:18.1825811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.1838464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.1847397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.1856316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\_numeric_suite.py 2025-08-26T20:45:18.1876810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\_numeric_suite_fx.py 2025-08-26T20:45:18.1880540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\__init__.py 2025-08-26T20:45:18.1886919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\graph_matcher.py 2025-08-26T20:45:18.1890529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\graph_passes.py 2025-08-26T20:45:18.1894375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\mappings.py 2025-08-26T20:45:18.1897798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\ns_types.py 2025-08-26T20:45:18.1901124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\n_shadows_utils.py 2025-08-26T20:45:18.1908863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\pattern_utils.py 2025-08-26T20:45:18.1912337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\qconfig_multi_mapping.py 2025-08-26T20:45:18.1915926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\utils.py 2025-08-26T20:45:18.1919294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\weight_utils.py 2025-08-26T20:45:18.1923025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__init__.py 2025-08-26T20:45:18.1930055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\graph_matcher.cpython-39.pyc 2025-08-26T20:45:18.1933754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\graph_passes.cpython-39.pyc 2025-08-26T20:45:18.1937223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\mappings.cpython-39.pyc 2025-08-26T20:45:18.1945044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\ns_types.cpython-39.pyc 2025-08-26T20:45:18.1948601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\n_shadows_utils.cpython-39.pyc 2025-08-26T20:45:18.1952358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\pattern_utils.cpython-39.pyc 2025-08-26T20:45:18.1956125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\qconfig_multi_mapping.cpython-39.pyc 2025-08-26T20:45:18.1960020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:18.1963524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\weight_utils.cpython-39.pyc 2025-08-26T20:45:18.1967154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.1980764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\__pycache__\_numeric_suite.cpython-39.pyc 2025-08-26T20:45:18.1984220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\__pycache__\_numeric_suite_fx.cpython-39.pyc 2025-08-26T20:45:18.1987769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.1999812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_mappings.py 2025-08-26T20:45:18.2003485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\__init__.py 2025-08-26T20:45:18.2010433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\base_scheduler.py 2025-08-26T20:45:18.2013754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\cubic_scheduler.py 2025-08-26T20:45:18.2017208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\lambda_scheduler.py 2025-08-26T20:45:18.2024350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\__init__.py 2025-08-26T20:45:18.2030807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\__pycache__\base_scheduler.cpython-39.pyc 2025-08-26T20:45:18.2034577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\__pycache__\cubic_scheduler.cpython-39.pyc 2025-08-26T20:45:18.2038688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\__pycache__\lambda_scheduler.cpython-39.pyc 2025-08-26T20:45:18.2046626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.2058684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\base_sparsifier.py 2025-08-26T20:45:18.2062271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\nearly_diagonal_sparsifier.py 2025-08-26T20:45:18.2065689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\utils.py 2025-08-26T20:45:18.2073859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\weight_norm_sparsifier.py 2025-08-26T20:45:18.2077426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__init__.py 2025-08-26T20:45:18.2084071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__pycache__\base_sparsifier.cpython-39.pyc 2025-08-26T20:45:18.2087908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__pycache__\nearly_diagonal_sparsifier.cpython-39.pyc 2025-08-26T20:45:18.2091316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:18.2099182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__pycache__\weight_norm_sparsifier.cpython-39.pyc 2025-08-26T20:45:18.2102655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.2110837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\__init__.py 2025-08-26T20:45:18.2117009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\activation_sparsifier\activation_sparsifier.py 2025-08-26T20:45:18.2120666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\activation_sparsifier\__init__.py 2025-08-26T20:45:18.2131206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\activation_sparsifier\__pycache__\activation_sparsifier.cpython-39.pyc 2025-08-26T20:45:18.2134718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\activation_sparsifier\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.2142266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_scheduler\base_data_scheduler.py 2025-08-26T20:45:18.2145786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_scheduler\__init__.py 2025-08-26T20:45:18.2152696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_scheduler\__pycache__\base_data_scheduler.cpython-39.pyc 2025-08-26T20:45:18.2156436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_scheduler\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.2168474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\base_data_sparsifier.py 2025-08-26T20:45:18.2171928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\data_norm_sparsifier.py 2025-08-26T20:45:18.2175521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\quantization_utils.py 2025-08-26T20:45:18.2183044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\__init__.py 2025-08-26T20:45:18.2190590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\__init__.py 2025-08-26T20:45:18.2196548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\data_sparsity.py 2025-08-26T20:45:18.2200093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\_data_sparstity_utils.py 2025-08-26T20:45:18.2203516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\__init__.py 2025-08-26T20:45:18.2215745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\__pycache__\data_sparsity.cpython-39.pyc 2025-08-26T20:45:18.2219789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\__pycache__\_data_sparstity_utils.cpython-39.pyc 2025-08-26T20:45:18.2223499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.2236836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.2244847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\__pycache__\base_data_sparsifier.cpython-39.pyc 2025-08-26T20:45:18.2248651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\__pycache__\data_norm_sparsifier.cpython-39.pyc 2025-08-26T20:45:18.2252060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\__pycache__\quantization_utils.cpython-39.pyc 2025-08-26T20:45:18.2259812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.2267463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\base_structured_sparsifier.py 2025-08-26T20:45:18.2270823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\FPGM_pruner.py 2025-08-26T20:45:18.2274224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\lstm_saliency_pruner.py 2025-08-26T20:45:18.2282235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\match_utils.py 2025-08-26T20:45:18.2285575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\parametrization.py 2025-08-26T20:45:18.2289464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\prune_functions.py 2025-08-26T20:45:18.2293033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\saliency_pruner.py 2025-08-26T20:45:18.2296615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__init__.py 2025-08-26T20:45:18.2303860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\base_structured_sparsifier.cpython-39.pyc 2025-08-26T20:45:18.2307255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\FPGM_pruner.cpython-39.pyc 2025-08-26T20:45:18.2310924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\lstm_saliency_pruner.cpython-39.pyc 2025-08-26T20:45:18.2318736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\match_utils.cpython-39.pyc 2025-08-26T20:45:18.2322116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\parametrization.cpython-39.pyc 2025-08-26T20:45:18.2325763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\prune_functions.cpython-39.pyc 2025-08-26T20:45:18.2329322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\saliency_pruner.cpython-39.pyc 2025-08-26T20:45:18.2332810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.2340697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.2348998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\__pycache__\_mappings.cpython-39.pyc 2025-08-26T20:45:18.2352707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.2361708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fake_quantize.py 2025-08-26T20:45:18.2365429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fuser_method_mappings.py 2025-08-26T20:45:18.2368949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fuse_modules.py 2025-08-26T20:45:18.2376437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\observer.py 2025-08-26T20:45:18.2380667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\qconfig.py 2025-08-26T20:45:18.2384938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\qconfig_mapping.py 2025-08-26T20:45:18.2388474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantization_mappings.py 2025-08-26T20:45:18.2392517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantize.py 2025-08-26T20:45:18.2396678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantize_fx.py 2025-08-26T20:45:18.2400496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantize_jit.py 2025-08-26T20:45:18.2404062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantize_pt2e.py 2025-08-26T20:45:18.2407723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quant_type.py 2025-08-26T20:45:18.2411142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\stubs.py 2025-08-26T20:45:18.2414911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\utils.py 2025-08-26T20:45:18.2418606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\_correct_bias.py 2025-08-26T20:45:18.2421936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\_equalize.py 2025-08-26T20:45:18.2425532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\_learnable_fake_quantize.py 2025-08-26T20:45:18.2428956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__init__.py 2025-08-26T20:45:18.2436226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\backend_config.py 2025-08-26T20:45:18.2439973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\executorch.py 2025-08-26T20:45:18.2443892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\fbgemm.py 2025-08-26T20:45:18.2447343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\native.py 2025-08-26T20:45:18.2454301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\onednn.py 2025-08-26T20:45:18.2457624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\qnnpack.py 2025-08-26T20:45:18.2460873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\tensorrt.py 2025-08-26T20:45:18.2464193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\utils.py 2025-08-26T20:45:18.2467742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\x86.py 2025-08-26T20:45:18.2471745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\_common_operator_config_utils.py 2025-08-26T20:45:18.2475829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\_qnnpack_pt2e.py 2025-08-26T20:45:18.2479170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__init__.py 2025-08-26T20:45:18.2486921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\backend_config.cpython-39.pyc 2025-08-26T20:45:18.2490765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\executorch.cpython-39.pyc 2025-08-26T20:45:18.2494266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\fbgemm.cpython-39.pyc 2025-08-26T20:45:18.2502795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\native.cpython-39.pyc 2025-08-26T20:45:18.2506342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\onednn.cpython-39.pyc 2025-08-26T20:45:18.2510296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\qnnpack.cpython-39.pyc 2025-08-26T20:45:18.2514112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\tensorrt.cpython-39.pyc 2025-08-26T20:45:18.2517912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:18.2521822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\x86.cpython-39.pyc 2025-08-26T20:45:18.2525637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\_common_operator_config_utils.cpython-39.pyc 2025-08-26T20:45:18.2529498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\_qnnpack_pt2e.cpython-39.pyc 2025-08-26T20:45:18.2533202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.2541496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\convert.py 2025-08-26T20:45:18.2546058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\custom_config.py 2025-08-26T20:45:18.2550257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\fuse.py 2025-08-26T20:45:18.2553882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\fuse_handler.py 2025-08-26T20:45:18.2557522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\graph_module.py 2025-08-26T20:45:18.2565158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\lower_to_fbgemm.py 2025-08-26T20:45:18.2569769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\lower_to_qnnpack.py 2025-08-26T20:45:18.2573582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\lstm_utils.py 2025-08-26T20:45:18.2577172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\match_utils.py 2025-08-26T20:45:18.2580751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\pattern_utils.py 2025-08-26T20:45:18.2584508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\prepare.py 2025-08-26T20:45:18.2588746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\qconfig_mapping_utils.py 2025-08-26T20:45:18.2592381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\quantize_handler.py 2025-08-26T20:45:18.2595795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\tracer.py 2025-08-26T20:45:18.2599181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\utils.py 2025-08-26T20:45:18.2602892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_decomposed.py 2025-08-26T20:45:18.2606847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_equalize.py 2025-08-26T20:45:18.2610712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_lower_to_native_backend.py 2025-08-26T20:45:18.2615368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__init__.py 2025-08-26T20:45:18.2622314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\detector.py 2025-08-26T20:45:18.2626700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\model_report.py 2025-08-26T20:45:18.2630475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\model_report_observer.py 2025-08-26T20:45:18.2638511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\model_report_visualizer.py 2025-08-26T20:45:18.2642191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__init__.py 2025-08-26T20:45:18.2648788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__pycache__\detector.cpython-39.pyc 2025-08-26T20:45:18.2652824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__pycache__\model_report.cpython-39.pyc 2025-08-26T20:45:18.2656442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__pycache__\model_report_observer.cpython-39.pyc 2025-08-26T20:45:18.2665171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__pycache__\model_report_visualizer.cpython-39.pyc 2025-08-26T20:45:18.2668738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.2676469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\convert.cpython-39.pyc 2025-08-26T20:45:18.2680146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\custom_config.cpython-39.pyc 2025-08-26T20:45:18.2683973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\fuse.cpython-39.pyc 2025-08-26T20:45:18.2692649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\fuse_handler.cpython-39.pyc 2025-08-26T20:45:18.2696647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\graph_module.cpython-39.pyc 2025-08-26T20:45:18.2700058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\lower_to_fbgemm.cpython-39.pyc 2025-08-26T20:45:18.2703641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\lower_to_qnnpack.cpython-39.pyc 2025-08-26T20:45:18.2707206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\lstm_utils.cpython-39.pyc 2025-08-26T20:45:18.2711049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\match_utils.cpython-39.pyc 2025-08-26T20:45:18.2714705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\pattern_utils.cpython-39.pyc 2025-08-26T20:45:18.2718230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\prepare.cpython-39.pyc 2025-08-26T20:45:18.2722184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\qconfig_mapping_utils.cpython-39.pyc 2025-08-26T20:45:18.2725966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\quantize_handler.cpython-39.pyc 2025-08-26T20:45:18.2729508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\tracer.cpython-39.pyc 2025-08-26T20:45:18.2732910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:18.2736663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\_decomposed.cpython-39.pyc 2025-08-26T20:45:18.2740746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\_equalize.cpython-39.pyc 2025-08-26T20:45:18.2749438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\_lower_to_native_backend.cpython-39.pyc 2025-08-26T20:45:18.2753165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.2762082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\duplicate_dq_pass.py 2025-08-26T20:45:18.2765545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\export_utils.py 2025-08-26T20:45:18.2768859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\graph_utils.py 2025-08-26T20:45:18.2772118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\lowering.py 2025-08-26T20:45:18.2780443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\port_metadata_pass.py 2025-08-26T20:45:18.2783905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\prepare.py 2025-08-26T20:45:18.2787411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\qat_utils.py 2025-08-26T20:45:18.2791361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\utils.py 2025-08-26T20:45:18.2794967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\_affine_quantization.py 2025-08-26T20:45:18.2798923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\_numeric_debugger.py 2025-08-26T20:45:18.2802420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__init__.py 2025-08-26T20:45:18.2808739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\representation\rewrite.py 2025-08-26T20:45:18.2812538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\representation\__init__.py 2025-08-26T20:45:18.2819620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\representation\__pycache__\rewrite.cpython-39.pyc 2025-08-26T20:45:18.2823126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\representation\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.2830829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\duplicate_dq_pass.cpython-39.pyc 2025-08-26T20:45:18.2834327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\export_utils.cpython-39.pyc 2025-08-26T20:45:18.2837822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\graph_utils.cpython-39.pyc 2025-08-26T20:45:18.2846011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\lowering.cpython-39.pyc 2025-08-26T20:45:18.2849706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\port_metadata_pass.cpython-39.pyc 2025-08-26T20:45:18.2853543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\prepare.cpython-39.pyc 2025-08-26T20:45:18.2857258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\qat_utils.cpython-39.pyc 2025-08-26T20:45:18.2860994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:18.2864615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\_affine_quantization.cpython-39.pyc 2025-08-26T20:45:18.2868498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\_numeric_debugger.cpython-39.pyc 2025-08-26T20:45:18.2872188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.2880793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\composable_quantizer.py 2025-08-26T20:45:18.2884277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\embedding_quantizer.py 2025-08-26T20:45:18.2888235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\quantizer.py 2025-08-26T20:45:18.2896860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\utils.py 2025-08-26T20:45:18.2900550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\x86_inductor_quantizer.py 2025-08-26T20:45:18.2904641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\xnnpack_quantizer.py 2025-08-26T20:45:18.2908764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\xnnpack_quantizer_utils.py 2025-08-26T20:45:18.2912643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\xpu_inductor_quantizer.py 2025-08-26T20:45:18.2916551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__init__.py 2025-08-26T20:45:18.2924232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\composable_quantizer.cpython-39.pyc 2025-08-26T20:45:18.2928226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\embedding_quantizer.cpython-39.pyc 2025-08-26T20:45:18.2932202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\quantizer.cpython-39.pyc 2025-08-26T20:45:18.2939861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:18.2943793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\x86_inductor_quantizer.cpython-39.pyc 2025-08-26T20:45:18.2947697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\xnnpack_quantizer.cpython-39.pyc 2025-08-26T20:45:18.2967481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\xnnpack_quantizer_utils.cpython-39.pyc 2025-08-26T20:45:18.2971887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\xpu_inductor_quantizer.cpython-39.pyc 2025-08-26T20:45:18.2975523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.2989414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\fake_quantize.cpython-39.pyc 2025-08-26T20:45:18.2993051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\fuser_method_mappings.cpython-39.pyc 2025-08-26T20:45:18.2996906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\fuse_modules.cpython-39.pyc 2025-08-26T20:45:18.3004819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\observer.cpython-39.pyc 2025-08-26T20:45:18.3008877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\qconfig.cpython-39.pyc 2025-08-26T20:45:18.3012613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\qconfig_mapping.cpython-39.pyc 2025-08-26T20:45:18.3016198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quantization_mappings.cpython-39.pyc 2025-08-26T20:45:18.3019889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quantize.cpython-39.pyc 2025-08-26T20:45:18.3023677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quantize_fx.cpython-39.pyc 2025-08-26T20:45:18.3027712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quantize_jit.cpython-39.pyc 2025-08-26T20:45:18.3031500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quantize_pt2e.cpython-39.pyc 2025-08-26T20:45:18.3035001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quant_type.cpython-39.pyc 2025-08-26T20:45:18.3041676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\stubs.cpython-39.pyc 2025-08-26T20:45:18.3045512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:18.3049412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\_correct_bias.cpython-39.pyc 2025-08-26T20:45:18.3053087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\_equalize.cpython-39.pyc 2025-08-26T20:45:18.3056744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\_learnable_fake_quantize.cpython-39.pyc 2025-08-26T20:45:18.3064789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.3077706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.3087188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\anomaly_mode.py 2025-08-26T20:45:18.3090924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\forward_ad.py 2025-08-26T20:45:18.3094260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\function.py 2025-08-26T20:45:18.3098060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\functional.py 2025-08-26T20:45:18.3106148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\gradcheck.py 2025-08-26T20:45:18.3110435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\grad_mode.py 2025-08-26T20:45:18.3113912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\graph.py 2025-08-26T20:45:18.3117758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\profiler.py 2025-08-26T20:45:18.3121747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\profiler_legacy.py 2025-08-26T20:45:18.3125171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\profiler_util.py 2025-08-26T20:45:18.3129817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\variable.py 2025-08-26T20:45:18.3133282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__init__.py 2025-08-26T20:45:18.3140877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\tensor.py 2025-08-26T20:45:18.3144247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\utils.py 2025-08-26T20:45:18.3147839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\__init__.py 2025-08-26T20:45:18.3154891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\__pycache__\tensor.cpython-39.pyc 2025-08-26T20:45:18.3158426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:18.3162082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.3175377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\anomaly_mode.cpython-39.pyc 2025-08-26T20:45:18.3179218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\forward_ad.cpython-39.pyc 2025-08-26T20:45:18.3182596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\function.cpython-39.pyc 2025-08-26T20:45:18.3190097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\functional.cpython-39.pyc 2025-08-26T20:45:18.3193783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\gradcheck.cpython-39.pyc 2025-08-26T20:45:18.3197744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\grad_mode.cpython-39.pyc 2025-08-26T20:45:18.3201340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\graph.cpython-39.pyc 2025-08-26T20:45:18.3205095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\profiler.cpython-39.pyc 2025-08-26T20:45:18.3208933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\profiler_legacy.cpython-39.pyc 2025-08-26T20:45:18.3212348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\profiler_util.cpython-39.pyc 2025-08-26T20:45:18.3215905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\variable.cpython-39.pyc 2025-08-26T20:45:18.3219408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.3228350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\__init__.py 2025-08-26T20:45:18.3235147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cpu\__init__.py 2025-08-26T20:45:18.3241910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cpu\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.3249172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cuda\__init__.py 2025-08-26T20:45:18.3255982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cuda\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.3263538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cudnn\rnn.py 2025-08-26T20:45:18.3266874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cudnn\__init__.py 2025-08-26T20:45:18.3274312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cudnn\__pycache__\rnn.cpython-39.pyc 2025-08-26T20:45:18.3277685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cudnn\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.3285057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cusparselt\__init__.py 2025-08-26T20:45:18.3292388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cusparselt\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.3303597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\kleidiai\__init__.py 2025-08-26T20:45:18.3310316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\kleidiai\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.3317796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mha\__init__.py 2025-08-26T20:45:18.3324418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mha\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.3331796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\miopen\__init__.py 2025-08-26T20:45:18.3338472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\miopen\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.3345368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mkl\__init__.py 2025-08-26T20:45:18.3353140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mkl\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.3360665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mkldnn\__init__.py 2025-08-26T20:45:18.3367542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mkldnn\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.3375357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mps\__init__.py 2025-08-26T20:45:18.3382145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mps\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.3390090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\nnpack\__init__.py 2025-08-26T20:45:18.3397295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\nnpack\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.3405479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\openmp\__init__.py 2025-08-26T20:45:18.3412536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\openmp\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.3419918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\opt_einsum\__init__.py 2025-08-26T20:45:18.3427028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\opt_einsum\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.3434721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\quantized\__init__.py 2025-08-26T20:45:18.3441599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\quantized\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.3448837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xeon\run_cpu.py 2025-08-26T20:45:18.3452531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xeon\__init__.py 2025-08-26T20:45:18.3458822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xeon\__pycache__\run_cpu.cpython-39.pyc 2025-08-26T20:45:18.3462423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xeon\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.3469853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xnnpack\__init__.py 2025-08-26T20:45:18.3476830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xnnpack\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.3484080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_coreml\preprocess.py 2025-08-26T20:45:18.3487640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_coreml\__init__.py 2025-08-26T20:45:18.3494018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_coreml\__pycache__\preprocess.cpython-39.pyc 2025-08-26T20:45:18.3497581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_coreml\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.3506443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\prepare.py 2025-08-26T20:45:18.3510245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\serializer.py 2025-08-26T20:45:18.3513898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\__init__.py 2025-08-26T20:45:18.3519925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\__pycache__\prepare.cpython-39.pyc 2025-08-26T20:45:18.3523774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\__pycache__\serializer.cpython-39.pyc 2025-08-26T20:45:18.3527686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.3541031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.3548891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\FileStoreTest.exe 2025-08-26T20:45:18.3554749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\protoc.exe 2025-08-26T20:45:18.3574581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\TCPStoreTest.exe 2025-08-26T20:45:18.3580564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\test_api.exe 2025-08-26T20:45:18.3634157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\test_jit.exe 2025-08-26T20:45:18.3668605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\test_lazy.exe 2025-08-26T20:45:18.3685504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\test_nativert.exe 2025-08-26T20:45:18.3705924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\config.py 2025-08-26T20:45:18.3709352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\_cache.py 2025-08-26T20:45:18.3712551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\__init__.py 2025-08-26T20:45:18.3719718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\__pycache__\config.cpython-39.pyc 2025-08-26T20:45:18.3723655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\__pycache__\_cache.cpython-39.pyc 2025-08-26T20:45:18.3727192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.3738915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\contrib\_tensorboard_vis.py 2025-08-26T20:45:18.3742458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\contrib\__init__.py 2025-08-26T20:45:18.3748951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\contrib\__pycache__\_tensorboard_vis.cpython-39.pyc 2025-08-26T20:45:18.3752236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\contrib\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.3760005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\__init__.py 2025-08-26T20:45:18.3766680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\autocast_mode.py 2025-08-26T20:45:18.3770096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\grad_scaler.py 2025-08-26T20:45:18.3773399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\__init__.py 2025-08-26T20:45:18.3785323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\__pycache__\autocast_mode.cpython-39.pyc 2025-08-26T20:45:18.3788737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\__pycache__\grad_scaler.cpython-39.pyc 2025-08-26T20:45:18.3792434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.3805162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.3820509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\csrc\inductor\aoti_runtime\model.h 2025-08-26T20:45:18.3829266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\comm.py 2025-08-26T20:45:18.3832711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\gds.py 2025-08-26T20:45:18.3835936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\graphs.py 2025-08-26T20:45:18.3839553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\jiterator.py 2025-08-26T20:45:18.3842918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\memory.py 2025-08-26T20:45:18.3846664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\nccl.py 2025-08-26T20:45:18.3854359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\nvtx.py 2025-08-26T20:45:18.3858343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\profiler.py 2025-08-26T20:45:18.3861496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\random.py 2025-08-26T20:45:18.3865062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\sparse.py 2025-08-26T20:45:18.3868301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\streams.py 2025-08-26T20:45:18.3871873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\tunable.py 2025-08-26T20:45:18.3875566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\_gpu_trace.py 2025-08-26T20:45:18.3879068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\_memory_viz.py 2025-08-26T20:45:18.3882892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\_pin_memory_utils.py 2025-08-26T20:45:18.3886962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\_sanitizer.py 2025-08-26T20:45:18.3890627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\_utils.py 2025-08-26T20:45:18.3894841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__init__.py 2025-08-26T20:45:18.3902273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\autocast_mode.py 2025-08-26T20:45:18.3906063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\common.py 2025-08-26T20:45:18.3909750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\grad_scaler.py 2025-08-26T20:45:18.3913174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\__init__.py 2025-08-26T20:45:18.3924481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\__pycache__\autocast_mode.cpython-39.pyc 2025-08-26T20:45:18.3928386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\__pycache__\common.cpython-39.pyc 2025-08-26T20:45:18.3932185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\__pycache__\grad_scaler.cpython-39.pyc 2025-08-26T20:45:18.3939889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.3948311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\comm.cpython-39.pyc 2025-08-26T20:45:18.3952166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\gds.cpython-39.pyc 2025-08-26T20:45:18.3955657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\graphs.cpython-39.pyc 2025-08-26T20:45:18.3963182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\jiterator.cpython-39.pyc 2025-08-26T20:45:18.3966783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\memory.cpython-39.pyc 2025-08-26T20:45:18.3970795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\nccl.cpython-39.pyc 2025-08-26T20:45:18.3974366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\nvtx.cpython-39.pyc 2025-08-26T20:45:18.3977639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\profiler.cpython-39.pyc 2025-08-26T20:45:18.3981509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\random.cpython-39.pyc 2025-08-26T20:45:18.3985039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\sparse.cpython-39.pyc 2025-08-26T20:45:18.3988479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\streams.cpython-39.pyc 2025-08-26T20:45:18.3992314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\tunable.cpython-39.pyc 2025-08-26T20:45:18.3995963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\_gpu_trace.cpython-39.pyc 2025-08-26T20:45:18.3999561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\_memory_viz.cpython-39.pyc 2025-08-26T20:45:18.4003240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\_pin_memory_utils.cpython-39.pyc 2025-08-26T20:45:18.4007170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\_sanitizer.cpython-39.pyc 2025-08-26T20:45:18.4011017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\_utils.cpython-39.pyc 2025-08-26T20:45:18.4017981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.4028502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\argparse_util.py 2025-08-26T20:45:18.4032549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\c10d_logger.py 2025-08-26T20:45:18.4050413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\collective_utils.py 2025-08-26T20:45:18.4051098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\constants.py 2025-08-26T20:45:18.4051836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\device_mesh.py 2025-08-26T20:45:18.4052453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\distributed_c10d.py 2025-08-26T20:45:18.4057157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\launch.py 2025-08-26T20:45:18.4060671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\logging_handlers.py 2025-08-26T20:45:18.4064594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\remote_device.py 2025-08-26T20:45:18.4067989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rendezvous.py 2025-08-26T20:45:18.4071591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\run.py 2025-08-26T20:45:18.4075354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\utils.py 2025-08-26T20:45:18.4078769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_checkpointable.py 2025-08-26T20:45:18.4082682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable_state.py 2025-08-26T20:45:18.4086368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_dist2.py 2025-08-26T20:45:18.4089842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_functional_collectives.py 2025-08-26T20:45:18.4093812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_functional_collectives_impl.py 2025-08-26T20:45:18.4097484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_serialization.py 2025-08-26T20:45:18.4101204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_state_dict_utils.py 2025-08-26T20:45:18.4105637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__init__.py 2025-08-26T20:45:18.4117168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\join.py 2025-08-26T20:45:18.4121488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\__init__.py 2025-08-26T20:45:18.4128833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\ddp_zero_hook.py 2025-08-26T20:45:18.4153608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\debugging_hooks.py 2025-08-26T20:45:18.4157139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\default_hooks.py 2025-08-26T20:45:18.4164892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\mixed_precision_hooks.py 2025-08-26T20:45:18.4168451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\optimizer_overlap_hooks.py 2025-08-26T20:45:18.4171861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\post_localSGD_hook.py 2025-08-26T20:45:18.4175468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\powerSGD_hook.py 2025-08-26T20:45:18.4179262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\quantization_hooks.py 2025-08-26T20:45:18.4182717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__init__.py 2025-08-26T20:45:18.4190090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\ddp_zero_hook.cpython-39.pyc 2025-08-26T20:45:18.4193644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\debugging_hooks.cpython-39.pyc 2025-08-26T20:45:18.4197232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\default_hooks.cpython-39.pyc 2025-08-26T20:45:18.4205676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\mixed_precision_hooks.cpython-39.pyc 2025-08-26T20:45:18.4209565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\optimizer_overlap_hooks.cpython-39.pyc 2025-08-26T20:45:18.4212836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\post_localSGD_hook.cpython-39.pyc 2025-08-26T20:45:18.4216678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\powerSGD_hook.cpython-39.pyc 2025-08-26T20:45:18.4221125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\quantization_hooks.cpython-39.pyc 2025-08-26T20:45:18.4224716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.4237281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\averagers.py 2025-08-26T20:45:18.4240857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\hierarchical_model_averager.py 2025-08-26T20:45:18.4244198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\utils.py 2025-08-26T20:45:18.4252168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\__init__.py 2025-08-26T20:45:18.4258394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\__pycache__\averagers.cpython-39.pyc 2025-08-26T20:45:18.4261947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\__pycache__\hierarchical_model_averager.cpython-39.pyc 2025-08-26T20:45:18.4265299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:18.4272851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.4280612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_checkpoint\checkpoint_wrapper.py 2025-08-26T20:45:18.4284000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_checkpoint\__init__.py 2025-08-26T20:45:18.4290279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_checkpoint\__pycache__\checkpoint_wrapper.cpython-39.pyc 2025-08-26T20:45:18.4293739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_checkpoint\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.4301312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_comm_hooks\default_hooks.py 2025-08-26T20:45:18.4305115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_comm_hooks\__init__.py 2025-08-26T20:45:18.4311926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_comm_hooks\__pycache__\default_hooks.cpython-39.pyc 2025-08-26T20:45:18.4315358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_comm_hooks\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.4322892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_optimizer_overlap\optimizer_overlap.py 2025-08-26T20:45:18.4326401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_optimizer_overlap\__init__.py 2025-08-26T20:45:18.4333633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_optimizer_overlap\__pycache__\optimizer_overlap.cpython-39.pyc 2025-08-26T20:45:18.4337168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_optimizer_overlap\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.4344452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_quantization\quantization.py 2025-08-26T20:45:18.4347884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_quantization\__init__.py 2025-08-26T20:45:18.4354125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_quantization\__pycache__\quantization.cpython-39.pyc 2025-08-26T20:45:18.4357720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_quantization\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.4365478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\__pycache__\join.cpython-39.pyc 2025-08-26T20:45:18.4369053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.4377134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\autograd\__init__.py 2025-08-26T20:45:18.4384061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\autograd\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.4392762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\api.py 2025-08-26T20:45:18.4396340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\default_planner.py 2025-08-26T20:45:18.4400147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\filesystem.py 2025-08-26T20:45:18.4403867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\format_utils.py 2025-08-26T20:45:18.4411103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\hf_storage.py 2025-08-26T20:45:18.4414563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\logger.py 2025-08-26T20:45:18.4418376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\logging_handlers.py 2025-08-26T20:45:18.4422019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\metadata.py 2025-08-26T20:45:18.4425316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\optimizer.py 2025-08-26T20:45:18.4428668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\planner.py 2025-08-26T20:45:18.4432261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\planner_helpers.py 2025-08-26T20:45:18.4435703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\resharding.py 2025-08-26T20:45:18.4439201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\staging.py 2025-08-26T20:45:18.4442686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\stateful.py 2025-08-26T20:45:18.4446774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\state_dict.py 2025-08-26T20:45:18.4450837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\state_dict_loader.py 2025-08-26T20:45:18.4454572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\state_dict_saver.py 2025-08-26T20:45:18.4458368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\storage.py 2025-08-26T20:45:18.4461729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\utils.py 2025-08-26T20:45:18.4465791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_async_executor.py 2025-08-26T20:45:18.4469577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_async_process_executor.py 2025-08-26T20:45:18.4473153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_async_thread_executor.py 2025-08-26T20:45:18.4476971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_checkpointer.py 2025-08-26T20:45:18.4485080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_consolidate_hf_safetensors.py 2025-08-26T20:45:18.4489463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_dedup_save_plans.py 2025-08-26T20:45:18.4493195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_dedup_tensors.py 2025-08-26T20:45:18.4496751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_extension.py 2025-08-26T20:45:18.4500579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_fsspec_filesystem.py 2025-08-26T20:45:18.4504191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_hf_utils.py 2025-08-26T20:45:18.4507725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_nested_dict.py 2025-08-26T20:45:18.4511775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_pg_transport.py 2025-08-26T20:45:18.4515618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_sharded_tensor_utils.py 2025-08-26T20:45:18.4525154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_state_dict_stager.py 2025-08-26T20:45:18.4529144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_storage_utils.py 2025-08-26T20:45:18.4532743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_traverse.py 2025-08-26T20:45:18.4536342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_version.py 2025-08-26T20:45:18.4539712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__init__.py 2025-08-26T20:45:18.4547619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\barriers.py 2025-08-26T20:45:18.4551224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\builder.py 2025-08-26T20:45:18.4554809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\checkpointer.py 2025-08-26T20:45:18.4558459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\checkpoint_process.py 2025-08-26T20:45:18.4568368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\checkpoint_reader.py 2025-08-26T20:45:18.4572033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\checkpoint_writer.py 2025-08-26T20:45:18.4576257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\config.py 2025-08-26T20:45:18.4580482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\staging.py 2025-08-26T20:45:18.4584279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\types.py 2025-08-26T20:45:18.4587722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\utils.py 2025-08-26T20:45:18.4591231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__init__.py 2025-08-26T20:45:18.4598864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\barriers.cpython-39.pyc 2025-08-26T20:45:18.4602327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\builder.cpython-39.pyc 2025-08-26T20:45:18.4605908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\checkpointer.cpython-39.pyc 2025-08-26T20:45:18.4613989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\checkpoint_process.cpython-39.pyc 2025-08-26T20:45:18.4617878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\checkpoint_reader.cpython-39.pyc 2025-08-26T20:45:18.4621666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\checkpoint_writer.cpython-39.pyc 2025-08-26T20:45:18.4625406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\config.cpython-39.pyc 2025-08-26T20:45:18.4629568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\staging.cpython-39.pyc 2025-08-26T20:45:18.4633222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\types.cpython-39.pyc 2025-08-26T20:45:18.4636884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:18.4640654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.4649334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\api.cpython-39.pyc 2025-08-26T20:45:18.4652979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\default_planner.cpython-39.pyc 2025-08-26T20:45:18.4656637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\filesystem.cpython-39.pyc 2025-08-26T20:45:18.4665026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\format_utils.cpython-39.pyc 2025-08-26T20:45:18.4668630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\hf_storage.cpython-39.pyc 2025-08-26T20:45:18.4672353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\logger.cpython-39.pyc 2025-08-26T20:45:18.4676164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\logging_handlers.cpython-39.pyc 2025-08-26T20:45:18.4679710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\metadata.cpython-39.pyc 2025-08-26T20:45:18.4683733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\optimizer.cpython-39.pyc 2025-08-26T20:45:18.4687352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\planner.cpython-39.pyc 2025-08-26T20:45:18.4690973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\planner_helpers.cpython-39.pyc 2025-08-26T20:45:18.4694482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\resharding.cpython-39.pyc 2025-08-26T20:45:18.4698299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\staging.cpython-39.pyc 2025-08-26T20:45:18.4701850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\stateful.cpython-39.pyc 2025-08-26T20:45:18.4705462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\state_dict.cpython-39.pyc 2025-08-26T20:45:18.4709673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\state_dict_loader.cpython-39.pyc 2025-08-26T20:45:18.4713151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\state_dict_saver.cpython-39.pyc 2025-08-26T20:45:18.4721484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\storage.cpython-39.pyc 2025-08-26T20:45:18.4724961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:18.4728660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_async_executor.cpython-39.pyc 2025-08-26T20:45:18.4732582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_async_process_executor.cpython-39.pyc 2025-08-26T20:45:18.4736424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_async_thread_executor.cpython-39.pyc 2025-08-26T20:45:18.4740118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_checkpointer.cpython-39.pyc 2025-08-26T20:45:18.4743823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_consolidate_hf_safetensors.cpython-39.pyc 2025-08-26T20:45:18.4747416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_dedup_save_plans.cpython-39.pyc 2025-08-26T20:45:18.4755862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_dedup_tensors.cpython-39.pyc 2025-08-26T20:45:18.4759675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_extension.cpython-39.pyc 2025-08-26T20:45:18.4763265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_fsspec_filesystem.cpython-39.pyc 2025-08-26T20:45:18.4767013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_hf_utils.cpython-39.pyc 2025-08-26T20:45:18.4770546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_nested_dict.cpython-39.pyc 2025-08-26T20:45:18.4774035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_pg_transport.cpython-39.pyc 2025-08-26T20:45:18.4787941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_sharded_tensor_utils.cpython-39.pyc 2025-08-26T20:45:18.4791872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_state_dict_stager.cpython-39.pyc 2025-08-26T20:45:18.4799021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_storage_utils.cpython-39.pyc 2025-08-26T20:45:18.4802586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_traverse.cpython-39.pyc 2025-08-26T20:45:18.4806137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_version.cpython-39.pyc 2025-08-26T20:45:18.4809726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.4820139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\control_plane.py 2025-08-26T20:45:18.4823720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\__init__.py 2025-08-26T20:45:18.4831403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\__init__.py 2025-08-26T20:45:18.4837444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\api.py 2025-08-26T20:45:18.4841206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\health_check_server.py 2025-08-26T20:45:18.4845025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\local_elastic_agent.py 2025-08-26T20:45:18.4848711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\__init__.py 2025-08-26T20:45:18.4860052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\__pycache__\api.cpython-39.pyc 2025-08-26T20:45:18.4863833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\__pycache__\health_check_server.cpython-39.pyc 2025-08-26T20:45:18.4867513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\__pycache__\local_elastic_agent.cpython-39.pyc 2025-08-26T20:45:18.4875234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.4882928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.4890487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\api.py 2025-08-26T20:45:18.4893818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\handlers.py 2025-08-26T20:45:18.4897109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\__init__.py 2025-08-26T20:45:18.4904144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\__pycache__\api.cpython-39.pyc 2025-08-26T20:45:18.4907664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\__pycache__\handlers.cpython-39.pyc 2025-08-26T20:45:18.4911334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.4923291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\metrics\api.py 2025-08-26T20:45:18.4926649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\metrics\__init__.py 2025-08-26T20:45:18.4933624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\metrics\__pycache__\api.cpython-39.pyc 2025-08-26T20:45:18.4937348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\metrics\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.4949660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\api.py 2025-08-26T20:45:18.4953428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\redirects.py 2025-08-26T20:45:18.4957240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\tail_log.py 2025-08-26T20:45:18.4960627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\__init__.py 2025-08-26T20:45:18.4975095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\error_handler.py 2025-08-26T20:45:18.4978365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\handlers.py 2025-08-26T20:45:18.4981850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\__init__.py 2025-08-26T20:45:18.4988792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\__pycache__\error_handler.cpython-39.pyc 2025-08-26T20:45:18.4992354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\__pycache__\handlers.cpython-39.pyc 2025-08-26T20:45:18.4995781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.5007578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\handlers.py 2025-08-26T20:45:18.5011191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\subprocess_handler.py 2025-08-26T20:45:18.5014829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\__init__.py 2025-08-26T20:45:18.5026666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\__pycache__\handlers.cpython-39.pyc 2025-08-26T20:45:18.5030626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\__pycache__\subprocess_handler.cpython-39.pyc 2025-08-26T20:45:18.5034269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.5047123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\__pycache__\api.cpython-39.pyc 2025-08-26T20:45:18.5051199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\__pycache__\redirects.cpython-39.pyc 2025-08-26T20:45:18.5055021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\__pycache__\tail_log.cpython-39.pyc 2025-08-26T20:45:18.5065440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.5073351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\api.py 2025-08-26T20:45:18.5076832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\c10d_rendezvous_backend.py 2025-08-26T20:45:18.5080537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\dynamic_rendezvous.py 2025-08-26T20:45:18.5089052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\etcd_rendezvous.py 2025-08-26T20:45:18.5093110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\etcd_rendezvous_backend.py 2025-08-26T20:45:18.5097047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\etcd_server.py 2025-08-26T20:45:18.5100636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\etcd_store.py 2025-08-26T20:45:18.5104349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\registry.py 2025-08-26T20:45:18.5107776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\static_tcp_rendezvous.py 2025-08-26T20:45:18.5111368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\utils.py 2025-08-26T20:45:18.5114666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\_etcd_stub.py 2025-08-26T20:45:18.5118118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__init__.py 2025-08-26T20:45:18.5125707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\api.cpython-39.pyc 2025-08-26T20:45:18.5131288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\c10d_rendezvous_backend.cpython-39.pyc 2025-08-26T20:45:18.5135152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\dynamic_rendezvous.cpython-39.pyc 2025-08-26T20:45:18.5144021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\etcd_rendezvous.cpython-39.pyc 2025-08-26T20:45:18.5147939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\etcd_rendezvous_backend.cpython-39.pyc 2025-08-26T20:45:18.5151543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\etcd_server.cpython-39.pyc 2025-08-26T20:45:18.5155439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\etcd_store.cpython-39.pyc 2025-08-26T20:45:18.5159164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\registry.cpython-39.pyc 2025-08-26T20:45:18.5162877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\static_tcp_rendezvous.cpython-39.pyc 2025-08-26T20:45:18.5166444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:18.5170072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\_etcd_stub.cpython-39.pyc 2025-08-26T20:45:18.5173694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.5181455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\api.py 2025-08-26T20:45:18.5184918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\debug_info_logging.py 2025-08-26T20:45:18.5188835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\file_based_local_timer.py 2025-08-26T20:45:18.5192469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\local_timer.py 2025-08-26T20:45:18.5200242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__init__.py 2025-08-26T20:45:18.5207337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__pycache__\api.cpython-39.pyc 2025-08-26T20:45:18.5210927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__pycache__\debug_info_logging.cpython-39.pyc 2025-08-26T20:45:18.5214482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__pycache__\file_based_local_timer.cpython-39.pyc 2025-08-26T20:45:18.5222709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__pycache__\local_timer.cpython-39.pyc 2025-08-26T20:45:18.5226700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.5234097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\api.py 2025-08-26T20:45:18.5265161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\distributed.py 2025-08-26T20:45:18.5268406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\logging.py 2025-08-26T20:45:18.5271771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\log_level.py 2025-08-26T20:45:18.5275178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\store.py 2025-08-26T20:45:18.5283643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__init__.py 2025-08-26T20:45:18.5290859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\cycling_iterator.py 2025-08-26T20:45:18.5294423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\elastic_distributed_sampler.py 2025-08-26T20:45:18.5298044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\__init__.py 2025-08-26T20:45:18.5309419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\__pycache__\cycling_iterator.cpython-39.pyc 2025-08-26T20:45:18.5313143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\__pycache__\elastic_distributed_sampler.cpython-39.pyc 2025-08-26T20:45:18.5316478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.5330200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\api.cpython-39.pyc 2025-08-26T20:45:18.5333719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\distributed.cpython-39.pyc 2025-08-26T20:45:18.5337254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\logging.cpython-39.pyc 2025-08-26T20:45:18.5345938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\log_level.cpython-39.pyc 2025-08-26T20:45:18.5349433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\store.cpython-39.pyc 2025-08-26T20:45:18.5353294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.5361464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\__pycache__\control_plane.cpython-39.pyc 2025-08-26T20:45:18.5365440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.5373893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\api.py 2025-08-26T20:45:18.5377481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\fully_sharded_data_parallel.py 2025-08-26T20:45:18.5381819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\sharded_grad_scaler.py 2025-08-26T20:45:18.5385501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\wrap.py 2025-08-26T20:45:18.5389194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_common_utils.py 2025-08-26T20:45:18.5398108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_debug_utils.py 2025-08-26T20:45:18.5402031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_dynamo_utils.py 2025-08-26T20:45:18.5405704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_exec_order_utils.py 2025-08-26T20:45:18.5409382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_flat_param.py 2025-08-26T20:45:18.5413885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fsdp_extensions.py 2025-08-26T20:45:18.5417382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_init_utils.py 2025-08-26T20:45:18.5420999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_limiter_utils.py 2025-08-26T20:45:18.5424853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_optim_utils.py 2025-08-26T20:45:18.5429130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_runtime_utils.py 2025-08-26T20:45:18.5433385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_shard_utils.py 2025-08-26T20:45:18.5437247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_state_dict_utils.py 2025-08-26T20:45:18.5441204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_trace_utils.py 2025-08-26T20:45:18.5444781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_traversal_utils.py 2025-08-26T20:45:18.5448535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_unshard_param_utils.py 2025-08-26T20:45:18.5452153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_wrap_utils.py 2025-08-26T20:45:18.5461269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__init__.py 2025-08-26T20:45:18.5469223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_api.py 2025-08-26T20:45:18.5473086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_collectives.py 2025-08-26T20:45:18.5476928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_common.py 2025-08-26T20:45:18.5488132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_init.py 2025-08-26T20:45:18.5491702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_param.py 2025-08-26T20:45:18.5495704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_param_group.py 2025-08-26T20:45:18.5500479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_state.py 2025-08-26T20:45:18.5504533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fully_shard.py 2025-08-26T20:45:18.5508165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__init__.py 2025-08-26T20:45:18.5515975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_api.cpython-39.pyc 2025-08-26T20:45:18.5519629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_collectives.cpython-39.pyc 2025-08-26T20:45:18.5523547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_common.cpython-39.pyc 2025-08-26T20:45:18.5533446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_init.cpython-39.pyc 2025-08-26T20:45:18.5537013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_param.cpython-39.pyc 2025-08-26T20:45:18.5540981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_param_group.cpython-39.pyc 2025-08-26T20:45:18.5544955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_state.cpython-39.pyc 2025-08-26T20:45:18.5549078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fully_shard.cpython-39.pyc 2025-08-26T20:45:18.5552870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.5561799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\api.cpython-39.pyc 2025-08-26T20:45:18.5565919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\fully_sharded_data_parallel.cpython-39.pyc 2025-08-26T20:45:18.5570357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\sharded_grad_scaler.cpython-39.pyc 2025-08-26T20:45:18.5580714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\wrap.cpython-39.pyc 2025-08-26T20:45:18.5584646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_common_utils.cpython-39.pyc 2025-08-26T20:45:18.5588427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_debug_utils.cpython-39.pyc 2025-08-26T20:45:18.5592120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_dynamo_utils.cpython-39.pyc 2025-08-26T20:45:18.5595633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_exec_order_utils.cpython-39.pyc 2025-08-26T20:45:18.5599140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_flat_param.cpython-39.pyc 2025-08-26T20:45:18.5603245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_fsdp_extensions.cpython-39.pyc 2025-08-26T20:45:18.5607155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_init_utils.cpython-39.pyc 2025-08-26T20:45:18.5611042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_limiter_utils.cpython-39.pyc 2025-08-26T20:45:18.5614833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_optim_utils.cpython-39.pyc 2025-08-26T20:45:18.5619012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_runtime_utils.cpython-39.pyc 2025-08-26T20:45:18.5623069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_shard_utils.cpython-39.pyc 2025-08-26T20:45:18.5626798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_state_dict_utils.cpython-39.pyc 2025-08-26T20:45:18.5637070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_trace_utils.cpython-39.pyc 2025-08-26T20:45:18.5640839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_traversal_utils.cpython-39.pyc 2025-08-26T20:45:18.5644381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_unshard_param_utils.cpython-39.pyc 2025-08-26T20:45:18.5648058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_wrap_utils.cpython-39.pyc 2025-08-26T20:45:18.5651506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.5659772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\launcher\api.py 2025-08-26T20:45:18.5663254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\launcher\__init__.py 2025-08-26T20:45:18.5670141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\launcher\__pycache__\api.cpython-39.pyc 2025-08-26T20:45:18.5673612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\launcher\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.5681353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\functional.py 2025-08-26T20:45:18.5684686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\__init__.py 2025-08-26T20:45:18.5691866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\api\remote_module.py 2025-08-26T20:45:18.5695472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\api\__init__.py 2025-08-26T20:45:18.5702460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\api\__pycache__\remote_module.cpython-39.pyc 2025-08-26T20:45:18.5706817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\api\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.5714738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\instantiator.py 2025-08-26T20:45:18.5718293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\__init__.py 2025-08-26T20:45:18.5724141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\templates\remote_module_template.py 2025-08-26T20:45:18.5727748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\templates\__init__.py 2025-08-26T20:45:18.5733823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\templates\__pycache__\remote_module_template.cpython-39.pyc 2025-08-26T20:45:18.5737644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\templates\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.5752092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\__pycache__\instantiator.cpython-39.pyc 2025-08-26T20:45:18.5755576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.5769560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\__pycache__\functional.cpython-39.pyc 2025-08-26T20:45:18.5773211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.5781354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\apply_optimizer_in_backward.py 2025-08-26T20:45:18.5784666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_adadelta.py 2025-08-26T20:45:18.5788141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_adagrad.py 2025-08-26T20:45:18.5798160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_adam.py 2025-08-26T20:45:18.5801845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_adamax.py 2025-08-26T20:45:18.5805298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_adamw.py 2025-08-26T20:45:18.5808918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_rmsprop.py 2025-08-26T20:45:18.5812678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_rprop.py 2025-08-26T20:45:18.5816638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_sgd.py 2025-08-26T20:45:18.5819937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\named_optimizer.py 2025-08-26T20:45:18.5823413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\optimizer.py 2025-08-26T20:45:18.5827028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\post_localSGD_optimizer.py 2025-08-26T20:45:18.5830401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\utils.py 2025-08-26T20:45:18.5833846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\zero_redundancy_optimizer.py 2025-08-26T20:45:18.5838028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\zero_redundancy_optimizer.pyi 2025-08-26T20:45:18.5841972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\_deprecation_warning.py 2025-08-26T20:45:18.5845344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__init__.py 2025-08-26T20:45:18.5853724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\apply_optimizer_in_backward.cpython-39.pyc 2025-08-26T20:45:18.5857721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_adadelta.cpython-39.pyc 2025-08-26T20:45:18.5861310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_adagrad.cpython-39.pyc 2025-08-26T20:45:18.5871834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_adam.cpython-39.pyc 2025-08-26T20:45:18.5875721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_adamax.cpython-39.pyc 2025-08-26T20:45:18.5879732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_adamw.cpython-39.pyc 2025-08-26T20:45:18.5883306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_rmsprop.cpython-39.pyc 2025-08-26T20:45:18.5887204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_rprop.cpython-39.pyc 2025-08-26T20:45:18.5890968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_sgd.cpython-39.pyc 2025-08-26T20:45:18.5894686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\named_optimizer.cpython-39.pyc 2025-08-26T20:45:18.5898580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\optimizer.cpython-39.pyc 2025-08-26T20:45:18.5902886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\post_localSGD_optimizer.cpython-39.pyc 2025-08-26T20:45:18.5907185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:18.5910740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\zero_redundancy_optimizer.cpython-39.pyc 2025-08-26T20:45:18.5915484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\_deprecation_warning.cpython-39.pyc 2025-08-26T20:45:18.5919265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.5935115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\microbatch.py 2025-08-26T20:45:18.5938797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\schedules.py 2025-08-26T20:45:18.5943947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\stage.py 2025-08-26T20:45:18.5947801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_backward.py 2025-08-26T20:45:18.5959870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_debug.py 2025-08-26T20:45:18.5963401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_IR.py 2025-08-26T20:45:18.5967710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_schedule_visualizer.py 2025-08-26T20:45:18.5971343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_unflatten.py 2025-08-26T20:45:18.5974759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_utils.py 2025-08-26T20:45:18.5978558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__init__.py 2025-08-26T20:45:18.5986187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\microbatch.cpython-39.pyc 2025-08-26T20:45:18.5990185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\schedules.cpython-39.pyc 2025-08-26T20:45:18.5994295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\stage.cpython-39.pyc 2025-08-26T20:45:18.6005601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_backward.cpython-39.pyc 2025-08-26T20:45:18.6009281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_debug.cpython-39.pyc 2025-08-26T20:45:18.6013117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_IR.cpython-39.pyc 2025-08-26T20:45:18.6017084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_schedule_visualizer.cpython-39.pyc 2025-08-26T20:45:18.6020829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_unflatten.cpython-39.pyc 2025-08-26T20:45:18.6024641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_utils.cpython-39.pyc 2025-08-26T20:45:18.6028750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6036461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\api.py 2025-08-26T20:45:18.6040416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\backend_registry.py 2025-08-26T20:45:18.6043887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\constants.py 2025-08-26T20:45:18.6047681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\functions.py 2025-08-26T20:45:18.6058778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\internal.py 2025-08-26T20:45:18.6061898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\options.py 2025-08-26T20:45:18.6065161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\rref_proxy.py 2025-08-26T20:45:18.6068716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\server_process_global_profiler.py 2025-08-26T20:45:18.6072276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\_utils.py 2025-08-26T20:45:18.6075764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__init__.py 2025-08-26T20:45:18.6082863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\_testing\faulty_agent_backend_registry.py 2025-08-26T20:45:18.6087453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\_testing\__init__.py 2025-08-26T20:45:18.6094295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\_testing\__pycache__\faulty_agent_backend_registry.cpython-39.pyc 2025-08-26T20:45:18.6097856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\_testing\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6105577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\api.cpython-39.pyc 2025-08-26T20:45:18.6109327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\backend_registry.cpython-39.pyc 2025-08-26T20:45:18.6112952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\constants.cpython-39.pyc 2025-08-26T20:45:18.6124844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\functions.cpython-39.pyc 2025-08-26T20:45:18.6128431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\internal.cpython-39.pyc 2025-08-26T20:45:18.6132070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\options.cpython-39.pyc 2025-08-26T20:45:18.6135682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\rref_proxy.cpython-39.pyc 2025-08-26T20:45:18.6139289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\server_process_global_profiler.cpython-39.pyc 2025-08-26T20:45:18.6142676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\_utils.cpython-39.pyc 2025-08-26T20:45:18.6146055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6154278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\device_mesh.py 2025-08-26T20:45:18.6157808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\placement_types.py 2025-08-26T20:45:18.6161411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_api.py 2025-08-26T20:45:18.6165438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_collective_utils.py 2025-08-26T20:45:18.6177556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_dispatch.py 2025-08-26T20:45:18.6181463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_dtensor_spec.py 2025-08-26T20:45:18.6185002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_op_schema.py 2025-08-26T20:45:18.6188524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_random.py 2025-08-26T20:45:18.6192157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_redistribute.py 2025-08-26T20:45:18.6195817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_sharding_prop.py 2025-08-26T20:45:18.6199529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_shards_wrapper.py 2025-08-26T20:45:18.6202987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_tp_conv.py 2025-08-26T20:45:18.6206347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_utils.py 2025-08-26T20:45:18.6209713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__init__.py 2025-08-26T20:45:18.6216320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\_comm_mode.py 2025-08-26T20:45:18.6220215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\_op_coverage.py 2025-08-26T20:45:18.6223944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\_visualize_sharding.py 2025-08-26T20:45:18.6227431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\__init__.py 2025-08-26T20:45:18.6242666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\__pycache__\_comm_mode.cpython-39.pyc 2025-08-26T20:45:18.6246681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\__pycache__\_op_coverage.cpython-39.pyc 2025-08-26T20:45:18.6250399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\__pycache__\_visualize_sharding.cpython-39.pyc 2025-08-26T20:45:18.6261698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6269713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\_attention.py 2025-08-26T20:45:18.6273996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\_func_map.py 2025-08-26T20:45:18.6278165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\_register_sharding.py 2025-08-26T20:45:18.6289666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\_tp_transform.py 2025-08-26T20:45:18.6293309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__init__.py 2025-08-26T20:45:18.6300485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__pycache__\_attention.cpython-39.pyc 2025-08-26T20:45:18.6304531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__pycache__\_func_map.cpython-39.pyc 2025-08-26T20:45:18.6308161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__pycache__\_register_sharding.cpython-39.pyc 2025-08-26T20:45:18.6319698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__pycache__\_tp_transform.cpython-39.pyc 2025-08-26T20:45:18.6323411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6331484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\api.py 2025-08-26T20:45:18.6335289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\ddp.py 2025-08-26T20:45:18.6338768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\fsdp.py 2025-08-26T20:45:18.6342150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\input_reshard.py 2025-08-26T20:45:18.6345636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\loss.py 2025-08-26T20:45:18.6349527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\style.py 2025-08-26T20:45:18.6361063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\_data_parallel_utils.py 2025-08-26T20:45:18.6364562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__init__.py 2025-08-26T20:45:18.6371928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\api.cpython-39.pyc 2025-08-26T20:45:18.6375874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\ddp.cpython-39.pyc 2025-08-26T20:45:18.6379431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\fsdp.cpython-39.pyc 2025-08-26T20:45:18.6391132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\input_reshard.cpython-39.pyc 2025-08-26T20:45:18.6394911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\loss.cpython-39.pyc 2025-08-26T20:45:18.6398397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\style.cpython-39.pyc 2025-08-26T20:45:18.6402327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\_data_parallel_utils.cpython-39.pyc 2025-08-26T20:45:18.6438335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6446608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\utils.py 2025-08-26T20:45:18.6450621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_common_rules.py 2025-08-26T20:45:18.6454166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_conv_ops.py 2025-08-26T20:45:18.6457862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_einsum_strategy.py 2025-08-26T20:45:18.6467465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_embedding_ops.py 2025-08-26T20:45:18.6471228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_math_ops.py 2025-08-26T20:45:18.6475011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_matrix_ops.py 2025-08-26T20:45:18.6478876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_pointwise_ops.py 2025-08-26T20:45:18.6482494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_random_ops.py 2025-08-26T20:45:18.6486224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_tensor_ops.py 2025-08-26T20:45:18.6491022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_view_ops.py 2025-08-26T20:45:18.6495185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__init__.py 2025-08-26T20:45:18.6503337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:18.6507005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_common_rules.cpython-39.pyc 2025-08-26T20:45:18.6510513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_conv_ops.cpython-39.pyc 2025-08-26T20:45:18.6523570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_einsum_strategy.cpython-39.pyc 2025-08-26T20:45:18.6527211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_embedding_ops.cpython-39.pyc 2025-08-26T20:45:18.6530742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_math_ops.cpython-39.pyc 2025-08-26T20:45:18.6534581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_matrix_ops.cpython-39.pyc 2025-08-26T20:45:18.6538287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_pointwise_ops.cpython-39.pyc 2025-08-26T20:45:18.6541767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_random_ops.cpython-39.pyc 2025-08-26T20:45:18.6545318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_tensor_ops.cpython-39.pyc 2025-08-26T20:45:18.6548992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_view_ops.cpython-39.pyc 2025-08-26T20:45:18.6552705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6561465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\device_mesh.cpython-39.pyc 2025-08-26T20:45:18.6565144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\placement_types.cpython-39.pyc 2025-08-26T20:45:18.6568995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_api.cpython-39.pyc 2025-08-26T20:45:18.6581331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_collective_utils.cpython-39.pyc 2025-08-26T20:45:18.6584920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_dispatch.cpython-39.pyc 2025-08-26T20:45:18.6588918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_dtensor_spec.cpython-39.pyc 2025-08-26T20:45:18.6592391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_op_schema.cpython-39.pyc 2025-08-26T20:45:18.6596007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_random.cpython-39.pyc 2025-08-26T20:45:18.6599994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_redistribute.cpython-39.pyc 2025-08-26T20:45:18.6603550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_sharding_prop.cpython-39.pyc 2025-08-26T20:45:18.6607070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_shards_wrapper.cpython-39.pyc 2025-08-26T20:45:18.6610503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_tp_conv.cpython-39.pyc 2025-08-26T20:45:18.6613982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_utils.cpython-39.pyc 2025-08-26T20:45:18.6617589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6626390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\checkpoint_activation.py 2025-08-26T20:45:18.6629716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\contract.py 2025-08-26T20:45:18.6633065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\replicate.py 2025-08-26T20:45:18.6636600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\replicate_with_fsdp.py 2025-08-26T20:45:18.6648838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__init__.py 2025-08-26T20:45:18.6655622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\fsdp\fully_shard.py 2025-08-26T20:45:18.6659036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\fsdp\__init__.py 2025-08-26T20:45:18.6665977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\fsdp\__pycache__\fully_shard.cpython-39.pyc 2025-08-26T20:45:18.6669667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\fsdp\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6677473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__pycache__\checkpoint_activation.cpython-39.pyc 2025-08-26T20:45:18.6681074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__pycache__\contract.cpython-39.pyc 2025-08-26T20:45:18.6684484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__pycache__\replicate.cpython-39.pyc 2025-08-26T20:45:18.6697129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__pycache__\replicate_with_fsdp.cpython-39.pyc 2025-08-26T20:45:18.6700830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6708439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\api.py 2025-08-26T20:45:18.6711988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\common_op_utils.py 2025-08-26T20:45:18.6715326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\metadata.py 2025-08-26T20:45:18.6718655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\op_registry_utils.py 2025-08-26T20:45:18.6722025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharder.py 2025-08-26T20:45:18.6734831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\_utils.py 2025-08-26T20:45:18.6738221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__init__.py 2025-08-26T20:45:18.6745136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\checkpoint\__init__.py 2025-08-26T20:45:18.6751974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\checkpoint\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6759539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_optim\api.py 2025-08-26T20:45:18.6762831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_optim\__init__.py 2025-08-26T20:45:18.6769703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_optim\__pycache__\api.cpython-39.pyc 2025-08-26T20:45:18.6773351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_optim\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6781535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\api.py 2025-08-26T20:45:18.6785640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\logger.py 2025-08-26T20:45:18.6789021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\logging_handlers.py 2025-08-26T20:45:18.6792298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\metadata.py 2025-08-26T20:45:18.6795640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\reshard.py 2025-08-26T20:45:18.6807808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\shard.py 2025-08-26T20:45:18.6811344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\utils.py 2025-08-26T20:45:18.6814713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__init__.py 2025-08-26T20:45:18.6821860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\binary_cmp.py 2025-08-26T20:45:18.6825520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\init.py 2025-08-26T20:45:18.6828848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\misc_ops.py 2025-08-26T20:45:18.6832120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\tensor_ops.py 2025-08-26T20:45:18.6835488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\_common.py 2025-08-26T20:45:18.6847665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__init__.py 2025-08-26T20:45:18.6854859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\binary_cmp.cpython-39.pyc 2025-08-26T20:45:18.6858547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\init.cpython-39.pyc 2025-08-26T20:45:18.6862335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\misc_ops.cpython-39.pyc 2025-08-26T20:45:18.6874446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\tensor_ops.cpython-39.pyc 2025-08-26T20:45:18.6878235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\_common.cpython-39.pyc 2025-08-26T20:45:18.6881722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6889616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\api.cpython-39.pyc 2025-08-26T20:45:18.6893297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\logger.cpython-39.pyc 2025-08-26T20:45:18.6897057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\logging_handlers.cpython-39.pyc 2025-08-26T20:45:18.6909446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\metadata.cpython-39.pyc 2025-08-26T20:45:18.6913010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\reshard.cpython-39.pyc 2025-08-26T20:45:18.6916478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\shard.cpython-39.pyc 2025-08-26T20:45:18.6919994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:18.6923458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6931640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_plan\api.py 2025-08-26T20:45:18.6935126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_plan\__init__.py 2025-08-26T20:45:18.6942192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_plan\__pycache__\api.cpython-39.pyc 2025-08-26T20:45:18.6945744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_plan\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6953206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\api.py 2025-08-26T20:45:18.6956739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec.py 2025-08-26T20:45:18.6960155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\_internals.py 2025-08-26T20:45:18.6963827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\__init__.py 2025-08-26T20:45:18.6980441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\embedding.py 2025-08-26T20:45:18.6983977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\embedding_bag.py 2025-08-26T20:45:18.6987585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\_common.py 2025-08-26T20:45:18.6999922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__init__.py 2025-08-26T20:45:18.7006884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__pycache__\embedding.cpython-39.pyc 2025-08-26T20:45:18.7010472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__pycache__\embedding_bag.cpython-39.pyc 2025-08-26T20:45:18.7014561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__pycache__\_common.cpython-39.pyc 2025-08-26T20:45:18.7026266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.7033902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\__pycache__\api.cpython-39.pyc 2025-08-26T20:45:18.7037479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\__pycache__\chunk_sharding_spec.cpython-39.pyc 2025-08-26T20:45:18.7041035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\__pycache__\_internals.cpython-39.pyc 2025-08-26T20:45:18.7053255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.7061064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\api.cpython-39.pyc 2025-08-26T20:45:18.7064945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\common_op_utils.cpython-39.pyc 2025-08-26T20:45:18.7068483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\metadata.cpython-39.pyc 2025-08-26T20:45:18.7081716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\op_registry_utils.cpython-39.pyc 2025-08-26T20:45:18.7085387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\sharder.cpython-39.pyc 2025-08-26T20:45:18.7089458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\_utils.cpython-39.pyc 2025-08-26T20:45:18.7093307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.7101888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_sharded_tensor\__init__.py 2025-08-26T20:45:18.7108768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_sharded_tensor\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.7116355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_sharding_spec\__init__.py 2025-08-26T20:45:18.7123494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_sharding_spec\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.7132254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_symmetric_memory\_nvshmem_triton.py 2025-08-26T20:45:18.7136159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_symmetric_memory\__init__.py 2025-08-26T20:45:18.7144193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_symmetric_memory\__pycache__\_nvshmem_triton.cpython-39.pyc 2025-08-26T20:45:18.7148041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_symmetric_memory\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.7156133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\api.py 2025-08-26T20:45:18.7159607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\placement_types.py 2025-08-26T20:45:18.7163310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\__init__.py 2025-08-26T20:45:18.7170373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\__pycache__\api.cpython-39.pyc 2025-08-26T20:45:18.7174046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\__pycache__\placement_types.cpython-39.pyc 2025-08-26T20:45:18.7178047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.7194509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\common_utils.py 2025-08-26T20:45:18.7198043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\fake_collectives.py 2025-08-26T20:45:18.7201351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\fsdp2_mem_tracker.py 2025-08-26T20:45:18.7205052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\ilp_utils.py 2025-08-26T20:45:18.7218307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\memory_tracker.py 2025-08-26T20:45:18.7221971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\mem_tracker.py 2025-08-26T20:45:18.7225619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\mod_tracker.py 2025-08-26T20:45:18.7228888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\runtime_estimator.py 2025-08-26T20:45:18.7232498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\sac_estimator.py 2025-08-26T20:45:18.7236186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\sac_ilp.py 2025-08-26T20:45:18.7239577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__init__.py 2025-08-26T20:45:18.7247609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\common_utils.cpython-39.pyc 2025-08-26T20:45:18.7251230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\fake_collectives.cpython-39.pyc 2025-08-26T20:45:18.7254709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\fsdp2_mem_tracker.cpython-39.pyc 2025-08-26T20:45:18.7267360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\ilp_utils.cpython-39.pyc 2025-08-26T20:45:18.7270923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\memory_tracker.cpython-39.pyc 2025-08-26T20:45:18.7274348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\mem_tracker.cpython-39.pyc 2025-08-26T20:45:18.7278459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\mod_tracker.cpython-39.pyc 2025-08-26T20:45:18.7282080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\runtime_estimator.cpython-39.pyc 2025-08-26T20:45:18.7285691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\sac_estimator.cpython-39.pyc 2025-08-26T20:45:18.7289401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\sac_ilp.cpython-39.pyc 2025-08-26T20:45:18.7292940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.7301544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\argparse_util.cpython-39.pyc 2025-08-26T20:45:18.7305217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\c10d_logger.cpython-39.pyc 2025-08-26T20:45:18.7308920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\collective_utils.cpython-39.pyc 2025-08-26T20:45:18.7321083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\constants.cpython-39.pyc 2025-08-26T20:45:18.7324662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\device_mesh.cpython-39.pyc 2025-08-26T20:45:18.7328508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\distributed_c10d.cpython-39.pyc 2025-08-26T20:45:18.7333261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\launch.cpython-39.pyc 2025-08-26T20:45:18.7336895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\logging_handlers.cpython-39.pyc 2025-08-26T20:45:18.7340462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\remote_device.cpython-39.pyc 2025-08-26T20:45:18.7344017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\rendezvous.cpython-39.pyc 2025-08-26T20:45:18.7347407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\run.cpython-39.pyc 2025-08-26T20:45:18.7351111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:18.7354669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_checkpointable.cpython-39.pyc 2025-08-26T20:45:18.7358239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_composable_state.cpython-39.pyc 2025-08-26T20:45:18.7362159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_dist2.cpython-39.pyc 2025-08-26T20:45:18.7365961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_functional_collectives.cpython-39.pyc 2025-08-26T20:45:18.7369851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_functional_collectives_impl.cpython-39.pyc 2025-08-26T20:45:18.7382391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_serialization.cpython-39.pyc 2025-08-26T20:45:18.7386074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_state_dict_utils.cpython-39.pyc 2025-08-26T20:45:18.7389552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.7399067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\bernoulli.py 2025-08-26T20:45:18.7402582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\beta.py 2025-08-26T20:45:18.7405999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\binomial.py 2025-08-26T20:45:18.7409314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\categorical.py 2025-08-26T20:45:18.7421969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\cauchy.py 2025-08-26T20:45:18.7425323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\chi2.py 2025-08-26T20:45:18.7428656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\constraints.py 2025-08-26T20:45:18.7432273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\constraint_registry.py 2025-08-26T20:45:18.7435803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\continuous_bernoulli.py 2025-08-26T20:45:18.7439167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\dirichlet.py 2025-08-26T20:45:18.7442730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\distribution.py 2025-08-26T20:45:18.7446689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\exponential.py 2025-08-26T20:45:18.7450171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\exp_family.py 2025-08-26T20:45:18.7453630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\fishersnedecor.py 2025-08-26T20:45:18.7457067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\gamma.py 2025-08-26T20:45:18.7460762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\generalized_pareto.py 2025-08-26T20:45:18.7464459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\geometric.py 2025-08-26T20:45:18.7467873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\gumbel.py 2025-08-26T20:45:18.7471278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\half_cauchy.py 2025-08-26T20:45:18.7474912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\half_normal.py 2025-08-26T20:45:18.7478437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\independent.py 2025-08-26T20:45:18.7481835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\inverse_gamma.py 2025-08-26T20:45:18.7494357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\kl.py 2025-08-26T20:45:18.7498022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\kumaraswamy.py 2025-08-26T20:45:18.7501572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\laplace.py 2025-08-26T20:45:18.7504891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\lkj_cholesky.py 2025-08-26T20:45:18.7508551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\logistic_normal.py 2025-08-26T20:45:18.7512029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\log_normal.py 2025-08-26T20:45:18.7515562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\lowrank_multivariate_normal.py 2025-08-26T20:45:18.7519322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\mixture_same_family.py 2025-08-26T20:45:18.7522692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\multinomial.py 2025-08-26T20:45:18.7526720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\multivariate_normal.py 2025-08-26T20:45:18.7539956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\negative_binomial.py 2025-08-26T20:45:18.7543168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\normal.py 2025-08-26T20:45:18.7546895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\one_hot_categorical.py 2025-08-26T20:45:18.7550226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\pareto.py 2025-08-26T20:45:18.7553563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\poisson.py 2025-08-26T20:45:18.7557151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\relaxed_bernoulli.py 2025-08-26T20:45:18.7560524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\relaxed_categorical.py 2025-08-26T20:45:18.7563879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\studentT.py 2025-08-26T20:45:18.7567352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\transformed_distribution.py 2025-08-26T20:45:18.7570749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\transforms.py 2025-08-26T20:45:18.7574600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\uniform.py 2025-08-26T20:45:18.7577997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\utils.py 2025-08-26T20:45:18.7616070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\von_mises.py 2025-08-26T20:45:18.8064417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\weibull.py 2025-08-26T20:45:18.8068123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\wishart.py 2025-08-26T20:45:18.8071816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__init__.py 2025-08-26T20:45:18.8080786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\bernoulli.cpython-39.pyc 2025-08-26T20:45:18.8084391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\beta.cpython-39.pyc 2025-08-26T20:45:18.8088107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\binomial.cpython-39.pyc 2025-08-26T20:45:18.8096916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\categorical.cpython-39.pyc 2025-08-26T20:45:18.8100514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\cauchy.cpython-39.pyc 2025-08-26T20:45:18.8104409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\chi2.cpython-39.pyc 2025-08-26T20:45:18.8108417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\constraints.cpython-39.pyc 2025-08-26T20:45:18.8112307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\constraint_registry.cpython-39.pyc 2025-08-26T20:45:18.8116005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\continuous_bernoulli.cpython-39.pyc 2025-08-26T20:45:18.8119582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\dirichlet.cpython-39.pyc 2025-08-26T20:45:18.8123125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\distribution.cpython-39.pyc 2025-08-26T20:45:18.8126938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\exponential.cpython-39.pyc 2025-08-26T20:45:18.8130806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\exp_family.cpython-39.pyc 2025-08-26T20:45:18.8134691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\fishersnedecor.cpython-39.pyc 2025-08-26T20:45:18.8138120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\gamma.cpython-39.pyc 2025-08-26T20:45:18.8141837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\generalized_pareto.cpython-39.pyc 2025-08-26T20:45:18.8145319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\geometric.cpython-39.pyc 2025-08-26T20:45:18.8155045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\gumbel.cpython-39.pyc 2025-08-26T20:45:18.8159125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\half_cauchy.cpython-39.pyc 2025-08-26T20:45:18.8162990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\half_normal.cpython-39.pyc 2025-08-26T20:45:18.8166422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\independent.cpython-39.pyc 2025-08-26T20:45:18.8169919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\inverse_gamma.cpython-39.pyc 2025-08-26T20:45:18.8173372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\kl.cpython-39.pyc 2025-08-26T20:45:18.8177196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\kumaraswamy.cpython-39.pyc 2025-08-26T20:45:18.8181216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\laplace.cpython-39.pyc 2025-08-26T20:45:18.8189450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\lkj_cholesky.cpython-39.pyc 2025-08-26T20:45:18.8193035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\logistic_normal.cpython-39.pyc 2025-08-26T20:45:18.8196508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\log_normal.cpython-39.pyc 2025-08-26T20:45:18.8200066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\lowrank_multivariate_normal.cpython-39.pyc 2025-08-26T20:45:18.8203626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\mixture_same_family.cpython-39.pyc 2025-08-26T20:45:18.8207277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\multinomial.cpython-39.pyc 2025-08-26T20:45:18.8210783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\multivariate_normal.cpython-39.pyc 2025-08-26T20:45:18.8214370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\negative_binomial.cpython-39.pyc 2025-08-26T20:45:18.8222912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\normal.cpython-39.pyc 2025-08-26T20:45:18.8226384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\one_hot_categorical.cpython-39.pyc 2025-08-26T20:45:18.8229782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\pareto.cpython-39.pyc 2025-08-26T20:45:18.8233266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\poisson.cpython-39.pyc 2025-08-26T20:45:18.8237112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\relaxed_bernoulli.cpython-39.pyc 2025-08-26T20:45:18.8240630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\relaxed_categorical.cpython-39.pyc 2025-08-26T20:45:18.8244009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\studentT.cpython-39.pyc 2025-08-26T20:45:18.8248012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\transformed_distribution.cpython-39.pyc 2025-08-26T20:45:18.8256424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\transforms.cpython-39.pyc 2025-08-26T20:45:18.8260651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\uniform.cpython-39.pyc 2025-08-26T20:45:18.8264285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:18.8267830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\von_mises.cpython-39.pyc 2025-08-26T20:45:18.8271360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\weibull.cpython-39.pyc 2025-08-26T20:45:18.8274853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\wishart.cpython-39.pyc 2025-08-26T20:45:18.8278489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.8287637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\custom_obj.py 2025-08-26T20:45:18.8291070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\custom_ops.py 2025-08-26T20:45:18.8294502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\decomp_utils.py 2025-08-26T20:45:18.8297763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\dynamic_shapes.py 2025-08-26T20:45:18.8306268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\exported_program.py 2025-08-26T20:45:18.8310125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\graph_signature.py 2025-08-26T20:45:18.8314147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\unflatten.py 2025-08-26T20:45:18.8318352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_draft_export.py 2025-08-26T20:45:18.8322029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_remove_auto_functionalized_pass.py 2025-08-26T20:45:18.8325501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_remove_effect_tokens_pass.py 2025-08-26T20:45:18.8328985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_safeguard.py 2025-08-26T20:45:18.8332350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_swap.py 2025-08-26T20:45:18.8335983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_trace.py 2025-08-26T20:45:18.8339990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_tree_utils.py 2025-08-26T20:45:18.8343524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_unlift.py 2025-08-26T20:45:18.8347210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_wrapper_utils.py 2025-08-26T20:45:18.8350595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__init__.py 2025-08-26T20:45:18.8357962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\experimental\_utils.py 2025-08-26T20:45:18.8361831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\experimental\__init__.py 2025-08-26T20:45:18.8369288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\experimental\__pycache__\_utils.cpython-39.pyc 2025-08-26T20:45:18.8372895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\experimental\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.8380817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\passes\__init__.py 2025-08-26T20:45:18.8387611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\passes\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.8395165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\constants.py 2025-08-26T20:45:18.8398668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\_package.py 2025-08-26T20:45:18.8402185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\_package_weights.py 2025-08-26T20:45:18.8406084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\__init__.py 2025-08-26T20:45:18.8418021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\__pycache__\constants.cpython-39.pyc 2025-08-26T20:45:18.8421632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\__pycache__\_package.cpython-39.pyc 2025-08-26T20:45:18.8425175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\__pycache__\_package_weights.cpython-39.pyc 2025-08-26T20:45:18.8434919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.8448001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\custom_obj.cpython-39.pyc 2025-08-26T20:45:18.8452025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\custom_ops.cpython-39.pyc 2025-08-26T20:45:18.8455851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\decomp_utils.cpython-39.pyc 2025-08-26T20:45:18.8464285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\dynamic_shapes.cpython-39.pyc 2025-08-26T20:45:18.8468439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\exported_program.cpython-39.pyc 2025-08-26T20:45:18.8472239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\graph_signature.cpython-39.pyc 2025-08-26T20:45:18.8475733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\unflatten.cpython-39.pyc 2025-08-26T20:45:18.8479795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_draft_export.cpython-39.pyc 2025-08-26T20:45:18.8483459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_remove_auto_functionalized_pass.cpython-39.pyc 2025-08-26T20:45:18.8487475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_remove_effect_tokens_pass.cpython-39.pyc 2025-08-26T20:45:18.8491667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_safeguard.cpython-39.pyc 2025-08-26T20:45:18.8495417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_swap.cpython-39.pyc 2025-08-26T20:45:18.8498869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_trace.cpython-39.pyc 2025-08-26T20:45:18.8502769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_tree_utils.cpython-39.pyc 2025-08-26T20:45:18.8506305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_unlift.cpython-39.pyc 2025-08-26T20:45:18.8509880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_wrapper_utils.cpython-39.pyc 2025-08-26T20:45:18.8518492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.8527162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fft\__init__.py 2025-08-26T20:45:18.8534480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fft\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.8542219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\func\__init__.py 2025-08-26T20:45:18.8549120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\func\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.8556657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\futures\__init__.py 2025-08-26T20:45:18.8563922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\futures\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.8572098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\annotate.py 2025-08-26T20:45:18.8575806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\config.py 2025-08-26T20:45:18.8579804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\graph.py 2025-08-26T20:45:18.8583498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\graph_module.py 2025-08-26T20:45:18.8587729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\immutable_collections.py 2025-08-26T20:45:18.8598018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\interpreter.py 2025-08-26T20:45:18.8601586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\node.py 2025-08-26T20:45:18.8605408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\operator_schemas.py 2025-08-26T20:45:18.8609137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\proxy.py 2025-08-26T20:45:18.8612765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\subgraph_rewriter.py 2025-08-26T20:45:18.8616278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\tensor_type.py 2025-08-26T20:45:18.8619923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\traceback.py 2025-08-26T20:45:18.8623780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_compatibility.py 2025-08-26T20:45:18.8627235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_graph_pickler.py 2025-08-26T20:45:18.8630740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_lazy_graph_module.py 2025-08-26T20:45:18.8634250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_pytree.py 2025-08-26T20:45:18.8637606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_symbolic_trace.py 2025-08-26T20:45:18.8641769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_utils.py 2025-08-26T20:45:18.8645398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__init__.py 2025-08-26T20:45:18.8652776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\accelerator_partitioner.py 2025-08-26T20:45:18.8656615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\const_fold.py 2025-08-26T20:45:18.8660030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\debug.py 2025-08-26T20:45:18.8668736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\graph_gradual_typechecker.py 2025-08-26T20:45:18.8672291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\merge_matmul.py 2025-08-26T20:45:18.8675670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\meta_tracer.py 2025-08-26T20:45:18.8679693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\normalize.py 2025-08-26T20:45:18.8682463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\optimization.py 2025-08-26T20:45:18.8685894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\partitioner_utils.py 2025-08-26T20:45:18.8689306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\proxy_tensor.py 2025-08-26T20:45:18.8693383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\recording.py 2025-08-26T20:45:18.8697106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\refinement_types.py 2025-08-26T20:45:18.8700552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\rewriter.py 2025-08-26T20:45:18.8703897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\schema_type_annotation.py 2025-08-26T20:45:18.8707241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\symbolic_shapes.py 2025-08-26T20:45:18.8712343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\sym_node.py 2025-08-26T20:45:18.8716055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unify_refinements.py 2025-08-26T20:45:18.8719502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\validator.py 2025-08-26T20:45:18.8723255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\_backward_state.py 2025-08-26T20:45:18.8726853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\_config.py 2025-08-26T20:45:18.8730144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\_constant_symnode.py 2025-08-26T20:45:18.8738530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\_dynamism.py 2025-08-26T20:45:18.8741847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__init__.py 2025-08-26T20:45:18.8765209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\constraint.py 2025-08-26T20:45:18.8766204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\constraint_generator.py 2025-08-26T20:45:18.8767233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\constraint_transformation.py 2025-08-26T20:45:18.8768011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\operation.py 2025-08-26T20:45:18.8769380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\transform_to_z3.py 2025-08-26T20:45:18.8773139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\util.py 2025-08-26T20:45:18.8776530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\z3_types.py 2025-08-26T20:45:18.8779870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__init__.py 2025-08-26T20:45:18.8786595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\constraint.cpython-39.pyc 2025-08-26T20:45:18.8790400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\constraint_generator.cpython-39.pyc 2025-08-26T20:45:18.8794387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\constraint_transformation.cpython-39.pyc 2025-08-26T20:45:18.8803280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\operation.cpython-39.pyc 2025-08-26T20:45:18.8806968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\transform_to_z3.cpython-39.pyc 2025-08-26T20:45:18.8810580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\util.cpython-39.pyc 2025-08-26T20:45:18.8814133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\z3_types.cpython-39.pyc 2025-08-26T20:45:18.8817622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.8825698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\core.py 2025-08-26T20:45:18.8829129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\dispatch.py 2025-08-26T20:45:18.8832433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\match.py 2025-08-26T20:45:18.8836049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\more.py 2025-08-26T20:45:18.8839676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\unification_tools.py 2025-08-26T20:45:18.8848330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\utils.py 2025-08-26T20:45:18.8852021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\variable.py 2025-08-26T20:45:18.8855348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__init__.py 2025-08-26T20:45:18.8862289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\conflict.py 2025-08-26T20:45:18.8866025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\core.py 2025-08-26T20:45:18.8869277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\dispatcher.py 2025-08-26T20:45:18.8872680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\utils.py 2025-08-26T20:45:18.8876095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\variadic.py 2025-08-26T20:45:18.8884421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__init__.py 2025-08-26T20:45:18.8891588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\conflict.cpython-39.pyc 2025-08-26T20:45:18.8895060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\core.cpython-39.pyc 2025-08-26T20:45:18.8898642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\dispatcher.cpython-39.pyc 2025-08-26T20:45:18.8906127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:18.8909603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\variadic.cpython-39.pyc 2025-08-26T20:45:18.8913082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.8920837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\core.cpython-39.pyc 2025-08-26T20:45:18.8924411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\dispatch.cpython-39.pyc 2025-08-26T20:45:18.8927989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\match.cpython-39.pyc 2025-08-26T20:45:18.8935464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\more.cpython-39.pyc 2025-08-26T20:45:18.8939077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\unification_tools.cpython-39.pyc 2025-08-26T20:45:18.8942507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:18.8945988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\variable.cpython-39.pyc 2025-08-26T20:45:18.8949461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.8957672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\accelerator_partitioner.cpython-39.pyc 2025-08-26T20:45:18.8961383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\const_fold.cpython-39.pyc 2025-08-26T20:45:18.8965586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\debug.cpython-39.pyc 2025-08-26T20:45:18.8973380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\graph_gradual_typechecker.cpython-39.pyc 2025-08-26T20:45:18.8977142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\merge_matmul.cpython-39.pyc 2025-08-26T20:45:18.8980596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\meta_tracer.cpython-39.pyc 2025-08-26T20:45:18.8984019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\normalize.cpython-39.pyc 2025-08-26T20:45:18.8987500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\optimization.cpython-39.pyc 2025-08-26T20:45:18.8991860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\partitioner_utils.cpython-39.pyc 2025-08-26T20:45:18.8995401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\proxy_tensor.cpython-39.pyc 2025-08-26T20:45:18.8999202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\recording.cpython-39.pyc 2025-08-26T20:45:18.9002747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\refinement_types.cpython-39.pyc 2025-08-26T20:45:18.9006294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\rewriter.cpython-39.pyc 2025-08-26T20:45:18.9009774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\schema_type_annotation.cpython-39.pyc 2025-08-26T20:45:18.9013258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\symbolic_shapes.cpython-39.pyc 2025-08-26T20:45:18.9018466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\sym_node.cpython-39.pyc 2025-08-26T20:45:18.9026289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\unify_refinements.cpython-39.pyc 2025-08-26T20:45:18.9029837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\validator.cpython-39.pyc 2025-08-26T20:45:18.9033715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\_backward_state.cpython-39.pyc 2025-08-26T20:45:18.9037253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\_config.cpython-39.pyc 2025-08-26T20:45:18.9040772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\_constant_symnode.cpython-39.pyc 2025-08-26T20:45:18.9044268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\_dynamism.cpython-39.pyc 2025-08-26T20:45:18.9048135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.9056781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\annotate_getitem_nodes.py 2025-08-26T20:45:18.9060211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\fake_tensor_prop.py 2025-08-26T20:45:18.9063516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\graph_drawer.py 2025-08-26T20:45:18.9066871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\graph_manipulation.py 2025-08-26T20:45:18.9074902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\graph_transform_observer.py 2025-08-26T20:45:18.9078587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\net_min_base.py 2025-08-26T20:45:18.9082623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\operator_support.py 2025-08-26T20:45:18.9086117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\param_fetch.py 2025-08-26T20:45:18.9090387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\pass_manager.py 2025-08-26T20:45:18.9094069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\reinplace.py 2025-08-26T20:45:18.9098121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\runtime_assert.py 2025-08-26T20:45:18.9102168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\shape_prop.py 2025-08-26T20:45:18.9106039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\splitter_base.py 2025-08-26T20:45:18.9110697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\split_module.py 2025-08-26T20:45:18.9114815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\split_utils.py 2025-08-26T20:45:18.9138901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\tools_common.py 2025-08-26T20:45:18.9142857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\_tensorify_python_scalars.py 2025-08-26T20:45:18.9146447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__init__.py 2025-08-26T20:45:18.9153425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\backends\cudagraphs.py 2025-08-26T20:45:18.9156922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\backends\__init__.py 2025-08-26T20:45:18.9162877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\backends\__pycache__\cudagraphs.cpython-39.pyc 2025-08-26T20:45:18.9166805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\backends\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.9178393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\__init__.py 2025-08-26T20:45:18.9184328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\common\cse_pass.py 2025-08-26T20:45:18.9187641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\common\__init__.py 2025-08-26T20:45:18.9193489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\common\__pycache__\cse_pass.cpython-39.pyc 2025-08-26T20:45:18.9197048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\common\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.9204464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.9212735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\partitioner.py 2025-08-26T20:45:18.9216152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\pass_base.py 2025-08-26T20:45:18.9219553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\pass_manager.py 2025-08-26T20:45:18.9222895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\__init__.py 2025-08-26T20:45:18.9234236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\__pycache__\partitioner.cpython-39.pyc 2025-08-26T20:45:18.9238008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\__pycache__\pass_base.cpython-39.pyc 2025-08-26T20:45:18.9241446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\__pycache__\pass_manager.cpython-39.pyc 2025-08-26T20:45:18.9249171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.9257611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\tests\test_pass_manager.py 2025-08-26T20:45:18.9261006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\tests\__init__.py 2025-08-26T20:45:18.9267184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\tests\__pycache__\test_pass_manager.cpython-39.pyc 2025-08-26T20:45:18.9270823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\tests\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.9278246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\common.py 2025-08-26T20:45:18.9281581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\fuser_utils.py 2025-08-26T20:45:18.9284921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\matcher_utils.py 2025-08-26T20:45:18.9288464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\matcher_with_name_node_map_utils.py 2025-08-26T20:45:18.9296099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\source_matcher_utils.py 2025-08-26T20:45:18.9299362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__init__.py 2025-08-26T20:45:18.9306859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\common.cpython-39.pyc 2025-08-26T20:45:18.9310322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\fuser_utils.cpython-39.pyc 2025-08-26T20:45:18.9313880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\matcher_utils.cpython-39.pyc 2025-08-26T20:45:18.9322393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\matcher_with_name_node_map_utils.cpython-39.pyc 2025-08-26T20:45:18.9325902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\source_matcher_utils.cpython-39.pyc 2025-08-26T20:45:18.9329356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.9337554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\annotate_getitem_nodes.cpython-39.pyc 2025-08-26T20:45:18.9341038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\fake_tensor_prop.cpython-39.pyc 2025-08-26T20:45:18.9344530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\graph_drawer.cpython-39.pyc 2025-08-26T20:45:18.9353130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\graph_manipulation.cpython-39.pyc 2025-08-26T20:45:18.9356887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\graph_transform_observer.cpython-39.pyc 2025-08-26T20:45:18.9360386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\net_min_base.cpython-39.pyc 2025-08-26T20:45:18.9364382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\operator_support.cpython-39.pyc 2025-08-26T20:45:18.9368054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\param_fetch.cpython-39.pyc 2025-08-26T20:45:18.9371677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\pass_manager.cpython-39.pyc 2025-08-26T20:45:18.9375164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\reinplace.cpython-39.pyc 2025-08-26T20:45:18.9379033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\runtime_assert.cpython-39.pyc 2025-08-26T20:45:18.9382818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\shape_prop.cpython-39.pyc 2025-08-26T20:45:18.9386417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\splitter_base.cpython-39.pyc 2025-08-26T20:45:18.9391009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\split_module.cpython-39.pyc 2025-08-26T20:45:18.9394777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\split_utils.cpython-39.pyc 2025-08-26T20:45:18.9398407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\tools_common.cpython-39.pyc 2025-08-26T20:45:18.9406259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\_tensorify_python_scalars.cpython-39.pyc 2025-08-26T20:45:18.9409900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.9418814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\annotate.cpython-39.pyc 2025-08-26T20:45:18.9422981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\config.cpython-39.pyc 2025-08-26T20:45:18.9426416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\graph.cpython-39.pyc 2025-08-26T20:45:18.9434298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\graph_module.cpython-39.pyc 2025-08-26T20:45:18.9437960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\immutable_collections.cpython-39.pyc 2025-08-26T20:45:18.9441839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\interpreter.cpython-39.pyc 2025-08-26T20:45:18.9445463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\node.cpython-39.pyc 2025-08-26T20:45:18.9449643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\operator_schemas.cpython-39.pyc 2025-08-26T20:45:18.9453442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\proxy.cpython-39.pyc 2025-08-26T20:45:18.9457093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\subgraph_rewriter.cpython-39.pyc 2025-08-26T20:45:18.9461197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\tensor_type.cpython-39.pyc 2025-08-26T20:45:18.9464712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\traceback.cpython-39.pyc 2025-08-26T20:45:18.9468337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_compatibility.cpython-39.pyc 2025-08-26T20:45:18.9471880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_graph_pickler.cpython-39.pyc 2025-08-26T20:45:18.9475793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_lazy_graph_module.cpython-39.pyc 2025-08-26T20:45:18.9479557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_pytree.cpython-39.pyc 2025-08-26T20:45:18.9483141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_symbolic_trace.cpython-39.pyc 2025-08-26T20:45:18.9491218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_utils.cpython-39.pyc 2025-08-26T20:45:18.9494729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.9507387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\advisor-annotate.h 2025-08-26T20:45:18.9511158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\cpuinfo.h 2025-08-26T20:45:18.9515051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl.h 2025-08-26T20:45:18.9518574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl.hpp 2025-08-26T20:45:18.9522017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_config.h 2025-08-26T20:45:18.9529528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_debug.h 2025-08-26T20:45:18.9533332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_ocl.h 2025-08-26T20:45:18.9536858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_ocl.hpp 2025-08-26T20:45:18.9540135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_sycl.h 2025-08-26T20:45:18.9543560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_sycl.hpp 2025-08-26T20:45:18.9547001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_sycl_types.h 2025-08-26T20:45:18.9550571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_threadpool.h 2025-08-26T20:45:18.9554261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_threadpool.hpp 2025-08-26T20:45:18.9557750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_threadpool_iface.hpp 2025-08-26T20:45:18.9561287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_types.h 2025-08-26T20:45:18.9564814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_version.h 2025-08-26T20:45:18.9569384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\experiments-config.h 2025-08-26T20:45:18.9572895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fp16.h 2025-08-26T20:45:18.9576654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fxdiv.h 2025-08-26T20:45:18.9580462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ittnotify-zca.h 2025-08-26T20:45:18.9584231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ittnotify.h 2025-08-26T20:45:18.9589452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\jitprofiling.h 2025-08-26T20:45:18.9598975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\libittnotify.h 2025-08-26T20:45:18.9602454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\libshm.h 2025-08-26T20:45:18.9606417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\psimd.h 2025-08-26T20:45:18.9610120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pthreadpool.h 2025-08-26T20:45:18.9614520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\sleef.h 2025-08-26T20:45:18.9619653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\xnnpack.h 2025-08-26T20:45:18.9629851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\AccumulateType.h 2025-08-26T20:45:18.9633438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ArrayRef.h 2025-08-26T20:45:18.9637489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ATen.h 2025-08-26T20:45:18.9640994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\autocast_mode.h 2025-08-26T20:45:18.9644750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Backend.h 2025-08-26T20:45:18.9652052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Backtrace.h 2025-08-26T20:45:18.9655476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\BlasBackend.h 2025-08-26T20:45:18.9658902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CachedTensorUtils.h 2025-08-26T20:45:18.9662510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ceil_div.h 2025-08-26T20:45:18.9665806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\code_template.h 2025-08-26T20:45:18.9669192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CollapseDims.h 2025-08-26T20:45:18.9672900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeExplicitAutogradFunctions.h 2025-08-26T20:45:18.9676395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeExplicitAutogradFunctions_inl.h 2025-08-26T20:45:18.9680089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions.h 2025-08-26T20:45:18.9683740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions_inl.h 2025-08-26T20:45:18.9687432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeImplicitAutogradFunctions.h 2025-08-26T20:45:18.9691476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeImplicitAutogradFunctions_inl.h 2025-08-26T20:45:18.9695416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions.h 2025-08-26T20:45:18.9699451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions_inl.h 2025-08-26T20:45:18.9707517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Config.h 2025-08-26T20:45:18.9711011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Context.h 2025-08-26T20:45:18.9714681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpp_custom_type_hack.h 2025-08-26T20:45:18.9718293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CPUApplyUtils.h 2025-08-26T20:45:18.9722171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CPUFixedAllocator.h 2025-08-26T20:45:18.9725909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CPUFunctions.h 2025-08-26T20:45:18.9729590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CPUFunctions_inl.h 2025-08-26T20:45:18.9734132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CPUGeneratorImpl.h 2025-08-26T20:45:18.9737683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CUDAFunctions.h 2025-08-26T20:45:18.9741205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CUDAFunctions_inl.h 2025-08-26T20:45:18.9750223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Device.h 2025-08-26T20:45:18.9753694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\DeviceAccelerator.h 2025-08-26T20:45:18.9757233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\DeviceGuard.h 2025-08-26T20:45:18.9761043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Dimname.h 2025-08-26T20:45:18.9764482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\DimVector.h 2025-08-26T20:45:18.9768146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Dispatch.h 2025-08-26T20:45:18.9771618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Dispatch_v2.h 2025-08-26T20:45:18.9775475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\div_rtn.h 2025-08-26T20:45:18.9778886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\DLConvertor.h 2025-08-26T20:45:18.9782840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\dlpack.h 2025-08-26T20:45:18.9786251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\DynamicLibrary.h 2025-08-26T20:45:18.9789738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\EmptyTensor.h 2025-08-26T20:45:18.9797778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ExpandBase.h 2025-08-26T20:45:18.9801550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ExpandUtils.h 2025-08-26T20:45:18.9805029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Formatting.h 2025-08-26T20:45:18.9809607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\FunctionalStorageImpl.h 2025-08-26T20:45:18.9813111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\FunctionalTensorWrapper.h 2025-08-26T20:45:18.9816660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Functions.h 2025-08-26T20:45:18.9820421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\FuncTorchTLS.h 2025-08-26T20:45:18.9823871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Generator.h 2025-08-26T20:45:18.9827365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\InferSize.h 2025-08-26T20:45:18.9831517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\InitialTensorOptions.h 2025-08-26T20:45:18.9838760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\jiterator_macros.h 2025-08-26T20:45:18.9842320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\jit_macros.h 2025-08-26T20:45:18.9845912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Layout.h 2025-08-26T20:45:18.9849652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\LegacyBatchedFallback.h 2025-08-26T20:45:18.9853372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\LegacyBatchedTensorImpl.h 2025-08-26T20:45:18.9856898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\LegacyVmapMode.h 2025-08-26T20:45:18.9860495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\LegacyVmapTransforms.h 2025-08-26T20:45:18.9864254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\LinalgBackend.h 2025-08-26T20:45:18.9867688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MapAllocator.h 2025-08-26T20:45:18.9871261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MatrixRef.h 2025-08-26T20:45:18.9882967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MemoryOverlap.h 2025-08-26T20:45:18.9886960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MetaFunctions.h 2025-08-26T20:45:18.9890478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MetaFunctions_inl.h 2025-08-26T20:45:18.9894450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MethodOperators.h 2025-08-26T20:45:18.9898156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NamedTensor.h 2025-08-26T20:45:18.9901762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NamedTensorUtils.h 2025-08-26T20:45:18.9906001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NativeFunctions.h 2025-08-26T20:45:18.9909940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NativeMetaFunctions.h 2025-08-26T20:45:18.9913684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NestedTensorImpl.h 2025-08-26T20:45:18.9920847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NumericUtils.h 2025-08-26T20:45:18.9924438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\OpaqueTensorImpl.h 2025-08-26T20:45:18.9927973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Operators.h 2025-08-26T20:45:18.9931807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\OpMathType.h 2025-08-26T20:45:18.9935443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\PadNd.h 2025-08-26T20:45:18.9939056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Parallel-inl.h 2025-08-26T20:45:18.9943049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Parallel.h 2025-08-26T20:45:18.9946493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ParallelFuture.h 2025-08-26T20:45:18.9949980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ParallelNative.h 2025-08-26T20:45:18.9953596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ParallelOpenMP.h 2025-08-26T20:45:18.9962177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\PTThreadPool.h 2025-08-26T20:45:18.9966142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\PythonTorchFunctionTLS.h 2025-08-26T20:45:18.9969758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\record_function.h 2025-08-26T20:45:18.9973304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\RedispatchFunctions.h 2025-08-26T20:45:18.9990522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\RegistrationDeclarations.h 2025-08-26T20:45:18.9999307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ROCmFABackend.h 2025-08-26T20:45:19.0002870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SavedTensorHooks.h 2025-08-26T20:45:19.0007027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Scalar.h 2025-08-26T20:45:19.0010438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ScalarOps.h 2025-08-26T20:45:19.0014002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ScalarType.h 2025-08-26T20:45:19.0017621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SDPBackend.h 2025-08-26T20:45:19.0021056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SequenceNumber.h 2025-08-26T20:45:19.0024457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SmallVector.h 2025-08-26T20:45:19.0028113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SparseCsrTensorImpl.h 2025-08-26T20:45:19.0031575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SparseCsrTensorUtils.h 2025-08-26T20:45:19.0035100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SparseTensorImpl.h 2025-08-26T20:45:19.0038591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Storage.h 2025-08-26T20:45:19.0041912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\StorageUtils.h 2025-08-26T20:45:19.0045931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Tensor.h 2025-08-26T20:45:19.0049920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorAccessor.h 2025-08-26T20:45:19.0058851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorGeometry.h 2025-08-26T20:45:19.0062487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorIndexing.h 2025-08-26T20:45:19.0066125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorIterator.h 2025-08-26T20:45:19.0069760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorIteratorInternal.h 2025-08-26T20:45:19.0073387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorMeta.h 2025-08-26T20:45:19.0076898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorNames.h 2025-08-26T20:45:19.0080492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorOperators.h 2025-08-26T20:45:19.0083997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorOptions.h 2025-08-26T20:45:19.0087713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorSubclassLikeUtils.h 2025-08-26T20:45:19.0091380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorUtils.h 2025-08-26T20:45:19.0095133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ThreadLocalPythonObjects.h 2025-08-26T20:45:19.0098692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ThreadLocalState.h 2025-08-26T20:45:19.0102133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TracerMode.h 2025-08-26T20:45:19.0105607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TypeDefault.h 2025-08-26T20:45:19.0109502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Utils.h 2025-08-26T20:45:19.0112859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Version.h 2025-08-26T20:45:19.0116611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\VmapGeneratedPlumbing.h 2025-08-26T20:45:19.0128786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\WrapDimUtils.h 2025-08-26T20:45:19.0132655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\WrapDimUtilsMulti.h 2025-08-26T20:45:19.0140953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\alias_info.h 2025-08-26T20:45:19.0144281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Array.h 2025-08-26T20:45:19.0147770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ATenGeneral.h 2025-08-26T20:45:19.0151128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ATenOpList.h 2025-08-26T20:45:19.0159921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ATen_fwd.h 2025-08-26T20:45:19.0163230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\aten_interned_strings.h 2025-08-26T20:45:19.0166743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ATen_pch.h 2025-08-26T20:45:19.0170038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Backtrace.h 2025-08-26T20:45:19.0173610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\blob.h 2025-08-26T20:45:19.0177005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\builtin_function.h 2025-08-26T20:45:19.0181211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\CachingHostAllocator.h 2025-08-26T20:45:19.0184720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\CheckMemoryFormat.h 2025-08-26T20:45:19.0188158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\class_type.h 2025-08-26T20:45:19.0192019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\custom_class.h 2025-08-26T20:45:19.0195594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\DeprecatedTypeProperties.h 2025-08-26T20:45:19.0199444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\DeprecatedTypePropertiesRegistry.h 2025-08-26T20:45:19.0203051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Dict.h 2025-08-26T20:45:19.0206454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Dict_inl.h 2025-08-26T20:45:19.0223790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Dimname.h 2025-08-26T20:45:19.0227121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\DimVector.h 2025-08-26T20:45:19.0230696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\DistributionsHelper.h 2025-08-26T20:45:19.0234143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dynamic_type.h 2025-08-26T20:45:19.0241821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\enum_tag.h 2025-08-26T20:45:19.0245142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\enum_type.h 2025-08-26T20:45:19.0248731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Formatting.h 2025-08-26T20:45:19.0252265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\function.h 2025-08-26T20:45:19.0255633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\functional.h 2025-08-26T20:45:19.0259117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\function_schema.h 2025-08-26T20:45:19.0262607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\function_schema_inl.h 2025-08-26T20:45:19.0266399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Generator.h 2025-08-26T20:45:19.0270043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\GeneratorForPrivateuseone.h 2025-08-26T20:45:19.0273517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\grad_mode.h 2025-08-26T20:45:19.0277013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\IListRef.h 2025-08-26T20:45:19.0284767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\IListRef_inl.h 2025-08-26T20:45:19.0288561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\interned_strings.h 2025-08-26T20:45:19.0292374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\interned_strings_class.h 2025-08-26T20:45:19.0295808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ivalue.h 2025-08-26T20:45:19.0299402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ivalue_inl.h 2025-08-26T20:45:19.0303136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ivalue_to.h 2025-08-26T20:45:19.0306681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\jit_type.h 2025-08-26T20:45:19.0310270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\jit_type_base.h 2025-08-26T20:45:19.0313757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\LegacyTypeDispatch.h 2025-08-26T20:45:19.0317157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\List.h 2025-08-26T20:45:19.0320604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\List_inl.h 2025-08-26T20:45:19.0323926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\MT19937RNGEngine.h 2025-08-26T20:45:19.0331170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\NamedTensor.h 2025-08-26T20:45:19.0334649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\NestedIntSymNodeImpl.h 2025-08-26T20:45:19.0338061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\operator_name.h 2025-08-26T20:45:19.0341524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\PhiloxRNGEngine.h 2025-08-26T20:45:19.0344973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\PythonFallbackKernel.h 2025-08-26T20:45:19.0348513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\PythonOpRegistrationTrampoline.h 2025-08-26T20:45:19.0352353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\qualified_name.h 2025-08-26T20:45:19.0355763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\QuantizerBase.h 2025-08-26T20:45:19.0359791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Range.h 2025-08-26T20:45:19.0363062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Reduction.h 2025-08-26T20:45:19.0371340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\rref_interface.h 2025-08-26T20:45:19.0374818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Scalar.h 2025-08-26T20:45:19.0378126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ScalarType.h 2025-08-26T20:45:19.0381697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\stack.h 2025-08-26T20:45:19.0385223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\symbol.h 2025-08-26T20:45:19.0389084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Tensor.h 2025-08-26T20:45:19.0392593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\TensorAccessor.h 2025-08-26T20:45:19.0395945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\TensorBase.h 2025-08-26T20:45:19.0399462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\TensorBody.h 2025-08-26T20:45:19.0404482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\TorchDispatchUtils.h 2025-08-26T20:45:19.0408120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\TransformationHelper.h 2025-08-26T20:45:19.0419143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\typeid.h 2025-08-26T20:45:19.0422520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\type_factory.h 2025-08-26T20:45:19.0425986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\type_ptr.h 2025-08-26T20:45:19.0429949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\UndefinedTensorImpl.h 2025-08-26T20:45:19.0433432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\UnsafeFromTH.h 2025-08-26T20:45:19.0436929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\VariableHooksInterface.h 2025-08-26T20:45:19.0440376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Variadic.h 2025-08-26T20:45:19.0443652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Vitals.h 2025-08-26T20:45:19.0451347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\BoxedKernel.h 2025-08-26T20:45:19.0454639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\BoxedKernel_impl.h 2025-08-26T20:45:19.0458429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\KernelFunction.h 2025-08-26T20:45:19.0462264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\KernelFunction_impl.h 2025-08-26T20:45:19.0470231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\OperatorKernel.h 2025-08-26T20:45:19.0477007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\impl\boxing.h 2025-08-26T20:45:19.0480538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\impl\make_boxed_from_unboxed_functor.h 2025-08-26T20:45:19.0484928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\impl\test_helpers.h 2025-08-26T20:45:19.0489129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\impl\WrapFunctionIntoFunctor.h 2025-08-26T20:45:19.0497474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\impl\WrapFunctionIntoRuntimeFunctor.h 2025-08-26T20:45:19.0505737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\CppSignature.h 2025-08-26T20:45:19.0509148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\Dispatcher.h 2025-08-26T20:45:19.0512963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\DispatchKeyExtractor.h 2025-08-26T20:45:19.0516544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\ObservedOperators.h 2025-08-26T20:45:19.0523500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\OperatorEntry.h 2025-08-26T20:45:19.0527042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\OperatorOptions.h 2025-08-26T20:45:19.0530637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\RegistrationHandleRAII.h 2025-08-26T20:45:19.0539225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\op_registration\adaption.h 2025-08-26T20:45:19.0542691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\op_registration\infer_schema.h 2025-08-26T20:45:19.0546833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\op_registration\op_allowlist.h 2025-08-26T20:45:19.0550250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\op_registration\op_registration.h 2025-08-26T20:45:19.0563308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\FlushDenormal.h 2025-08-26T20:45:19.0566875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\Utils.h 2025-08-26T20:45:19.0570363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vml.h 2025-08-26T20:45:19.0577475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\functional.h 2025-08-26T20:45:19.0581382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\functional_base.h 2025-08-26T20:45:19.0585142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\functional_bfloat16.h 2025-08-26T20:45:19.0588954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\intrinsics.h 2025-08-26T20:45:19.0597460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec.h 2025-08-26T20:45:19.0601207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_base.h 2025-08-26T20:45:19.0605288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_convert.h 2025-08-26T20:45:19.0609648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_half.h 2025-08-26T20:45:19.0613309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_mask.h 2025-08-26T20:45:19.0616926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_n.h 2025-08-26T20:45:19.0620772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_quant.h 2025-08-26T20:45:19.0628922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\sve_helper.h 2025-08-26T20:45:19.0632235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_bfloat16.h 2025-08-26T20:45:19.0635798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_common_sve.h 2025-08-26T20:45:19.0639122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_double.h 2025-08-26T20:45:19.0646718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_float.h 2025-08-26T20:45:19.0650188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_int.h 2025-08-26T20:45:19.0653589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_qint.h 2025-08-26T20:45:19.0661176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128.h 2025-08-26T20:45:19.0664570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128_bfloat16_neon.h 2025-08-26T20:45:19.0668057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128_convert.h 2025-08-26T20:45:19.0671446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128_float_neon.h 2025-08-26T20:45:19.0679418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128_half_neon.h 2025-08-26T20:45:19.0683025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128_reduced_precision_common_neon.h 2025-08-26T20:45:19.0690454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\missing_vld1_neon.h 2025-08-26T20:45:19.0694542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\missing_vst1_neon.h 2025-08-26T20:45:19.0697910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256.h 2025-08-26T20:45:19.0701281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_16bit_float.h 2025-08-26T20:45:19.0709216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_bfloat16.h 2025-08-26T20:45:19.0712657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_complex_double.h 2025-08-26T20:45:19.0716189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_complex_float.h 2025-08-26T20:45:19.0719657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_convert.h 2025-08-26T20:45:19.0723059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_double.h 2025-08-26T20:45:19.0726791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_float.h 2025-08-26T20:45:19.0730367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_half.h 2025-08-26T20:45:19.0734320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_int.h 2025-08-26T20:45:19.0738172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_mask.h 2025-08-26T20:45:19.0741626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_qint.h 2025-08-26T20:45:19.0749150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_bfloat16_vsx.h 2025-08-26T20:45:19.0752585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_common_vsx.h 2025-08-26T20:45:19.0756018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_complex_double_vsx.h 2025-08-26T20:45:19.0763864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_complex_float_vsx.h 2025-08-26T20:45:19.0767568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_double_vsx.h 2025-08-26T20:45:19.0771378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_float_vsx.h 2025-08-26T20:45:19.0775172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_int16_vsx.h 2025-08-26T20:45:19.0778502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_int32_vsx.h 2025-08-26T20:45:19.0781938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_int64_vsx.h 2025-08-26T20:45:19.0785363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_qint32_vsx.h 2025-08-26T20:45:19.0789178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_qint8_vsx.h 2025-08-26T20:45:19.0792875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_quint8_vsx.h 2025-08-26T20:45:19.0796382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vsx_helpers.h 2025-08-26T20:45:19.0803895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\zarch\vec256_zarch.h 2025-08-26T20:45:19.0811863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512.h 2025-08-26T20:45:19.0815147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_bfloat16.h 2025-08-26T20:45:19.0818751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_complex_double.h 2025-08-26T20:45:19.0822177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_complex_float.h 2025-08-26T20:45:19.0830654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_convert.h 2025-08-26T20:45:19.0834146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_double.h 2025-08-26T20:45:19.0837595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_float.h 2025-08-26T20:45:19.0841108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_float8.h 2025-08-26T20:45:19.0844582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_int.h 2025-08-26T20:45:19.0848639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_mask.h 2025-08-26T20:45:19.0852094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_qint.h 2025-08-26T20:45:19.0861349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\ApplyGridUtils.cuh 2025-08-26T20:45:19.0864865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\AsmUtils.cuh 2025-08-26T20:45:19.0868183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\ATenCUDAGeneral.h 2025-08-26T20:45:19.0871979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\Atomic.cuh 2025-08-26T20:45:19.0875364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CachingHostAllocator.h 2025-08-26T20:45:19.0883330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\cub-RadixSortPairs.cuh 2025-08-26T20:45:19.0886877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\cub.cuh 2025-08-26T20:45:19.0890562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\cub.h 2025-08-26T20:45:19.0894021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\cub_definitions.cuh 2025-08-26T20:45:19.0897486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAApplyUtils.cuh 2025-08-26T20:45:19.0901168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDABlas.h 2025-08-26T20:45:19.0904522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAContext.h 2025-08-26T20:45:19.0908073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAContextLight.h 2025-08-26T20:45:19.0912089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDADataType.h 2025-08-26T20:45:19.0915646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDADevice.h 2025-08-26T20:45:19.0919488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAEvent.h 2025-08-26T20:45:19.0923163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAGeneratorImpl.h 2025-08-26T20:45:19.0927163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAGraph.h 2025-08-26T20:45:19.0930830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAGraphsUtils.cuh 2025-08-26T20:45:19.0934476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDASparse.h 2025-08-26T20:45:19.0938349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDASparseBlas.h 2025-08-26T20:45:19.0946297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDASparseDescriptors.h 2025-08-26T20:45:19.0949720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDATensorMethods.cuh 2025-08-26T20:45:19.0963007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAUtils.h 2025-08-26T20:45:19.0968421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\DeviceUtils.cuh 2025-08-26T20:45:19.0973349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\EmptyTensor.h 2025-08-26T20:45:19.0978254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\Exceptions.h 2025-08-26T20:45:19.0983323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\jiterator.h 2025-08-26T20:45:19.0987047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\jiterator_impl.h 2025-08-26T20:45:19.0991971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\llvm_jit_strings.h 2025-08-26T20:45:19.1000930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\NumericLimits.cuh 2025-08-26T20:45:19.1004503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\PeerToPeerAccess.h 2025-08-26T20:45:19.1009393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\PhiloxCudaState.h 2025-08-26T20:45:19.1014124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\PhiloxUtils.cuh 2025-08-26T20:45:19.1019254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\PinnedMemoryAllocator.h 2025-08-26T20:45:19.1022823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\ScanUtils.cuh 2025-08-26T20:45:19.1027905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\Sleep.h 2025-08-26T20:45:19.1032623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\ThrustAllocator.h 2025-08-26T20:45:19.1042903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\CUDAHooks.h 2025-08-26T20:45:19.1046746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\DeviceThreadHandles.h 2025-08-26T20:45:19.1051364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\IndexUtils.cuh 2025-08-26T20:45:19.1056125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\IntegerDivider.cuh 2025-08-26T20:45:19.1064514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\KernelUtils.h 2025-08-26T20:45:19.1068155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\LazyNVRTC.h 2025-08-26T20:45:19.1071900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\OffsetCalculator.cuh 2025-08-26T20:45:19.1075372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\PhiloxCudaStateRaw.cuh 2025-08-26T20:45:19.1079020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\TensorInfo.cuh 2025-08-26T20:45:19.1082499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\UnpackRaw.cuh 2025-08-26T20:45:19.1090864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\GemmCommon.h 2025-08-26T20:45:19.1094350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\GemmHipblaslt.h 2025-08-26T20:45:19.1097786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\GemmRocblas.h 2025-08-26T20:45:19.1101399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\StreamTimer.h 2025-08-26T20:45:19.1109097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\Tunable.h 2025-08-26T20:45:19.1112531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\TunableGemm.h 2025-08-26T20:45:19.1115901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\TunableOp.h 2025-08-26T20:45:19.1124767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\cudnn-wrapper.h 2025-08-26T20:45:19.1128393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\Descriptors.h 2025-08-26T20:45:19.1131785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\Handle.h 2025-08-26T20:45:19.1135053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\Handles.h 2025-08-26T20:45:19.1138475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\Types.h 2025-08-26T20:45:19.1147370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\Utils.h 2025-08-26T20:45:19.1154856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\AcceleratorHooksInterface.h 2025-08-26T20:45:19.1158258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\CUDAHooksInterface.h 2025-08-26T20:45:19.1161682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\FunctionTraits.h 2025-08-26T20:45:19.1170456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\HIPHooksInterface.h 2025-08-26T20:45:19.1173802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\HPUHooksInterface.h 2025-08-26T20:45:19.1177146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\IPUHooksInterface.h 2025-08-26T20:45:19.1180519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\MAIAHooksInterface.h 2025-08-26T20:45:19.1184255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\MPSHooksInterface.h 2025-08-26T20:45:19.1187708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\MTIAHooksInterface.h 2025-08-26T20:45:19.1191393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\PrivateUse1HooksInterface.h 2025-08-26T20:45:19.1194828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\XPUHooksInterface.h 2025-08-26T20:45:19.1202854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\ADInterpreters.h 2025-08-26T20:45:19.1206411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\BatchedFallback.h 2025-08-26T20:45:19.1209882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\BatchedTensorImpl.h 2025-08-26T20:45:19.1218011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\BatchingMetaprogramming.h 2025-08-26T20:45:19.1221461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\BatchRulesHelper.h 2025-08-26T20:45:19.1224945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\DynamicLayer.h 2025-08-26T20:45:19.1228444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\FunctionalizeInterpreter.h 2025-08-26T20:45:19.1232066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\Interpreter.h 2025-08-26T20:45:19.1235626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\LegacyVmapTransforms.h 2025-08-26T20:45:19.1239128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\Macros.h 2025-08-26T20:45:19.1243382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\PlumbingHelper.h 2025-08-26T20:45:19.1247348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\TensorWrapper.h 2025-08-26T20:45:19.1251063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\VmapInterpreter.h 2025-08-26T20:45:19.1262613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\hip\impl\HIPAllocatorMasqueradingAsCUDA.h 2025-08-26T20:45:19.1266468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\hip\impl\HIPCachingAllocatorMasqueradingAsCUDA.h 2025-08-26T20:45:19.1269576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\hip\impl\HIPGuardImplMasqueradingAsCUDA.h 2025-08-26T20:45:19.1279129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\hip\impl\HIPStreamMasqueradingAsCUDA.h 2025-08-26T20:45:19.1287600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\metal\Context.h 2025-08-26T20:45:19.1294660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\Descriptors.h 2025-08-26T20:45:19.1315228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\Exceptions.h 2025-08-26T20:45:19.1318621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\Handle.h 2025-08-26T20:45:19.1322452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\miopen-wrapper.h 2025-08-26T20:45:19.1330902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\Types.h 2025-08-26T20:45:19.1335029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\Utils.h 2025-08-26T20:45:19.1342285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\EmptyTensor.h 2025-08-26T20:45:19.1345782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\IndexKernels.h 2025-08-26T20:45:19.1349132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSAllocator.h 2025-08-26T20:45:19.1352604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSAllocatorInterface.h 2025-08-26T20:45:19.1360920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSDevice.h 2025-08-26T20:45:19.1364449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSEvent.h 2025-08-26T20:45:19.1367980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSGeneratorImpl.h 2025-08-26T20:45:19.1371534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSGuardImpl.h 2025-08-26T20:45:19.1375076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSHooks.h 2025-08-26T20:45:19.1378430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSProfiler.h 2025-08-26T20:45:19.1382306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSStream.h 2025-08-26T20:45:19.1390233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Activation.h 2025-08-26T20:45:19.1393804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\AdaptivePooling.h 2025-08-26T20:45:19.1397214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\AmpKernels.h 2025-08-26T20:45:19.1400747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\BatchLinearAlgebra.h 2025-08-26T20:45:19.1409166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\batch_norm.h 2025-08-26T20:45:19.1412927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\BinaryOps.h 2025-08-26T20:45:19.1416482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\BucketizationUtils.h 2025-08-26T20:45:19.1419923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\CanUse32BitIndexMath.h 2025-08-26T20:45:19.1423427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ComplexHelper.h 2025-08-26T20:45:19.1426845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\CompositeRandomAccessor.h 2025-08-26T20:45:19.1430529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\CompositeRandomAccessorCommon.h 2025-08-26T20:45:19.1433902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ConvolutionMM3d.h 2025-08-26T20:45:19.1437428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ConvUtils.h 2025-08-26T20:45:19.1441052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Copy.h 2025-08-26T20:45:19.1444540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\CPUBlas.h 2025-08-26T20:45:19.1448062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\CPUFallback.h 2025-08-26T20:45:19.1451448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Cross.h 2025-08-26T20:45:19.1455290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\DilatedConvolutionUtils.h 2025-08-26T20:45:19.1458916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\DispatchStub.h 2025-08-26T20:45:19.1462381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Distance.h 2025-08-26T20:45:19.1465795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Distributions.h 2025-08-26T20:45:19.1473930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\DistributionTemplates.h 2025-08-26T20:45:19.1477591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\EmbeddingBag.h 2025-08-26T20:45:19.1480921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Fill.h 2025-08-26T20:45:19.1484760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ForeachUtils.h 2025-08-26T20:45:19.1488354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\FractionalMaxPooling.h 2025-08-26T20:45:19.1491970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\FunctionOfAMatrixUtils.h 2025-08-26T20:45:19.1496154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\FusedAdagrad.h 2025-08-26T20:45:19.1499821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\FusedAdam.h 2025-08-26T20:45:19.1503417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\FusedSGD.h 2025-08-26T20:45:19.1507397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Gelu.h 2025-08-26T20:45:19.1510853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\GridSampler.h 2025-08-26T20:45:19.1518763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\GridSamplerUtils.h 2025-08-26T20:45:19.1522344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\group_norm.h 2025-08-26T20:45:19.1525936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Histogram.h 2025-08-26T20:45:19.1529729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\im2col.h 2025-08-26T20:45:19.1533155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\im2col_shape_check.h 2025-08-26T20:45:19.1536487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\IndexingUtils.h 2025-08-26T20:45:19.1539975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\IndexKernel.h 2025-08-26T20:45:19.1543441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\layer_norm.h 2025-08-26T20:45:19.1546899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Lerp.h 2025-08-26T20:45:19.1550634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\LinearAlgebra.h 2025-08-26T20:45:19.1554077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\LinearAlgebraUtils.h 2025-08-26T20:45:19.1562140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\LossMulti.h 2025-08-26T20:45:19.1565654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Math.h 2025-08-26T20:45:19.1570044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\MathBitFallThroughLists.h 2025-08-26T20:45:19.1573689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\MathBitsFallback.h 2025-08-26T20:45:19.1577044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\MaxPooling.h 2025-08-26T20:45:19.1580807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\NonEmptyUtils.h 2025-08-26T20:45:19.1584444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\NonSymbolicBC.h 2025-08-26T20:45:19.1587944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Normalization.h 2025-08-26T20:45:19.1591399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Padding.h 2025-08-26T20:45:19.1594840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\PixelShuffle.h 2025-08-26T20:45:19.1605436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\PointwiseOps.h 2025-08-26T20:45:19.1609057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Pool.h 2025-08-26T20:45:19.1612524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Pow.h 2025-08-26T20:45:19.1616331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\RangeFactories.h 2025-08-26T20:45:19.1619753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\RangeUtils.h 2025-08-26T20:45:19.1623241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ReduceAllOps.h 2025-08-26T20:45:19.1626799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ReduceOps.h 2025-08-26T20:45:19.1630311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ReduceOpsUtils.h 2025-08-26T20:45:19.1633903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ReductionType.h 2025-08-26T20:45:19.1637472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Repeat.h 2025-08-26T20:45:19.1641132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Resize.h 2025-08-26T20:45:19.1644479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ResizeCommon.h 2025-08-26T20:45:19.1656571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\RNN.h 2025-08-26T20:45:19.1659998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ScatterGatherChecks.h 2025-08-26T20:45:19.1663549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SegmentReduce.h 2025-08-26T20:45:19.1667315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SharedReduceOps.h 2025-08-26T20:45:19.1670827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SobolEngineOpsUtils.h 2025-08-26T20:45:19.1674327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Sorting.h 2025-08-26T20:45:19.1678094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SortingUtils.h 2025-08-26T20:45:19.1682195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SparseTensorUtils.h 2025-08-26T20:45:19.1685667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SpectralOpsUtils.h 2025-08-26T20:45:19.1689333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\StridedRandomAccessor.h 2025-08-26T20:45:19.1697207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorAdvancedIndexing.h 2025-08-26T20:45:19.1700997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorAdvancedIndexingUtils.h 2025-08-26T20:45:19.1704440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorCompare.h 2025-08-26T20:45:19.1708038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorConversions.h 2025-08-26T20:45:19.1711514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorDimApply.h 2025-08-26T20:45:19.1715047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorFactories.h 2025-08-26T20:45:19.1718511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorIterator.h 2025-08-26T20:45:19.1722249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorIteratorDynamicCasting.h 2025-08-26T20:45:19.1725925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorProperties.h 2025-08-26T20:45:19.1733985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorShape.h 2025-08-26T20:45:19.1737505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorTransformations.h 2025-08-26T20:45:19.1741167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TopKImpl.h 2025-08-26T20:45:19.1744526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TransposeType.h 2025-08-26T20:45:19.1748032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TriangularOpsUtils.h 2025-08-26T20:45:19.1751837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TypeProperties.h 2025-08-26T20:45:19.1755788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\UnaryOps.h 2025-08-26T20:45:19.1759245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Unfold2d.h 2025-08-26T20:45:19.1762414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Unfold3d.h 2025-08-26T20:45:19.1765998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\UnfoldBackward.h 2025-08-26T20:45:19.1769533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\UpSample.h 2025-08-26T20:45:19.1773018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\verbose_wrapper.h 2025-08-26T20:45:19.1776475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\vol2col.h 2025-08-26T20:45:19.1791903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ao_sparse\quantized\cpu\fbgemm_utils.h 2025-08-26T20:45:19.1795423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ao_sparse\quantized\cpu\packed_params.h 2025-08-26T20:45:19.1799028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ao_sparse\quantized\cpu\qnnpack_utils.h 2025-08-26T20:45:19.1808400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\AtomicAddFloat.h 2025-08-26T20:45:19.1811812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\avx_mathfun.h 2025-08-26T20:45:19.1815224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\CatKernel.h 2025-08-26T20:45:19.1818729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\ChannelShuffleKernel.h 2025-08-26T20:45:19.1826754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\CopyKernel.h 2025-08-26T20:45:19.1830179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\DepthwiseConvKernel.h 2025-08-26T20:45:19.1833651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\DistributionTemplates.h 2025-08-26T20:45:19.1837501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\Elu.h 2025-08-26T20:45:19.1840838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\Gelu.h 2025-08-26T20:45:19.1844352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\GridSamplerKernel.h 2025-08-26T20:45:19.1847903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\IndexKernelUtils.h 2025-08-26T20:45:19.1851292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\Intrinsics.h 2025-08-26T20:45:19.1854707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\int_mm_kernel.h 2025-08-26T20:45:19.1858107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\IsContiguous.h 2025-08-26T20:45:19.1861919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\LogAddExp.h 2025-08-26T20:45:19.1865539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\LogSoftmaxKernelImpl.h 2025-08-26T20:45:19.1869055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\Loops.h 2025-08-26T20:45:19.1872441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\MaxUnpoolKernel.h 2025-08-26T20:45:19.1875910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\mixed_data_type.h 2025-08-26T20:45:19.1879312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\moments_utils.h 2025-08-26T20:45:19.1886536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\PixelShuffleKernel.h 2025-08-26T20:45:19.1890138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\Reduce.h 2025-08-26T20:45:19.1893778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.h 2025-08-26T20:45:19.1897309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\ReduceUtils.h 2025-08-26T20:45:19.1900998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\SampledAddmmKernel.h 2025-08-26T20:45:19.1905359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\SerialStackImpl.h 2025-08-26T20:45:19.1909020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\SoftmaxKernel.h 2025-08-26T20:45:19.1912538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\SpmmReduceKernel.h 2025-08-26T20:45:19.1915995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\StackKernel.h 2025-08-26T20:45:19.1919939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\UpSampleKernelAVXAntialias.h 2025-08-26T20:45:19.1927923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\utils.h 2025-08-26T20:45:19.1931833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\WeightNormKernel.h 2025-08-26T20:45:19.1935413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\zmath.h 2025-08-26T20:45:19.1944206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Activation.h 2025-08-26T20:45:19.1948158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\BinaryInternal.h 2025-08-26T20:45:19.1952176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\block_reduce.cuh 2025-08-26T20:45:19.1955651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\CompositeRandomAccessor.h 2025-08-26T20:45:19.1963649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Copy.h 2025-08-26T20:45:19.1967235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\CUDAJitLoops.cuh 2025-08-26T20:45:19.1970757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\CUDALoops.cuh 2025-08-26T20:45:19.1974297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\CuFFTPlanCache.h 2025-08-26T20:45:19.1978006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\CuFFTUtils.h 2025-08-26T20:45:19.1981450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\cutlass_common.cuh 2025-08-26T20:45:19.1985304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\DeviceSqrt.cuh 2025-08-26T20:45:19.1988946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Distributions.h 2025-08-26T20:45:19.1992400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\DistributionTemplates.h 2025-08-26T20:45:19.1996127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\EmbeddingBackwardKernel.cuh 2025-08-26T20:45:19.1999584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ForeachFunctors.cuh 2025-08-26T20:45:19.2003160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ForeachMinMaxFunctors.cuh 2025-08-26T20:45:19.2007009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adagrad_impl.cuh 2025-08-26T20:45:19.2010497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adagrad_utils.cuh 2025-08-26T20:45:19.2014119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adamw_amsgrad_impl.cuh 2025-08-26T20:45:19.2022670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adamw_impl.cuh 2025-08-26T20:45:19.2026406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adam_amsgrad_impl.cuh 2025-08-26T20:45:19.2029939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adam_impl.cuh 2025-08-26T20:45:19.2033565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adam_utils.cuh 2025-08-26T20:45:19.2037784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\GridSampler.cuh 2025-08-26T20:45:19.2041277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\GridSampler.h 2025-08-26T20:45:19.2044832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\GroupMM.h 2025-08-26T20:45:19.2048440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\GroupMMCommon.cuh 2025-08-26T20:45:19.2051896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\im2col.cuh 2025-08-26T20:45:19.2060271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\IndexKernel.h 2025-08-26T20:45:19.2063754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\IndexKernelUtils.h 2025-08-26T20:45:19.2067492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\JitLoops.cuh 2025-08-26T20:45:19.2070756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\jit_utils.h 2025-08-26T20:45:19.2074529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\KernelUtils.cuh 2025-08-26T20:45:19.2078010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\LaunchUtils.h 2025-08-26T20:45:19.2081896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Loops.cuh 2025-08-26T20:45:19.2085592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Math.cuh 2025-08-26T20:45:19.2090012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\MemoryAccess.cuh 2025-08-26T20:45:19.2093946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\MiscUtils.h 2025-08-26T20:45:19.2097909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\MultiTensorApply.cuh 2025-08-26T20:45:19.2107374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Normalization.cuh 2025-08-26T20:45:19.2111779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\PersistentSoftmax.cuh 2025-08-26T20:45:19.2115455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Pow.cuh 2025-08-26T20:45:19.2119084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Randperm.cuh 2025-08-26T20:45:19.2122462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Reduce.cuh 2025-08-26T20:45:19.2125917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ReduceOps.h 2025-08-26T20:45:19.2129533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\reduction_template.cuh 2025-08-26T20:45:19.2133438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Resize.h 2025-08-26T20:45:19.2136866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\RowwiseScaledMM.h 2025-08-26T20:45:19.2140318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ScaledGroupMM.h 2025-08-26T20:45:19.2143801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ScanKernels.h 2025-08-26T20:45:19.2147677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ScanUtils.cuh 2025-08-26T20:45:19.2155961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Sort.h 2025-08-26T20:45:19.2159268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Sorting.h 2025-08-26T20:45:19.2162660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\SortingCommon.cuh 2025-08-26T20:45:19.2166231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\SortingRadixSelect.cuh 2025-08-26T20:45:19.2169647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\SortStable.h 2025-08-26T20:45:19.2173073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\SortUtils.cuh 2025-08-26T20:45:19.2176922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\TensorModeKernel.cuh 2025-08-26T20:45:19.2180604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\TensorModeKernel.h 2025-08-26T20:45:19.2184243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\TensorTopK.h 2025-08-26T20:45:19.2187706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\thread_constants.h 2025-08-26T20:45:19.2199656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\UniqueCub.cuh 2025-08-26T20:45:19.2203090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\UpSample.cuh 2025-08-26T20:45:19.2206630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\vol2col.cuh 2025-08-26T20:45:19.2216752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\ck_bgemm.h 2025-08-26T20:45:19.2220069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\ck_gemm.h 2025-08-26T20:45:19.2223753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\ck_gemm_template.h 2025-08-26T20:45:19.2227332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\ck_types.h 2025-08-26T20:45:19.2238545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\bgemm_kernels\bgemm_kernel_collection.h 2025-08-26T20:45:19.2242068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\bgemm_kernels\bgemm_kernel_template.h 2025-08-26T20:45:19.2250039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\kleidiai\kai_kernels.h 2025-08-26T20:45:19.2253392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\kleidiai\kai_pack.h 2025-08-26T20:45:19.2256826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\kleidiai\kai_ukernel_interface.h 2025-08-26T20:45:19.2267560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\Conv.h 2025-08-26T20:45:19.2270917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\FusionUtils.h 2025-08-26T20:45:19.2277864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\Attr.h 2025-08-26T20:45:19.2281329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\DnnlExt.h 2025-08-26T20:45:19.2284703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\LRUCache.h 2025-08-26T20:45:19.2288107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\oneDNN.h 2025-08-26T20:45:19.2291451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\oneDNNContext.h 2025-08-26T20:45:19.2294898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\Utils.h 2025-08-26T20:45:19.2307418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\Copy.h 2025-08-26T20:45:19.2311124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\MetalShaderLibrary.h 2025-08-26T20:45:19.2314535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\MPSGraphSequoiaOps.h 2025-08-26T20:45:19.2317946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\MPSGraphSonomaOps.h 2025-08-26T20:45:19.2325697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\MPSGraphVenturaOps.h 2025-08-26T20:45:19.2329327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\OperationUtils.h 2025-08-26T20:45:19.2332730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\TensorFactory.h 2025-08-26T20:45:19.2339805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\kernels\GridSampler.h 2025-08-26T20:45:19.2343690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\kernels\Pooling.h 2025-08-26T20:45:19.2347876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\kernels\UpSample.h 2025-08-26T20:45:19.2372727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\BinaryKernel.h 2025-08-26T20:45:19.2376460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\FusedAdamAmsgradKernelImpl.h 2025-08-26T20:45:19.2379922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\FusedAdamKernelImpl.h 2025-08-26T20:45:19.2389521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\FusedAdamWAmsgradKernelImpl.h 2025-08-26T20:45:19.2393557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\FusedAdamWKernelImpl.h 2025-08-26T20:45:19.2397125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\MultiTensorApply.h 2025-08-26T20:45:19.2405393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mtia\EmptyTensor.h 2025-08-26T20:45:19.2412954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\nested\NestedTensorBinaryOps.h 2025-08-26T20:45:19.2416726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\nested\NestedTensorMath.h 2025-08-26T20:45:19.2420511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\nested\NestedTensorTransformerFunctions.h 2025-08-26T20:45:19.2428716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\nested\NestedTensorTransformerUtils.h 2025-08-26T20:45:19.2432611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\nested\NestedTensorUtils.h 2025-08-26T20:45:19.2440625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\AffineQuantizer.h 2025-08-26T20:45:19.2444207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\AffineQuantizerBase.h 2025-08-26T20:45:19.2447883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\ConvUtils.h 2025-08-26T20:45:19.2456595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\Copy.h 2025-08-26T20:45:19.2459788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\FakeQuantAffine.h 2025-08-26T20:45:19.2463834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\IndexKernel.h 2025-08-26T20:45:19.2468179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\library.h 2025-08-26T20:45:19.2470929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\PackedParams.h 2025-08-26T20:45:19.2479680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\ACLUtils.h 2025-08-26T20:45:19.2482056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\BinaryOps.h 2025-08-26T20:45:19.2485722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\conv_serialization.h 2025-08-26T20:45:19.2489199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\EmbeddingPackedParams.h 2025-08-26T20:45:19.2496997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\fbgemm_utils.h 2025-08-26T20:45:19.2500058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\init_qnnpack.h 2025-08-26T20:45:19.2503586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\OnednnUtils.h 2025-08-26T20:45:19.2508449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\qconv.h 2025-08-26T20:45:19.2511050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\qembeddingbag.h 2025-08-26T20:45:19.2514676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\qembeddingbag_prepack.h 2025-08-26T20:45:19.2518067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\qlinear.h 2025-08-26T20:45:19.2521883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\QnnpackUtils.h 2025-08-26T20:45:19.2525908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\QuantizedOps.h 2025-08-26T20:45:19.2528981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\QuantUtils.h 2025-08-26T20:45:19.2532406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\RuyUtils.h 2025-08-26T20:45:19.2535781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\XnnpackUtils.h 2025-08-26T20:45:19.2543857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cudnn\utils.h 2025-08-26T20:45:19.2552379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\attention.h 2025-08-26T20:45:19.2556623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\sdp_utils.h 2025-08-26T20:45:19.2560423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\sdp_utils_cpp.h 2025-08-26T20:45:19.2572876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\sdp_utils.h 2025-08-26T20:45:19.2580227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\flash_attn\flash_api.h 2025-08-26T20:45:19.2584032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\flash_attn\static_switch.h 2025-08-26T20:45:19.2591720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\debug_utils.h 2025-08-26T20:45:19.2595249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm_kernel_utils.h 2025-08-26T20:45:19.2599138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernel_backward.h 2025-08-26T20:45:19.2608169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernel_forward.h 2025-08-26T20:45:19.2612544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\pytorch_utils.h 2025-08-26T20:45:19.2620211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue\epilogue_pipelined.h 2025-08-26T20:45:19.2623954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue\epilogue_rescale_output.h 2025-08-26T20:45:19.2627879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue\epilogue_thread_apply_logsumexp.h 2025-08-26T20:45:19.2640865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma.h 2025-08-26T20:45:19.2644371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma_base.h 2025-08-26T20:45:19.2648127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma_multistage.h 2025-08-26T20:45:19.2651870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma_pipelined.h 2025-08-26T20:45:19.2659908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\find_default_mma.h 2025-08-26T20:45:19.2663457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\mma_accum_lambda_iterator.h 2025-08-26T20:45:19.2666993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\mma_from_smem.h 2025-08-26T20:45:19.2675007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\default_warp_iterator_from_smem.h 2025-08-26T20:45:19.2678550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\epilogue_predicated_tile_iterator.h 2025-08-26T20:45:19.2682380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\make_residual_last.h 2025-08-26T20:45:19.2690774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\predicated_tile_access_iterator_residual_last.h 2025-08-26T20:45:19.2695753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\predicated_tile_iterator_residual_last.h 2025-08-26T20:45:19.2700504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\transpose_warp_iterator.h 2025-08-26T20:45:19.2704368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\warp_iterator_from_smem.h 2025-08-26T20:45:19.2711898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB.h 2025-08-26T20:45:19.2716058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF.h 2025-08-26T20:45:19.2723604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\transform\tile_smem_loader.h 2025-08-26T20:45:19.2732159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\hip\aotriton_adapter.h 2025-08-26T20:45:19.2739466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\hip\flash_attn\flash_api.h 2025-08-26T20:45:19.2746246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\hip\flash_attn\ck\me_ck_api.h 2025-08-26T20:45:19.2754734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\utils\Factory.h 2025-08-26T20:45:19.2758249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\utils\ParamsHash.h 2025-08-26T20:45:19.2761875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\utils\ParamUtils.h 2025-08-26T20:45:19.2770695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs.h 2025-08-26T20:45:19.2774077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\absolute.h 2025-08-26T20:45:19.2777566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\absolute_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.2780959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\absolute_native.h 2025-08-26T20:45:19.2789483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\absolute_ops.h 2025-08-26T20:45:19.2793160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.2796583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs_cpu_dispatch.h 2025-08-26T20:45:19.2800876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs_cuda_dispatch.h 2025-08-26T20:45:19.2804243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs_native.h 2025-08-26T20:45:19.2807696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs_ops.h 2025-08-26T20:45:19.2810973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos.h 2025-08-26T20:45:19.2814255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh.h 2025-08-26T20:45:19.2817892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.2821329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_cpu_dispatch.h 2025-08-26T20:45:19.2824853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_cuda_dispatch.h 2025-08-26T20:45:19.2829075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_meta.h 2025-08-26T20:45:19.2832533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_meta_dispatch.h 2025-08-26T20:45:19.2836032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_native.h 2025-08-26T20:45:19.2839672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_ops.h 2025-08-26T20:45:19.2843530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.2851450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_cpu_dispatch.h 2025-08-26T20:45:19.2854949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_cuda_dispatch.h 2025-08-26T20:45:19.2859255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_meta.h 2025-08-26T20:45:19.2862811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_meta_dispatch.h 2025-08-26T20:45:19.2866320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_native.h 2025-08-26T20:45:19.2870256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_ops.h 2025-08-26T20:45:19.2873789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool1d.h 2025-08-26T20:45:19.2877463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.2881947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.2889953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool1d_native.h 2025-08-26T20:45:19.2893448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool1d_ops.h 2025-08-26T20:45:19.2897835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d.h 2025-08-26T20:45:19.2901897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.2905559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d_cpu_dispatch.h 2025-08-26T20:45:19.2909581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d_cuda_dispatch.h 2025-08-26T20:45:19.2913498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d_native.h 2025-08-26T20:45:19.2917174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d_ops.h 2025-08-26T20:45:19.2925311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d.h 2025-08-26T20:45:19.2928923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_backward.h 2025-08-26T20:45:19.2932736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_backward_cpu_dispatch.h 2025-08-26T20:45:19.2936532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_backward_cuda_dispatch.h 2025-08-26T20:45:19.2940181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_backward_native.h 2025-08-26T20:45:19.2944351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_backward_ops.h 2025-08-26T20:45:19.2948956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.2952529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_cpu_dispatch.h 2025-08-26T20:45:19.2956346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_cuda_dispatch.h 2025-08-26T20:45:19.2960125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_native.h 2025-08-26T20:45:19.2963772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_ops.h 2025-08-26T20:45:19.2976886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool1d.h 2025-08-26T20:45:19.2980762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool1d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.2984355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool1d_native.h 2025-08-26T20:45:19.2988107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool1d_ops.h 2025-08-26T20:45:19.2991844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d.h 2025-08-26T20:45:19.2996848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward.h 2025-08-26T20:45:19.3001264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.3005147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_cpu_dispatch.h 2025-08-26T20:45:19.3009101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_cuda_dispatch.h 2025-08-26T20:45:19.3013035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_meta.h 2025-08-26T20:45:19.3016969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_meta_dispatch.h 2025-08-26T20:45:19.3025081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_native.h 2025-08-26T20:45:19.3028893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_ops.h 2025-08-26T20:45:19.3033432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.3037142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_cpu_dispatch.h 2025-08-26T20:45:19.3041012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_cuda_dispatch.h 2025-08-26T20:45:19.3045314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_meta.h 2025-08-26T20:45:19.3049284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_meta_dispatch.h 2025-08-26T20:45:19.3058006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_native.h 2025-08-26T20:45:19.3061822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_ops.h 2025-08-26T20:45:19.3065655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d.h 2025-08-26T20:45:19.3069408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward.h 2025-08-26T20:45:19.3073426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.3084023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_cpu_dispatch.h 2025-08-26T20:45:19.3088071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_cuda_dispatch.h 2025-08-26T20:45:19.3091730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_meta.h 2025-08-26T20:45:19.3096075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_meta_dispatch.h 2025-08-26T20:45:19.3099871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_native.h 2025-08-26T20:45:19.3104566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_ops.h 2025-08-26T20:45:19.3108742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.3112437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_cpu_dispatch.h 2025-08-26T20:45:19.3116766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_cuda_dispatch.h 2025-08-26T20:45:19.3120450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_meta.h 2025-08-26T20:45:19.3124421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_meta_dispatch.h 2025-08-26T20:45:19.3128535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_native.h 2025-08-26T20:45:19.3132646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_ops.h 2025-08-26T20:45:19.3136359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add.h 2025-08-26T20:45:19.3139763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm.h 2025-08-26T20:45:19.3143150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm_cpu_dispatch.h 2025-08-26T20:45:19.3146647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm_cuda_dispatch.h 2025-08-26T20:45:19.3150455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm_meta_dispatch.h 2025-08-26T20:45:19.3153852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm_native.h 2025-08-26T20:45:19.3157299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm_ops.h 2025-08-26T20:45:19.3160973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv.h 2025-08-26T20:45:19.3164588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.3168231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_cpu_dispatch.h 2025-08-26T20:45:19.3171781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_cuda_dispatch.h 2025-08-26T20:45:19.3179219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_meta.h 2025-08-26T20:45:19.3182922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_meta_dispatch.h 2025-08-26T20:45:19.3186821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_native.h 2025-08-26T20:45:19.3190593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_ops.h 2025-08-26T20:45:19.3194326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul.h 2025-08-26T20:45:19.3197981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.3201475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_cpu_dispatch.h 2025-08-26T20:45:19.3204989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_cuda_dispatch.h 2025-08-26T20:45:19.3209044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_meta.h 2025-08-26T20:45:19.3212678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_meta_dispatch.h 2025-08-26T20:45:19.3216334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_native.h 2025-08-26T20:45:19.3220124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_ops.h 2025-08-26T20:45:19.3224119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm.h 2025-08-26T20:45:19.3227737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.3231270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_cpu_dispatch.h 2025-08-26T20:45:19.3234825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_cuda_dispatch.h 2025-08-26T20:45:19.3238482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_meta.h 2025-08-26T20:45:19.3242590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_meta_dispatch.h 2025-08-26T20:45:19.3246626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_native.h 2025-08-26T20:45:19.3250628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_ops.h 2025-08-26T20:45:19.3254710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv.h 2025-08-26T20:45:19.3258392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.3266935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_cpu_dispatch.h 2025-08-26T20:45:19.3270546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_cuda_dispatch.h 2025-08-26T20:45:19.3274164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_meta.h 2025-08-26T20:45:19.3277867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_meta_dispatch.h 2025-08-26T20:45:19.3281745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_native.h 2025-08-26T20:45:19.3285614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_ops.h 2025-08-26T20:45:19.3289564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr.h 2025-08-26T20:45:19.3293209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.3296824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr_cpu_dispatch.h 2025-08-26T20:45:19.3300323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr_cuda_dispatch.h 2025-08-26T20:45:19.3304031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr_native.h 2025-08-26T20:45:19.3307823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr_ops.h 2025-08-26T20:45:19.3311356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.3315400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.3319003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_cpu_dispatch.h 2025-08-26T20:45:19.3322986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_cuda_dispatch.h 2025-08-26T20:45:19.3327022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_meta.h 2025-08-26T20:45:19.3330427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_meta_dispatch.h 2025-08-26T20:45:19.3334058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_native.h 2025-08-26T20:45:19.3337619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_ops.h 2025-08-26T20:45:19.3341126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adjoint.h 2025-08-26T20:45:19.3344789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adjoint_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.3348390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adjoint_native.h 2025-08-26T20:45:19.3351898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adjoint_ops.h 2025-08-26T20:45:19.3355670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator.h 2025-08-26T20:45:19.3359345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_backward.h 2025-08-26T20:45:19.3363311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.3367308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_backward_native.h 2025-08-26T20:45:19.3371040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_backward_ops.h 2025-08-26T20:45:19.3374937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.3384662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_native.h 2025-08-26T20:45:19.3388448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_ops.h 2025-08-26T20:45:19.3392445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias.h 2025-08-26T20:45:19.3396740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.3400735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_copy.h 2025-08-26T20:45:19.3404697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.3408480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.3412213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_copy_native.h 2025-08-26T20:45:19.3415964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_copy_ops.h 2025-08-26T20:45:19.3419888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_native.h 2025-08-26T20:45:19.3423512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_ops.h 2025-08-26T20:45:19.3427281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_as.h 2025-08-26T20:45:19.3431158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_as_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.3434846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_as_native.h 2025-08-26T20:45:19.3438408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_as_ops.h 2025-08-26T20:45:19.3457936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_tensors.h 2025-08-26T20:45:19.3471821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_tensors_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.3475516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_tensors_native.h 2025-08-26T20:45:19.3479374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_tensors_ops.h 2025-08-26T20:45:19.3483014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_to.h 2025-08-26T20:45:19.3486673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_to_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.3490323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_to_native.h 2025-08-26T20:45:19.3494358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_to_ops.h 2025-08-26T20:45:19.3497960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all.h 2025-08-26T20:45:19.3501547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\allclose.h 2025-08-26T20:45:19.3505310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\allclose_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.3508888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\allclose_native.h 2025-08-26T20:45:19.3512566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\allclose_ops.h 2025-08-26T20:45:19.3516472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.3520189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.3523916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.3527805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_cpu_dispatch.h 2025-08-26T20:45:19.3531378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_cuda_dispatch.h 2025-08-26T20:45:19.3534901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_meta.h 2025-08-26T20:45:19.3538713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_meta_dispatch.h 2025-08-26T20:45:19.3542396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_native.h 2025-08-26T20:45:19.3545837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_ops.h 2025-08-26T20:45:19.3550047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alpha_dropout.h 2025-08-26T20:45:19.3554028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alpha_dropout_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.3557868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alpha_dropout_native.h 2025-08-26T20:45:19.3567547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alpha_dropout_ops.h 2025-08-26T20:45:19.3571346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax.h 2025-08-26T20:45:19.3575032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.3578558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_cpu_dispatch.h 2025-08-26T20:45:19.3582186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_cuda_dispatch.h 2025-08-26T20:45:19.3586128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_meta.h 2025-08-26T20:45:19.3589766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_meta_dispatch.h 2025-08-26T20:45:19.3593443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_native.h 2025-08-26T20:45:19.3597117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_ops.h 2025-08-26T20:45:19.3600563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin.h 2025-08-26T20:45:19.3603856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax.h 2025-08-26T20:45:19.3607756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.3611141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_cpu_dispatch.h 2025-08-26T20:45:19.3614674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_cuda_dispatch.h 2025-08-26T20:45:19.3618243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_meta.h 2025-08-26T20:45:19.3622053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_meta_dispatch.h 2025-08-26T20:45:19.3625680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_native.h 2025-08-26T20:45:19.3629333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_ops.h 2025-08-26T20:45:19.3633655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.3637200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_cpu_dispatch.h 2025-08-26T20:45:19.3640924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_cuda_dispatch.h 2025-08-26T20:45:19.3644461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_meta.h 2025-08-26T20:45:19.3648300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_meta_dispatch.h 2025-08-26T20:45:19.3651843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_native.h 2025-08-26T20:45:19.3655454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_ops.h 2025-08-26T20:45:19.3658802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\and.h 2025-08-26T20:45:19.3662271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\and_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.3665747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\and_native.h 2025-08-26T20:45:19.3669257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\and_ops.h 2025-08-26T20:45:19.3672586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\angle.h 2025-08-26T20:45:19.3676299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\angle_cpu_dispatch.h 2025-08-26T20:45:19.3680172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\angle_cuda_dispatch.h 2025-08-26T20:45:19.3684357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\angle_native.h 2025-08-26T20:45:19.3687997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\angle_ops.h 2025-08-26T20:45:19.3692020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any.h 2025-08-26T20:45:19.3695692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.3699518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.3703120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.3706817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_cpu_dispatch.h 2025-08-26T20:45:19.3710405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_cuda_dispatch.h 2025-08-26T20:45:19.3718918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_meta.h 2025-08-26T20:45:19.3722328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_meta_dispatch.h 2025-08-26T20:45:19.3726499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_native.h 2025-08-26T20:45:19.3729592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_ops.h 2025-08-26T20:45:19.3732883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange.h 2025-08-26T20:45:19.3736245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.3739938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_cpu_dispatch.h 2025-08-26T20:45:19.3744121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_cuda_dispatch.h 2025-08-26T20:45:19.3748108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_meta_dispatch.h 2025-08-26T20:45:19.3751523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_native.h 2025-08-26T20:45:19.3755130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_ops.h 2025-08-26T20:45:19.3758776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccos.h 2025-08-26T20:45:19.3762096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccosh.h 2025-08-26T20:45:19.3765697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccosh_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.3769836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccosh_native.h 2025-08-26T20:45:19.3773299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccosh_ops.h 2025-08-26T20:45:19.3777002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccos_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.3780510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccos_native.h 2025-08-26T20:45:19.3784242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccos_ops.h 2025-08-26T20:45:19.3788322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsin.h 2025-08-26T20:45:19.3791736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsinh.h 2025-08-26T20:45:19.3795360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsinh_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.3799127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsinh_native.h 2025-08-26T20:45:19.3802655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsinh_ops.h 2025-08-26T20:45:19.3806523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsin_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.3810052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsin_native.h 2025-08-26T20:45:19.3813589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsin_ops.h 2025-08-26T20:45:19.3817134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan.h 2025-08-26T20:45:19.3820487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan2.h 2025-08-26T20:45:19.3824041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan2_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.3827726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan2_native.h 2025-08-26T20:45:19.3831672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan2_ops.h 2025-08-26T20:45:19.3835621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctanh.h 2025-08-26T20:45:19.3839138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctanh_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.3842678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctanh_native.h 2025-08-26T20:45:19.3846434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctanh_ops.h 2025-08-26T20:45:19.3850229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.3853916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan_native.h 2025-08-26T20:45:19.3857604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan_ops.h 2025-08-26T20:45:19.3861060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax.h 2025-08-26T20:45:19.3864760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.3868303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_cpu_dispatch.h 2025-08-26T20:45:19.3871873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_cuda_dispatch.h 2025-08-26T20:45:19.3875411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_meta.h 2025-08-26T20:45:19.3879180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_meta_dispatch.h 2025-08-26T20:45:19.3883003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_native.h 2025-08-26T20:45:19.3886686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_ops.h 2025-08-26T20:45:19.3890255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin.h 2025-08-26T20:45:19.3894188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.3897675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_cpu_dispatch.h 2025-08-26T20:45:19.3902117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_cuda_dispatch.h 2025-08-26T20:45:19.3905759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_meta.h 2025-08-26T20:45:19.3909573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_meta_dispatch.h 2025-08-26T20:45:19.3913504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_native.h 2025-08-26T20:45:19.3917066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_ops.h 2025-08-26T20:45:19.3920783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argsort.h 2025-08-26T20:45:19.3924502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argsort_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.3928259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argsort_native.h 2025-08-26T20:45:19.3931936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argsort_ops.h 2025-08-26T20:45:19.3935518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argwhere.h 2025-08-26T20:45:19.3939235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argwhere_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.3943183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argwhere_native.h 2025-08-26T20:45:19.3946711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argwhere_ops.h 2025-08-26T20:45:19.3950871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin.h 2025-08-26T20:45:19.3954475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh.h 2025-08-26T20:45:19.3958146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.3962067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_cpu_dispatch.h 2025-08-26T20:45:19.3966058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_cuda_dispatch.h 2025-08-26T20:45:19.3970589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_meta.h 2025-08-26T20:45:19.3974401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_meta_dispatch.h 2025-08-26T20:45:19.3978077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_native.h 2025-08-26T20:45:19.3981718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_ops.h 2025-08-26T20:45:19.3985775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.3989364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_cpu_dispatch.h 2025-08-26T20:45:19.3993156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_cuda_dispatch.h 2025-08-26T20:45:19.3996794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_meta.h 2025-08-26T20:45:19.4000645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_meta_dispatch.h 2025-08-26T20:45:19.4005729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_native.h 2025-08-26T20:45:19.4009459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_ops.h 2025-08-26T20:45:19.4012888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided.h 2025-08-26T20:45:19.4016791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.4020354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_copy.h 2025-08-26T20:45:19.4024226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.4028265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.4032062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_copy_native.h 2025-08-26T20:45:19.4041890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_copy_ops.h 2025-08-26T20:45:19.4046259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_cpu_dispatch.h 2025-08-26T20:45:19.4050057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_cuda_dispatch.h 2025-08-26T20:45:19.4053730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_meta_dispatch.h 2025-08-26T20:45:19.4057822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_native.h 2025-08-26T20:45:19.4061602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_ops.h 2025-08-26T20:45:19.4065307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_scatter.h 2025-08-26T20:45:19.4069688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.4073688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_scatter_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.4077308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_scatter_native.h 2025-08-26T20:45:19.4081544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_scatter_ops.h 2025-08-26T20:45:19.4085268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan.h 2025-08-26T20:45:19.4088851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2.h 2025-08-26T20:45:19.4092661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.4096342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_cpu_dispatch.h 2025-08-26T20:45:19.4100282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_cuda_dispatch.h 2025-08-26T20:45:19.4104022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_meta.h 2025-08-26T20:45:19.4107610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_meta_dispatch.h 2025-08-26T20:45:19.4112028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_native.h 2025-08-26T20:45:19.4116420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_ops.h 2025-08-26T20:45:19.4120788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh.h 2025-08-26T20:45:19.4124930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.4128673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_cpu_dispatch.h 2025-08-26T20:45:19.4132559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_cuda_dispatch.h 2025-08-26T20:45:19.4136258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_meta.h 2025-08-26T20:45:19.4139920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_meta_dispatch.h 2025-08-26T20:45:19.4143894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_native.h 2025-08-26T20:45:19.4147526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_ops.h 2025-08-26T20:45:19.4151395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.4154866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_cpu_dispatch.h 2025-08-26T20:45:19.4158482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_cuda_dispatch.h 2025-08-26T20:45:19.4162106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_meta.h 2025-08-26T20:45:19.4166294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_meta_dispatch.h 2025-08-26T20:45:19.4170299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_native.h 2025-08-26T20:45:19.4173756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_ops.h 2025-08-26T20:45:19.4177168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_1d.h 2025-08-26T20:45:19.4180909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_1d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.4184642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_1d_native.h 2025-08-26T20:45:19.4188342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_1d_ops.h 2025-08-26T20:45:19.4192052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_2d.h 2025-08-26T20:45:19.4197138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_2d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.4205878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_2d_native.h 2025-08-26T20:45:19.4206920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_2d_ops.h 2025-08-26T20:45:19.4210930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_3d.h 2025-08-26T20:45:19.4214713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_3d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.4218224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_3d_native.h 2025-08-26T20:45:19.4221814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_3d_ops.h 2025-08-26T20:45:19.4225680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool1d.h 2025-08-26T20:45:19.4229895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool1d_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.4234046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool1d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.4237684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool1d_native.h 2025-08-26T20:45:19.4241369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool1d_ops.h 2025-08-26T20:45:19.4245309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d.h 2025-08-26T20:45:19.4249328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward.h 2025-08-26T20:45:19.4253691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.4257876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_cpu_dispatch.h 2025-08-26T20:45:19.4261618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_cuda_dispatch.h 2025-08-26T20:45:19.4265280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_meta.h 2025-08-26T20:45:19.4269180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_meta_dispatch.h 2025-08-26T20:45:19.4272688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_native.h 2025-08-26T20:45:19.4276460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_ops.h 2025-08-26T20:45:19.4280647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.4284270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_cpu_dispatch.h 2025-08-26T20:45:19.4288067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_cuda_dispatch.h 2025-08-26T20:45:19.4291652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_meta.h 2025-08-26T20:45:19.4295303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_meta_dispatch.h 2025-08-26T20:45:19.4298905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_native.h 2025-08-26T20:45:19.4302531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_ops.h 2025-08-26T20:45:19.4306588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d.h 2025-08-26T20:45:19.4310339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward.h 2025-08-26T20:45:19.4314301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.4317990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_cpu_dispatch.h 2025-08-26T20:45:19.4321716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_cuda_dispatch.h 2025-08-26T20:45:19.4326264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_meta.h 2025-08-26T20:45:19.4330412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_meta_dispatch.h 2025-08-26T20:45:19.4334219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_native.h 2025-08-26T20:45:19.4348026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_ops.h 2025-08-26T20:45:19.4352081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.4355979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_cpu_dispatch.h 2025-08-26T20:45:19.4359693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_cuda_dispatch.h 2025-08-26T20:45:19.4363768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_meta.h 2025-08-26T20:45:19.4367936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_meta_dispatch.h 2025-08-26T20:45:19.4371651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_native.h 2025-08-26T20:45:19.4375460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_ops.h 2025-08-26T20:45:19.4379137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm.h 2025-08-26T20:45:19.4382823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.4386751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_cpu_dispatch.h 2025-08-26T20:45:19.4390680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_cuda_dispatch.h 2025-08-26T20:45:19.4394771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_meta.h 2025-08-26T20:45:19.4398827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_meta_dispatch.h 2025-08-26T20:45:19.4402417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_native.h 2025-08-26T20:45:19.4406653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_ops.h 2025-08-26T20:45:19.4410525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bartlett_window.h 2025-08-26T20:45:19.4414640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bartlett_window_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.4418522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bartlett_window_native.h 2025-08-26T20:45:19.4422160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bartlett_window_ops.h 2025-08-26T20:45:19.4426209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm.h 2025-08-26T20:45:19.4429950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward.h 2025-08-26T20:45:19.4433799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_cpu_dispatch.h 2025-08-26T20:45:19.4437902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_cuda_dispatch.h 2025-08-26T20:45:19.4442721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_elemt.h 2025-08-26T20:45:19.4446803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.4450824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_elemt_cuda_dispatch.h 2025-08-26T20:45:19.4455131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_elemt_native.h 2025-08-26T20:45:19.4459317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_elemt_ops.h 2025-08-26T20:45:19.4463049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_native.h 2025-08-26T20:45:19.4466854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_ops.h 2025-08-26T20:45:19.4498617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_reduce.h 2025-08-26T20:45:19.4502757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.4506970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_reduce_cuda_dispatch.h 2025-08-26T20:45:19.4511059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_reduce_native.h 2025-08-26T20:45:19.4514695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_reduce_ops.h 2025-08-26T20:45:19.4518794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.4522603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_elemt.h 2025-08-26T20:45:19.4526671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_elemt_cuda_dispatch.h 2025-08-26T20:45:19.4530604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_elemt_native.h 2025-08-26T20:45:19.4534493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_elemt_ops.h 2025-08-26T20:45:19.4538206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats.h 2025-08-26T20:45:19.4542427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.4546290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_cuda_dispatch.h 2025-08-26T20:45:19.4550221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_native.h 2025-08-26T20:45:19.4554022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_ops.h 2025-08-26T20:45:19.4557945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_with_counts.h 2025-08-26T20:45:19.4562663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_with_counts_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.4567048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_with_counts_cuda_dispatch.h 2025-08-26T20:45:19.4571131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_with_counts_native.h 2025-08-26T20:45:19.4575442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_with_counts_ops.h 2025-08-26T20:45:19.4579482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_native.h 2025-08-26T20:45:19.4583180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_ops.h 2025-08-26T20:45:19.4587031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_stats.h 2025-08-26T20:45:19.4591157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_stats_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.4594921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_stats_cuda_dispatch.h 2025-08-26T20:45:19.4599206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_stats_native.h 2025-08-26T20:45:19.4602954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_stats_ops.h 2025-08-26T20:45:19.4607096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats.h 2025-08-26T20:45:19.4611331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.4615098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats_cpu_dispatch.h 2025-08-26T20:45:19.4619060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats_cuda_dispatch.h 2025-08-26T20:45:19.4622942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats_native.h 2025-08-26T20:45:19.4626711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats_ops.h 2025-08-26T20:45:19.4630382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli.h 2025-08-26T20:45:19.4634258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.4638023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.4641682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_cpu_dispatch.h 2025-08-26T20:45:19.4645667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_cuda_dispatch.h 2025-08-26T20:45:19.4655458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_meta_dispatch.h 2025-08-26T20:45:19.4659184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_native.h 2025-08-26T20:45:19.4662856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_ops.h 2025-08-26T20:45:19.4666209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bilinear.h 2025-08-26T20:45:19.4670161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bilinear_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.4673790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bilinear_native.h 2025-08-26T20:45:19.4677260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bilinear_ops.h 2025-08-26T20:45:19.4681063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy.h 2025-08-26T20:45:19.4684730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_backward.h 2025-08-26T20:45:19.4688785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_backward_cpu_dispatch.h 2025-08-26T20:45:19.4692457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_backward_cuda_dispatch.h 2025-08-26T20:45:19.4696152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_backward_native.h 2025-08-26T20:45:19.4700173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_backward_ops.h 2025-08-26T20:45:19.4704035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_cpu_dispatch.h 2025-08-26T20:45:19.4707771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_cuda_dispatch.h 2025-08-26T20:45:19.4711377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_native.h 2025-08-26T20:45:19.4715030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_ops.h 2025-08-26T20:45:19.4718790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_with_logits.h 2025-08-26T20:45:19.4722911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.4726748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_with_logits_native.h 2025-08-26T20:45:19.4730474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_with_logits_ops.h 2025-08-26T20:45:19.4734018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount.h 2025-08-26T20:45:19.4737594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.4741251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount_cpu_dispatch.h 2025-08-26T20:45:19.4744865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount_cuda_dispatch.h 2025-08-26T20:45:19.4748519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount_native.h 2025-08-26T20:45:19.4752505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount_ops.h 2025-08-26T20:45:19.4756124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial.h 2025-08-26T20:45:19.4759854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.4763925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial_cpu_dispatch.h 2025-08-26T20:45:19.4767628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial_cuda_dispatch.h 2025-08-26T20:45:19.4771200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial_native.h 2025-08-26T20:45:19.4775013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial_ops.h 2025-08-26T20:45:19.4779453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and.h 2025-08-26T20:45:19.4783450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.4787116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.4790982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_cpu_dispatch.h 2025-08-26T20:45:19.4794666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_cuda_dispatch.h 2025-08-26T20:45:19.4798354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_meta.h 2025-08-26T20:45:19.4802105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_meta_dispatch.h 2025-08-26T20:45:19.4805941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_native.h 2025-08-26T20:45:19.4809660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_ops.h 2025-08-26T20:45:19.4813393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift.h 2025-08-26T20:45:19.4817233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.4821027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.4824580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_cpu_dispatch.h 2025-08-26T20:45:19.4828453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_cuda_dispatch.h 2025-08-26T20:45:19.4832159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_meta.h 2025-08-26T20:45:19.4836216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_meta_dispatch.h 2025-08-26T20:45:19.4840514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_native.h 2025-08-26T20:45:19.4844252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_ops.h 2025-08-26T20:45:19.4848267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not.h 2025-08-26T20:45:19.4852458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.4856178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_cpu_dispatch.h 2025-08-26T20:45:19.4860079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_cuda_dispatch.h 2025-08-26T20:45:19.4864320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_meta.h 2025-08-26T20:45:19.4868067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_meta_dispatch.h 2025-08-26T20:45:19.4871932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_native.h 2025-08-26T20:45:19.4875720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_ops.h 2025-08-26T20:45:19.4879552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or.h 2025-08-26T20:45:19.4883826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.4887792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.4891494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_cpu_dispatch.h 2025-08-26T20:45:19.4895305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_cuda_dispatch.h 2025-08-26T20:45:19.4899135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_meta.h 2025-08-26T20:45:19.4902987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_meta_dispatch.h 2025-08-26T20:45:19.4906749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_native.h 2025-08-26T20:45:19.4910700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_ops.h 2025-08-26T20:45:19.4914469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift.h 2025-08-26T20:45:19.4918494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.4922327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.4926128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_cpu_dispatch.h 2025-08-26T20:45:19.4930372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_cuda_dispatch.h 2025-08-26T20:45:19.4934782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_meta.h 2025-08-26T20:45:19.4938849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_meta_dispatch.h 2025-08-26T20:45:19.4942921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_native.h 2025-08-26T20:45:19.4946853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_ops.h 2025-08-26T20:45:19.4950698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor.h 2025-08-26T20:45:19.4954635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.4958800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.4963400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_cpu_dispatch.h 2025-08-26T20:45:19.4967463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_cuda_dispatch.h 2025-08-26T20:45:19.4971542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_meta.h 2025-08-26T20:45:19.4975665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_meta_dispatch.h 2025-08-26T20:45:19.4979316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_native.h 2025-08-26T20:45:19.4983059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_ops.h 2025-08-26T20:45:19.4986921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\blackman_window.h 2025-08-26T20:45:19.4990800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\blackman_window_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.4994375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\blackman_window_native.h 2025-08-26T20:45:19.4998900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\blackman_window_ops.h 2025-08-26T20:45:19.5003364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\block_diag.h 2025-08-26T20:45:19.5007513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\block_diag_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.5011139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\block_diag_native.h 2025-08-26T20:45:19.5015112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\block_diag_ops.h 2025-08-26T20:45:19.5018849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm.h 2025-08-26T20:45:19.5022497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.5026113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_cpu_dispatch.h 2025-08-26T20:45:19.5029827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_cuda_dispatch.h 2025-08-26T20:45:19.5033402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_meta.h 2025-08-26T20:45:19.5036812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_meta_dispatch.h 2025-08-26T20:45:19.5040629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_native.h 2025-08-26T20:45:19.5044231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_ops.h 2025-08-26T20:45:19.5047890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_tensors.h 2025-08-26T20:45:19.5051619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_tensors_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.5055334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_tensors_native.h 2025-08-26T20:45:19.5059143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_tensors_ops.h 2025-08-26T20:45:19.5062800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_to.h 2025-08-26T20:45:19.5066726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_to_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.5071434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_to_native.h 2025-08-26T20:45:19.5075313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_to_ops.h 2025-08-26T20:45:19.5079187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize.h 2025-08-26T20:45:19.5083640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.5087709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize_cpu_dispatch.h 2025-08-26T20:45:19.5091265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize_cuda_dispatch.h 2025-08-26T20:45:19.5095288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize_native.h 2025-08-26T20:45:19.5099284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize_ops.h 2025-08-26T20:45:19.5102919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\can_cast.h 2025-08-26T20:45:19.5107107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\can_cast_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.5111174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\can_cast_native.h 2025-08-26T20:45:19.5114776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\can_cast_ops.h 2025-08-26T20:45:19.5118491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cartesian_prod.h 2025-08-26T20:45:19.5122390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cartesian_prod_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.5126155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cartesian_prod_native.h 2025-08-26T20:45:19.5129853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cartesian_prod_ops.h 2025-08-26T20:45:19.5133702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat.h 2025-08-26T20:45:19.5137401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.5141367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.5145334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_cpu_dispatch.h 2025-08-26T20:45:19.5148889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_cuda_dispatch.h 2025-08-26T20:45:19.5152816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_meta.h 2025-08-26T20:45:19.5156274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_meta_dispatch.h 2025-08-26T20:45:19.5159916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_native.h 2025-08-26T20:45:19.5163557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_ops.h 2025-08-26T20:45:19.5167095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy.h 2025-08-26T20:45:19.5170591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.5174214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_cpu_dispatch.h 2025-08-26T20:45:19.5178246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_cuda_dispatch.h 2025-08-26T20:45:19.5181997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_meta_dispatch.h 2025-08-26T20:45:19.5194188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_native.h 2025-08-26T20:45:19.5197895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_ops.h 2025-08-26T20:45:19.5201481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices.h 2025-08-26T20:45:19.5205165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.5208915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_copy.h 2025-08-26T20:45:19.5212825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.5217056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.5220714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_copy_native.h 2025-08-26T20:45:19.5224594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_copy_ops.h 2025-08-26T20:45:19.5228396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_native.h 2025-08-26T20:45:19.5232001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_ops.h 2025-08-26T20:45:19.5235601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cdist.h 2025-08-26T20:45:19.5239216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cdist_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.5242805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cdist_native.h 2025-08-26T20:45:19.5246483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cdist_ops.h 2025-08-26T20:45:19.5250699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil.h 2025-08-26T20:45:19.5254421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.5257927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_cpu_dispatch.h 2025-08-26T20:45:19.5261512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_cuda_dispatch.h 2025-08-26T20:45:19.5265187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_meta.h 2025-08-26T20:45:19.5268655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_meta_dispatch.h 2025-08-26T20:45:19.5272485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_native.h 2025-08-26T20:45:19.5276230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_ops.h 2025-08-26T20:45:19.5279560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\celu.h 2025-08-26T20:45:19.5283445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\celu_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.5287098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\celu_native.h 2025-08-26T20:45:19.5290920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\celu_ops.h 2025-08-26T20:45:19.5294316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chain_matmul.h 2025-08-26T20:45:19.5298008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chain_matmul_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.5301838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chain_matmul_native.h 2025-08-26T20:45:19.5305438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chain_matmul_ops.h 2025-08-26T20:45:19.5308948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chalf.h 2025-08-26T20:45:19.5312497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chalf_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.5316012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chalf_native.h 2025-08-26T20:45:19.5319575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chalf_ops.h 2025-08-26T20:45:19.5323190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle.h 2025-08-26T20:45:19.5327137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.5330833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle_cpu_dispatch.h 2025-08-26T20:45:19.5334604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle_cuda_dispatch.h 2025-08-26T20:45:19.5338173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle_native.h 2025-08-26T20:45:19.5341818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle_ops.h 2025-08-26T20:45:19.5345412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky.h 2025-08-26T20:45:19.5349794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_cpu_dispatch.h 2025-08-26T20:45:19.5353583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_cuda_dispatch.h 2025-08-26T20:45:19.5357547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_inverse.h 2025-08-26T20:45:19.5361391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_inverse_cpu_dispatch.h 2025-08-26T20:45:19.5365086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_inverse_cuda_dispatch.h 2025-08-26T20:45:19.5369168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_inverse_native.h 2025-08-26T20:45:19.5373100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_inverse_ops.h 2025-08-26T20:45:19.5376887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_native.h 2025-08-26T20:45:19.5380898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_ops.h 2025-08-26T20:45:19.5385132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_solve.h 2025-08-26T20:45:19.5389553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_solve_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.5393349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_solve_native.h 2025-08-26T20:45:19.5397981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_solve_ops.h 2025-08-26T20:45:19.5401847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\choose_qparams_optimized.h 2025-08-26T20:45:19.5405751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\choose_qparams_optimized_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.5409939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\choose_qparams_optimized_native.h 2025-08-26T20:45:19.5413877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\choose_qparams_optimized_ops.h 2025-08-26T20:45:19.5417258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chunk.h 2025-08-26T20:45:19.5421340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chunk_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.5425020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chunk_native.h 2025-08-26T20:45:19.5428563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chunk_ops.h 2025-08-26T20:45:19.5432271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp.h 2025-08-26T20:45:19.5436676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.5440635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_cpu_dispatch.h 2025-08-26T20:45:19.5444189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_cuda_dispatch.h 2025-08-26T20:45:19.5448495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max.h 2025-08-26T20:45:19.5452525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.5456200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_cpu_dispatch.h 2025-08-26T20:45:19.5460432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_cuda_dispatch.h 2025-08-26T20:45:19.5464286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_meta.h 2025-08-26T20:45:19.5468174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_meta_dispatch.h 2025-08-26T20:45:19.5472339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_native.h 2025-08-26T20:45:19.5476082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_ops.h 2025-08-26T20:45:19.5479571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_meta.h 2025-08-26T20:45:19.5483649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_meta_dispatch.h 2025-08-26T20:45:19.5487526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min.h 2025-08-26T20:45:19.5491900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.5495782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_cpu_dispatch.h 2025-08-26T20:45:19.5526745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_cuda_dispatch.h 2025-08-26T20:45:19.5531018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_meta.h 2025-08-26T20:45:19.5534626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_meta_dispatch.h 2025-08-26T20:45:19.5538270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_native.h 2025-08-26T20:45:19.5542067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_ops.h 2025-08-26T20:45:19.5545662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_native.h 2025-08-26T20:45:19.5549300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_ops.h 2025-08-26T20:45:19.5553567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clip.h 2025-08-26T20:45:19.5557285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clip_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.5560850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clip_native.h 2025-08-26T20:45:19.5564606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clip_ops.h 2025-08-26T20:45:19.5568126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clone.h 2025-08-26T20:45:19.5571697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clone_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.5575579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clone_native.h 2025-08-26T20:45:19.5579309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clone_ops.h 2025-08-26T20:45:19.5583145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\coalesce.h 2025-08-26T20:45:19.5587348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\coalesce_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.5590920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\coalesce_native.h 2025-08-26T20:45:19.5594748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\coalesce_ops.h 2025-08-26T20:45:19.5598498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col2im.h 2025-08-26T20:45:19.5602133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col2im_cpu_dispatch.h 2025-08-26T20:45:19.5606372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col2im_cuda_dispatch.h 2025-08-26T20:45:19.5610070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col2im_native.h 2025-08-26T20:45:19.5613979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col2im_ops.h 2025-08-26T20:45:19.5617829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\column_stack.h 2025-08-26T20:45:19.5621515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\column_stack_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.5625208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\column_stack_native.h 2025-08-26T20:45:19.5629061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\column_stack_ops.h 2025-08-26T20:45:19.5632781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices.h 2025-08-26T20:45:19.5636655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.5640353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_copy.h 2025-08-26T20:45:19.5645067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.5648814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.5652494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_copy_native.h 2025-08-26T20:45:19.5656379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_copy_ops.h 2025-08-26T20:45:19.5660029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_native.h 2025-08-26T20:45:19.5663760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_ops.h 2025-08-26T20:45:19.5667630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\combinations.h 2025-08-26T20:45:19.5671393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\combinations_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.5675107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\combinations_native.h 2025-08-26T20:45:19.5678790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\combinations_ops.h 2025-08-26T20:45:19.5682405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex.h 2025-08-26T20:45:19.5685960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.5689560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex_cpu_dispatch.h 2025-08-26T20:45:19.5693721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex_cuda_dispatch.h 2025-08-26T20:45:19.5697434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex_native.h 2025-08-26T20:45:19.5701083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex_ops.h 2025-08-26T20:45:19.5704823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concat.h 2025-08-26T20:45:19.5708246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concatenate.h 2025-08-26T20:45:19.5711930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concatenate_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.5715631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concatenate_native.h 2025-08-26T20:45:19.5719275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concatenate_ops.h 2025-08-26T20:45:19.5723464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concat_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.5727159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concat_native.h 2025-08-26T20:45:19.5730745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concat_ops.h 2025-08-26T20:45:19.5734459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj.h 2025-08-26T20:45:19.5738552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.5742034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_native.h 2025-08-26T20:45:19.5745486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_ops.h 2025-08-26T20:45:19.5749385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical.h 2025-08-26T20:45:19.5753913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.5757932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.5761708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_cpu_dispatch.h 2025-08-26T20:45:19.5765365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_cuda_dispatch.h 2025-08-26T20:45:19.5769177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_native.h 2025-08-26T20:45:19.5772837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_ops.h 2025-08-26T20:45:19.5776656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\constant_pad_nd.h 2025-08-26T20:45:19.5781352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\constant_pad_nd_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.5785017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\constant_pad_nd_native.h 2025-08-26T20:45:19.5789084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\constant_pad_nd_ops.h 2025-08-26T20:45:19.5793057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\contiguous.h 2025-08-26T20:45:19.5803221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\contiguous_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.5806904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\contiguous_native.h 2025-08-26T20:45:19.5810645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\contiguous_ops.h 2025-08-26T20:45:19.5814218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv1d.h 2025-08-26T20:45:19.5817782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv1d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.5821379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv1d_native.h 2025-08-26T20:45:19.5824921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv1d_ops.h 2025-08-26T20:45:19.5828497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv2d.h 2025-08-26T20:45:19.5832032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv2d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.5835731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv2d_native.h 2025-08-26T20:45:19.5840181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv2d_ops.h 2025-08-26T20:45:19.5843499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv3d.h 2025-08-26T20:45:19.5847087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv3d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.5850622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv3d_native.h 2025-08-26T20:45:19.5854097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv3d_ops.h 2025-08-26T20:45:19.5857578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution.h 2025-08-26T20:45:19.5861555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward.h 2025-08-26T20:45:19.5865806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.5869653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_cuda_dispatch.h 2025-08-26T20:45:19.5873741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_native.h 2025-08-26T20:45:19.5877445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_ops.h 2025-08-26T20:45:19.5881173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_overrideable.h 2025-08-26T20:45:19.5885073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_overrideable_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.5889122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_overrideable_native.h 2025-08-26T20:45:19.5892988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_overrideable_ops.h 2025-08-26T20:45:19.5896930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.5900536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_native.h 2025-08-26T20:45:19.5904417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_ops.h 2025-08-26T20:45:19.5908115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_overrideable.h 2025-08-26T20:45:19.5912494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_overrideable_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.5916966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_overrideable_native.h 2025-08-26T20:45:19.5920119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_overrideable_ops.h 2025-08-26T20:45:19.5923911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_depthwise3d.h 2025-08-26T20:45:19.5927659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_depthwise3d_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.5931322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_depthwise3d_cuda_dispatch.h 2025-08-26T20:45:19.5935449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_depthwise3d_native.h 2025-08-26T20:45:19.5939118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_depthwise3d_ops.h 2025-08-26T20:45:19.5942855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc.h 2025-08-26T20:45:19.5946310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_backward.h 2025-08-26T20:45:19.5950386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.5954246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_backward_native.h 2025-08-26T20:45:19.5958406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_backward_ops.h 2025-08-26T20:45:19.5962249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.5966309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_native.h 2025-08-26T20:45:19.5970309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_ops.h 2025-08-26T20:45:19.5973961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose1d.h 2025-08-26T20:45:19.5978013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose1d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.5981669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose1d_native.h 2025-08-26T20:45:19.5985239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose1d_ops.h 2025-08-26T20:45:19.5988976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose2d.h 2025-08-26T20:45:19.5993107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose2d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.5996802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose2d_native.h 2025-08-26T20:45:19.6000513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose2d_ops.h 2025-08-26T20:45:19.6004650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose3d.h 2025-08-26T20:45:19.6008653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose3d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.6012295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose3d_native.h 2025-08-26T20:45:19.6016345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose3d_ops.h 2025-08-26T20:45:19.6020113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy.h 2025-08-26T20:45:19.6023519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign.h 2025-08-26T20:45:19.6027376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.6031197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.6035000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_cpu_dispatch.h 2025-08-26T20:45:19.6038817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_cuda_dispatch.h 2025-08-26T20:45:19.6042667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_meta.h 2025-08-26T20:45:19.6046641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_meta_dispatch.h 2025-08-26T20:45:19.6050336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_native.h 2025-08-26T20:45:19.6054103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_ops.h 2025-08-26T20:45:19.6058208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.6062550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.6066205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_meta_dispatch.h 2025-08-26T20:45:19.6070290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_native.h 2025-08-26T20:45:19.6074659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_ops.h 2025-08-26T20:45:19.6078321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_sparse_to_sparse.h 2025-08-26T20:45:19.6082294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.6086157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_sparse_to_sparse_meta_dispatch.h 2025-08-26T20:45:19.6090104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_sparse_to_sparse_native.h 2025-08-26T20:45:19.6094081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_sparse_to_sparse_ops.h 2025-08-26T20:45:19.6098043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\corrcoef.h 2025-08-26T20:45:19.6102082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\corrcoef_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.6105700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\corrcoef_native.h 2025-08-26T20:45:19.6109770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\corrcoef_ops.h 2025-08-26T20:45:19.6113620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos.h 2025-08-26T20:45:19.6117278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh.h 2025-08-26T20:45:19.6121324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.6125086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_cpu_dispatch.h 2025-08-26T20:45:19.6129290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_cuda_dispatch.h 2025-08-26T20:45:19.6133603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_meta.h 2025-08-26T20:45:19.6137483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_meta_dispatch.h 2025-08-26T20:45:19.6141582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_native.h 2025-08-26T20:45:19.6145379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_ops.h 2025-08-26T20:45:19.6149132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_embedding_loss.h 2025-08-26T20:45:19.6152998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_embedding_loss_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.6156886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_embedding_loss_native.h 2025-08-26T20:45:19.6160633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_embedding_loss_ops.h 2025-08-26T20:45:19.6164663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_similarity.h 2025-08-26T20:45:19.6169344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_similarity_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.6173251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_similarity_native.h 2025-08-26T20:45:19.6176984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_similarity_ops.h 2025-08-26T20:45:19.6181141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.6184917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_cpu_dispatch.h 2025-08-26T20:45:19.6188523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_cuda_dispatch.h 2025-08-26T20:45:19.6192072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_meta.h 2025-08-26T20:45:19.6195733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_meta_dispatch.h 2025-08-26T20:45:19.6199216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_native.h 2025-08-26T20:45:19.6202743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_ops.h 2025-08-26T20:45:19.6206328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero.h 2025-08-26T20:45:19.6210080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.6214450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero_cpu_dispatch.h 2025-08-26T20:45:19.6218182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero_cuda_dispatch.h 2025-08-26T20:45:19.6221893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero_native.h 2025-08-26T20:45:19.6225586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero_ops.h 2025-08-26T20:45:19.6229196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cov.h 2025-08-26T20:45:19.6232756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cov_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.6236447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cov_native.h 2025-08-26T20:45:19.6239982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cov_ops.h 2025-08-26T20:45:19.6243306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross.h 2025-08-26T20:45:19.6246966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.6250839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_entropy_loss.h 2025-08-26T20:45:19.6254863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_entropy_loss_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.6258728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_entropy_loss_native.h 2025-08-26T20:45:19.6262532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_entropy_loss_ops.h 2025-08-26T20:45:19.6266245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_native.h 2025-08-26T20:45:19.6270384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_ops.h 2025-08-26T20:45:19.6274248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices.h 2025-08-26T20:45:19.6278063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.6282018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_copy.h 2025-08-26T20:45:19.6286457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.6290393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.6294049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_copy_native.h 2025-08-26T20:45:19.6297733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_copy_ops.h 2025-08-26T20:45:19.6301457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_native.h 2025-08-26T20:45:19.6305121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_ops.h 2025-08-26T20:45:19.6309145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ctc_loss.h 2025-08-26T20:45:19.6312545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ctc_loss_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.6316329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ctc_loss_native.h 2025-08-26T20:45:19.6319971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ctc_loss_ops.h 2025-08-26T20:45:19.6323829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator.h 2025-08-26T20:45:19.6341570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_backward.h 2025-08-26T20:45:19.6345467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.6349233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_backward_cuda_dispatch.h 2025-08-26T20:45:19.6353213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_backward_native.h 2025-08-26T20:45:19.6357082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_backward_ops.h 2025-08-26T20:45:19.6361024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.6365079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_cuda_dispatch.h 2025-08-26T20:45:19.6369432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_native.h 2025-08-26T20:45:19.6373111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_ops.h 2025-08-26T20:45:19.6377304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm.h 2025-08-26T20:45:19.6381166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_backward.h 2025-08-26T20:45:19.6385103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.6388845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_backward_cuda_dispatch.h 2025-08-26T20:45:19.6392640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_backward_native.h 2025-08-26T20:45:19.6396700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_backward_ops.h 2025-08-26T20:45:19.6400878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_cuda_dispatch.h 2025-08-26T20:45:19.6404561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_native.h 2025-08-26T20:45:19.6408515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_ops.h 2025-08-26T20:45:19.6412355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution.h 2025-08-26T20:45:19.6416188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_add_relu.h 2025-08-26T20:45:19.6420499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.6424592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_add_relu_cuda_dispatch.h 2025-08-26T20:45:19.6428920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_add_relu_native.h 2025-08-26T20:45:19.6432932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_add_relu_ops.h 2025-08-26T20:45:19.6438039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_cuda_dispatch.h 2025-08-26T20:45:19.6442875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_native.h 2025-08-26T20:45:19.6446681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_ops.h 2025-08-26T20:45:19.6451025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_relu.h 2025-08-26T20:45:19.6454886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_relu_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.6458803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_relu_cuda_dispatch.h 2025-08-26T20:45:19.6463405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_relu_native.h 2025-08-26T20:45:19.6467804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_relu_ops.h 2025-08-26T20:45:19.6471641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_transpose.h 2025-08-26T20:45:19.6476414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.6480645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_transpose_cuda_dispatch.h 2025-08-26T20:45:19.6484522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_transpose_native.h 2025-08-26T20:45:19.6488407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_transpose_ops.h 2025-08-26T20:45:19.6492253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler.h 2025-08-26T20:45:19.6496290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_backward.h 2025-08-26T20:45:19.6500922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.6504871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_backward_cuda_dispatch.h 2025-08-26T20:45:19.6508702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_backward_native.h 2025-08-26T20:45:19.6512935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_backward_ops.h 2025-08-26T20:45:19.6516950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.6521277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_cuda_dispatch.h 2025-08-26T20:45:19.6525121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_native.h 2025-08-26T20:45:19.6529081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_ops.h 2025-08-26T20:45:19.6532902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_is_acceptable.h 2025-08-26T20:45:19.6562923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_is_acceptable_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.6566858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_is_acceptable_native.h 2025-08-26T20:45:19.6571055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_is_acceptable_ops.h 2025-08-26T20:45:19.6574667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummax.h 2025-08-26T20:45:19.6578123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummaxmin_backward.h 2025-08-26T20:45:19.6582120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummaxmin_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.6585670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummaxmin_backward_native.h 2025-08-26T20:45:19.6589513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummaxmin_backward_ops.h 2025-08-26T20:45:19.6593529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummax_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.6598085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummax_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.6602061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummax_native.h 2025-08-26T20:45:19.6605644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummax_ops.h 2025-08-26T20:45:19.6610064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummin.h 2025-08-26T20:45:19.6614014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummin_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.6618176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummin_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.6622029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummin_native.h 2025-08-26T20:45:19.6625967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummin_ops.h 2025-08-26T20:45:19.6629732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod.h 2025-08-26T20:45:19.6633208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_backward.h 2025-08-26T20:45:19.6637242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.6640952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_backward_native.h 2025-08-26T20:45:19.6644644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_backward_ops.h 2025-08-26T20:45:19.6648735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.6652862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.6656654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_cpu_dispatch.h 2025-08-26T20:45:19.6660317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_cuda_dispatch.h 2025-08-26T20:45:19.6664361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_meta.h 2025-08-26T20:45:19.6668041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_meta_dispatch.h 2025-08-26T20:45:19.6671782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_native.h 2025-08-26T20:45:19.6675466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_ops.h 2025-08-26T20:45:19.6679546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum.h 2025-08-26T20:45:19.6683371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.6687101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.6690664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_cpu_dispatch.h 2025-08-26T20:45:19.6694363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_cuda_dispatch.h 2025-08-26T20:45:19.6697976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_meta.h 2025-08-26T20:45:19.6702361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_meta_dispatch.h 2025-08-26T20:45:19.6706337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_native.h 2025-08-26T20:45:19.6710300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_ops.h 2025-08-26T20:45:19.6713844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumulative_trapezoid.h 2025-08-26T20:45:19.6717707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumulative_trapezoid_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.6721320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumulative_trapezoid_native.h 2025-08-26T20:45:19.6725115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumulative_trapezoid_ops.h 2025-08-26T20:45:19.6728819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\data.h 2025-08-26T20:45:19.6732483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\data_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.6736391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\data_native.h 2025-08-26T20:45:19.6740329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\data_ops.h 2025-08-26T20:45:19.6743771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\deg2rad.h 2025-08-26T20:45:19.6747628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\deg2rad_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.6751217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\deg2rad_native.h 2025-08-26T20:45:19.6754823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\deg2rad_ops.h 2025-08-26T20:45:19.6758409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dense_dim.h 2025-08-26T20:45:19.6762475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dense_dim_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.6766464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dense_dim_native.h 2025-08-26T20:45:19.6770258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dense_dim_ops.h 2025-08-26T20:45:19.6774087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize.h 2025-08-26T20:45:19.6777724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.6781462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize_cpu_dispatch.h 2025-08-26T20:45:19.6785113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize_cuda_dispatch.h 2025-08-26T20:45:19.6788786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize_native.h 2025-08-26T20:45:19.6792779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize_ops.h 2025-08-26T20:45:19.6796503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\det.h 2025-08-26T20:45:19.6799927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach.h 2025-08-26T20:45:19.6803864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.6807671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_copy.h 2025-08-26T20:45:19.6812023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.6816182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.6820392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_copy_native.h 2025-08-26T20:45:19.6824588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_copy_ops.h 2025-08-26T20:45:19.6828485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_native.h 2025-08-26T20:45:19.6832228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_ops.h 2025-08-26T20:45:19.6836107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\det_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.6840143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\det_native.h 2025-08-26T20:45:19.6844063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\det_ops.h 2025-08-26T20:45:19.6847852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag.h 2025-08-26T20:45:19.6851281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagflat.h 2025-08-26T20:45:19.6855143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagflat_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.6859079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagflat_native.h 2025-08-26T20:45:19.6862667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagflat_ops.h 2025-08-26T20:45:19.6866556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal.h 2025-08-26T20:45:19.6870317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_backward.h 2025-08-26T20:45:19.6873966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.6878271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_backward_native.h 2025-08-26T20:45:19.6882267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_backward_ops.h 2025-08-26T20:45:19.6886416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.6890768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.6894956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_copy.h 2025-08-26T20:45:19.6899089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.6903097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.6907157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_copy_native.h 2025-08-26T20:45:19.6911086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_copy_ops.h 2025-08-26T20:45:19.6914933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_native.h 2025-08-26T20:45:19.6919127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_ops.h 2025-08-26T20:45:19.6922901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_scatter.h 2025-08-26T20:45:19.6926979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.6931045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_scatter_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.6935131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_scatter_native.h 2025-08-26T20:45:19.6939016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_scatter_ops.h 2025-08-26T20:45:19.6942958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.6946864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_embed.h 2025-08-26T20:45:19.6950802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_embed_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.6954634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_embed_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.6958825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_embed_native.h 2025-08-26T20:45:19.6962667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_embed_ops.h 2025-08-26T20:45:19.6966483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_native.h 2025-08-26T20:45:19.6970153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_ops.h 2025-08-26T20:45:19.6973681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diff.h 2025-08-26T20:45:19.6977276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diff_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.6981468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diff_native.h 2025-08-26T20:45:19.6985150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diff_ops.h 2025-08-26T20:45:19.6988532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma.h 2025-08-26T20:45:19.6992835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.6996588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_cpu_dispatch.h 2025-08-26T20:45:19.7000519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_cuda_dispatch.h 2025-08-26T20:45:19.7004515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_meta.h 2025-08-26T20:45:19.7008536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_meta_dispatch.h 2025-08-26T20:45:19.7012431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_native.h 2025-08-26T20:45:19.7016198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_ops.h 2025-08-26T20:45:19.7020483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dist.h 2025-08-26T20:45:19.7024462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dist_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.7028387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dist_native.h 2025-08-26T20:45:19.7032810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dist_ops.h 2025-08-26T20:45:19.7036578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div.h 2025-08-26T20:45:19.7040131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\divide.h 2025-08-26T20:45:19.7044476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\divide_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.7048538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\divide_native.h 2025-08-26T20:45:19.7052131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\divide_ops.h 2025-08-26T20:45:19.7056248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.7060096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.7063655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_cpu_dispatch.h 2025-08-26T20:45:19.7067534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_cuda_dispatch.h 2025-08-26T20:45:19.7071509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_meta.h 2025-08-26T20:45:19.7074953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_meta_dispatch.h 2025-08-26T20:45:19.7078980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_native.h 2025-08-26T20:45:19.7082738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_ops.h 2025-08-26T20:45:19.7086367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot.h 2025-08-26T20:45:19.7089956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.7093721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot_cpu_dispatch.h 2025-08-26T20:45:19.7097580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot_cuda_dispatch.h 2025-08-26T20:45:19.7101013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot_native.h 2025-08-26T20:45:19.7104753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot_ops.h 2025-08-26T20:45:19.7108141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dropout.h 2025-08-26T20:45:19.7112147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dropout_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.7115625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dropout_native.h 2025-08-26T20:45:19.7120426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dropout_ops.h 2025-08-26T20:45:19.7124418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dsplit.h 2025-08-26T20:45:19.7129506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dsplit_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.7133585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dsplit_native.h 2025-08-26T20:45:19.7137936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dsplit_ops.h 2025-08-26T20:45:19.7142449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dstack.h 2025-08-26T20:45:19.7146737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dstack_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.7150719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dstack_native.h 2025-08-26T20:45:19.7154868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dstack_ops.h 2025-08-26T20:45:19.7158756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\einsum.h 2025-08-26T20:45:19.7162333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\einsum_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.7166214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\einsum_native.h 2025-08-26T20:45:19.7170256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\einsum_ops.h 2025-08-26T20:45:19.7174151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu.h 2025-08-26T20:45:19.7177651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward.h 2025-08-26T20:45:19.7181529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.7185059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_cpu_dispatch.h 2025-08-26T20:45:19.7188742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_cuda_dispatch.h 2025-08-26T20:45:19.7192581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_meta.h 2025-08-26T20:45:19.7196461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_meta_dispatch.h 2025-08-26T20:45:19.7200204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_native.h 2025-08-26T20:45:19.7203989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_ops.h 2025-08-26T20:45:19.7208048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.7211600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_cpu_dispatch.h 2025-08-26T20:45:19.7215152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_cuda_dispatch.h 2025-08-26T20:45:19.7218639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_meta.h 2025-08-26T20:45:19.7222120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_meta_dispatch.h 2025-08-26T20:45:19.7225681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_native.h 2025-08-26T20:45:19.7229201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_ops.h 2025-08-26T20:45:19.7232646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding.h 2025-08-26T20:45:19.7236635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_backward.h 2025-08-26T20:45:19.7240908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.7252713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_backward_native.h 2025-08-26T20:45:19.7256833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_backward_ops.h 2025-08-26T20:45:19.7260465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_bag.h 2025-08-26T20:45:19.7264514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_bag_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.7268710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_bag_native.h 2025-08-26T20:45:19.7272415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_bag_ops.h 2025-08-26T20:45:19.7276146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.7279853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward.h 2025-08-26T20:45:19.7283965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.7287805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward_cpu_dispatch.h 2025-08-26T20:45:19.7291461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward_cuda_dispatch.h 2025-08-26T20:45:19.7295161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward_native.h 2025-08-26T20:45:19.7298958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward_ops.h 2025-08-26T20:45:19.7302771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_native.h 2025-08-26T20:45:19.7306547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_ops.h 2025-08-26T20:45:19.7310460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm.h 2025-08-26T20:45:19.7314766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.7318528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_cpu_dispatch.h 2025-08-26T20:45:19.7322917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_cuda_dispatch.h 2025-08-26T20:45:19.7327173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_meta_dispatch.h 2025-08-26T20:45:19.7330875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_native.h 2025-08-26T20:45:19.7334775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_ops.h 2025-08-26T20:45:19.7338502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_sparse_backward.h 2025-08-26T20:45:19.7342384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_sparse_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.7346048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_sparse_backward_native.h 2025-08-26T20:45:19.7349743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_sparse_backward_ops.h 2025-08-26T20:45:19.7354128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty.h 2025-08-26T20:45:19.7357695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.7361478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.7365006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_cpu_dispatch.h 2025-08-26T20:45:19.7368879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_cuda_dispatch.h 2025-08-26T20:45:19.7372500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_like.h 2025-08-26T20:45:19.7376298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_like_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.7379961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_like_native.h 2025-08-26T20:45:19.7384117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_like_ops.h 2025-08-26T20:45:19.7387925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_meta_dispatch.h 2025-08-26T20:45:19.7391652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_native.h 2025-08-26T20:45:19.7395318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_ops.h 2025-08-26T20:45:19.7399081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_permuted.h 2025-08-26T20:45:19.7402828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_permuted_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.7406960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_permuted_native.h 2025-08-26T20:45:19.7410807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_permuted_ops.h 2025-08-26T20:45:19.7414786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_quantized.h 2025-08-26T20:45:19.7418512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_quantized_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.7422950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_quantized_native.h 2025-08-26T20:45:19.7427175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_quantized_ops.h 2025-08-26T20:45:19.7431423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided.h 2025-08-26T20:45:19.7435709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.7440305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_cpu_dispatch.h 2025-08-26T20:45:19.7444639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_cuda_dispatch.h 2025-08-26T20:45:19.7449645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_meta_dispatch.h 2025-08-26T20:45:19.7453926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_native.h 2025-08-26T20:45:19.7458699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_ops.h 2025-08-26T20:45:19.7462558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq.h 2025-08-26T20:45:19.7466053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\equal.h 2025-08-26T20:45:19.7469468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\equal_cpu_dispatch.h 2025-08-26T20:45:19.7473168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\equal_cuda_dispatch.h 2025-08-26T20:45:19.7477125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\equal_native.h 2025-08-26T20:45:19.7480849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\equal_ops.h 2025-08-26T20:45:19.7484644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.7488204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_cpu_dispatch.h 2025-08-26T20:45:19.7491742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_cuda_dispatch.h 2025-08-26T20:45:19.7495725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_meta.h 2025-08-26T20:45:19.7499104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_meta_dispatch.h 2025-08-26T20:45:19.7502662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_native.h 2025-08-26T20:45:19.7506561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_ops.h 2025-08-26T20:45:19.7509886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf.h 2025-08-26T20:45:19.7513163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc.h 2025-08-26T20:45:19.7516877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.7530420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_cpu_dispatch.h 2025-08-26T20:45:19.7534337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_cuda_dispatch.h 2025-08-26T20:45:19.7538385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_meta.h 2025-08-26T20:45:19.7542167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_meta_dispatch.h 2025-08-26T20:45:19.7546005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_native.h 2025-08-26T20:45:19.7549681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_ops.h 2025-08-26T20:45:19.7553212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv.h 2025-08-26T20:45:19.7556835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.7560879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_cpu_dispatch.h 2025-08-26T20:45:19.7564693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_cuda_dispatch.h 2025-08-26T20:45:19.7568735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_meta.h 2025-08-26T20:45:19.7599328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_meta_dispatch.h 2025-08-26T20:45:19.7603252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_native.h 2025-08-26T20:45:19.7607888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_ops.h 2025-08-26T20:45:19.7644441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.7648784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_cpu_dispatch.h 2025-08-26T20:45:19.7652444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_cuda_dispatch.h 2025-08-26T20:45:19.7656276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_meta.h 2025-08-26T20:45:19.7659726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_meta_dispatch.h 2025-08-26T20:45:19.7663756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_native.h 2025-08-26T20:45:19.7667569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_ops.h 2025-08-26T20:45:19.7670984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp.h 2025-08-26T20:45:19.7674330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2.h 2025-08-26T20:45:19.7678160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.7681687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_cpu_dispatch.h 2025-08-26T20:45:19.7685276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_cuda_dispatch.h 2025-08-26T20:45:19.7689145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_meta.h 2025-08-26T20:45:19.7692786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_meta_dispatch.h 2025-08-26T20:45:19.7696829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_native.h 2025-08-26T20:45:19.7700455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_ops.h 2025-08-26T20:45:19.7703910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand.h 2025-08-26T20:45:19.7707348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_as.h 2025-08-26T20:45:19.7711371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_as_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.7714988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_as_native.h 2025-08-26T20:45:19.7718622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_as_ops.h 2025-08-26T20:45:19.7722885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.7726905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_copy.h 2025-08-26T20:45:19.7731109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.7734848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.7738540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_copy_native.h 2025-08-26T20:45:19.7742352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_copy_ops.h 2025-08-26T20:45:19.7746038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_native.h 2025-08-26T20:45:19.7749567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_ops.h 2025-08-26T20:45:19.7753289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1.h 2025-08-26T20:45:19.7757727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.7761176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_cpu_dispatch.h 2025-08-26T20:45:19.7764924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_cuda_dispatch.h 2025-08-26T20:45:19.7768711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_meta.h 2025-08-26T20:45:19.7772348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_meta_dispatch.h 2025-08-26T20:45:19.7776042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_native.h 2025-08-26T20:45:19.7779911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_ops.h 2025-08-26T20:45:19.7783797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential.h 2025-08-26T20:45:19.7787655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.7791342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_cpu_dispatch.h 2025-08-26T20:45:19.7794973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_cuda_dispatch.h 2025-08-26T20:45:19.7798907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_meta_dispatch.h 2025-08-26T20:45:19.7802608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_native.h 2025-08-26T20:45:19.7806346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_ops.h 2025-08-26T20:45:19.7810447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.7814012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_cpu_dispatch.h 2025-08-26T20:45:19.7817636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_cuda_dispatch.h 2025-08-26T20:45:19.7821275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_meta.h 2025-08-26T20:45:19.7824746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_meta_dispatch.h 2025-08-26T20:45:19.7828446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_native.h 2025-08-26T20:45:19.7831972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_ops.h 2025-08-26T20:45:19.7835392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye.h 2025-08-26T20:45:19.7839232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.7842889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_cpu_dispatch.h 2025-08-26T20:45:19.7846575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_cuda_dispatch.h 2025-08-26T20:45:19.7850060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_meta_dispatch.h 2025-08-26T20:45:19.7853551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_native.h 2025-08-26T20:45:19.7857136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_ops.h 2025-08-26T20:45:19.7860593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine.h 2025-08-26T20:45:19.7865013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask.h 2025-08-26T20:45:19.7869136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward.h 2025-08-26T20:45:19.7873688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.7877754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward_native.h 2025-08-26T20:45:19.7881839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward_ops.h 2025-08-26T20:45:19.7886751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.7890977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_cpu_dispatch.h 2025-08-26T20:45:19.7895557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_cuda_dispatch.h 2025-08-26T20:45:19.7899621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_native.h 2025-08-26T20:45:19.7903718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_ops.h 2025-08-26T20:45:19.7907850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.7911855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_native.h 2025-08-26T20:45:19.7915816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_ops.h 2025-08-26T20:45:19.7919684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine.h 2025-08-26T20:45:19.7923732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask.h 2025-08-26T20:45:19.7928137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward.h 2025-08-26T20:45:19.7932240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.7936328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward_native.h 2025-08-26T20:45:19.7941181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward_ops.h 2025-08-26T20:45:19.7946138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.7950093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_cpu_dispatch.h 2025-08-26T20:45:19.7954082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_cuda_dispatch.h 2025-08-26T20:45:19.7958324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_native.h 2025-08-26T20:45:19.7962610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_ops.h 2025-08-26T20:45:19.7966720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.7970688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_native.h 2025-08-26T20:45:19.7974745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_ops.h 2025-08-26T20:45:19.7978596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight.h 2025-08-26T20:45:19.7982674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.7986790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation.h 2025-08-26T20:45:19.7990864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.7995087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_native.h 2025-08-26T20:45:19.7999157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_ops.h 2025-08-26T20:45:19.8003243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_native.h 2025-08-26T20:45:19.8007290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_ops.h 2025-08-26T20:45:19.8011352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight.h 2025-08-26T20:45:19.8016058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8020097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation.h 2025-08-26T20:45:19.8024228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8029474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_native.h 2025-08-26T20:45:19.8033933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_ops.h 2025-08-26T20:45:19.8037993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_native.h 2025-08-26T20:45:19.8041851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_ops.h 2025-08-26T20:45:19.8046194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_quantize_weight.h 2025-08-26T20:45:19.8065779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8066371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_quantize_weight_native.h 2025-08-26T20:45:19.8066695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_quantize_weight_ops.h 2025-08-26T20:45:19.8067006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16.h 2025-08-26T20:45:19.8067586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8071703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_native.h 2025-08-26T20:45:19.8075460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_ops.h 2025-08-26T20:45:19.8079223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_quantized_matrix.h 2025-08-26T20:45:19.8084061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8087245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_quantized_matrix_native.h 2025-08-26T20:45:19.8091643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_quantized_matrix_ops.h 2025-08-26T20:45:19.8095826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_alpha_dropout.h 2025-08-26T20:45:19.8099717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_alpha_dropout_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8103592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_alpha_dropout_native.h 2025-08-26T20:45:19.8107579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_alpha_dropout_ops.h 2025-08-26T20:45:19.8113220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_dropout.h 2025-08-26T20:45:19.8115667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_dropout_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8120160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_dropout_native.h 2025-08-26T20:45:19.8124406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_dropout_ops.h 2025-08-26T20:45:19.8129374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft.h 2025-08-26T20:45:19.8132175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft2.h 2025-08-26T20:45:19.8135743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft2_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8139391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft2_native.h 2025-08-26T20:45:19.8143177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft2_ops.h 2025-08-26T20:45:19.8147040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftfreq.h 2025-08-26T20:45:19.8151217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftfreq_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.8155225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftfreq_native.h 2025-08-26T20:45:19.8158924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftfreq_ops.h 2025-08-26T20:45:19.8162950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftn.h 2025-08-26T20:45:19.8166729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftn_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8170455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftn_native.h 2025-08-26T20:45:19.8175090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftn_ops.h 2025-08-26T20:45:19.8179035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftshift.h 2025-08-26T20:45:19.8183454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftshift_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8187247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftshift_native.h 2025-08-26T20:45:19.8190772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftshift_ops.h 2025-08-26T20:45:19.8194613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8198284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft_native.h 2025-08-26T20:45:19.8201902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft_ops.h 2025-08-26T20:45:19.8205580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft.h 2025-08-26T20:45:19.8209212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft2.h 2025-08-26T20:45:19.8213397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft2_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8216869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft2_native.h 2025-08-26T20:45:19.8220505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft2_ops.h 2025-08-26T20:45:19.8224139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfftn.h 2025-08-26T20:45:19.8227985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfftn_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8232746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfftn_native.h 2025-08-26T20:45:19.8236914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfftn_ops.h 2025-08-26T20:45:19.8240868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8244509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft_native.h 2025-08-26T20:45:19.8248298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft_ops.h 2025-08-26T20:45:19.8251918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft.h 2025-08-26T20:45:19.8255210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft2.h 2025-08-26T20:45:19.8258874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft2_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8262574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft2_native.h 2025-08-26T20:45:19.8266202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft2_ops.h 2025-08-26T20:45:19.8270088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftn.h 2025-08-26T20:45:19.8273886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftn_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8277658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftn_native.h 2025-08-26T20:45:19.8281552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftn_ops.h 2025-08-26T20:45:19.8285165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftshift.h 2025-08-26T20:45:19.8289194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftshift_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8293239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftshift_native.h 2025-08-26T20:45:19.8297003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftshift_ops.h 2025-08-26T20:45:19.8301558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8305234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft_native.h 2025-08-26T20:45:19.8309236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft_ops.h 2025-08-26T20:45:19.8312983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft.h 2025-08-26T20:45:19.8316624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft2.h 2025-08-26T20:45:19.8320378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft2_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8324315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft2_native.h 2025-08-26T20:45:19.8328184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft2_ops.h 2025-08-26T20:45:19.8332099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfftn.h 2025-08-26T20:45:19.8335988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfftn_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8340173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfftn_native.h 2025-08-26T20:45:19.8344000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfftn_ops.h 2025-08-26T20:45:19.8347836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8351764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft_native.h 2025-08-26T20:45:19.8355506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft_ops.h 2025-08-26T20:45:19.8359221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft.h 2025-08-26T20:45:19.8362977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft2.h 2025-08-26T20:45:19.8366837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft2_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8370844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft2_native.h 2025-08-26T20:45:19.8375020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft2_ops.h 2025-08-26T20:45:19.8378975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfftn.h 2025-08-26T20:45:19.8383042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfftn_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8386898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfftn_native.h 2025-08-26T20:45:19.8390778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfftn_ops.h 2025-08-26T20:45:19.8394680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8398925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft_native.h 2025-08-26T20:45:19.8402605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft_ops.h 2025-08-26T20:45:19.8406406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft.h 2025-08-26T20:45:19.8410008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft2.h 2025-08-26T20:45:19.8413912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft2_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8417644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft2_native.h 2025-08-26T20:45:19.8421491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft2_ops.h 2025-08-26T20:45:19.8425197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftfreq.h 2025-08-26T20:45:19.8428996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftfreq_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.8433157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftfreq_native.h 2025-08-26T20:45:19.8437169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftfreq_ops.h 2025-08-26T20:45:19.8441306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftn.h 2025-08-26T20:45:19.8445246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftn_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8450244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftn_native.h 2025-08-26T20:45:19.8454157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftn_ops.h 2025-08-26T20:45:19.8458043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8461950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft_native.h 2025-08-26T20:45:19.8465848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft_ops.h 2025-08-26T20:45:19.8469818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill.h 2025-08-26T20:45:19.8473480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.8477203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_cpu_dispatch.h 2025-08-26T20:45:19.8480921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_cuda_dispatch.h 2025-08-26T20:45:19.8484745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_diagonal.h 2025-08-26T20:45:19.8488819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_diagonal_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8492484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_diagonal_native.h 2025-08-26T20:45:19.8496486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_diagonal_ops.h 2025-08-26T20:45:19.8500493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_meta_dispatch.h 2025-08-26T20:45:19.8504135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_native.h 2025-08-26T20:45:19.8507737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_ops.h 2025-08-26T20:45:19.8511397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fix.h 2025-08-26T20:45:19.8514974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fix_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8518608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fix_native.h 2025-08-26T20:45:19.8522289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fix_ops.h 2025-08-26T20:45:19.8526131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten.h 2025-08-26T20:45:19.8529798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8533369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_dense_tensors.h 2025-08-26T20:45:19.8537518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_dense_tensors_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8541867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_dense_tensors_native.h 2025-08-26T20:45:19.8545667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_dense_tensors_ops.h 2025-08-26T20:45:19.8549429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_native.h 2025-08-26T20:45:19.8553353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_ops.h 2025-08-26T20:45:19.8557145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip.h 2025-08-26T20:45:19.8561563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fliplr.h 2025-08-26T20:45:19.8565695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fliplr_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8569645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fliplr_native.h 2025-08-26T20:45:19.8573221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fliplr_ops.h 2025-08-26T20:45:19.8577284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flipud.h 2025-08-26T20:45:19.8581450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flipud_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8585294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flipud_native.h 2025-08-26T20:45:19.8589124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flipud_ops.h 2025-08-26T20:45:19.8593336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.8596926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip_cpu_dispatch.h 2025-08-26T20:45:19.8600630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip_cuda_dispatch.h 2025-08-26T20:45:19.8604458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip_native.h 2025-08-26T20:45:19.8608025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip_ops.h 2025-08-26T20:45:19.8611488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\float_power.h 2025-08-26T20:45:19.8615510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\float_power_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8619181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\float_power_native.h 2025-08-26T20:45:19.8622812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\float_power_ops.h 2025-08-26T20:45:19.8626445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor.h 2025-08-26T20:45:19.8630248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.8658501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_cpu_dispatch.h 2025-08-26T20:45:19.8662231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_cuda_dispatch.h 2025-08-26T20:45:19.8666282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide.h 2025-08-26T20:45:19.8670157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.8674355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_cpu_dispatch.h 2025-08-26T20:45:19.8678158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_cuda_dispatch.h 2025-08-26T20:45:19.8681928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_meta_dispatch.h 2025-08-26T20:45:19.8685611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_native.h 2025-08-26T20:45:19.8689410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_ops.h 2025-08-26T20:45:19.8693498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_meta.h 2025-08-26T20:45:19.8697270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_meta_dispatch.h 2025-08-26T20:45:19.8700898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_native.h 2025-08-26T20:45:19.8704624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_ops.h 2025-08-26T20:45:19.8708760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax.h 2025-08-26T20:45:19.8712545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.8716147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_cpu_dispatch.h 2025-08-26T20:45:19.8719806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_cuda_dispatch.h 2025-08-26T20:45:19.8723649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_meta.h 2025-08-26T20:45:19.8727384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_meta_dispatch.h 2025-08-26T20:45:19.8731120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_native.h 2025-08-26T20:45:19.8734716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_ops.h 2025-08-26T20:45:19.8738084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin.h 2025-08-26T20:45:19.8741935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.8745498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_cpu_dispatch.h 2025-08-26T20:45:19.8749376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_cuda_dispatch.h 2025-08-26T20:45:19.8753157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_meta.h 2025-08-26T20:45:19.8769010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_meta_dispatch.h 2025-08-26T20:45:19.8772584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_native.h 2025-08-26T20:45:19.8776279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_ops.h 2025-08-26T20:45:19.8779622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod.h 2025-08-26T20:45:19.8783378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.8787043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.8790698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_cpu_dispatch.h 2025-08-26T20:45:19.8794592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_cuda_dispatch.h 2025-08-26T20:45:19.8798311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_meta.h 2025-08-26T20:45:19.8801945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_meta_dispatch.h 2025-08-26T20:45:19.8805874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_native.h 2025-08-26T20:45:19.8809433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_ops.h 2025-08-26T20:45:19.8812718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac.h 2025-08-26T20:45:19.8816503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d.h 2025-08-26T20:45:19.8820810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward.h 2025-08-26T20:45:19.8825818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.8829414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_cpu_dispatch.h 2025-08-26T20:45:19.8833399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_cuda_dispatch.h 2025-08-26T20:45:19.8837492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_meta.h 2025-08-26T20:45:19.8841728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_meta_dispatch.h 2025-08-26T20:45:19.8845931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_native.h 2025-08-26T20:45:19.8849936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_ops.h 2025-08-26T20:45:19.8854272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.8858370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_cpu_dispatch.h 2025-08-26T20:45:19.8862237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_cuda_dispatch.h 2025-08-26T20:45:19.8866323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_meta.h 2025-08-26T20:45:19.8870485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_meta_dispatch.h 2025-08-26T20:45:19.8874424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_native.h 2025-08-26T20:45:19.8878232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_ops.h 2025-08-26T20:45:19.8881978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d.h 2025-08-26T20:45:19.8885975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_backward.h 2025-08-26T20:45:19.8890100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_backward_cpu_dispatch.h 2025-08-26T20:45:19.8894336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_backward_cuda_dispatch.h 2025-08-26T20:45:19.8898243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_backward_native.h 2025-08-26T20:45:19.8902485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_backward_ops.h 2025-08-26T20:45:19.8907156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.8910966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_cpu_dispatch.h 2025-08-26T20:45:19.8915125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_cuda_dispatch.h 2025-08-26T20:45:19.8919107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_meta.h 2025-08-26T20:45:19.8922962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_meta_dispatch.h 2025-08-26T20:45:19.8927086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_native.h 2025-08-26T20:45:19.8930820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_ops.h 2025-08-26T20:45:19.8934875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.8938596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_cpu_dispatch.h 2025-08-26T20:45:19.8942444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_cuda_dispatch.h 2025-08-26T20:45:19.8946095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_meta.h 2025-08-26T20:45:19.8949805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_meta_dispatch.h 2025-08-26T20:45:19.8953572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_native.h 2025-08-26T20:45:19.8957140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_ops.h 2025-08-26T20:45:19.8960477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp.h 2025-08-26T20:45:19.8964653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.8968665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp_cpu_dispatch.h 2025-08-26T20:45:19.8972289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp_cuda_dispatch.h 2025-08-26T20:45:19.8975942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp_native.h 2025-08-26T20:45:19.8980212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp_ops.h 2025-08-26T20:45:19.8983984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frobenius_norm.h 2025-08-26T20:45:19.8987786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frobenius_norm_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8991491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frobenius_norm_native.h 2025-08-26T20:45:19.8995109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frobenius_norm_ops.h 2025-08-26T20:45:19.8999029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_blob.h 2025-08-26T20:45:19.9002521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_file.h 2025-08-26T20:45:19.9006432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_file_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.9010583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_file_cpu_dispatch.h 2025-08-26T20:45:19.9014274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_file_native.h 2025-08-26T20:45:19.9017921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_file_ops.h 2025-08-26T20:45:19.9021756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full.h 2025-08-26T20:45:19.9025289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.9029212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_like.h 2025-08-26T20:45:19.9033527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_like_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.9037554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_like_native.h 2025-08-26T20:45:19.9041549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_like_ops.h 2025-08-26T20:45:19.9045286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_native.h 2025-08-26T20:45:19.9049137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_ops.h 2025-08-26T20:45:19.9052805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fused_moving_avg_obs_fake_quant.h 2025-08-26T20:45:19.9057128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.9060925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_native.h 2025-08-26T20:45:19.9064856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_ops.h 2025-08-26T20:45:19.9068565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather.h 2025-08-26T20:45:19.9072239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_backward.h 2025-08-26T20:45:19.9076266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.9080039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_backward_native.h 2025-08-26T20:45:19.9083791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_backward_ops.h 2025-08-26T20:45:19.9088000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.9092077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.9096022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_cpu_dispatch.h 2025-08-26T20:45:19.9099984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_cuda_dispatch.h 2025-08-26T20:45:19.9104318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_meta.h 2025-08-26T20:45:19.9108028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_meta_dispatch.h 2025-08-26T20:45:19.9111661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_native.h 2025-08-26T20:45:19.9115787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_ops.h 2025-08-26T20:45:19.9119497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd.h 2025-08-26T20:45:19.9123144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.9126791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_cpu_dispatch.h 2025-08-26T20:45:19.9130674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_cuda_dispatch.h 2025-08-26T20:45:19.9134396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_meta.h 2025-08-26T20:45:19.9137883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_meta_dispatch.h 2025-08-26T20:45:19.9141435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_native.h 2025-08-26T20:45:19.9144967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_ops.h 2025-08-26T20:45:19.9148369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge.h 2025-08-26T20:45:19.9151762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu.h 2025-08-26T20:45:19.9155164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward.h 2025-08-26T20:45:19.9158977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.9162937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_cpu_dispatch.h 2025-08-26T20:45:19.9167032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_cuda_dispatch.h 2025-08-26T20:45:19.9170949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_meta.h 2025-08-26T20:45:19.9175027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_meta_dispatch.h 2025-08-26T20:45:19.9178711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_native.h 2025-08-26T20:45:19.9182380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_ops.h 2025-08-26T20:45:19.9186235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.9189907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_cpu_dispatch.h 2025-08-26T20:45:19.9193543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_cuda_dispatch.h 2025-08-26T20:45:19.9197215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_meta.h 2025-08-26T20:45:19.9200776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_meta_dispatch.h 2025-08-26T20:45:19.9204505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_native.h 2025-08-26T20:45:19.9208154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_ops.h 2025-08-26T20:45:19.9211554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric.h 2025-08-26T20:45:19.9215328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.9219692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_cpu_dispatch.h 2025-08-26T20:45:19.9223710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_cuda_dispatch.h 2025-08-26T20:45:19.9227573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_meta_dispatch.h 2025-08-26T20:45:19.9231549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_native.h 2025-08-26T20:45:19.9235118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_ops.h 2025-08-26T20:45:19.9239000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geqrf.h 2025-08-26T20:45:19.9242435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geqrf_cpu_dispatch.h 2025-08-26T20:45:19.9246181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geqrf_cuda_dispatch.h 2025-08-26T20:45:19.9250328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geqrf_native.h 2025-08-26T20:45:19.9254026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geqrf_ops.h 2025-08-26T20:45:19.9257851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ger.h 2025-08-26T20:45:19.9261353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ger_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.9264769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ger_native.h 2025-08-26T20:45:19.9268374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ger_ops.h 2025-08-26T20:45:19.9271993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.9275667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_cpu_dispatch.h 2025-08-26T20:45:19.9279427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_cuda_dispatch.h 2025-08-26T20:45:19.9283083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_meta.h 2025-08-26T20:45:19.9286637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_meta_dispatch.h 2025-08-26T20:45:19.9291600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_native.h 2025-08-26T20:45:19.9295094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_ops.h 2025-08-26T20:45:19.9298601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu.h 2025-08-26T20:45:19.9302037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward.h 2025-08-26T20:45:19.9305856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_cpu_dispatch.h 2025-08-26T20:45:19.9309516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_cuda_dispatch.h 2025-08-26T20:45:19.9313731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp.h 2025-08-26T20:45:19.9317617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.9321502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp_cpu_dispatch.h 2025-08-26T20:45:19.9325312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp_cuda_dispatch.h 2025-08-26T20:45:19.9329088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp_native.h 2025-08-26T20:45:19.9333230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp_ops.h 2025-08-26T20:45:19.9337112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_native.h 2025-08-26T20:45:19.9341125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_ops.h 2025-08-26T20:45:19.9344932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.9348485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_cpu_dispatch.h 2025-08-26T20:45:19.9352103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_cuda_dispatch.h 2025-08-26T20:45:19.9356005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp.h 2025-08-26T20:45:19.9359617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.9363341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp_cpu_dispatch.h 2025-08-26T20:45:19.9367209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp_cuda_dispatch.h 2025-08-26T20:45:19.9370744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp_native.h 2025-08-26T20:45:19.9374610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp_ops.h 2025-08-26T20:45:19.9378334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_meta.h 2025-08-26T20:45:19.9382052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_meta_dispatch.h 2025-08-26T20:45:19.9385608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_native.h 2025-08-26T20:45:19.9389193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_ops.h 2025-08-26T20:45:19.9392647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gradient.h 2025-08-26T20:45:19.9396465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gradient_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.9400150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gradient_native.h 2025-08-26T20:45:19.9404043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gradient_ops.h 2025-08-26T20:45:19.9407702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater.h 2025-08-26T20:45:19.9411309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.9414838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_equal.h 2025-08-26T20:45:19.9418628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_equal_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.9422464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_equal_native.h 2025-08-26T20:45:19.9426095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_equal_ops.h 2025-08-26T20:45:19.9430113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_native.h 2025-08-26T20:45:19.9433753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_ops.h 2025-08-26T20:45:19.9437239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler.h 2025-08-26T20:45:19.9441586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d.h 2025-08-26T20:45:19.9445921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward.h 2025-08-26T20:45:19.9449882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.9453877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward_cpu_dispatch.h 2025-08-26T20:45:19.9457651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward_cuda_dispatch.h 2025-08-26T20:45:19.9461392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward_native.h 2025-08-26T20:45:19.9465193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward_ops.h 2025-08-26T20:45:19.9469046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.9473026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_cpu_dispatch.h 2025-08-26T20:45:19.9476754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_cuda_dispatch.h 2025-08-26T20:45:19.9480578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_native.h 2025-08-26T20:45:19.9484258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_ops.h 2025-08-26T20:45:19.9488120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d.h 2025-08-26T20:45:19.9491845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward.h 2025-08-26T20:45:19.9495850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.9499701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward_cpu_dispatch.h 2025-08-26T20:45:19.9503410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward_cuda_dispatch.h 2025-08-26T20:45:19.9507164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward_native.h 2025-08-26T20:45:19.9511476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward_ops.h 2025-08-26T20:45:19.9515401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.9519228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_cpu_dispatch.h 2025-08-26T20:45:19.9523234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_cuda_dispatch.h 2025-08-26T20:45:19.9527181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_native.h 2025-08-26T20:45:19.9531048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_ops.h 2025-08-26T20:45:19.9535331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.9539245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_native.h 2025-08-26T20:45:19.9543106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_ops.h 2025-08-26T20:45:19.9546827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\group_norm.h 2025-08-26T20:45:19.9550936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\group_norm_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.9554675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\group_norm_native.h 2025-08-26T20:45:19.9558340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\group_norm_ops.h 2025-08-26T20:45:19.9562203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru.h 2025-08-26T20:45:19.9565737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_cell.h 2025-08-26T20:45:19.9569429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_cell_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.9573431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_cell_native.h 2025-08-26T20:45:19.9577440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_cell_ops.h 2025-08-26T20:45:19.9581485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.9585611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_native.h 2025-08-26T20:45:19.9589320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_ops.h 2025-08-26T20:45:19.9592684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt.h 2025-08-26T20:45:19.9596556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.9600264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_cpu_dispatch.h 2025-08-26T20:45:19.9603892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_cuda_dispatch.h 2025-08-26T20:45:19.9608115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_meta.h 2025-08-26T20:45:19.9612074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_meta_dispatch.h 2025-08-26T20:45:19.9615582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_native.h 2025-08-26T20:45:19.9619223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_ops.h 2025-08-26T20:45:19.9622663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hamming_window.h 2025-08-26T20:45:19.9626608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hamming_window_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.9630454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hamming_window_native.h 2025-08-26T20:45:19.9634218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hamming_window_ops.h 2025-08-26T20:45:19.9638573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hann_window.h 2025-08-26T20:45:19.9642411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hann_window_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.9646653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hann_window_native.h 2025-08-26T20:45:19.9679077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hann_window_ops.h 2025-08-26T20:45:19.9682863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink.h 2025-08-26T20:45:19.9686588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward.h 2025-08-26T20:45:19.9690784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.9694644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_cpu_dispatch.h 2025-08-26T20:45:19.9698397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_cuda_dispatch.h 2025-08-26T20:45:19.9702139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_meta.h 2025-08-26T20:45:19.9705992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_meta_dispatch.h 2025-08-26T20:45:19.9710122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_native.h 2025-08-26T20:45:19.9713763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_ops.h 2025-08-26T20:45:19.9717819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.9721628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_cpu_dispatch.h 2025-08-26T20:45:19.9725357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_cuda_dispatch.h 2025-08-26T20:45:19.9729097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_meta.h 2025-08-26T20:45:19.9732791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_meta_dispatch.h 2025-08-26T20:45:19.9736710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_native.h 2025-08-26T20:45:19.9740556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_ops.h 2025-08-26T20:45:19.9744486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid.h 2025-08-26T20:45:19.9748443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward.h 2025-08-26T20:45:19.9752781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.9756761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_cpu_dispatch.h 2025-08-26T20:45:19.9760457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_cuda_dispatch.h 2025-08-26T20:45:19.9764154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_meta.h 2025-08-26T20:45:19.9768286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_meta_dispatch.h 2025-08-26T20:45:19.9772048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_native.h 2025-08-26T20:45:19.9776271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_ops.h 2025-08-26T20:45:19.9780266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.9783937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_cpu_dispatch.h 2025-08-26T20:45:19.9787898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_cuda_dispatch.h 2025-08-26T20:45:19.9791557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_meta.h 2025-08-26T20:45:19.9795651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_meta_dispatch.h 2025-08-26T20:45:19.9799391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_native.h 2025-08-26T20:45:19.9803284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_ops.h 2025-08-26T20:45:19.9807003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish.h 2025-08-26T20:45:19.9810863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward.h 2025-08-26T20:45:19.9814711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.9819025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward_cpu_dispatch.h 2025-08-26T20:45:19.9823594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward_cuda_dispatch.h 2025-08-26T20:45:19.9827368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward_native.h 2025-08-26T20:45:19.9831194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward_ops.h 2025-08-26T20:45:19.9835061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_cpu_dispatch.h 2025-08-26T20:45:19.9838749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_cuda_dispatch.h 2025-08-26T20:45:19.9842548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_meta_dispatch.h 2025-08-26T20:45:19.9846327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_native.h 2025-08-26T20:45:19.9850216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_ops.h 2025-08-26T20:45:19.9853941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh.h 2025-08-26T20:45:19.9857362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_backward.h 2025-08-26T20:45:19.9861169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_backward_cpu_dispatch.h 2025-08-26T20:45:19.9864850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_backward_cuda_dispatch.h 2025-08-26T20:45:19.9868642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_backward_native.h 2025-08-26T20:45:19.9872326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_backward_ops.h 2025-08-26T20:45:19.9876254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_cpu_dispatch.h 2025-08-26T20:45:19.9880496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_cuda_dispatch.h 2025-08-26T20:45:19.9884275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_meta_dispatch.h 2025-08-26T20:45:19.9888748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_native.h 2025-08-26T20:45:19.9892392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_ops.h 2025-08-26T20:45:19.9896154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor.h 2025-08-26T20:45:19.9900057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.9903742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_cpu_dispatch.h 2025-08-26T20:45:19.9907702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_cuda_dispatch.h 2025-08-26T20:45:19.9911457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_meta.h 2025-08-26T20:45:19.9915186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_meta_dispatch.h 2025-08-26T20:45:19.9919034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_native.h 2025-08-26T20:45:19.9922640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_ops.h 2025-08-26T20:45:19.9926386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside.h 2025-08-26T20:45:19.9930293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.9934196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_cpu_dispatch.h 2025-08-26T20:45:19.9938178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_cuda_dispatch.h 2025-08-26T20:45:19.9966638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_meta.h 2025-08-26T20:45:19.9970493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_meta_dispatch.h 2025-08-26T20:45:19.9974129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_native.h 2025-08-26T20:45:19.9978218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_ops.h 2025-08-26T20:45:19.9982692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hinge_embedding_loss.h 2025-08-26T20:45:19.9986972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hinge_embedding_loss_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.9990667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hinge_embedding_loss_native.h 2025-08-26T20:45:19.9994515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hinge_embedding_loss_ops.h 2025-08-26T20:45:19.9998338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histc.h 2025-08-26T20:45:20.0001926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histc_cpu_dispatch.h 2025-08-26T20:45:20.0006048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histc_cuda_dispatch.h 2025-08-26T20:45:20.0009863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histc_native.h 2025-08-26T20:45:20.0013937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histc_ops.h 2025-08-26T20:45:20.0017965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogram.h 2025-08-26T20:45:20.0021771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogramdd.h 2025-08-26T20:45:20.0025527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogramdd_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.0029259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogramdd_native.h 2025-08-26T20:45:20.0033058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogramdd_ops.h 2025-08-26T20:45:20.0036937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogram_cpu_dispatch.h 2025-08-26T20:45:20.0040730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogram_native.h 2025-08-26T20:45:20.0044974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogram_ops.h 2025-08-26T20:45:20.0048828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hsplit.h 2025-08-26T20:45:20.0052782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hsplit_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.0056369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hsplit_native.h 2025-08-26T20:45:20.0060002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hsplit_ops.h 2025-08-26T20:45:20.0063719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hspmm.h 2025-08-26T20:45:20.0067312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hspmm_native.h 2025-08-26T20:45:20.0070852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hspmm_ops.h 2025-08-26T20:45:20.0074878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hstack.h 2025-08-26T20:45:20.0078692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hstack_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.0082531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hstack_native.h 2025-08-26T20:45:20.0086529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hstack_ops.h 2025-08-26T20:45:20.0090450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss.h 2025-08-26T20:45:20.0093999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward.h 2025-08-26T20:45:20.0097953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.0101741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward_cpu_dispatch.h 2025-08-26T20:45:20.0105665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward_cuda_dispatch.h 2025-08-26T20:45:20.0109399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward_native.h 2025-08-26T20:45:20.0113266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward_ops.h 2025-08-26T20:45:20.0117157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_cpu_dispatch.h 2025-08-26T20:45:20.0121556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_cuda_dispatch.h 2025-08-26T20:45:20.0126043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_native.h 2025-08-26T20:45:20.0130002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_ops.h 2025-08-26T20:45:20.0134074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot.h 2025-08-26T20:45:20.0137872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.0141423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_cpu_dispatch.h 2025-08-26T20:45:20.0145344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_cuda_dispatch.h 2025-08-26T20:45:20.0149075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_meta.h 2025-08-26T20:45:20.0152851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_meta_dispatch.h 2025-08-26T20:45:20.0156745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_native.h 2025-08-26T20:45:20.0160361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_ops.h 2025-08-26T20:45:20.0164178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0.h 2025-08-26T20:45:20.0167980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.0171529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_cpu_dispatch.h 2025-08-26T20:45:20.0175150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_cuda_dispatch.h 2025-08-26T20:45:20.0178703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_meta.h 2025-08-26T20:45:20.0182147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_meta_dispatch.h 2025-08-26T20:45:20.0186062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_native.h 2025-08-26T20:45:20.0190016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_ops.h 2025-08-26T20:45:20.0193623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma.h 2025-08-26T20:45:20.0198046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac.h 2025-08-26T20:45:20.0201777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.0205375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_cpu_dispatch.h 2025-08-26T20:45:20.0209096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_cuda_dispatch.h 2025-08-26T20:45:20.0212701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_meta.h 2025-08-26T20:45:20.0216571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_meta_dispatch.h 2025-08-26T20:45:20.0220283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_native.h 2025-08-26T20:45:20.0224249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_ops.h 2025-08-26T20:45:20.0228198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.0232085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_cpu_dispatch.h 2025-08-26T20:45:20.0237089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_cuda_dispatch.h 2025-08-26T20:45:20.0240882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_meta.h 2025-08-26T20:45:20.0244624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_meta_dispatch.h 2025-08-26T20:45:20.0248368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_native.h 2025-08-26T20:45:20.0252219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_ops.h 2025-08-26T20:45:20.0255800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\im2col.h 2025-08-26T20:45:20.0259631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\im2col_cpu_dispatch.h 2025-08-26T20:45:20.0263258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\im2col_cuda_dispatch.h 2025-08-26T20:45:20.0267716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\im2col_native.h 2025-08-26T20:45:20.0271819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\im2col_ops.h 2025-08-26T20:45:20.0275571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\imag.h 2025-08-26T20:45:20.0279237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\imag_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.0282857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\imag_native.h 2025-08-26T20:45:20.0286695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\imag_ops.h 2025-08-26T20:45:20.0290301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index.h 2025-08-26T20:45:20.0293899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add.h 2025-08-26T20:45:20.0298298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.0302479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.0306324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_cpu_dispatch.h 2025-08-26T20:45:20.0310045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_cuda_dispatch.h 2025-08-26T20:45:20.0314293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_meta.h 2025-08-26T20:45:20.0318210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_meta_dispatch.h 2025-08-26T20:45:20.0321910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_native.h 2025-08-26T20:45:20.0326053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_ops.h 2025-08-26T20:45:20.0331332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.0335207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy.h 2025-08-26T20:45:20.0339099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.0343383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.0347822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_cpu_dispatch.h 2025-08-26T20:45:20.0351770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_cuda_dispatch.h 2025-08-26T20:45:20.0356201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_meta.h 2025-08-26T20:45:20.0359358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_meta_dispatch.h 2025-08-26T20:45:20.0364006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_native.h 2025-08-26T20:45:20.0367785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_ops.h 2025-08-26T20:45:20.0372175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_cpu_dispatch.h 2025-08-26T20:45:20.0376100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_cuda_dispatch.h 2025-08-26T20:45:20.0379847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill.h 2025-08-26T20:45:20.0383809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.0388306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.0402551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_cpu_dispatch.h 2025-08-26T20:45:20.0407988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_cuda_dispatch.h 2025-08-26T20:45:20.0412950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_meta_dispatch.h 2025-08-26T20:45:20.0418569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_native.h 2025-08-26T20:45:20.0423758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_ops.h 2025-08-26T20:45:20.0429989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_meta.h 2025-08-26T20:45:20.0433778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_meta_dispatch.h 2025-08-26T20:45:20.0439026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_native.h 2025-08-26T20:45:20.0444047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_ops.h 2025-08-26T20:45:20.0449267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_put.h 2025-08-26T20:45:20.0454878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_put_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.0459549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_put_native.h 2025-08-26T20:45:20.0464849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_put_ops.h 2025-08-26T20:45:20.0468621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce.h 2025-08-26T20:45:20.0473165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.0477042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_cpu_dispatch.h 2025-08-26T20:45:20.0481060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_cuda_dispatch.h 2025-08-26T20:45:20.0485371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_meta.h 2025-08-26T20:45:20.0489846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_meta_dispatch.h 2025-08-26T20:45:20.0494213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_native.h 2025-08-26T20:45:20.0498178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_ops.h 2025-08-26T20:45:20.0502715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select.h 2025-08-26T20:45:20.0506454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_backward.h 2025-08-26T20:45:20.0510449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.0514913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_backward_native.h 2025-08-26T20:45:20.0518876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_backward_ops.h 2025-08-26T20:45:20.0523098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.0526834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_cpu_dispatch.h 2025-08-26T20:45:20.0531082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_cuda_dispatch.h 2025-08-26T20:45:20.0535744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_native.h 2025-08-26T20:45:20.0539751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_ops.h 2025-08-26T20:45:20.0543735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices.h 2025-08-26T20:45:20.0547870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.0551685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_copy.h 2025-08-26T20:45:20.0555685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.0559633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.0563661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_copy_native.h 2025-08-26T20:45:20.0568713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_copy_ops.h 2025-08-26T20:45:20.0572316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_native.h 2025-08-26T20:45:20.0576817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_ops.h 2025-08-26T20:45:20.0580912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\infinitely_differentiable_gelu_backward.h 2025-08-26T20:45:20.0584854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.0589150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\infinitely_differentiable_gelu_backward_native.h 2025-08-26T20:45:20.0593134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\infinitely_differentiable_gelu_backward_ops.h 2025-08-26T20:45:20.0596798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inner.h 2025-08-26T20:45:20.0600505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inner_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.0604764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inner_native.h 2025-08-26T20:45:20.0608632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inner_ops.h 2025-08-26T20:45:20.0612433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\instance_norm.h 2025-08-26T20:45:20.0616298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\instance_norm_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.0620620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\instance_norm_native.h 2025-08-26T20:45:20.0624304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\instance_norm_ops.h 2025-08-26T20:45:20.0627896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\int_repr.h 2025-08-26T20:45:20.0631485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\int_repr_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.0635726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\int_repr_native.h 2025-08-26T20:45:20.0640229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\int_repr_ops.h 2025-08-26T20:45:20.0643969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inverse.h 2025-08-26T20:45:20.0648149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inverse_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.0651758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inverse_native.h 2025-08-26T20:45:20.0655532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inverse_ops.h 2025-08-26T20:45:20.0659046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isclose.h 2025-08-26T20:45:20.0662608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isclose_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.0666230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isclose_native.h 2025-08-26T20:45:20.0669938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isclose_ops.h 2025-08-26T20:45:20.0674083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isfinite.h 2025-08-26T20:45:20.0677993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isfinite_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.0681577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isfinite_native.h 2025-08-26T20:45:20.0685153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isfinite_ops.h 2025-08-26T20:45:20.0688913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin.h 2025-08-26T20:45:20.0692316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isinf.h 2025-08-26T20:45:20.0696177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isinf_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.0699885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isinf_native.h 2025-08-26T20:45:20.0703462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isinf_ops.h 2025-08-26T20:45:20.0707963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.0711935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_cpu_dispatch.h 2025-08-26T20:45:20.0715594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_cuda_dispatch.h 2025-08-26T20:45:20.0719191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_meta.h 2025-08-26T20:45:20.0723064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_meta_dispatch.h 2025-08-26T20:45:20.0730603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_native.h 2025-08-26T20:45:20.1489234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_ops.h 2025-08-26T20:45:20.1495230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan.h 2025-08-26T20:45:20.1501005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.1506325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan_cpu_dispatch.h 2025-08-26T20:45:20.1512364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan_cuda_dispatch.h 2025-08-26T20:45:20.1518513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan_native.h 2025-08-26T20:45:20.1526087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan_ops.h 2025-08-26T20:45:20.1531954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf.h 2025-08-26T20:45:20.1537481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.1543209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_cpu_dispatch.h 2025-08-26T20:45:20.1549017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_cuda_dispatch.h 2025-08-26T20:45:20.1554931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_meta.h 2025-08-26T20:45:20.1559789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_meta_dispatch.h 2025-08-26T20:45:20.1565458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_native.h 2025-08-26T20:45:20.1569683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_ops.h 2025-08-26T20:45:20.1573646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf.h 2025-08-26T20:45:20.1577615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.1581466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_cpu_dispatch.h 2025-08-26T20:45:20.1585464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_cuda_dispatch.h 2025-08-26T20:45:20.1589584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_meta.h 2025-08-26T20:45:20.1594090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_meta_dispatch.h 2025-08-26T20:45:20.1598564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_native.h 2025-08-26T20:45:20.1603206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_ops.h 2025-08-26T20:45:20.1607510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isreal.h 2025-08-26T20:45:20.1611381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isreal_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1615722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isreal_native.h 2025-08-26T20:45:20.1619959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isreal_ops.h 2025-08-26T20:45:20.1624065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\istft.h 2025-08-26T20:45:20.1628100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\istft_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1632168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\istft_native.h 2025-08-26T20:45:20.1636250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\istft_ops.h 2025-08-26T20:45:20.1640408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_coalesced.h 2025-08-26T20:45:20.1644548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_coalesced_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.1649559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_coalesced_native.h 2025-08-26T20:45:20.1653732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_coalesced_ops.h 2025-08-26T20:45:20.1657852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_complex.h 2025-08-26T20:45:20.1662119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_complex_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1665997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_complex_native.h 2025-08-26T20:45:20.1669826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_complex_ops.h 2025-08-26T20:45:20.1673488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_conj.h 2025-08-26T20:45:20.1677429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_conj_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1681176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_conj_native.h 2025-08-26T20:45:20.1684988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_conj_ops.h 2025-08-26T20:45:20.1688860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_distributed.h 2025-08-26T20:45:20.1692776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_distributed_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1696511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_distributed_native.h 2025-08-26T20:45:20.1700185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_distributed_ops.h 2025-08-26T20:45:20.1704695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_floating_point.h 2025-08-26T20:45:20.1709215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_floating_point_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1713122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_floating_point_native.h 2025-08-26T20:45:20.1717696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_floating_point_ops.h 2025-08-26T20:45:20.1721862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_inference.h 2025-08-26T20:45:20.1725690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_inference_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1729623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_inference_native.h 2025-08-26T20:45:20.1733338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_inference_ops.h 2025-08-26T20:45:20.1737369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_leaf.h 2025-08-26T20:45:20.1741021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_leaf_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1744730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_leaf_native.h 2025-08-26T20:45:20.1748422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_leaf_ops.h 2025-08-26T20:45:20.1752218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_neg.h 2025-08-26T20:45:20.1755846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_neg_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1759645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_neg_native.h 2025-08-26T20:45:20.1763301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_neg_ops.h 2025-08-26T20:45:20.1767035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_nonzero.h 2025-08-26T20:45:20.1771707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_nonzero_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1775474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_nonzero_native.h 2025-08-26T20:45:20.1779146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_nonzero_ops.h 2025-08-26T20:45:20.1782900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_pinned.h 2025-08-26T20:45:20.1786739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_pinned_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.1791778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_pinned_native.h 2025-08-26T20:45:20.1795573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_pinned_ops.h 2025-08-26T20:45:20.1799414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_same_size.h 2025-08-26T20:45:20.1803206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_same_size_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.1807038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_same_size_native.h 2025-08-26T20:45:20.1810825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_same_size_ops.h 2025-08-26T20:45:20.1814470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_set_to.h 2025-08-26T20:45:20.1818607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_set_to_cpu_dispatch.h 2025-08-26T20:45:20.1822444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_set_to_cuda_dispatch.h 2025-08-26T20:45:20.1827121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_set_to_native.h 2025-08-26T20:45:20.1830787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_set_to_ops.h 2025-08-26T20:45:20.1834504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_signed.h 2025-08-26T20:45:20.1838426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_signed_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1841978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_signed_native.h 2025-08-26T20:45:20.1845633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_signed_ops.h 2025-08-26T20:45:20.1850021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_vulkan_available.h 2025-08-26T20:45:20.1853913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_vulkan_available_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1857875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_vulkan_available_native.h 2025-08-26T20:45:20.1862143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_vulkan_available_ops.h 2025-08-26T20:45:20.1865875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\item.h 2025-08-26T20:45:20.1869444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\item_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1873245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\item_native.h 2025-08-26T20:45:20.1877729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\item_ops.h 2025-08-26T20:45:20.1881736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kaiser_window.h 2025-08-26T20:45:20.1886297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kaiser_window_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.1890486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kaiser_window_native.h 2025-08-26T20:45:20.1894806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kaiser_window_ops.h 2025-08-26T20:45:20.1899302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kl_div.h 2025-08-26T20:45:20.1903512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kl_div_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1907981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kl_div_native.h 2025-08-26T20:45:20.1912198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kl_div_ops.h 2025-08-26T20:45:20.1916179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kron.h 2025-08-26T20:45:20.1919834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kron_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1924542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kron_native.h 2025-08-26T20:45:20.1928842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kron_ops.h 2025-08-26T20:45:20.1932382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue.h 2025-08-26T20:45:20.1936500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.1940423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1944186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_cpu_dispatch.h 2025-08-26T20:45:20.1948257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_cuda_dispatch.h 2025-08-26T20:45:20.1951943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_native.h 2025-08-26T20:45:20.1955572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_ops.h 2025-08-26T20:45:20.1959220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\l1_loss.h 2025-08-26T20:45:20.1962808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\l1_loss_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1966847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\l1_loss_native.h 2025-08-26T20:45:20.1970543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\l1_loss_ops.h 2025-08-26T20:45:20.1974246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\layer_norm.h 2025-08-26T20:45:20.1978057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\layer_norm_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1981824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\layer_norm_native.h 2025-08-26T20:45:20.1985428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\layer_norm_ops.h 2025-08-26T20:45:20.1988983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm.h 2025-08-26T20:45:20.1992618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.2001761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_cpu_dispatch.h 2025-08-26T20:45:20.2008784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_cuda_dispatch.h 2025-08-26T20:45:20.2012573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_meta.h 2025-08-26T20:45:20.2016133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_meta_dispatch.h 2025-08-26T20:45:20.2019732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_native.h 2025-08-26T20:45:20.2023304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_ops.h 2025-08-26T20:45:20.2026782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ldexp.h 2025-08-26T20:45:20.2030451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ldexp_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.2034210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ldexp_native.h 2025-08-26T20:45:20.2037765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ldexp_ops.h 2025-08-26T20:45:20.2041319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le.h 2025-08-26T20:45:20.2044746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu.h 2025-08-26T20:45:20.2048622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward.h 2025-08-26T20:45:20.2052825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.2056470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_cpu_dispatch.h 2025-08-26T20:45:20.2060499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_cuda_dispatch.h 2025-08-26T20:45:20.2064248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_meta.h 2025-08-26T20:45:20.2067985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_meta_dispatch.h 2025-08-26T20:45:20.2072001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_native.h 2025-08-26T20:45:20.2075723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_ops.h 2025-08-26T20:45:20.2080015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.2085058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_cpu_dispatch.h 2025-08-26T20:45:20.2089461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_cuda_dispatch.h 2025-08-26T20:45:20.2093255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_meta.h 2025-08-26T20:45:20.2097118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_meta_dispatch.h 2025-08-26T20:45:20.2100893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_native.h 2025-08-26T20:45:20.2104903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_ops.h 2025-08-26T20:45:20.2108560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp.h 2025-08-26T20:45:20.2112181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.2116185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_cpu_dispatch.h 2025-08-26T20:45:20.2120070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_cuda_dispatch.h 2025-08-26T20:45:20.2124161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_meta.h 2025-08-26T20:45:20.2128024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_meta_dispatch.h 2025-08-26T20:45:20.2131793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_native.h 2025-08-26T20:45:20.2135485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_ops.h 2025-08-26T20:45:20.2139302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less.h 2025-08-26T20:45:20.2143266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.2147286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_equal.h 2025-08-26T20:45:20.2151870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_equal_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.2155727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_equal_native.h 2025-08-26T20:45:20.2160168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_equal_ops.h 2025-08-26T20:45:20.2163901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_native.h 2025-08-26T20:45:20.2167818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_ops.h 2025-08-26T20:45:20.2171752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.2175810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_cpu_dispatch.h 2025-08-26T20:45:20.2179476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_cuda_dispatch.h 2025-08-26T20:45:20.2183377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_meta.h 2025-08-26T20:45:20.2187110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_meta_dispatch.h 2025-08-26T20:45:20.2190897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_native.h 2025-08-26T20:45:20.2194689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_ops.h 2025-08-26T20:45:20.2198103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma.h 2025-08-26T20:45:20.2202268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.2206087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_cpu_dispatch.h 2025-08-26T20:45:20.2210035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_cuda_dispatch.h 2025-08-26T20:45:20.2213752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_meta.h 2025-08-26T20:45:20.2217869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_meta_dispatch.h 2025-08-26T20:45:20.2222304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_native.h 2025-08-26T20:45:20.2225983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_ops.h 2025-08-26T20:45:20.2229865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift.h 2025-08-26T20:45:20.2233461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.2237414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh.h 2025-08-26T20:45:20.2241338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.2245223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_copy.h 2025-08-26T20:45:20.2249056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.2252977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.2256826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_copy_native.h 2025-08-26T20:45:20.2260709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_copy_ops.h 2025-08-26T20:45:20.2264500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_native.h 2025-08-26T20:45:20.2268618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_ops.h 2025-08-26T20:45:20.2272486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_native.h 2025-08-26T20:45:20.2276207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_ops.h 2025-08-26T20:45:20.2279557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky.h 2025-08-26T20:45:20.2283472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.2287857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex.h 2025-08-26T20:45:20.2292721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.2296947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_cpu_dispatch.h 2025-08-26T20:45:20.2300821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_cuda_dispatch.h 2025-08-26T20:45:20.2304644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_meta.h 2025-08-26T20:45:20.2309046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_meta_dispatch.h 2025-08-26T20:45:20.2313124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_native.h 2025-08-26T20:45:20.2316887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_ops.h 2025-08-26T20:45:20.2320678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_native.h 2025-08-26T20:45:20.2324426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ops.h 2025-08-26T20:45:20.2328243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cond.h 2025-08-26T20:45:20.2332220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cond_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.2335974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cond_native.h 2025-08-26T20:45:20.2339965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cond_ops.h 2025-08-26T20:45:20.2343745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross.h 2025-08-26T20:45:20.2347796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.2351585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_cpu_dispatch.h 2025-08-26T20:45:20.2355344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_cuda_dispatch.h 2025-08-26T20:45:20.2359232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_meta.h 2025-08-26T20:45:20.2363300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_meta_dispatch.h 2025-08-26T20:45:20.2367340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_native.h 2025-08-26T20:45:20.2371196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_ops.h 2025-08-26T20:45:20.2375389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_det.h 2025-08-26T20:45:20.2379482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_det_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.2383182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_det_native.h 2025-08-26T20:45:20.2386828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_det_ops.h 2025-08-26T20:45:20.2390737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_diagonal.h 2025-08-26T20:45:20.2394761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_diagonal_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.2398904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_diagonal_native.h 2025-08-26T20:45:20.2402608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_diagonal_ops.h 2025-08-26T20:45:20.2406843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eig.h 2025-08-26T20:45:20.2410731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigh.h 2025-08-26T20:45:20.2414513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigh_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.2418267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigh_native.h 2025-08-26T20:45:20.2422232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigh_ops.h 2025-08-26T20:45:20.2426284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals.h 2025-08-26T20:45:20.2430086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvalsh.h 2025-08-26T20:45:20.2434306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvalsh_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.2438127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvalsh_native.h 2025-08-26T20:45:20.2441948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvalsh_ops.h 2025-08-26T20:45:20.2446128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.2450258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals_cpu_dispatch.h 2025-08-26T20:45:20.2454151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals_cuda_dispatch.h 2025-08-26T20:45:20.2457982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals_native.h 2025-08-26T20:45:20.2461775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals_ops.h 2025-08-26T20:45:20.2465669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eig_cpu_dispatch.h 2025-08-26T20:45:20.2469796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eig_cuda_dispatch.h 2025-08-26T20:45:20.2473858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eig_native.h 2025-08-26T20:45:20.2477850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eig_ops.h 2025-08-26T20:45:20.2482204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_householder_product.h 2025-08-26T20:45:20.2486798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_householder_product_cpu_dispatch.h 2025-08-26T20:45:20.2490869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_householder_product_cuda_dispatch.h 2025-08-26T20:45:20.2494785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_householder_product_native.h 2025-08-26T20:45:20.2499034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_householder_product_ops.h 2025-08-26T20:45:20.2502890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv.h 2025-08-26T20:45:20.2507796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.2511490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex.h 2025-08-26T20:45:20.2515570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.2519495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_cpu_dispatch.h 2025-08-26T20:45:20.2524163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_cuda_dispatch.h 2025-08-26T20:45:20.2528320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_meta.h 2025-08-26T20:45:20.2532940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_meta_dispatch.h 2025-08-26T20:45:20.3518708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_native.h 2025-08-26T20:45:20.3523399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_ops.h 2025-08-26T20:45:20.3528732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_native.h 2025-08-26T20:45:20.3532716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ops.h 2025-08-26T20:45:20.3536688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor.h 2025-08-26T20:45:20.3540770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.3544992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex.h 2025-08-26T20:45:20.3549226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.3553274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_cpu_dispatch.h 2025-08-26T20:45:20.3557261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_cuda_dispatch.h 2025-08-26T20:45:20.3561720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_meta.h 2025-08-26T20:45:20.3566045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_meta_dispatch.h 2025-08-26T20:45:20.3570611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_native.h 2025-08-26T20:45:20.3612883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_ops.h 2025-08-26T20:45:20.3616639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_native.h 2025-08-26T20:45:20.3622213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ops.h 2025-08-26T20:45:20.3626286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve.h 2025-08-26T20:45:20.3631185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.3652618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_cpu_dispatch.h 2025-08-26T20:45:20.3656652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_cuda_dispatch.h 2025-08-26T20:45:20.3660506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_meta.h 2025-08-26T20:45:20.3664472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_meta_dispatch.h 2025-08-26T20:45:20.3668569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_native.h 2025-08-26T20:45:20.3672325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_ops.h 2025-08-26T20:45:20.3676065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq.h 2025-08-26T20:45:20.3680229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.3684090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq_cpu_dispatch.h 2025-08-26T20:45:20.3687996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq_cuda_dispatch.h 2025-08-26T20:45:20.3691753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq_native.h 2025-08-26T20:45:20.3695940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq_ops.h 2025-08-26T20:45:20.3699691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu.h 2025-08-26T20:45:20.3704133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.3708143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_cpu_dispatch.h 2025-08-26T20:45:20.3712061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_cuda_dispatch.h 2025-08-26T20:45:20.3715869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor.h 2025-08-26T20:45:20.3720146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.3723762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex.h 2025-08-26T20:45:20.3728379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.3732299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_cpu_dispatch.h 2025-08-26T20:45:20.3736135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_cuda_dispatch.h 2025-08-26T20:45:20.3739892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_meta.h 2025-08-26T20:45:20.3743701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_meta_dispatch.h 2025-08-26T20:45:20.3747745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_native.h 2025-08-26T20:45:20.3751697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_ops.h 2025-08-26T20:45:20.3755820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_native.h 2025-08-26T20:45:20.3759697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ops.h 2025-08-26T20:45:20.3763726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_meta.h 2025-08-26T20:45:20.3768316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_meta_dispatch.h 2025-08-26T20:45:20.3772165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_native.h 2025-08-26T20:45:20.3776119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_ops.h 2025-08-26T20:45:20.3779969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve.h 2025-08-26T20:45:20.3784261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.3788701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_cpu_dispatch.h 2025-08-26T20:45:20.3793390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_cuda_dispatch.h 2025-08-26T20:45:20.3797302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_meta.h 2025-08-26T20:45:20.3801222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_meta_dispatch.h 2025-08-26T20:45:20.3805071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_native.h 2025-08-26T20:45:20.3809031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_ops.h 2025-08-26T20:45:20.3813131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matmul.h 2025-08-26T20:45:20.3817592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matmul_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.3821523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matmul_native.h 2025-08-26T20:45:20.3825364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matmul_ops.h 2025-08-26T20:45:20.3829294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp.h 2025-08-26T20:45:20.3833749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.3837628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp_cpu_dispatch.h 2025-08-26T20:45:20.3842157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp_cuda_dispatch.h 2025-08-26T20:45:20.3846668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp_native.h 2025-08-26T20:45:20.3850557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp_ops.h 2025-08-26T20:45:20.3854370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_norm.h 2025-08-26T20:45:20.3858750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_norm_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.3862369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_norm_native.h 2025-08-26T20:45:20.3866429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_norm_ops.h 2025-08-26T20:45:20.3870311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_power.h 2025-08-26T20:45:20.3874849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_power_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.3878760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_power_native.h 2025-08-26T20:45:20.3882547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_power_ops.h 2025-08-26T20:45:20.3886537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_rank.h 2025-08-26T20:45:20.3891069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_rank_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.3895082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_rank_native.h 2025-08-26T20:45:20.3899000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_rank_ops.h 2025-08-26T20:45:20.3903537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_multi_dot.h 2025-08-26T20:45:20.3907329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_multi_dot_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.3911006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_multi_dot_native.h 2025-08-26T20:45:20.3915217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_multi_dot_ops.h 2025-08-26T20:45:20.3919243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_norm.h 2025-08-26T20:45:20.3923176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_norm_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.3927142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_norm_native.h 2025-08-26T20:45:20.3931048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_norm_ops.h 2025-08-26T20:45:20.3934702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv.h 2025-08-26T20:45:20.3939089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.3942980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.3947118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.3950854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv_native.h 2025-08-26T20:45:20.3954655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv_ops.h 2025-08-26T20:45:20.3958463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr.h 2025-08-26T20:45:20.3963249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.3967114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_cpu_dispatch.h 2025-08-26T20:45:20.3971152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_cuda_dispatch.h 2025-08-26T20:45:20.3974899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_meta.h 2025-08-26T20:45:20.3978628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_meta_dispatch.h 2025-08-26T20:45:20.3982345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_native.h 2025-08-26T20:45:20.3986761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_ops.h 2025-08-26T20:45:20.3990588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_slogdet.h 2025-08-26T20:45:20.3994457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_slogdet_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.3998369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_slogdet_native.h 2025-08-26T20:45:20.4002166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_slogdet_ops.h 2025-08-26T20:45:20.4006236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve.h 2025-08-26T20:45:20.4009986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.4013701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_ex.h 2025-08-26T20:45:20.4017758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_ex_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.4021625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_ex_native.h 2025-08-26T20:45:20.4025598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_ex_ops.h 2025-08-26T20:45:20.4029351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_native.h 2025-08-26T20:45:20.4033103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_ops.h 2025-08-26T20:45:20.4036938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_triangular.h 2025-08-26T20:45:20.4041241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_triangular_cpu_dispatch.h 2025-08-26T20:45:20.4045117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_triangular_cuda_dispatch.h 2025-08-26T20:45:20.4049093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_triangular_native.h 2025-08-26T20:45:20.4053017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_triangular_ops.h 2025-08-26T20:45:20.4057164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svd.h 2025-08-26T20:45:20.4061101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svdvals.h 2025-08-26T20:45:20.4065299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svdvals_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.4068844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svdvals_native.h 2025-08-26T20:45:20.4072602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svdvals_ops.h 2025-08-26T20:45:20.4076543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svd_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.4080571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svd_native.h 2025-08-26T20:45:20.4084267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svd_ops.h 2025-08-26T20:45:20.4088139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorinv.h 2025-08-26T20:45:20.4092100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorinv_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.4095850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorinv_native.h 2025-08-26T20:45:20.4099631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorinv_ops.h 2025-08-26T20:45:20.4103405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorsolve.h 2025-08-26T20:45:20.4107639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorsolve_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.4111379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorsolve_native.h 2025-08-26T20:45:20.4115250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorsolve_ops.h 2025-08-26T20:45:20.4119417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vander.h 2025-08-26T20:45:20.4123276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vander_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.4128941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vander_native.h 2025-08-26T20:45:20.4133777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vander_ops.h 2025-08-26T20:45:20.4169905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vecdot.h 2025-08-26T20:45:20.4173831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vecdot_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.4178887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vecdot_native.h 2025-08-26T20:45:20.4182858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vecdot_ops.h 2025-08-26T20:45:20.4186894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm.h 2025-08-26T20:45:20.4191100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.4195328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_cpu_dispatch.h 2025-08-26T20:45:20.4199373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_cuda_dispatch.h 2025-08-26T20:45:20.4203415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_meta.h 2025-08-26T20:45:20.4207628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_meta_dispatch.h 2025-08-26T20:45:20.4211782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_native.h 2025-08-26T20:45:20.4215785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_ops.h 2025-08-26T20:45:20.4219939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear.h 2025-08-26T20:45:20.4223573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_backward.h 2025-08-26T20:45:20.4227478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.4231308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_backward_native.h 2025-08-26T20:45:20.4235374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_backward_ops.h 2025-08-26T20:45:20.4239268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.4243226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.4247208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_native.h 2025-08-26T20:45:20.4251083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_ops.h 2025-08-26T20:45:20.4254898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace.h 2025-08-26T20:45:20.4258420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.4262104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_cpu_dispatch.h 2025-08-26T20:45:20.4266156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_cuda_dispatch.h 2025-08-26T20:45:20.4269897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_meta_dispatch.h 2025-08-26T20:45:20.4273751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_native.h 2025-08-26T20:45:20.4277475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_ops.h 2025-08-26T20:45:20.4281114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log.h 2025-08-26T20:45:20.4284943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10.h 2025-08-26T20:45:20.4288895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.4292317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_cpu_dispatch.h 2025-08-26T20:45:20.4296086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_cuda_dispatch.h 2025-08-26T20:45:20.4300290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_meta.h 2025-08-26T20:45:20.4304373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_meta_dispatch.h 2025-08-26T20:45:20.4308171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_native.h 2025-08-26T20:45:20.4312011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_ops.h 2025-08-26T20:45:20.4315683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p.h 2025-08-26T20:45:20.4319367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.4323314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_cpu_dispatch.h 2025-08-26T20:45:20.4327950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_cuda_dispatch.h 2025-08-26T20:45:20.4332553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_meta.h 2025-08-26T20:45:20.4337362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_meta_dispatch.h 2025-08-26T20:45:20.4341738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_native.h 2025-08-26T20:45:20.4345882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_ops.h 2025-08-26T20:45:20.4350269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2.h 2025-08-26T20:45:20.4354429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.4358793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_cpu_dispatch.h 2025-08-26T20:45:20.4362806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_cuda_dispatch.h 2025-08-26T20:45:20.4366983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_meta.h 2025-08-26T20:45:20.4371330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_meta_dispatch.h 2025-08-26T20:45:20.4375447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_native.h 2025-08-26T20:45:20.4379545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_ops.h 2025-08-26T20:45:20.4383022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp.h 2025-08-26T20:45:20.4386646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2.h 2025-08-26T20:45:20.4390663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.4394306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_cpu_dispatch.h 2025-08-26T20:45:20.4398040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_cuda_dispatch.h 2025-08-26T20:45:20.4402253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_meta.h 2025-08-26T20:45:20.4406045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_meta_dispatch.h 2025-08-26T20:45:20.4409795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_native.h 2025-08-26T20:45:20.4413485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_ops.h 2025-08-26T20:45:20.4417602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.4421093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_cpu_dispatch.h 2025-08-26T20:45:20.4424855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_cuda_dispatch.h 2025-08-26T20:45:20.4428775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_meta.h 2025-08-26T20:45:20.4433277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_meta_dispatch.h 2025-08-26T20:45:20.4436421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_native.h 2025-08-26T20:45:20.4440045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_ops.h 2025-08-26T20:45:20.4444133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logcumsumexp.h 2025-08-26T20:45:20.4448783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logcumsumexp_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.4452494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logcumsumexp_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.4456303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logcumsumexp_native.h 2025-08-26T20:45:20.4460008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logcumsumexp_ops.h 2025-08-26T20:45:20.4463754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logdet.h 2025-08-26T20:45:20.4467471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logdet_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.4471070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logdet_native.h 2025-08-26T20:45:20.4475164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logdet_ops.h 2025-08-26T20:45:20.4478615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and.h 2025-08-26T20:45:20.4497726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.4498140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and_cpu_dispatch.h 2025-08-26T20:45:20.4498436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and_cuda_dispatch.h 2025-08-26T20:45:20.4498685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and_native.h 2025-08-26T20:45:20.4499310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and_ops.h 2025-08-26T20:45:20.4503601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not.h 2025-08-26T20:45:20.4508459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.4512218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not_cpu_dispatch.h 2025-08-26T20:45:20.4516456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not_cuda_dispatch.h 2025-08-26T20:45:20.4520701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not_native.h 2025-08-26T20:45:20.4525539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not_ops.h 2025-08-26T20:45:20.4528630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or.h 2025-08-26T20:45:20.4532846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.4536802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or_cpu_dispatch.h 2025-08-26T20:45:20.4540612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or_cuda_dispatch.h 2025-08-26T20:45:20.4544699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or_native.h 2025-08-26T20:45:20.4548612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or_ops.h 2025-08-26T20:45:20.4552290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor.h 2025-08-26T20:45:20.4556554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.4560398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor_cpu_dispatch.h 2025-08-26T20:45:20.4564362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor_cuda_dispatch.h 2025-08-26T20:45:20.4568675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor_native.h 2025-08-26T20:45:20.4572543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor_ops.h 2025-08-26T20:45:20.4576346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit.h 2025-08-26T20:45:20.4579956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward.h 2025-08-26T20:45:20.4583973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.4588121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_cpu_dispatch.h 2025-08-26T20:45:20.4592329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_cuda_dispatch.h 2025-08-26T20:45:20.4596956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_meta.h 2025-08-26T20:45:20.4601049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_meta_dispatch.h 2025-08-26T20:45:20.4604830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_native.h 2025-08-26T20:45:20.4608779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_ops.h 2025-08-26T20:45:20.4612661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_cpu_dispatch.h 2025-08-26T20:45:20.4616810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_cuda_dispatch.h 2025-08-26T20:45:20.4620651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_meta_dispatch.h 2025-08-26T20:45:20.4624953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_native.h 2025-08-26T20:45:20.4629031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_ops.h 2025-08-26T20:45:20.4632720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace.h 2025-08-26T20:45:20.4662240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.4666257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_cpu_dispatch.h 2025-08-26T20:45:20.4670275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_cuda_dispatch.h 2025-08-26T20:45:20.4674060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_meta_dispatch.h 2025-08-26T20:45:20.4677946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_native.h 2025-08-26T20:45:20.4681667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_ops.h 2025-08-26T20:45:20.4685832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp.h 2025-08-26T20:45:20.4690021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.4693784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.4698667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.4702485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp_native.h 2025-08-26T20:45:20.4706297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp_ops.h 2025-08-26T20:45:20.4710564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.4714294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_cpu_dispatch.h 2025-08-26T20:45:20.4718072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_cuda_dispatch.h 2025-08-26T20:45:20.4721653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_meta.h 2025-08-26T20:45:20.4725150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_meta_dispatch.h 2025-08-26T20:45:20.4728990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_native.h 2025-08-26T20:45:20.4732641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal.h 2025-08-26T20:45:20.4736335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.4740383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_cpu_dispatch.h 2025-08-26T20:45:20.4744400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_cuda_dispatch.h 2025-08-26T20:45:20.4748586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_meta_dispatch.h 2025-08-26T20:45:20.4752634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_native.h 2025-08-26T20:45:20.4756378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_ops.h 2025-08-26T20:45:20.4760414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_ops.h 2025-08-26T20:45:20.4763851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid.h 2025-08-26T20:45:20.4767682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_backward.h 2025-08-26T20:45:20.4771744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_backward_cpu_dispatch.h 2025-08-26T20:45:20.4775526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_backward_cuda_dispatch.h 2025-08-26T20:45:20.4779102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_backward_native.h 2025-08-26T20:45:20.4782975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_backward_ops.h 2025-08-26T20:45:20.4786950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.4790679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_forward.h 2025-08-26T20:45:20.4794733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_forward_cpu_dispatch.h 2025-08-26T20:45:20.4798701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_forward_cuda_dispatch.h 2025-08-26T20:45:20.4802701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_forward_native.h 2025-08-26T20:45:20.4806518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_forward_ops.h 2025-08-26T20:45:20.4810248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_native.h 2025-08-26T20:45:20.4814154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_ops.h 2025-08-26T20:45:20.4817926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_softmax.h 2025-08-26T20:45:20.4821916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_softmax_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.4825687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_softmax_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.4829717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_softmax_native.h 2025-08-26T20:45:20.4833467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_softmax_ops.h 2025-08-26T20:45:20.4837215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift.h 2025-08-26T20:45:20.4840812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.4844509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_cpu_dispatch.h 2025-08-26T20:45:20.4848441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_cuda_dispatch.h 2025-08-26T20:45:20.4852555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_meta_dispatch.h 2025-08-26T20:45:20.4856237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_native.h 2025-08-26T20:45:20.4859970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_ops.h 2025-08-26T20:45:20.4864516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm.h 2025-08-26T20:45:20.4867839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_cell.h 2025-08-26T20:45:20.4871739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_cell_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.4875363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_cell_native.h 2025-08-26T20:45:20.4879188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_cell_ops.h 2025-08-26T20:45:20.4883001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.4886787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_mps_backward.h 2025-08-26T20:45:20.4890861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_mps_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.4894508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_mps_backward_native.h 2025-08-26T20:45:20.4898496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_mps_backward_ops.h 2025-08-26T20:45:20.4902258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_native.h 2025-08-26T20:45:20.4906059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_ops.h 2025-08-26T20:45:20.4909442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt.h 2025-08-26T20:45:20.4913113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.4916691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_cpu_dispatch.h 2025-08-26T20:45:20.4920213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_cuda_dispatch.h 2025-08-26T20:45:20.4923871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_meta.h 2025-08-26T20:45:20.4927346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_meta_dispatch.h 2025-08-26T20:45:20.4931043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_native.h 2025-08-26T20:45:20.4934737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_ops.h 2025-08-26T20:45:20.4938131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_solve.h 2025-08-26T20:45:20.4941697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_solve_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.4946096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_solve_native.h 2025-08-26T20:45:20.4949675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_solve_ops.h 2025-08-26T20:45:20.4953563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack.h 2025-08-26T20:45:20.4957547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.4961779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_cpu_dispatch.h 2025-08-26T20:45:20.4966274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_cuda_dispatch.h 2025-08-26T20:45:20.4969843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_meta.h 2025-08-26T20:45:20.4973527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_meta_dispatch.h 2025-08-26T20:45:20.4977312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_native.h 2025-08-26T20:45:20.4980939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_ops.h 2025-08-26T20:45:20.4984685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\margin_ranking_loss.h 2025-08-26T20:45:20.4988457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\margin_ranking_loss_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.4992256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\margin_ranking_loss_native.h 2025-08-26T20:45:20.4996021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\margin_ranking_loss_ops.h 2025-08-26T20:45:20.4999916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill.h 2025-08-26T20:45:20.5003466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.5007150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_cpu_dispatch.h 2025-08-26T20:45:20.5010810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_cuda_dispatch.h 2025-08-26T20:45:20.5014758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_meta_dispatch.h 2025-08-26T20:45:20.5018508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_native.h 2025-08-26T20:45:20.5022905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_ops.h 2025-08-26T20:45:20.5026685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter.h 2025-08-26T20:45:20.5030499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_backward.h 2025-08-26T20:45:20.5034649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.5038308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_backward_native.h 2025-08-26T20:45:20.5042237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_backward_ops.h 2025-08-26T20:45:20.5046506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.5050309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_cpu_dispatch.h 2025-08-26T20:45:20.5054010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_cuda_dispatch.h 2025-08-26T20:45:20.5057746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_meta_dispatch.h 2025-08-26T20:45:20.5062005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_native.h 2025-08-26T20:45:20.5065836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_ops.h 2025-08-26T20:45:20.5069577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select.h 2025-08-26T20:45:20.5073201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_backward.h 2025-08-26T20:45:20.5077150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5080882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_backward_native.h 2025-08-26T20:45:20.5084686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_backward_ops.h 2025-08-26T20:45:20.5088609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_cpu_dispatch.h 2025-08-26T20:45:20.5092492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_cuda_dispatch.h 2025-08-26T20:45:20.5096250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_native.h 2025-08-26T20:45:20.5099979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_ops.h 2025-08-26T20:45:20.5103887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul.h 2025-08-26T20:45:20.5107487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_backward.h 2025-08-26T20:45:20.5111272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.5114943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_backward_native.h 2025-08-26T20:45:20.5118882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_backward_ops.h 2025-08-26T20:45:20.5122674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5126542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_native.h 2025-08-26T20:45:20.5130079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_ops.h 2025-08-26T20:45:20.5133850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp.h 2025-08-26T20:45:20.5137404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_backward.h 2025-08-26T20:45:20.5141277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5145375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_backward_native.h 2025-08-26T20:45:20.5149123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_backward_ops.h 2025-08-26T20:45:20.5153137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5157039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_native.h 2025-08-26T20:45:20.5160783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_ops.h 2025-08-26T20:45:20.5165043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_H.h 2025-08-26T20:45:20.5168861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_H_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5173183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_H_native.h 2025-08-26T20:45:20.5177246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_H_ops.h 2025-08-26T20:45:20.5180931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_power.h 2025-08-26T20:45:20.5184763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_power_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5189295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_power_native.h 2025-08-26T20:45:20.5193140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_power_ops.h 2025-08-26T20:45:20.5197025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max.h 2025-08-26T20:45:20.5200772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum.h 2025-08-26T20:45:20.5204960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.5208893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_cpu_dispatch.h 2025-08-26T20:45:20.5212673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_cuda_dispatch.h 2025-08-26T20:45:20.5216512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_meta.h 2025-08-26T20:45:20.5220506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_meta_dispatch.h 2025-08-26T20:45:20.5224520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_native.h 2025-08-26T20:45:20.5228218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_ops.h 2025-08-26T20:45:20.5232400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.5236317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5239967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_cpu_dispatch.h 2025-08-26T20:45:20.5244229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_cuda_dispatch.h 2025-08-26T20:45:20.5247871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_meta.h 2025-08-26T20:45:20.5251396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_meta_dispatch.h 2025-08-26T20:45:20.5254936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_native.h 2025-08-26T20:45:20.5258411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_ops.h 2025-08-26T20:45:20.5262270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d.h 2025-08-26T20:45:20.5265931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5269567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_native.h 2025-08-26T20:45:20.5273251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_ops.h 2025-08-26T20:45:20.5277532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_with_indices.h 2025-08-26T20:45:20.5281720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_with_indices_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5285377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_with_indices_native.h 2025-08-26T20:45:20.5289423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_with_indices_ops.h 2025-08-26T20:45:20.5293112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d.h 2025-08-26T20:45:20.5297172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_backward.h 2025-08-26T20:45:20.5301115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.5304720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_backward_native.h 2025-08-26T20:45:20.5308627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_backward_ops.h 2025-08-26T20:45:20.5313079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5316880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_native.h 2025-08-26T20:45:20.5320612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_ops.h 2025-08-26T20:45:20.5324508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices.h 2025-08-26T20:45:20.5328467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward.h 2025-08-26T20:45:20.5332611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.5336724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_cpu_dispatch.h 2025-08-26T20:45:20.5340543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_cuda_dispatch.h 2025-08-26T20:45:20.5344376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_meta.h 2025-08-26T20:45:20.5348207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_meta_dispatch.h 2025-08-26T20:45:20.5352702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_native.h 2025-08-26T20:45:20.5356569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_ops.h 2025-08-26T20:45:20.5360681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.5364465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_cpu_dispatch.h 2025-08-26T20:45:20.5368837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_cuda_dispatch.h 2025-08-26T20:45:20.5372727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_meta.h 2025-08-26T20:45:20.5377228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_meta_dispatch.h 2025-08-26T20:45:20.5381347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_native.h 2025-08-26T20:45:20.5385629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_ops.h 2025-08-26T20:45:20.5389178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d.h 2025-08-26T20:45:20.5393121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5396864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_native.h 2025-08-26T20:45:20.5400649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_ops.h 2025-08-26T20:45:20.5404494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices.h 2025-08-26T20:45:20.5408718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_backward.h 2025-08-26T20:45:20.5412743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_backward_cpu_dispatch.h 2025-08-26T20:45:20.5416643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_backward_cuda_dispatch.h 2025-08-26T20:45:20.5420546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_backward_native.h 2025-08-26T20:45:20.5424447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_backward_ops.h 2025-08-26T20:45:20.5428314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_cpu_dispatch.h 2025-08-26T20:45:20.5432422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_cuda_dispatch.h 2025-08-26T20:45:20.5436506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_native.h 2025-08-26T20:45:20.5440418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_ops.h 2025-08-26T20:45:20.5444119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool2d.h 2025-08-26T20:45:20.5447773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool2d_cpu_dispatch.h 2025-08-26T20:45:20.5451561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool2d_cuda_dispatch.h 2025-08-26T20:45:20.5455731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool2d_native.h 2025-08-26T20:45:20.5459436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool2d_ops.h 2025-08-26T20:45:20.5463164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool3d.h 2025-08-26T20:45:20.5466970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool3d_cpu_dispatch.h 2025-08-26T20:45:20.5471679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool3d_cuda_dispatch.h 2025-08-26T20:45:20.5475575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool3d_native.h 2025-08-26T20:45:20.5479896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool3d_ops.h 2025-08-26T20:45:20.5484159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean.h 2025-08-26T20:45:20.5488665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.5492360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.5496384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5500188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_cpu_dispatch.h 2025-08-26T20:45:20.5503819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_cuda_dispatch.h 2025-08-26T20:45:20.5507791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_meta.h 2025-08-26T20:45:20.5511483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_meta_dispatch.h 2025-08-26T20:45:20.5515364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_native.h 2025-08-26T20:45:20.5519424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_ops.h 2025-08-26T20:45:20.5523327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median.h 2025-08-26T20:45:20.5527496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.5531342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5535052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_cpu_dispatch.h 2025-08-26T20:45:20.5538834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_cuda_dispatch.h 2025-08-26T20:45:20.5542772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_native.h 2025-08-26T20:45:20.5546541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_ops.h 2025-08-26T20:45:20.5550165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\meshgrid.h 2025-08-26T20:45:20.5553875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\meshgrid_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5557552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\meshgrid_native.h 2025-08-26T20:45:20.5561241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\meshgrid_ops.h 2025-08-26T20:45:20.5564945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mH.h 2025-08-26T20:45:20.5568705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mH_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5572471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mH_native.h 2025-08-26T20:45:20.5576356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mH_ops.h 2025-08-26T20:45:20.5580044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min.h 2025-08-26T20:45:20.5583706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum.h 2025-08-26T20:45:20.5587880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.5591591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_cpu_dispatch.h 2025-08-26T20:45:20.5595685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_cuda_dispatch.h 2025-08-26T20:45:20.5599352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_meta.h 2025-08-26T20:45:20.5603451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_meta_dispatch.h 2025-08-26T20:45:20.5607270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_native.h 2025-08-26T20:45:20.5611237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_ops.h 2025-08-26T20:45:20.5615257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.5618982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5622660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_cpu_dispatch.h 2025-08-26T20:45:20.5626429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_cuda_dispatch.h 2025-08-26T20:45:20.5630102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_meta.h 2025-08-26T20:45:20.5633678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_meta_dispatch.h 2025-08-26T20:45:20.5637445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_native.h 2025-08-26T20:45:20.5640954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_ops.h 2025-08-26T20:45:20.5644780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm.h 2025-08-26T20:45:20.5648730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_backward.h 2025-08-26T20:45:20.5680330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.5684244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_backward_cuda_dispatch.h 2025-08-26T20:45:20.5688683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_backward_native.h 2025-08-26T20:45:20.5693038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_backward_ops.h 2025-08-26T20:45:20.5697138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.5701079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_cuda_dispatch.h 2025-08-26T20:45:20.5704976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_native.h 2025-08-26T20:45:20.5709043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_ops.h 2025-08-26T20:45:20.5713893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution.h 2025-08-26T20:45:20.5718438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_add_relu.h 2025-08-26T20:45:20.5722358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_add_relu_cuda_dispatch.h 2025-08-26T20:45:20.5726282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_add_relu_native.h 2025-08-26T20:45:20.5730111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_add_relu_ops.h 2025-08-26T20:45:20.5734051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.5738058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_cuda_dispatch.h 2025-08-26T20:45:20.5742044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_native.h 2025-08-26T20:45:20.5746199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_ops.h 2025-08-26T20:45:20.5750013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_relu.h 2025-08-26T20:45:20.5753956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_relu_cuda_dispatch.h 2025-08-26T20:45:20.5757839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_relu_native.h 2025-08-26T20:45:20.5761902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_relu_ops.h 2025-08-26T20:45:20.5766116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_transpose.h 2025-08-26T20:45:20.5770255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_transpose_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.5775307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_transpose_cuda_dispatch.h 2025-08-26T20:45:20.5779063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_transpose_native.h 2025-08-26T20:45:20.5782954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_transpose_ops.h 2025-08-26T20:45:20.5787005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_depthwise_convolution.h 2025-08-26T20:45:20.5791035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.5794920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_depthwise_convolution_cuda_dispatch.h 2025-08-26T20:45:20.5798822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_depthwise_convolution_native.h 2025-08-26T20:45:20.5802698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_depthwise_convolution_ops.h 2025-08-26T20:45:20.5806857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn.h 2025-08-26T20:45:20.5810985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_backward.h 2025-08-26T20:45:20.5815267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.5819252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_backward_cuda_dispatch.h 2025-08-26T20:45:20.5823048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_backward_native.h 2025-08-26T20:45:20.5826951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_backward_ops.h 2025-08-26T20:45:20.5830841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.5835826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_cuda_dispatch.h 2025-08-26T20:45:20.5839621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_native.h 2025-08-26T20:45:20.5843334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_ops.h 2025-08-26T20:45:20.5847155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish.h 2025-08-26T20:45:20.5850604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward.h 2025-08-26T20:45:20.5854406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5858386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward_cpu_dispatch.h 2025-08-26T20:45:20.5862492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward_cuda_dispatch.h 2025-08-26T20:45:20.5866247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward_native.h 2025-08-26T20:45:20.5869975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward_ops.h 2025-08-26T20:45:20.5873911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.5877560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_cpu_dispatch.h 2025-08-26T20:45:20.5881189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_cuda_dispatch.h 2025-08-26T20:45:20.5884908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_meta.h 2025-08-26T20:45:20.5889331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_meta_dispatch.h 2025-08-26T20:45:20.5893212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_native.h 2025-08-26T20:45:20.5896587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_ops.h 2025-08-26T20:45:20.5900071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d.h 2025-08-26T20:45:20.5903880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward.h 2025-08-26T20:45:20.5907757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.5911411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_native.h 2025-08-26T20:45:20.5915708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_ops.h 2025-08-26T20:45:20.5919585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_native.h 2025-08-26T20:45:20.5923403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_ops.h 2025-08-26T20:45:20.5927358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_convolution.h 2025-08-26T20:45:20.5931418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_convolution_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.5935135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_convolution_native.h 2025-08-26T20:45:20.5939258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_convolution_ops.h 2025-08-26T20:45:20.5942860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear.h 2025-08-26T20:45:20.5947010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward.h 2025-08-26T20:45:20.5951007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.5955135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_input.h 2025-08-26T20:45:20.5959167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.5963137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_input_native.h 2025-08-26T20:45:20.5967130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_input_ops.h 2025-08-26T20:45:20.5971008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_native.h 2025-08-26T20:45:20.5975044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_ops.h 2025-08-26T20:45:20.5978761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_weights.h 2025-08-26T20:45:20.5982830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.5986883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_weights_native.h 2025-08-26T20:45:20.5990640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_weights_ops.h 2025-08-26T20:45:20.5995025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.5998561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_native.h 2025-08-26T20:45:20.6002419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_ops.h 2025-08-26T20:45:20.6006650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d.h 2025-08-26T20:45:20.6011363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_backward.h 2025-08-26T20:45:20.6015625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.6019771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_backward_native.h 2025-08-26T20:45:20.6023766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_backward_ops.h 2025-08-26T20:45:20.6028310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.6032523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_native.h 2025-08-26T20:45:20.6036643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_ops.h 2025-08-26T20:45:20.6040780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d.h 2025-08-26T20:45:20.6044917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_backward.h 2025-08-26T20:45:20.6049468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.6053037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_backward_native.h 2025-08-26T20:45:20.6057380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_backward_ops.h 2025-08-26T20:45:20.6062283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.6066401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_native.h 2025-08-26T20:45:20.6070182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_ops.h 2025-08-26T20:45:20.6074359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv2d_weight.h 2025-08-26T20:45:20.6078519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.6082984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_native.h 2025-08-26T20:45:20.6087277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_ops.h 2025-08-26T20:45:20.6091182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv3d_weight.h 2025-08-26T20:45:20.6095183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.6098957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_native.h 2025-08-26T20:45:20.6103305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_ops.h 2025-08-26T20:45:20.6107892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer.h 2025-08-26T20:45:20.6111637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_backward.h 2025-08-26T20:45:20.6115654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.6119989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_backward_cpu_dispatch.h 2025-08-26T20:45:20.6124005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_backward_native.h 2025-08-26T20:45:20.6128138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_backward_ops.h 2025-08-26T20:45:20.6132342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.6136932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_cpu_dispatch.h 2025-08-26T20:45:20.6140862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_native.h 2025-08-26T20:45:20.6144501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_ops.h 2025-08-26T20:45:20.6148302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm.h 2025-08-26T20:45:20.6152089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.6155844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_cpu_dispatch.h 2025-08-26T20:45:20.6160047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_cuda_dispatch.h 2025-08-26T20:45:20.6163872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_meta.h 2025-08-26T20:45:20.6167661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_meta_dispatch.h 2025-08-26T20:45:20.6171416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_native.h 2025-08-26T20:45:20.6175230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_ops.h 2025-08-26T20:45:20.6178786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode.h 2025-08-26T20:45:20.6182459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.6186504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.6190221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_cpu_dispatch.h 2025-08-26T20:45:20.6193924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_cuda_dispatch.h 2025-08-26T20:45:20.6198973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_native.h 2025-08-26T20:45:20.6202875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_ops.h 2025-08-26T20:45:20.6206215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\moveaxis.h 2025-08-26T20:45:20.6209779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\moveaxis_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.6213772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\moveaxis_native.h 2025-08-26T20:45:20.6217624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\moveaxis_ops.h 2025-08-26T20:45:20.6221260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\movedim.h 2025-08-26T20:45:20.6225477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\movedim_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.6228981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\movedim_native.h 2025-08-26T20:45:20.6232893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\movedim_ops.h 2025-08-26T20:45:20.6236552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_backward.h 2025-08-26T20:45:20.6240382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.6244223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_backward_native.h 2025-08-26T20:45:20.6248504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_backward_ops.h 2025-08-26T20:45:20.6252411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_transpose_backward.h 2025-08-26T20:45:20.6256891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.6260996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_transpose_backward_native.h 2025-08-26T20:45:20.6265037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_transpose_backward_ops.h 2025-08-26T20:45:20.6268718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss.h 2025-08-26T20:45:20.6272141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_backward.h 2025-08-26T20:45:20.6275790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_backward_cpu_dispatch.h 2025-08-26T20:45:20.6279444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_backward_cuda_dispatch.h 2025-08-26T20:45:20.6283324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_backward_native.h 2025-08-26T20:45:20.6287177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_backward_ops.h 2025-08-26T20:45:20.6291386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.6295038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_cpu_dispatch.h 2025-08-26T20:45:20.6298868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_cuda_dispatch.h 2025-08-26T20:45:20.6302578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_meta.h 2025-08-26T20:45:20.6306290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_meta_dispatch.h 2025-08-26T20:45:20.6310124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_native.h 2025-08-26T20:45:20.6314492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_ops.h 2025-08-26T20:45:20.6318687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\msort.h 2025-08-26T20:45:20.6322463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\msort_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.6326195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\msort_native.h 2025-08-26T20:45:20.6329885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\msort_ops.h 2025-08-26T20:45:20.6333627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mT.h 2025-08-26T20:45:20.6337043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mT_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.6340862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mT_native.h 2025-08-26T20:45:20.6344146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mT_ops.h 2025-08-26T20:45:20.6347682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul.h 2025-08-26T20:45:20.6351182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss.h 2025-08-26T20:45:20.6354898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_backward.h 2025-08-26T20:45:20.6358611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_backward_cpu_dispatch.h 2025-08-26T20:45:20.6362393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_backward_cuda_dispatch.h 2025-08-26T20:45:20.6366336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_backward_native.h 2025-08-26T20:45:20.6370159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_backward_ops.h 2025-08-26T20:45:20.6374260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.6377925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_forward.h 2025-08-26T20:45:20.6381863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_forward_cpu_dispatch.h 2025-08-26T20:45:20.6385919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_forward_cuda_dispatch.h 2025-08-26T20:45:20.6389693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_forward_native.h 2025-08-26T20:45:20.6393730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_forward_ops.h 2025-08-26T20:45:20.6397624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_native.h 2025-08-26T20:45:20.6402086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_ops.h 2025-08-26T20:45:20.6405845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multinomial.h 2025-08-26T20:45:20.6409517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multinomial_cpu_dispatch.h 2025-08-26T20:45:20.6413502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multinomial_cuda_dispatch.h 2025-08-26T20:45:20.6417248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multinomial_native.h 2025-08-26T20:45:20.6421321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multinomial_ops.h 2025-08-26T20:45:20.6425073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multiply.h 2025-08-26T20:45:20.6428690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multiply_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.6432493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multiply_native.h 2025-08-26T20:45:20.6436286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multiply_ops.h 2025-08-26T20:45:20.6440099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss.h 2025-08-26T20:45:20.6444239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_backward.h 2025-08-26T20:45:20.6448226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_backward_cpu_dispatch.h 2025-08-26T20:45:20.6452536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_backward_cuda_dispatch.h 2025-08-26T20:45:20.6456399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_backward_native.h 2025-08-26T20:45:20.6460478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_backward_ops.h 2025-08-26T20:45:20.6464293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_cpu_dispatch.h 2025-08-26T20:45:20.6468120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_cuda_dispatch.h 2025-08-26T20:45:20.6472474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_native.h 2025-08-26T20:45:20.6476690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_ops.h 2025-08-26T20:45:20.6480717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.6484656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.6488709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_cpu_dispatch.h 2025-08-26T20:45:20.6493517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_cuda_dispatch.h 2025-08-26T20:45:20.6496153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_meta.h 2025-08-26T20:45:20.6499741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_meta_dispatch.h 2025-08-26T20:45:20.6503518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_native.h 2025-08-26T20:45:20.6507292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_ops.h 2025-08-26T20:45:20.6510824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mv.h 2025-08-26T20:45:20.6514278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma.h 2025-08-26T20:45:20.6519008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.6549456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma_cpu_dispatch.h 2025-08-26T20:45:20.6553232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma_cuda_dispatch.h 2025-08-26T20:45:20.6557029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma_native.h 2025-08-26T20:45:20.6560809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma_ops.h 2025-08-26T20:45:20.6565131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mv_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.6568918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mv_native.h 2025-08-26T20:45:20.6572463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mv_ops.h 2025-08-26T20:45:20.6575998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmean.h 2025-08-26T20:45:20.6580103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmean_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.6583372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmean_native.h 2025-08-26T20:45:20.6587612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmean_ops.h 2025-08-26T20:45:20.6591618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian.h 2025-08-26T20:45:20.6595762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.6599701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.6603426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_cpu_dispatch.h 2025-08-26T20:45:20.6608704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_cuda_dispatch.h 2025-08-26T20:45:20.6611574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_native.h 2025-08-26T20:45:20.6615679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_ops.h 2025-08-26T20:45:20.6620235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanquantile.h 2025-08-26T20:45:20.6625926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanquantile_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.6628011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanquantile_native.h 2025-08-26T20:45:20.6631891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanquantile_ops.h 2025-08-26T20:45:20.6635407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nansum.h 2025-08-26T20:45:20.6639517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nansum_cpu_dispatch.h 2025-08-26T20:45:20.6643393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nansum_cuda_dispatch.h 2025-08-26T20:45:20.6647147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nansum_native.h 2025-08-26T20:45:20.6651453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nansum_ops.h 2025-08-26T20:45:20.6655296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num.h 2025-08-26T20:45:20.6660652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.6663576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num_cpu_dispatch.h 2025-08-26T20:45:20.6667357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num_cuda_dispatch.h 2025-08-26T20:45:20.6671004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num_native.h 2025-08-26T20:45:20.6676498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num_ops.h 2025-08-26T20:45:20.6679182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow.h 2025-08-26T20:45:20.6683221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.6686742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_copy.h 2025-08-26T20:45:20.6690620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.6694722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_copy_cpu_dispatch.h 2025-08-26T20:45:20.6703497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_copy_native.h 2025-08-26T20:45:20.6707703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_copy_ops.h 2025-08-26T20:45:20.6714738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_native.h 2025-08-26T20:45:20.6721030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_ops.h 2025-08-26T20:45:20.6727393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm.h 2025-08-26T20:45:20.6761168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward.h 2025-08-26T20:45:20.6765120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.6769061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward_cpu_dispatch.h 2025-08-26T20:45:20.6772822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward_cuda_dispatch.h 2025-08-26T20:45:20.6776808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward_native.h 2025-08-26T20:45:20.6780610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward_ops.h 2025-08-26T20:45:20.6784327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_cpu_dispatch.h 2025-08-26T20:45:20.6788230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_cuda_dispatch.h 2025-08-26T20:45:20.6791972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_native.h 2025-08-26T20:45:20.6796127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_ops.h 2025-08-26T20:45:20.6800277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_channel_shuffle.h 2025-08-26T20:45:20.6804603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_channel_shuffle_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.6808480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_channel_shuffle_cpu_dispatch.h 2025-08-26T20:45:20.6812536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_channel_shuffle_native.h 2025-08-26T20:45:20.6816264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_channel_shuffle_ops.h 2025-08-26T20:45:20.6820013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout.h 2025-08-26T20:45:20.6824066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward.h 2025-08-26T20:45:20.6828355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.6832456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward_cpu_dispatch.h 2025-08-26T20:45:20.6836202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward_cuda_dispatch.h 2025-08-26T20:45:20.6839962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward_native.h 2025-08-26T20:45:20.6843812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward_ops.h 2025-08-26T20:45:20.6847882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.6851541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_cpu_dispatch.h 2025-08-26T20:45:20.6855299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_cuda_dispatch.h 2025-08-26T20:45:20.6858975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_native.h 2025-08-26T20:45:20.6862712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_ops.h 2025-08-26T20:45:20.6866427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm.h 2025-08-26T20:45:20.6870127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward.h 2025-08-26T20:45:20.6874351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.6878168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward_cpu_dispatch.h 2025-08-26T20:45:20.6882021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward_cuda_dispatch.h 2025-08-26T20:45:20.6885881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward_native.h 2025-08-26T20:45:20.6889763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward_ops.h 2025-08-26T20:45:20.6893718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.6898222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_cpu_dispatch.h 2025-08-26T20:45:20.6902023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_cuda_dispatch.h 2025-08-26T20:45:20.6905711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_native.h 2025-08-26T20:45:20.6909444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_ops.h 2025-08-26T20:45:20.6913153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm.h 2025-08-26T20:45:20.6916883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward.h 2025-08-26T20:45:20.6921456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.6925916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward_cpu_dispatch.h 2025-08-26T20:45:20.6929930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward_cuda_dispatch.h 2025-08-26T20:45:20.6934169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward_native.h 2025-08-26T20:45:20.6938076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward_ops.h 2025-08-26T20:45:20.6942031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.6946161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_cpu_dispatch.h 2025-08-26T20:45:20.6950217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_cuda_dispatch.h 2025-08-26T20:45:20.6954029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_native.h 2025-08-26T20:45:20.6958224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_ops.h 2025-08-26T20:45:20.6961713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_norm.h 2025-08-26T20:45:20.6966239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_norm_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.6970358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_norm_native.h 2025-08-26T20:45:20.6974156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_norm_ops.h 2025-08-26T20:45:20.6977988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne.h 2025-08-26T20:45:20.6981778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg.h 2025-08-26T20:45:20.6985211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\negative.h 2025-08-26T20:45:20.6988939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\negative_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.6992635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\negative_native.h 2025-08-26T20:45:20.6996295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\negative_ops.h 2025-08-26T20:45:20.7000940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.7004768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_cpu_dispatch.h 2025-08-26T20:45:20.7008414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_cuda_dispatch.h 2025-08-26T20:45:20.7012507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_meta.h 2025-08-26T20:45:20.7016108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_meta_dispatch.h 2025-08-26T20:45:20.7019700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_native.h 2025-08-26T20:45:20.7023637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_ops.h 2025-08-26T20:45:20.7027256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nested_to_padded_tensor.h 2025-08-26T20:45:20.7031305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nested_to_padded_tensor_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.7035207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nested_to_padded_tensor_native.h 2025-08-26T20:45:20.7038926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nested_to_padded_tensor_ops.h 2025-08-26T20:45:20.7042548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty.h 2025-08-26T20:45:20.7046759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.7050503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_native.h 2025-08-26T20:45:20.7054394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_ops.h 2025-08-26T20:45:20.7058319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_strided.h 2025-08-26T20:45:20.7062290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.7066705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_strided_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.7070498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_strided_native.h 2025-08-26T20:45:20.7075163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_strided_ops.h 2025-08-26T20:45:20.7079045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_full.h 2025-08-26T20:45:20.7082769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_full_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.7086565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_full_native.h 2025-08-26T20:45:20.7090741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_full_ops.h 2025-08-26T20:45:20.7094442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_ones.h 2025-08-26T20:45:20.7098130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_ones_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.7102198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_ones_native.h 2025-08-26T20:45:20.7106234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_ones_ops.h 2025-08-26T20:45:20.7110280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_zeros.h 2025-08-26T20:45:20.7114155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_zeros_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.7117909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_zeros_native.h 2025-08-26T20:45:20.7121637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_zeros_ops.h 2025-08-26T20:45:20.7125338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter.h 2025-08-26T20:45:20.7129375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.7133066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_cpu_dispatch.h 2025-08-26T20:45:20.7137155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_cuda_dispatch.h 2025-08-26T20:45:20.7140983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_meta.h 2025-08-26T20:45:20.7145330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_meta_dispatch.h 2025-08-26T20:45:20.7149267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_native.h 2025-08-26T20:45:20.7153383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_ops.h 2025-08-26T20:45:20.7157370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.7161085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_cpu_dispatch.h 2025-08-26T20:45:20.7164714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_cuda_dispatch.h 2025-08-26T20:45:20.7168639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_meta.h 2025-08-26T20:45:20.7172099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_meta_dispatch.h 2025-08-26T20:45:20.7175619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_native.h 2025-08-26T20:45:20.7179483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_ops.h 2025-08-26T20:45:20.7183093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss.h 2025-08-26T20:45:20.7186746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d.h 2025-08-26T20:45:20.7190626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_backward.h 2025-08-26T20:45:20.7194705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_backward_cpu_dispatch.h 2025-08-26T20:45:20.7198749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_backward_cuda_dispatch.h 2025-08-26T20:45:20.7202484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_backward_native.h 2025-08-26T20:45:20.7206394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_backward_ops.h 2025-08-26T20:45:20.7210557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.7215192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_forward.h 2025-08-26T20:45:20.7219000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_forward_cpu_dispatch.h 2025-08-26T20:45:20.7222977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_forward_cuda_dispatch.h 2025-08-26T20:45:20.7227348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_forward_native.h 2025-08-26T20:45:20.7231096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_forward_ops.h 2025-08-26T20:45:20.7234786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_native.h 2025-08-26T20:45:20.7238528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_ops.h 2025-08-26T20:45:20.7242775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward.h 2025-08-26T20:45:20.7246809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.7250579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_cpu_dispatch.h 2025-08-26T20:45:20.7254350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_cuda_dispatch.h 2025-08-26T20:45:20.7258161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_meta.h 2025-08-26T20:45:20.7261936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_meta_dispatch.h 2025-08-26T20:45:20.7265675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_native.h 2025-08-26T20:45:20.7269567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_ops.h 2025-08-26T20:45:20.7273476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.7277346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward.h 2025-08-26T20:45:20.7281763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.7285515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_cpu_dispatch.h 2025-08-26T20:45:20.7289312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_cuda_dispatch.h 2025-08-26T20:45:20.7292988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_meta.h 2025-08-26T20:45:20.7296753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_meta_dispatch.h 2025-08-26T20:45:20.7300655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_native.h 2025-08-26T20:45:20.7304365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_ops.h 2025-08-26T20:45:20.7308261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_native.h 2025-08-26T20:45:20.7311897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_nd.h 2025-08-26T20:45:20.7316137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_nd_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.7319796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_nd_native.h 2025-08-26T20:45:20.7324051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_nd_ops.h 2025-08-26T20:45:20.7328016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_ops.h 2025-08-26T20:45:20.7331806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero.h 2025-08-26T20:45:20.7335303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_cpu_dispatch.h 2025-08-26T20:45:20.7339091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_cuda_dispatch.h 2025-08-26T20:45:20.7342708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_native.h 2025-08-26T20:45:20.7346754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_numpy.h 2025-08-26T20:45:20.7350532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_numpy_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.7354185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_numpy_native.h 2025-08-26T20:45:20.7358101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_numpy_ops.h 2025-08-26T20:45:20.7361783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_ops.h 2025-08-26T20:45:20.7365576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_static.h 2025-08-26T20:45:20.7369923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_static_cpu_dispatch.h 2025-08-26T20:45:20.7373738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_static_cuda_dispatch.h 2025-08-26T20:45:20.7377415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_static_native.h 2025-08-26T20:45:20.7381074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_static_ops.h 2025-08-26T20:45:20.7384923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm.h 2025-08-26T20:45:20.7388328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal.h 2025-08-26T20:45:20.7391929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.7395545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_cpu_dispatch.h 2025-08-26T20:45:20.7399229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_cuda_dispatch.h 2025-08-26T20:45:20.7402901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_meta_dispatch.h 2025-08-26T20:45:20.7406697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_native.h 2025-08-26T20:45:20.7410341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_ops.h 2025-08-26T20:45:20.7414427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.7418198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.7422299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.7425901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_cpu_dispatch.h 2025-08-26T20:45:20.7429568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_cuda_dispatch.h 2025-08-26T20:45:20.7433268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_except_dim.h 2025-08-26T20:45:20.7437049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_except_dim_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.7440807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_except_dim_native.h 2025-08-26T20:45:20.7444532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_except_dim_ops.h 2025-08-26T20:45:20.7448390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_meta.h 2025-08-26T20:45:20.7452138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_meta_dispatch.h 2025-08-26T20:45:20.7456270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_native.h 2025-08-26T20:45:20.7459790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_ops.h 2025-08-26T20:45:20.7463238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\not_equal.h 2025-08-26T20:45:20.7467053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\not_equal_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.7470858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\not_equal_native.h 2025-08-26T20:45:20.7474546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\not_equal_ops.h 2025-08-26T20:45:20.7478113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nuclear_norm.h 2025-08-26T20:45:20.7481903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nuclear_norm_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.7486390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nuclear_norm_native.h 2025-08-26T20:45:20.7490262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nuclear_norm_ops.h 2025-08-26T20:45:20.7493964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\numpy_T.h 2025-08-26T20:45:20.7497689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\numpy_T_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.7501681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\numpy_T_native.h 2025-08-26T20:45:20.7505455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\numpy_T_ops.h 2025-08-26T20:45:20.7509173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones.h 2025-08-26T20:45:20.7513164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.7516886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_like.h 2025-08-26T20:45:20.7520691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_like_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.7524712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_like_native.h 2025-08-26T20:45:20.7528859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_like_ops.h 2025-08-26T20:45:20.7532521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_native.h 2025-08-26T20:45:20.7536201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_ops.h 2025-08-26T20:45:20.7539711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\one_hot.h 2025-08-26T20:45:20.7543612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\one_hot_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.7547153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\one_hot_native.h 2025-08-26T20:45:20.7550971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\one_hot_ops.h 2025-08-26T20:45:20.7554623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\or.h 2025-08-26T20:45:20.7558462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\orgqr.h 2025-08-26T20:45:20.7562213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\orgqr_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.7565946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\orgqr_native.h 2025-08-26T20:45:20.7569931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\orgqr_ops.h 2025-08-26T20:45:20.7573636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ormqr.h 2025-08-26T20:45:20.7577101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ormqr_cpu_dispatch.h 2025-08-26T20:45:20.7581353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ormqr_cuda_dispatch.h 2025-08-26T20:45:20.7585110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ormqr_native.h 2025-08-26T20:45:20.7588990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ormqr_ops.h 2025-08-26T20:45:20.7593454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\or_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.7597038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\or_native.h 2025-08-26T20:45:20.7600739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\or_ops.h 2025-08-26T20:45:20.7604205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\outer.h 2025-08-26T20:45:20.7607893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\outer_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.7611525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\outer_native.h 2025-08-26T20:45:20.7615169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\outer_ops.h 2025-08-26T20:45:20.7618973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\output_nr.h 2025-08-26T20:45:20.7622824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\output_nr_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.7626566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\output_nr_native.h 2025-08-26T20:45:20.7630568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\output_nr_ops.h 2025-08-26T20:45:20.7634328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad.h 2025-08-26T20:45:20.7638047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.7642014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_native.h 2025-08-26T20:45:20.7645764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_ops.h 2025-08-26T20:45:20.7649465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_sequence.h 2025-08-26T20:45:20.7653581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_sequence_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.0186280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_sequence_native.h 2025-08-26T20:45:21.0191781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_sequence_ops.h 2025-08-26T20:45:21.0235076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pairwise_distance.h 2025-08-26T20:45:21.0241328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pairwise_distance_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.0246628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pairwise_distance_native.h 2025-08-26T20:45:21.0252561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pairwise_distance_ops.h 2025-08-26T20:45:21.0256501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pdist.h 2025-08-26T20:45:21.0261906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pdist_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.0265670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pdist_native.h 2025-08-26T20:45:21.0271341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pdist_ops.h 2025-08-26T20:45:21.0275151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute.h 2025-08-26T20:45:21.0278834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.0282516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_copy.h 2025-08-26T20:45:21.0288526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.0292474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.0296378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_copy_native.h 2025-08-26T20:45:21.0300703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_copy_ops.h 2025-08-26T20:45:21.0304476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_native.h 2025-08-26T20:45:21.0308438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_ops.h 2025-08-26T20:45:21.0312035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pinverse.h 2025-08-26T20:45:21.0317606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pinverse_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.0321463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pinverse_native.h 2025-08-26T20:45:21.0325186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pinverse_ops.h 2025-08-26T20:45:21.0329043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pin_memory.h 2025-08-26T20:45:21.0369530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pin_memory_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.0373170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pin_memory_native.h 2025-08-26T20:45:21.0376927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pin_memory_ops.h 2025-08-26T20:45:21.0380873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle.h 2025-08-26T20:45:21.0385302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.0389556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.0393014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle_cpu_dispatch.h 2025-08-26T20:45:21.0396806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle_native.h 2025-08-26T20:45:21.0400821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle_ops.h 2025-08-26T20:45:21.0404536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle.h 2025-08-26T20:45:21.0408957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.0412747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.0416504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle_cpu_dispatch.h 2025-08-26T20:45:21.0420294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle_native.h 2025-08-26T20:45:21.0424075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle_ops.h 2025-08-26T20:45:21.0428264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson.h 2025-08-26T20:45:21.0432159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.0435825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_cpu_dispatch.h 2025-08-26T20:45:21.0439968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_cuda_dispatch.h 2025-08-26T20:45:21.0443696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_native.h 2025-08-26T20:45:21.0447812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_nll_loss.h 2025-08-26T20:45:21.0451627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_nll_loss_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.0455361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_nll_loss_native.h 2025-08-26T20:45:21.0459338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_nll_loss_ops.h 2025-08-26T20:45:21.0463121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_ops.h 2025-08-26T20:45:21.0466846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar.h 2025-08-26T20:45:21.0472197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.0477204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar_cpu_dispatch.h 2025-08-26T20:45:21.0482794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar_cuda_dispatch.h 2025-08-26T20:45:21.0486483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar_native.h 2025-08-26T20:45:21.0491649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar_ops.h 2025-08-26T20:45:21.0496557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma.h 2025-08-26T20:45:21.0501845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.0506930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.0511974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_cpu_dispatch.h 2025-08-26T20:45:21.0515909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_cuda_dispatch.h 2025-08-26T20:45:21.0521051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_meta.h 2025-08-26T20:45:21.0526235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_meta_dispatch.h 2025-08-26T20:45:21.0531972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_native.h 2025-08-26T20:45:21.0537498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_ops.h 2025-08-26T20:45:21.0542650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\positive.h 2025-08-26T20:45:21.0547533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\positive_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.0551233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\positive_native.h 2025-08-26T20:45:21.0556241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\positive_ops.h 2025-08-26T20:45:21.0561229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow.h 2025-08-26T20:45:21.0566541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.0572864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_cpu_dispatch.h 2025-08-26T20:45:21.0577779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_cuda_dispatch.h 2025-08-26T20:45:21.0582754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_meta.h 2025-08-26T20:45:21.0586358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_meta_dispatch.h 2025-08-26T20:45:21.0591304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_native.h 2025-08-26T20:45:21.0596372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_ops.h 2025-08-26T20:45:21.0601048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prelu.h 2025-08-26T20:45:21.0604720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prelu_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.0610323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prelu_native.h 2025-08-26T20:45:21.0615300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prelu_ops.h 2025-08-26T20:45:21.0620316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod.h 2025-08-26T20:45:21.0625292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.0630340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.0634203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.0639376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_cpu_dispatch.h 2025-08-26T20:45:21.0645331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_cuda_dispatch.h 2025-08-26T20:45:21.0650452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_meta.h 2025-08-26T20:45:21.0655668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_meta_dispatch.h 2025-08-26T20:45:21.0660589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_native.h 2025-08-26T20:45:21.0665579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_ops.h 2025-08-26T20:45:21.0669100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\promote_types.h 2025-08-26T20:45:21.0674267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\promote_types_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.0679481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\promote_types_native.h 2025-08-26T20:45:21.0684538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\promote_types_ops.h 2025-08-26T20:45:21.0689752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put.h 2025-08-26T20:45:21.0693529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.0698450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_cpu_dispatch.h 2025-08-26T20:45:21.0713989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_cuda_dispatch.h 2025-08-26T20:45:21.0719314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_meta_dispatch.h 2025-08-26T20:45:21.0724612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_native.h 2025-08-26T20:45:21.0731949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_ops.h 2025-08-26T20:45:21.0737217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qr.h 2025-08-26T20:45:21.0740939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qr_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.0744577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qr_native.h 2025-08-26T20:45:21.0750295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qr_ops.h 2025-08-26T20:45:21.0753791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qscheme.h 2025-08-26T20:45:21.0757146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qscheme_native.h 2025-08-26T20:45:21.0760705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qscheme_ops.h 2025-08-26T20:45:21.0767148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantile.h 2025-08-26T20:45:21.0771043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantile_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.0774631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantile_native.h 2025-08-26T20:45:21.0778300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantile_ops.h 2025-08-26T20:45:21.0782105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_batch_norm.h 2025-08-26T20:45:21.0786062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_batch_norm_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.0789822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_batch_norm_native.h 2025-08-26T20:45:21.0795385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_batch_norm_ops.h 2025-08-26T20:45:21.0799466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_gru_cell.h 2025-08-26T20:45:21.0803429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_gru_cell_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.0807234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_gru_cell_native.h 2025-08-26T20:45:21.0811079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_gru_cell_ops.h 2025-08-26T20:45:21.0814896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_lstm_cell.h 2025-08-26T20:45:21.0818892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_lstm_cell_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.0823005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_lstm_cell_native.h 2025-08-26T20:45:21.0826812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_lstm_cell_ops.h 2025-08-26T20:45:21.0830573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool1d.h 2025-08-26T20:45:21.0834571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool1d_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.0838260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool1d_native.h 2025-08-26T20:45:21.0842054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool1d_ops.h 2025-08-26T20:45:21.0846146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool2d.h 2025-08-26T20:45:21.0852207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool2d_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.0856987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool2d_native.h 2025-08-26T20:45:21.0861351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool2d_ops.h 2025-08-26T20:45:21.0865167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool3d.h 2025-08-26T20:45:21.0870109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool3d_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.0873780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool3d_native.h 2025-08-26T20:45:21.0877978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool3d_ops.h 2025-08-26T20:45:21.0881782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_relu_cell.h 2025-08-26T20:45:21.0885825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.0889631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_relu_cell_native.h 2025-08-26T20:45:21.0893439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_relu_cell_ops.h 2025-08-26T20:45:21.0897255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_tanh_cell.h 2025-08-26T20:45:21.0902138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.0905819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_tanh_cell_native.h 2025-08-26T20:45:21.0909639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_tanh_cell_ops.h 2025-08-26T20:45:21.0913545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel.h 2025-08-26T20:45:21.0917498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.0921436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel_cpu_dispatch.h 2025-08-26T20:45:21.0925262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel_cuda_dispatch.h 2025-08-26T20:45:21.0929140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel_native.h 2025-08-26T20:45:21.0932936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel_ops.h 2025-08-26T20:45:21.0936704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor.h 2025-08-26T20:45:21.0940696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.0944472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_cpu_dispatch.h 2025-08-26T20:45:21.0948445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_cuda_dispatch.h 2025-08-26T20:45:21.0952986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic.h 2025-08-26T20:45:21.0956956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.0960988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic_cpu_dispatch.h 2025-08-26T20:45:21.0965238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic_cuda_dispatch.h 2025-08-26T20:45:21.0969352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic_native.h 2025-08-26T20:45:21.0973174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic_ops.h 2025-08-26T20:45:21.0976967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_native.h 2025-08-26T20:45:21.0980768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_ops.h 2025-08-26T20:45:21.0984510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_axis.h 2025-08-26T20:45:21.0988190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_axis_native.h 2025-08-26T20:45:21.0991849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_axis_ops.h 2025-08-26T20:45:21.0995738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_scales.h 2025-08-26T20:45:21.0999719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_scales_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.1003470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_scales_native.h 2025-08-26T20:45:21.1007331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_scales_ops.h 2025-08-26T20:45:21.1011159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_zero_points.h 2025-08-26T20:45:21.1017247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_zero_points_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.1022345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_zero_points_native.h 2025-08-26T20:45:21.1026653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_zero_points_ops.h 2025-08-26T20:45:21.1030472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_scale.h 2025-08-26T20:45:21.1034015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_scale_native.h 2025-08-26T20:45:21.1037711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_scale_ops.h 2025-08-26T20:45:21.1041378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_zero_point.h 2025-08-26T20:45:21.1045696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_zero_point_native.h 2025-08-26T20:45:21.1050398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_zero_point_ops.h 2025-08-26T20:45:21.1054443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rad2deg.h 2025-08-26T20:45:21.1058631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rad2deg_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.1062807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rad2deg_native.h 2025-08-26T20:45:21.1066566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rad2deg_ops.h 2025-08-26T20:45:21.1070319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand.h 2025-08-26T20:45:21.1074432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint.h 2025-08-26T20:45:21.1078785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.1082744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_like.h 2025-08-26T20:45:21.1086975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_like_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.1090844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_like_native.h 2025-08-26T20:45:21.1118576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_like_ops.h 2025-08-26T20:45:21.1119307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_native.h 2025-08-26T20:45:21.1119900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_ops.h 2025-08-26T20:45:21.1120427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn.h 2025-08-26T20:45:21.1121088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.1121897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.1122630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_like.h 2025-08-26T20:45:21.1123393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_like_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.1126060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_like_compositeimplicitautogradnestedtensor_dispatch.h 2025-08-26T20:45:21.1129874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_like_native.h 2025-08-26T20:45:21.1133671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_like_ops.h 2025-08-26T20:45:21.1138413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_native.h 2025-08-26T20:45:21.1142460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_ops.h 2025-08-26T20:45:21.1146191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random.h 2025-08-26T20:45:21.1149820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.1153979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_cpu_dispatch.h 2025-08-26T20:45:21.1157815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_cuda_dispatch.h 2025-08-26T20:45:21.1161468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_meta_dispatch.h 2025-08-26T20:45:21.1165964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_native.h 2025-08-26T20:45:21.1170053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_ops.h 2025-08-26T20:45:21.1173703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm.h 2025-08-26T20:45:21.1177407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.1181232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm_cpu_dispatch.h 2025-08-26T20:45:21.1185480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm_cuda_dispatch.h 2025-08-26T20:45:21.1189382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm_native.h 2025-08-26T20:45:21.1193128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm_ops.h 2025-08-26T20:45:21.1197025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.1200939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.1204889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_like.h 2025-08-26T20:45:21.1209041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_like_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.1212684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_like_native.h 2025-08-26T20:45:21.1216625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_like_ops.h 2025-08-26T20:45:21.1220583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_native.h 2025-08-26T20:45:21.1224458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_ops.h 2025-08-26T20:45:21.1228377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range.h 2025-08-26T20:45:21.1232115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.1235714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_cpu_dispatch.h 2025-08-26T20:45:21.1240535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_cuda_dispatch.h 2025-08-26T20:45:21.1244407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_meta_dispatch.h 2025-08-26T20:45:21.1248289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_native.h 2025-08-26T20:45:21.1252075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_ops.h 2025-08-26T20:45:21.1255877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ravel.h 2025-08-26T20:45:21.1259731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ravel_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.1263326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ravel_native.h 2025-08-26T20:45:21.1267257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ravel_ops.h 2025-08-26T20:45:21.1270876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\real.h 2025-08-26T20:45:21.1274905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\real_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.1278457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\real_native.h 2025-08-26T20:45:21.1282077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\real_ops.h 2025-08-26T20:45:21.1285700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal.h 2025-08-26T20:45:21.1289803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.1293400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_cpu_dispatch.h 2025-08-26T20:45:21.1297574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_cuda_dispatch.h 2025-08-26T20:45:21.1301371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_meta.h 2025-08-26T20:45:21.1305468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_meta_dispatch.h 2025-08-26T20:45:21.1309182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_native.h 2025-08-26T20:45:21.1312837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_ops.h 2025-08-26T20:45:21.1318194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\record_stream.h 2025-08-26T20:45:21.1321842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\record_stream_cuda_dispatch.h 2025-08-26T20:45:21.1325592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\record_stream_native.h 2025-08-26T20:45:21.1329513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\record_stream_ops.h 2025-08-26T20:45:21.1333133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\refine_names.h 2025-08-26T20:45:21.1337056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\refine_names_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.1340654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\refine_names_native.h 2025-08-26T20:45:21.1344301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\refine_names_ops.h 2025-08-26T20:45:21.1348154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d.h 2025-08-26T20:45:21.1351792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward.h 2025-08-26T20:45:21.1355708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.1359493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_cpu_dispatch.h 2025-08-26T20:45:21.1363328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_cuda_dispatch.h 2025-08-26T20:45:21.1367270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_meta.h 2025-08-26T20:45:21.1371295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_meta_dispatch.h 2025-08-26T20:45:21.1375051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_native.h 2025-08-26T20:45:21.1378779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_ops.h 2025-08-26T20:45:21.1382767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.1386519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_cpu_dispatch.h 2025-08-26T20:45:21.1390524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_cuda_dispatch.h 2025-08-26T20:45:21.1394310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_meta.h 2025-08-26T20:45:21.1398744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_meta_dispatch.h 2025-08-26T20:45:21.1402636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_native.h 2025-08-26T20:45:21.1406893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_ops.h 2025-08-26T20:45:21.1410728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d.h 2025-08-26T20:45:21.1414888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_backward.h 2025-08-26T20:45:21.1418860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_backward_cpu_dispatch.h 2025-08-26T20:45:21.1422686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_backward_cuda_dispatch.h 2025-08-26T20:45:21.1426521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_backward_native.h 2025-08-26T20:45:21.1430321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_backward_ops.h 2025-08-26T20:45:21.1434130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_cpu_dispatch.h 2025-08-26T20:45:21.1437856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_cuda_dispatch.h 2025-08-26T20:45:21.1441922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_native.h 2025-08-26T20:45:21.1446182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_ops.h 2025-08-26T20:45:21.1478612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d.h 2025-08-26T20:45:21.1482348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward.h 2025-08-26T20:45:21.1486597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.1490412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_cpu_dispatch.h 2025-08-26T20:45:21.1494549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_cuda_dispatch.h 2025-08-26T20:45:21.1498502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_meta.h 2025-08-26T20:45:21.1502413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_meta_dispatch.h 2025-08-26T20:45:21.1506324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_native.h 2025-08-26T20:45:21.1510126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_ops.h 2025-08-26T20:45:21.1515140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.1518453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_cpu_dispatch.h 2025-08-26T20:45:21.1522627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_cuda_dispatch.h 2025-08-26T20:45:21.1526844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_meta.h 2025-08-26T20:45:21.1530869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_meta_dispatch.h 2025-08-26T20:45:21.1534691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_native.h 2025-08-26T20:45:21.1538494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_ops.h 2025-08-26T20:45:21.1542296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu.h 2025-08-26T20:45:21.1545960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu6.h 2025-08-26T20:45:21.1549584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu6_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.1553217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu6_native.h 2025-08-26T20:45:21.1556926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu6_ops.h 2025-08-26T20:45:21.1561298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.1564967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_cpu_dispatch.h 2025-08-26T20:45:21.1568800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_cuda_dispatch.h 2025-08-26T20:45:21.1572464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_meta_dispatch.h 2025-08-26T20:45:21.1576317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_native.h 2025-08-26T20:45:21.1579957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_ops.h 2025-08-26T20:45:21.1583354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder.h 2025-08-26T20:45:21.1587250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.1590995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.1621708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_cpu_dispatch.h 2025-08-26T20:45:21.1625491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_cuda_dispatch.h 2025-08-26T20:45:21.1629628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_meta.h 2025-08-26T20:45:21.1633550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_meta_dispatch.h 2025-08-26T20:45:21.1637528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_native.h 2025-08-26T20:45:21.1641865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_ops.h 2025-08-26T20:45:21.1645624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rename.h 2025-08-26T20:45:21.1649319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rename_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.1652949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rename_native.h 2025-08-26T20:45:21.1657025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rename_ops.h 2025-08-26T20:45:21.1660977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm.h 2025-08-26T20:45:21.1664714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.1668718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_cpu_dispatch.h 2025-08-26T20:45:21.1672392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_cuda_dispatch.h 2025-08-26T20:45:21.1676154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_meta.h 2025-08-26T20:45:21.1679741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_meta_dispatch.h 2025-08-26T20:45:21.1683449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_native.h 2025-08-26T20:45:21.1687382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_ops.h 2025-08-26T20:45:21.1691106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat.h 2025-08-26T20:45:21.1694699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.1698276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave.h 2025-08-26T20:45:21.1702235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.1706126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.1709785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_cpu_dispatch.h 2025-08-26T20:45:21.1713802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_cuda_dispatch.h 2025-08-26T20:45:21.1717573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_native.h 2025-08-26T20:45:21.1721458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_ops.h 2025-08-26T20:45:21.1725224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_native.h 2025-08-26T20:45:21.1729400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_ops.h 2025-08-26T20:45:21.1733117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d.h 2025-08-26T20:45:21.1736759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward.h 2025-08-26T20:45:21.1740870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.1744523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_cpu_dispatch.h 2025-08-26T20:45:21.1748382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_cuda_dispatch.h 2025-08-26T20:45:21.1752128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_meta.h 2025-08-26T20:45:21.1756924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_meta_dispatch.h 2025-08-26T20:45:21.1760881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_native.h 2025-08-26T20:45:21.1764770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_ops.h 2025-08-26T20:45:21.1768949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.1772786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_cpu_dispatch.h 2025-08-26T20:45:21.1776749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_cuda_dispatch.h 2025-08-26T20:45:21.1780533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_meta.h 2025-08-26T20:45:21.1784745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_meta_dispatch.h 2025-08-26T20:45:21.1788543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_native.h 2025-08-26T20:45:21.1792400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_ops.h 2025-08-26T20:45:21.1796227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d.h 2025-08-26T20:45:21.1800128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_backward.h 2025-08-26T20:45:21.1804036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_backward_cpu_dispatch.h 2025-08-26T20:45:21.1807891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_backward_cuda_dispatch.h 2025-08-26T20:45:21.1811798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_backward_native.h 2025-08-26T20:45:21.1815637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_backward_ops.h 2025-08-26T20:45:21.1820317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.1824555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_cpu_dispatch.h 2025-08-26T20:45:21.1828406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_cuda_dispatch.h 2025-08-26T20:45:21.1832985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_meta.h 2025-08-26T20:45:21.1837010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_meta_dispatch.h 2025-08-26T20:45:21.1840924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_native.h 2025-08-26T20:45:21.1844734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_ops.h 2025-08-26T20:45:21.1848663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d.h 2025-08-26T20:45:21.1852567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_backward.h 2025-08-26T20:45:21.1856785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_backward_cpu_dispatch.h 2025-08-26T20:45:21.1860971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_backward_cuda_dispatch.h 2025-08-26T20:45:21.1864872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_backward_native.h 2025-08-26T20:45:21.1868719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_backward_ops.h 2025-08-26T20:45:21.1872705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.1876559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_cpu_dispatch.h 2025-08-26T20:45:21.1880400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_cuda_dispatch.h 2025-08-26T20:45:21.1884319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_meta.h 2025-08-26T20:45:21.1888272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_meta_dispatch.h 2025-08-26T20:45:21.1892099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_native.h 2025-08-26T20:45:21.1895915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_ops.h 2025-08-26T20:45:21.1899695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\requires_grad.h 2025-08-26T20:45:21.1903538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\requires_grad_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.1907522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\requires_grad_native.h 2025-08-26T20:45:21.1911631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\requires_grad_ops.h 2025-08-26T20:45:21.1915406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape.h 2025-08-26T20:45:21.1918837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_as.h 2025-08-26T20:45:21.1922783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_as_compositeimplicitautogradnestedtensor_dispatch.h 2025-08-26T20:45:21.1938944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_as_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.1939875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_as_native.h 2025-08-26T20:45:21.1940470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_as_ops.h 2025-08-26T20:45:21.1944959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_compositeimplicitautogradnestedtensor_dispatch.h 2025-08-26T20:45:21.1947840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.1952184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_native.h 2025-08-26T20:45:21.1956317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_ops.h 2025-08-26T20:45:21.1960404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize.h 2025-08-26T20:45:21.1964002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as.h 2025-08-26T20:45:21.1968110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.1972013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_native.h 2025-08-26T20:45:21.1975866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_ops.h 2025-08-26T20:45:21.1979877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_sparse.h 2025-08-26T20:45:21.1984779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_sparse_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.1987779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_sparse_meta_dispatch.h 2025-08-26T20:45:21.1991705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_sparse_native.h 2025-08-26T20:45:21.1996590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_sparse_ops.h 2025-08-26T20:45:21.1999861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.2004084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_cpu_dispatch.h 2025-08-26T20:45:21.2008571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_cuda_dispatch.h 2025-08-26T20:45:21.2012335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_meta_dispatch.h 2025-08-26T20:45:21.2016249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_native.h 2025-08-26T20:45:21.2020150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_ops.h 2025-08-26T20:45:21.2023876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_conj.h 2025-08-26T20:45:21.2028125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_conj_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.2031872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_conj_native.h 2025-08-26T20:45:21.2035535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_conj_ops.h 2025-08-26T20:45:21.2039520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_neg.h 2025-08-26T20:45:21.2043706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_neg_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.2048438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_neg_native.h 2025-08-26T20:45:21.2051445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_neg_ops.h 2025-08-26T20:45:21.2055804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\result_type.h 2025-08-26T20:45:21.2060149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\result_type_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.2063495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\result_type_native.h 2025-08-26T20:45:21.2067366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\result_type_ops.h 2025-08-26T20:45:21.2071829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retains_grad.h 2025-08-26T20:45:21.2075527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retains_grad_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.2079949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retains_grad_native.h 2025-08-26T20:45:21.2084143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retains_grad_ops.h 2025-08-26T20:45:21.2089079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retain_grad.h 2025-08-26T20:45:21.2092133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retain_grad_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.2096569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retain_grad_native.h 2025-08-26T20:45:21.2101104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retain_grad_ops.h 2025-08-26T20:45:21.2104882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rms_norm.h 2025-08-26T20:45:21.2109079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rms_norm_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.2113218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rms_norm_native.h 2025-08-26T20:45:21.2116678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rms_norm_ops.h 2025-08-26T20:45:21.2120532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu.h 2025-08-26T20:45:21.2124194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_cell.h 2025-08-26T20:45:21.2128085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_cell_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.2132067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_cell_native.h 2025-08-26T20:45:21.2136182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_cell_ops.h 2025-08-26T20:45:21.2140796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.2144602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_native.h 2025-08-26T20:45:21.2148540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_ops.h 2025-08-26T20:45:21.2152387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh.h 2025-08-26T20:45:21.2155929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_cell.h 2025-08-26T20:45:21.2159906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_cell_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.2163756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_cell_native.h 2025-08-26T20:45:21.2167854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_cell_ops.h 2025-08-26T20:45:21.2171911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.2175977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_native.h 2025-08-26T20:45:21.2179608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_ops.h 2025-08-26T20:45:21.2183877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll.h 2025-08-26T20:45:21.2187591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.2191611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll_cpu_dispatch.h 2025-08-26T20:45:21.2195379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll_cuda_dispatch.h 2025-08-26T20:45:21.2199152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll_native.h 2025-08-26T20:45:21.2204203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll_ops.h 2025-08-26T20:45:21.2206935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rot90.h 2025-08-26T20:45:21.2211012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rot90_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.2214672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rot90_native.h 2025-08-26T20:45:21.2218385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rot90_ops.h 2025-08-26T20:45:21.2222041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round.h 2025-08-26T20:45:21.2225821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.2229590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_cpu_dispatch.h 2025-08-26T20:45:21.2233672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_cuda_dispatch.h 2025-08-26T20:45:21.2237766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_meta.h 2025-08-26T20:45:21.2241454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_meta_dispatch.h 2025-08-26T20:45:21.2245226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_native.h 2025-08-26T20:45:21.2249787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_ops.h 2025-08-26T20:45:21.2253640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices.h 2025-08-26T20:45:21.2257424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.2261076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_copy.h 2025-08-26T20:45:21.2265640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.2269648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.2273400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_copy_native.h 2025-08-26T20:45:21.2277606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_copy_ops.h 2025-08-26T20:45:21.2281952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_native.h 2025-08-26T20:45:21.2285687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_ops.h 2025-08-26T20:45:21.2289667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_stack.h 2025-08-26T20:45:21.2294061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_stack_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.2298240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_stack_native.h 2025-08-26T20:45:21.2301769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_stack_ops.h 2025-08-26T20:45:21.2305477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu.h 2025-08-26T20:45:21.2309120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.2312693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_native.h 2025-08-26T20:45:21.2316327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_ops.h 2025-08-26T20:45:21.2320234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise.h 2025-08-26T20:45:21.2324012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_backward.h 2025-08-26T20:45:21.2328202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.2332195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_backward_native.h 2025-08-26T20:45:21.2336050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_backward_ops.h 2025-08-26T20:45:21.2340088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.2344038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_cpu_dispatch.h 2025-08-26T20:45:21.2347977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_cuda_dispatch.h 2025-08-26T20:45:21.2351682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_meta_dispatch.h 2025-08-26T20:45:21.2355469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_native.h 2025-08-26T20:45:21.2359333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_ops.h 2025-08-26T20:45:21.2363062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift.h 2025-08-26T20:45:21.2366806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.2371064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_cpu_dispatch.h 2025-08-26T20:45:21.2374759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_cuda_dispatch.h 2025-08-26T20:45:21.2378560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_meta_dispatch.h 2025-08-26T20:45:21.2382184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_native.h 2025-08-26T20:45:21.2385879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_ops.h 2025-08-26T20:45:21.2389630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt.h 2025-08-26T20:45:21.2393328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.2397459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_cpu_dispatch.h 2025-08-26T20:45:21.2401306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_cuda_dispatch.h 2025-08-26T20:45:21.2404986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_meta.h 2025-08-26T20:45:21.2408801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_meta_dispatch.h 2025-08-26T20:45:21.2412504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_native.h 2025-08-26T20:45:21.2416155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_ops.h 2025-08-26T20:45:21.2419865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub.h 2025-08-26T20:45:21.2423439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.2427232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub_cpu_dispatch.h 2025-08-26T20:45:21.2430927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub_cuda_dispatch.h 2025-08-26T20:45:21.2434576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub_native.h 2025-08-26T20:45:21.2438280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub_ops.h 2025-08-26T20:45:21.2441689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scalar_tensor.h 2025-08-26T20:45:21.2445972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scalar_tensor_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.2449613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scalar_tensor_native.h 2025-08-26T20:45:21.2453307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scalar_tensor_ops.h 2025-08-26T20:45:21.2457713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scaled_dot_product_attention.h 2025-08-26T20:45:21.2461543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scaled_dot_product_attention_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.2465178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scaled_dot_product_attention_native.h 2025-08-26T20:45:21.2468878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scaled_dot_product_attention_ops.h 2025-08-26T20:45:21.2472605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter.h 2025-08-26T20:45:21.2476306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add.h 2025-08-26T20:45:21.2480158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.2484123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.2487871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_cpu_dispatch.h 2025-08-26T20:45:21.2491634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_cuda_dispatch.h 2025-08-26T20:45:21.2495413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_meta.h 2025-08-26T20:45:21.2499648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_meta_dispatch.h 2025-08-26T20:45:21.2503436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_native.h 2025-08-26T20:45:21.2507552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_ops.h 2025-08-26T20:45:21.2539955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.2543796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.2547497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_cpu_dispatch.h 2025-08-26T20:45:21.2551306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_cuda_dispatch.h 2025-08-26T20:45:21.2555064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_meta.h 2025-08-26T20:45:21.2558896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_meta_dispatch.h 2025-08-26T20:45:21.2562854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_native.h 2025-08-26T20:45:21.2566728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_ops.h 2025-08-26T20:45:21.2570475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce.h 2025-08-26T20:45:21.2575084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.2578934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_cpu_dispatch.h 2025-08-26T20:45:21.2582684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_cuda_dispatch.h 2025-08-26T20:45:21.2586626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_meta.h 2025-08-26T20:45:21.2590516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_meta_dispatch.h 2025-08-26T20:45:21.2594245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_native.h 2025-08-26T20:45:21.2598010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_ops.h 2025-08-26T20:45:21.2601802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\searchsorted.h 2025-08-26T20:45:21.2605564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\searchsorted_cpu_dispatch.h 2025-08-26T20:45:21.2609404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\searchsorted_cuda_dispatch.h 2025-08-26T20:45:21.2613047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\searchsorted_native.h 2025-08-26T20:45:21.2617105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\searchsorted_ops.h 2025-08-26T20:45:21.2620762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce.h 2025-08-26T20:45:21.2624668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.2628340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce_cpu_dispatch.h 2025-08-26T20:45:21.2632527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce_cuda_dispatch.h 2025-08-26T20:45:21.2636340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce_native.h 2025-08-26T20:45:21.2640418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce_ops.h 2025-08-26T20:45:21.2644393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select.h 2025-08-26T20:45:21.2648047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_backward.h 2025-08-26T20:45:21.2651964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.2655610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.2659494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_backward_native.h 2025-08-26T20:45:21.2663652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_backward_ops.h 2025-08-26T20:45:21.2667756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.2671574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.2675259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_copy.h 2025-08-26T20:45:21.2679272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.2683236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.2687061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_copy_native.h 2025-08-26T20:45:21.2690858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_copy_ops.h 2025-08-26T20:45:21.2694562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_native.h 2025-08-26T20:45:21.2698223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_ops.h 2025-08-26T20:45:21.2701926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_scatter.h 2025-08-26T20:45:21.2705784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_scatter_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.2709680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_scatter_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.2713402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_scatter_native.h 2025-08-26T20:45:21.2717368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_scatter_ops.h 2025-08-26T20:45:21.2721152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\selu.h 2025-08-26T20:45:21.2725010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\selu_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.2728763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\selu_native.h 2025-08-26T20:45:21.2732758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\selu_ops.h 2025-08-26T20:45:21.2736236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set.h 2025-08-26T20:45:21.2739766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.2743464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.2747297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_cpu_dispatch.h 2025-08-26T20:45:21.2751326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_cuda_dispatch.h 2025-08-26T20:45:21.2754921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_data.h 2025-08-26T20:45:21.2758455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_data_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.2762048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_data_native.h 2025-08-26T20:45:21.2765756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_data_ops.h 2025-08-26T20:45:21.2769546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_meta_dispatch.h 2025-08-26T20:45:21.2773407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_native.h 2025-08-26T20:45:21.2777052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_ops.h 2025-08-26T20:45:21.2780434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn.h 2025-08-26T20:45:21.2784224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.2788200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_cpu_dispatch.h 2025-08-26T20:45:21.2792100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_cuda_dispatch.h 2025-08-26T20:45:21.2795599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_meta.h 2025-08-26T20:45:21.2799082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_meta_dispatch.h 2025-08-26T20:45:21.2803153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_native.h 2025-08-26T20:45:21.2806834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_ops.h 2025-08-26T20:45:21.2810235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid.h 2025-08-26T20:45:21.2813686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward.h 2025-08-26T20:45:21.2817801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.2821436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_cpu_dispatch.h 2025-08-26T20:45:21.2825272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_cuda_dispatch.h 2025-08-26T20:45:21.2829205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_meta.h 2025-08-26T20:45:21.2832966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_meta_dispatch.h 2025-08-26T20:45:21.2837039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_native.h 2025-08-26T20:45:21.2841128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_ops.h 2025-08-26T20:45:21.2845121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.2849073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_cpu_dispatch.h 2025-08-26T20:45:21.2852830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_cuda_dispatch.h 2025-08-26T20:45:21.2856718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_meta.h 2025-08-26T20:45:21.2860510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_meta_dispatch.h 2025-08-26T20:45:21.2864173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_native.h 2025-08-26T20:45:21.2867942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_ops.h 2025-08-26T20:45:21.2871684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign.h 2025-08-26T20:45:21.2875072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit.h 2025-08-26T20:45:21.2878801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.2882483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_cpu_dispatch.h 2025-08-26T20:45:21.2886498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_cuda_dispatch.h 2025-08-26T20:45:21.2890112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_meta.h 2025-08-26T20:45:21.2893725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_meta_dispatch.h 2025-08-26T20:45:21.2897632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_native.h 2025-08-26T20:45:21.2901135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_ops.h 2025-08-26T20:45:21.2905053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.2908673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_cpu_dispatch.h 2025-08-26T20:45:21.2912502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_cuda_dispatch.h 2025-08-26T20:45:21.2916142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_meta.h 2025-08-26T20:45:21.2919874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_meta_dispatch.h 2025-08-26T20:45:21.2923982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_native.h 2025-08-26T20:45:21.2927791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_ops.h 2025-08-26T20:45:21.2931217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu.h 2025-08-26T20:45:21.2934701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward.h 2025-08-26T20:45:21.2938544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.2942382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.2946320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_cpu_dispatch.h 2025-08-26T20:45:21.2950126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_cuda_dispatch.h 2025-08-26T20:45:21.2953860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_meta.h 2025-08-26T20:45:21.2957662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_meta_dispatch.h 2025-08-26T20:45:21.2961462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_native.h 2025-08-26T20:45:21.2965393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_ops.h 2025-08-26T20:45:21.2970177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.2973683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_cpu_dispatch.h 2025-08-26T20:45:21.2977353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_cuda_dispatch.h 2025-08-26T20:45:21.2981018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_meta.h 2025-08-26T20:45:21.2984645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_meta_dispatch.h 2025-08-26T20:45:21.2988245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_native.h 2025-08-26T20:45:21.2991856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_ops.h 2025-08-26T20:45:21.2995514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin.h 2025-08-26T20:45:21.2998856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc.h 2025-08-26T20:45:21.3002546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.3006341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_cpu_dispatch.h 2025-08-26T20:45:21.3010286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_cuda_dispatch.h 2025-08-26T20:45:21.3013919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_meta.h 2025-08-26T20:45:21.3017593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_meta_dispatch.h 2025-08-26T20:45:21.3021254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_native.h 2025-08-26T20:45:21.3024972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_ops.h 2025-08-26T20:45:21.3028712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh.h 2025-08-26T20:45:21.3032302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.3035982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_cpu_dispatch.h 2025-08-26T20:45:21.3039740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_cuda_dispatch.h 2025-08-26T20:45:21.3043552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_meta.h 2025-08-26T20:45:21.3047355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_meta_dispatch.h 2025-08-26T20:45:21.3051555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_native.h 2025-08-26T20:45:21.3055488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_ops.h 2025-08-26T20:45:21.3059409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.3063377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_cpu_dispatch.h 2025-08-26T20:45:21.3067056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_cuda_dispatch.h 2025-08-26T20:45:21.3070702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_meta.h 2025-08-26T20:45:21.3074240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_meta_dispatch.h 2025-08-26T20:45:21.3077893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_native.h 2025-08-26T20:45:21.3081729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_ops.h 2025-08-26T20:45:21.3085359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\size.h 2025-08-26T20:45:21.3089375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\size_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.3093346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\size_native.h 2025-08-26T20:45:21.3097518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\size_ops.h 2025-08-26T20:45:21.3101144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice.h 2025-08-26T20:45:21.3104655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_backward.h 2025-08-26T20:45:21.3108663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.3112308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_backward_native.h 2025-08-26T20:45:21.3116740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_backward_ops.h 2025-08-26T20:45:21.3120843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.3124696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_copy.h 2025-08-26T20:45:21.3128750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.3132579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.3136666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_copy_native.h 2025-08-26T20:45:21.3140500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_copy_ops.h 2025-08-26T20:45:21.3144856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_inverse.h 2025-08-26T20:45:21.3148951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_inverse_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.3152819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_inverse_native.h 2025-08-26T20:45:21.3157044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_inverse_ops.h 2025-08-26T20:45:21.3160858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_native.h 2025-08-26T20:45:21.3165051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_ops.h 2025-08-26T20:45:21.3169095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_scatter.h 2025-08-26T20:45:21.3173233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.3177208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_scatter_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.3180963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_scatter_native.h 2025-08-26T20:45:21.3185059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_scatter_ops.h 2025-08-26T20:45:21.3189305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slogdet.h 2025-08-26T20:45:21.3192910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slogdet_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.3196846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slogdet_native.h 2025-08-26T20:45:21.3200987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slogdet_ops.h 2025-08-26T20:45:21.3204891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d.h 2025-08-26T20:45:21.3209157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.3213078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_forward.h 2025-08-26T20:45:21.3216891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_forward_cpu_dispatch.h 2025-08-26T20:45:21.3220831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_forward_native.h 2025-08-26T20:45:21.3224565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_forward_ops.h 2025-08-26T20:45:21.3228944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_native.h 2025-08-26T20:45:21.3232988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_ops.h 2025-08-26T20:45:21.3237083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d.h 2025-08-26T20:45:21.3240841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.3245393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d_cpu_dispatch.h 2025-08-26T20:45:21.3249598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d_cuda_dispatch.h 2025-08-26T20:45:21.3253960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d_native.h 2025-08-26T20:45:21.3257907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d_ops.h 2025-08-26T20:45:21.3261826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d.h 2025-08-26T20:45:21.3265949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.3270446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d_cpu_dispatch.h 2025-08-26T20:45:21.3274285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d_cuda_dispatch.h 2025-08-26T20:45:21.3278035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d_native.h 2025-08-26T20:45:21.3282617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d_ops.h 2025-08-26T20:45:21.3286574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d.h 2025-08-26T20:45:21.3290717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.3294496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_cpu_dispatch.h 2025-08-26T20:45:21.3298650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_cuda_dispatch.h 2025-08-26T20:45:21.3302487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_meta.h 2025-08-26T20:45:21.3306376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_meta_dispatch.h 2025-08-26T20:45:21.3310660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_native.h 2025-08-26T20:45:21.3314473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_ops.h 2025-08-26T20:45:21.3318269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose3d.h 2025-08-26T20:45:21.3322054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose3d_cpu_dispatch.h 2025-08-26T20:45:21.3325987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose3d_cuda_dispatch.h 2025-08-26T20:45:21.3329963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose3d_native.h 2025-08-26T20:45:21.3333793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose3d_ops.h 2025-08-26T20:45:21.3337529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smm.h 2025-08-26T20:45:21.3341308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smm_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.3344957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smm_native.h 2025-08-26T20:45:21.3348561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smm_ops.h 2025-08-26T20:45:21.3352077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss.h 2025-08-26T20:45:21.3355951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward.h 2025-08-26T20:45:21.3360008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.3363691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward_cpu_dispatch.h 2025-08-26T20:45:21.3368251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward_cuda_dispatch.h 2025-08-26T20:45:21.3372597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward_native.h 2025-08-26T20:45:21.3376415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward_ops.h 2025-08-26T20:45:21.3380532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.3384488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_cpu_dispatch.h 2025-08-26T20:45:21.3388433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_cuda_dispatch.h 2025-08-26T20:45:21.3392441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_meta.h 2025-08-26T20:45:21.3396225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_meta_dispatch.h 2025-08-26T20:45:21.3400263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_native.h 2025-08-26T20:45:21.3403982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_ops.h 2025-08-26T20:45:21.3407914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softmax.h 2025-08-26T20:45:21.3411466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softmax_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.3415201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softmax_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.3418748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softmax_native.h 2025-08-26T20:45:21.3422349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softmax_ops.h 2025-08-26T20:45:21.3426070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus.h 2025-08-26T20:45:21.3429945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward.h 2025-08-26T20:45:21.3434050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.3437834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_cpu_dispatch.h 2025-08-26T20:45:21.3441489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_cuda_dispatch.h 2025-08-26T20:45:21.3445103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_meta.h 2025-08-26T20:45:21.3448890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_meta_dispatch.h 2025-08-26T20:45:21.3452631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_native.h 2025-08-26T20:45:21.3456576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_ops.h 2025-08-26T20:45:21.3460811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.3464464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_cpu_dispatch.h 2025-08-26T20:45:21.3468776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_cuda_dispatch.h 2025-08-26T20:45:21.3472476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_meta.h 2025-08-26T20:45:21.3476280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_meta_dispatch.h 2025-08-26T20:45:21.3480349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_native.h 2025-08-26T20:45:21.3484227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_ops.h 2025-08-26T20:45:21.3487981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink.h 2025-08-26T20:45:21.3491622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward.h 2025-08-26T20:45:21.3495604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.3499234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_cpu_dispatch.h 2025-08-26T20:45:21.3503230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_cuda_dispatch.h 2025-08-26T20:45:21.3506904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_meta.h 2025-08-26T20:45:21.3510981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_meta_dispatch.h 2025-08-26T20:45:21.3515027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_native.h 2025-08-26T20:45:21.3518766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_ops.h 2025-08-26T20:45:21.3522668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.3556093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_cpu_dispatch.h 2025-08-26T20:45:21.3559894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_cuda_dispatch.h 2025-08-26T20:45:21.3563804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_meta.h 2025-08-26T20:45:21.3567689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_meta_dispatch.h 2025-08-26T20:45:21.3571494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_native.h 2025-08-26T20:45:21.3575233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_ops.h 2025-08-26T20:45:21.3579375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss.h 2025-08-26T20:45:21.3583042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_backward.h 2025-08-26T20:45:21.3587087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.3591051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_backward_native.h 2025-08-26T20:45:21.3594897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_backward_ops.h 2025-08-26T20:45:21.3599634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.3603570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_native.h 2025-08-26T20:45:21.3607618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_ops.h 2025-08-26T20:45:21.3611306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort.h 2025-08-26T20:45:21.3614927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.3618885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.3622623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.3626344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_cpu_dispatch.h 2025-08-26T20:45:21.3630016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_cuda_dispatch.h 2025-08-26T20:45:21.3633898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_meta.h 2025-08-26T20:45:21.3637460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_meta_dispatch.h 2025-08-26T20:45:21.3641164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_native.h 2025-08-26T20:45:21.3644987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_ops.h 2025-08-26T20:45:21.3648479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsc_tensor.h 2025-08-26T20:45:21.3652393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsc_tensor_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.3655993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsc_tensor_native.h 2025-08-26T20:45:21.3659696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsc_tensor_ops.h 2025-08-26T20:45:21.3663411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsr_tensor.h 2025-08-26T20:45:21.3667794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsr_tensor_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.3671779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsr_tensor_native.h 2025-08-26T20:45:21.3675537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsr_tensor_ops.h 2025-08-26T20:45:21.3679683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_compressed_tensor.h 2025-08-26T20:45:21.3683636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_compressed_tensor_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.3687416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_compressed_tensor_native.h 2025-08-26T20:45:21.3691144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_compressed_tensor_ops.h 2025-08-26T20:45:21.3695096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_coo_tensor.h 2025-08-26T20:45:21.3699498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_coo_tensor_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.3703548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_coo_tensor_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.3707270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_coo_tensor_native.h 2025-08-26T20:45:21.3711026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_coo_tensor_ops.h 2025-08-26T20:45:21.3715452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csc_tensor.h 2025-08-26T20:45:21.3718981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csc_tensor_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.3722669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csc_tensor_native.h 2025-08-26T20:45:21.3726588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csc_tensor_ops.h 2025-08-26T20:45:21.3730351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csr_tensor.h 2025-08-26T20:45:21.3734263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csr_tensor_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.3737937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csr_tensor_native.h 2025-08-26T20:45:21.3741921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csr_tensor_ops.h 2025-08-26T20:45:21.3745791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_dim.h 2025-08-26T20:45:21.3749564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_dim_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.3753124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_dim_native.h 2025-08-26T20:45:21.3757656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_dim_ops.h 2025-08-26T20:45:21.3761532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_mask.h 2025-08-26T20:45:21.3765471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_mask_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.3769184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_mask_native.h 2025-08-26T20:45:21.3773140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_mask_ops.h 2025-08-26T20:45:21.3776890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize.h 2025-08-26T20:45:21.3780650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_and_clear.h 2025-08-26T20:45:21.3784653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_and_clear_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.3788470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_and_clear_meta_dispatch.h 2025-08-26T20:45:21.3792229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_and_clear_native.h 2025-08-26T20:45:21.3796917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_and_clear_ops.h 2025-08-26T20:45:21.3800869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.3804909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_meta_dispatch.h 2025-08-26T20:45:21.3809101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_native.h 2025-08-26T20:45:21.3812966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_ops.h 2025-08-26T20:45:21.3817233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_sampled_addmm.h 2025-08-26T20:45:21.3821346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_sampled_addmm_native.h 2025-08-26T20:45:21.3825446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_sampled_addmm_ops.h 2025-08-26T20:45:21.3829196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai.h 2025-08-26T20:45:21.3837048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.3841094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_cpu_dispatch.h 2025-08-26T20:45:21.3844811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_cuda_dispatch.h 2025-08-26T20:45:21.3848945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_meta.h 2025-08-26T20:45:21.3853762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_meta_dispatch.h 2025-08-26T20:45:21.3857930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_native.h 2025-08-26T20:45:21.3862065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_ops.h 2025-08-26T20:45:21.3865820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0.h 2025-08-26T20:45:21.3869928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.3873809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_cpu_dispatch.h 2025-08-26T20:45:21.3878097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_cuda_dispatch.h 2025-08-26T20:45:21.3882266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_meta.h 2025-08-26T20:45:21.3886267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_meta_dispatch.h 2025-08-26T20:45:21.3890171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_native.h 2025-08-26T20:45:21.3894342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_ops.h 2025-08-26T20:45:21.3898289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1.h 2025-08-26T20:45:21.3902869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.3907015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_cpu_dispatch.h 2025-08-26T20:45:21.3910916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_cuda_dispatch.h 2025-08-26T20:45:21.3914721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_meta.h 2025-08-26T20:45:21.3918708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_meta_dispatch.h 2025-08-26T20:45:21.3923030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_native.h 2025-08-26T20:45:21.3927307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_ops.h 2025-08-26T20:45:21.3959224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0.h 2025-08-26T20:45:21.3963401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.3967337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_cpu_dispatch.h 2025-08-26T20:45:21.3971159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_cuda_dispatch.h 2025-08-26T20:45:21.3975586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_meta.h 2025-08-26T20:45:21.3979612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_meta_dispatch.h 2025-08-26T20:45:21.3983365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_native.h 2025-08-26T20:45:21.3987479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_ops.h 2025-08-26T20:45:21.3991604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1.h 2025-08-26T20:45:21.3995629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.3999337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_cpu_dispatch.h 2025-08-26T20:45:21.4003607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_cuda_dispatch.h 2025-08-26T20:45:21.4007482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_meta.h 2025-08-26T20:45:21.4011559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_meta_dispatch.h 2025-08-26T20:45:21.4015259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_native.h 2025-08-26T20:45:21.4019580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_ops.h 2025-08-26T20:45:21.4023578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t.h 2025-08-26T20:45:21.4028028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.4031929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.4035972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_cpu_dispatch.h 2025-08-26T20:45:21.4039815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_cuda_dispatch.h 2025-08-26T20:45:21.4043661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_meta.h 2025-08-26T20:45:21.4047810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_meta_dispatch.h 2025-08-26T20:45:21.4051630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_native.h 2025-08-26T20:45:21.4055694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_ops.h 2025-08-26T20:45:21.4059714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u.h 2025-08-26T20:45:21.4063739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.4068088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.4072096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_cpu_dispatch.h 2025-08-26T20:45:21.4075993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_cuda_dispatch.h 2025-08-26T20:45:21.4079845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_meta.h 2025-08-26T20:45:21.4083785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_meta_dispatch.h 2025-08-26T20:45:21.4087717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_native.h 2025-08-26T20:45:21.4091596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_ops.h 2025-08-26T20:45:21.4095540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v.h 2025-08-26T20:45:21.4099615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.4103551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.4107893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_cpu_dispatch.h 2025-08-26T20:45:21.4111690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_cuda_dispatch.h 2025-08-26T20:45:21.4115689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_meta.h 2025-08-26T20:45:21.4119726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_meta_dispatch.h 2025-08-26T20:45:21.4123574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_native.h 2025-08-26T20:45:21.4127563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_ops.h 2025-08-26T20:45:21.4131221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w.h 2025-08-26T20:45:21.4135543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.4139499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.4143450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_cpu_dispatch.h 2025-08-26T20:45:21.4147264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_cuda_dispatch.h 2025-08-26T20:45:21.4151145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_meta.h 2025-08-26T20:45:21.4155153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_meta_dispatch.h 2025-08-26T20:45:21.4159326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_native.h 2025-08-26T20:45:21.4163396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_ops.h 2025-08-26T20:45:21.4167462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_digamma.h 2025-08-26T20:45:21.4171514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_digamma_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.4175279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_digamma_native.h 2025-08-26T20:45:21.4179607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_digamma_ops.h 2025-08-26T20:45:21.4183365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr.h 2025-08-26T20:45:21.4187435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.4191243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_cpu_dispatch.h 2025-08-26T20:45:21.4194963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_cuda_dispatch.h 2025-08-26T20:45:21.4199089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_meta.h 2025-08-26T20:45:21.4203090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_meta_dispatch.h 2025-08-26T20:45:21.4207023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_native.h 2025-08-26T20:45:21.4211151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_ops.h 2025-08-26T20:45:21.4214905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erf.h 2025-08-26T20:45:21.4219122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfc.h 2025-08-26T20:45:21.4223062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx.h 2025-08-26T20:45:21.4227436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.4231465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_cpu_dispatch.h 2025-08-26T20:45:21.4235939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_cuda_dispatch.h 2025-08-26T20:45:21.4239964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_meta.h 2025-08-26T20:45:21.4244170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_meta_dispatch.h 2025-08-26T20:45:21.4248224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_native.h 2025-08-26T20:45:21.4252805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_ops.h 2025-08-26T20:45:21.4257100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfc_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.4261274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfc_native.h 2025-08-26T20:45:21.4265205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfc_ops.h 2025-08-26T20:45:21.4269104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfinv.h 2025-08-26T20:45:21.4273128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfinv_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.4276832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfinv_native.h 2025-08-26T20:45:21.4280687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfinv_ops.h 2025-08-26T20:45:21.4284898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erf_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.4288956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erf_native.h 2025-08-26T20:45:21.4293098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erf_ops.h 2025-08-26T20:45:21.4297086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_exp2.h 2025-08-26T20:45:21.4301018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_exp2_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.4304773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_exp2_native.h 2025-08-26T20:45:21.4309216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_exp2_ops.h 2025-08-26T20:45:21.4312939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expit.h 2025-08-26T20:45:21.4316874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expit_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.4320774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expit_native.h 2025-08-26T20:45:21.4324702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expit_ops.h 2025-08-26T20:45:21.4328510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expm1.h 2025-08-26T20:45:21.4332420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expm1_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.4336128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expm1_native.h 2025-08-26T20:45:21.4339873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expm1_ops.h 2025-08-26T20:45:21.4344258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammainc.h 2025-08-26T20:45:21.4348036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaincc.h 2025-08-26T20:45:21.4352011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaincc_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.4355745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaincc_native.h 2025-08-26T20:45:21.4359570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaincc_ops.h 2025-08-26T20:45:21.4363666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammainc_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.4367546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammainc_native.h 2025-08-26T20:45:21.4371482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammainc_ops.h 2025-08-26T20:45:21.4375405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaln.h 2025-08-26T20:45:21.4379400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaln_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.4383250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaln_native.h 2025-08-26T20:45:21.4387193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaln_ops.h 2025-08-26T20:45:21.4391675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h.h 2025-08-26T20:45:21.4395476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he.h 2025-08-26T20:45:21.4399785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.4403960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.4408392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_cpu_dispatch.h 2025-08-26T20:45:21.4412357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_cuda_dispatch.h 2025-08-26T20:45:21.4416716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_meta.h 2025-08-26T20:45:21.4420586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_meta_dispatch.h 2025-08-26T20:45:21.4424514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_native.h 2025-08-26T20:45:21.4428399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_ops.h 2025-08-26T20:45:21.4432473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.4436971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.4441078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_cpu_dispatch.h 2025-08-26T20:45:21.4445120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_cuda_dispatch.h 2025-08-26T20:45:21.4449056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_meta.h 2025-08-26T20:45:21.4453442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_meta_dispatch.h 2025-08-26T20:45:21.4457469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_native.h 2025-08-26T20:45:21.4461512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_ops.h 2025-08-26T20:45:21.4465482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0.h 2025-08-26T20:45:21.4469324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e.h 2025-08-26T20:45:21.4473349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.4477127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_cpu_dispatch.h 2025-08-26T20:45:21.4481295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_cuda_dispatch.h 2025-08-26T20:45:21.4485820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_meta.h 2025-08-26T20:45:21.4489295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_meta_dispatch.h 2025-08-26T20:45:21.4493415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_native.h 2025-08-26T20:45:21.4497482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_ops.h 2025-08-26T20:45:21.4502334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.4505972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0_native.h 2025-08-26T20:45:21.4510170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0_ops.h 2025-08-26T20:45:21.4514055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1.h 2025-08-26T20:45:21.4518215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e.h 2025-08-26T20:45:21.4522266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.4526274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_cpu_dispatch.h 2025-08-26T20:45:21.4530349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_cuda_dispatch.h 2025-08-26T20:45:21.4534284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_meta.h 2025-08-26T20:45:21.4538125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_meta_dispatch.h 2025-08-26T20:45:21.4541921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_native.h 2025-08-26T20:45:21.4546030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_ops.h 2025-08-26T20:45:21.4550465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.4554345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_cpu_dispatch.h 2025-08-26T20:45:21.4558118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_cuda_dispatch.h 2025-08-26T20:45:21.4562041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_meta.h 2025-08-26T20:45:21.4566015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_meta_dispatch.h 2025-08-26T20:45:21.4569833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_native.h 2025-08-26T20:45:21.4573981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_ops.h 2025-08-26T20:45:21.4578029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l.h 2025-08-26T20:45:21.4582576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.4586497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.4590547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_cpu_dispatch.h 2025-08-26T20:45:21.4594581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_cuda_dispatch.h 2025-08-26T20:45:21.4598460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_meta.h 2025-08-26T20:45:21.4602900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_meta_dispatch.h 2025-08-26T20:45:21.4606969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_native.h 2025-08-26T20:45:21.4640611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_ops.h 2025-08-26T20:45:21.4644452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p.h 2025-08-26T20:45:21.4649078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.4653991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.4658038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_cpu_dispatch.h 2025-08-26T20:45:21.4661901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_cuda_dispatch.h 2025-08-26T20:45:21.4666463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_meta.h 2025-08-26T20:45:21.4671052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_meta_dispatch.h 2025-08-26T20:45:21.4675234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_native.h 2025-08-26T20:45:21.4678984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_ops.h 2025-08-26T20:45:21.4683079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log1p.h 2025-08-26T20:45:21.4687373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log1p_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.4691379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log1p_native.h 2025-08-26T20:45:21.4695265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log1p_ops.h 2025-08-26T20:45:21.4699549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logit.h 2025-08-26T20:45:21.4703788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logit_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.4707636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logit_native.h 2025-08-26T20:45:21.4712405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logit_ops.h 2025-08-26T20:45:21.4716860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logsumexp.h 2025-08-26T20:45:21.4721199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logsumexp_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.4725255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logsumexp_native.h 2025-08-26T20:45:21.4729525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logsumexp_ops.h 2025-08-26T20:45:21.4734060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr.h 2025-08-26T20:45:21.4738196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.4741988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_cpu_dispatch.h 2025-08-26T20:45:21.4745962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_cuda_dispatch.h 2025-08-26T20:45:21.4750384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_meta.h 2025-08-26T20:45:21.4754240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_meta_dispatch.h 2025-08-26T20:45:21.4758083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_native.h 2025-08-26T20:45:21.4761988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_ops.h 2025-08-26T20:45:21.4765888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_softmax.h 2025-08-26T20:45:21.4770068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_softmax_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.4774193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_softmax_native.h 2025-08-26T20:45:21.4778087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_softmax_ops.h 2025-08-26T20:45:21.4781889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0.h 2025-08-26T20:45:21.4786065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.4790110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_cpu_dispatch.h 2025-08-26T20:45:21.4794308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_cuda_dispatch.h 2025-08-26T20:45:21.4798441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_meta.h 2025-08-26T20:45:21.4802517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_meta_dispatch.h 2025-08-26T20:45:21.4806488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_native.h 2025-08-26T20:45:21.4810523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_ops.h 2025-08-26T20:45:21.4814297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1.h 2025-08-26T20:45:21.4818463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.4822583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_cpu_dispatch.h 2025-08-26T20:45:21.4827055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_cuda_dispatch.h 2025-08-26T20:45:21.4830990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_meta.h 2025-08-26T20:45:21.4834901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_meta_dispatch.h 2025-08-26T20:45:21.4838775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_native.h 2025-08-26T20:45:21.4843272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_ops.h 2025-08-26T20:45:21.4847368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0.h 2025-08-26T20:45:21.4851546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.4855295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_cpu_dispatch.h 2025-08-26T20:45:21.4859805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_cuda_dispatch.h 2025-08-26T20:45:21.4863943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_meta.h 2025-08-26T20:45:21.4868086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_meta_dispatch.h 2025-08-26T20:45:21.4872111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_native.h 2025-08-26T20:45:21.4875889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_ops.h 2025-08-26T20:45:21.4879789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1.h 2025-08-26T20:45:21.4884013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.4888137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_cpu_dispatch.h 2025-08-26T20:45:21.4892019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_cuda_dispatch.h 2025-08-26T20:45:21.4895873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_meta.h 2025-08-26T20:45:21.4899824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_meta_dispatch.h 2025-08-26T20:45:21.4903720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_native.h 2025-08-26T20:45:21.4907669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_ops.h 2025-08-26T20:45:21.4911708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_multigammaln.h 2025-08-26T20:45:21.4916008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_multigammaln_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.4920231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_multigammaln_native.h 2025-08-26T20:45:21.4924043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_multigammaln_ops.h 2025-08-26T20:45:21.4928047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtr.h 2025-08-26T20:45:21.4931971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri.h 2025-08-26T20:45:21.4936468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.4940390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_cpu_dispatch.h 2025-08-26T20:45:21.4944299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_cuda_dispatch.h 2025-08-26T20:45:21.4948198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_meta.h 2025-08-26T20:45:21.4952092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_meta_dispatch.h 2025-08-26T20:45:21.4955865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_native.h 2025-08-26T20:45:21.4959682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_ops.h 2025-08-26T20:45:21.4963980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtr_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.4968366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtr_native.h 2025-08-26T20:45:21.4972255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtr_ops.h 2025-08-26T20:45:21.4976773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_polygamma.h 2025-08-26T20:45:21.4981370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_polygamma_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.4985303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_polygamma_native.h 2025-08-26T20:45:21.4989133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_polygamma_ops.h 2025-08-26T20:45:21.4993139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_psi.h 2025-08-26T20:45:21.5006330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_psi_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5012104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_psi_native.h 2025-08-26T20:45:21.5016065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_psi_ops.h 2025-08-26T20:45:21.5019999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_round.h 2025-08-26T20:45:21.5024094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_round_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5027948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_round_native.h 2025-08-26T20:45:21.5032122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_round_ops.h 2025-08-26T20:45:21.5037101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0.h 2025-08-26T20:45:21.5041840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.5045895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_cpu_dispatch.h 2025-08-26T20:45:21.5050236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_cuda_dispatch.h 2025-08-26T20:45:21.5054538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_meta.h 2025-08-26T20:45:21.5058468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_meta_dispatch.h 2025-08-26T20:45:21.5062433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_native.h 2025-08-26T20:45:21.5066472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_ops.h 2025-08-26T20:45:21.5070400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1.h 2025-08-26T20:45:21.5074909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.5078735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_cpu_dispatch.h 2025-08-26T20:45:21.5082694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_cuda_dispatch.h 2025-08-26T20:45:21.5086838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_meta.h 2025-08-26T20:45:21.5090810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_meta_dispatch.h 2025-08-26T20:45:21.5095130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_native.h 2025-08-26T20:45:21.5099084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_ops.h 2025-08-26T20:45:21.5103056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t.h 2025-08-26T20:45:21.5107297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.5111506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.5115664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_cpu_dispatch.h 2025-08-26T20:45:21.5120097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_cuda_dispatch.h 2025-08-26T20:45:21.5124087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_meta.h 2025-08-26T20:45:21.5128216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_meta_dispatch.h 2025-08-26T20:45:21.5132416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_native.h 2025-08-26T20:45:21.5137754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_ops.h 2025-08-26T20:45:21.5141996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u.h 2025-08-26T20:45:21.5147344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.5150569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.5155066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_cpu_dispatch.h 2025-08-26T20:45:21.5159352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_cuda_dispatch.h 2025-08-26T20:45:21.5164761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_meta.h 2025-08-26T20:45:21.5168075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_meta_dispatch.h 2025-08-26T20:45:21.5172661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_native.h 2025-08-26T20:45:21.5177077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_ops.h 2025-08-26T20:45:21.5181980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v.h 2025-08-26T20:45:21.5185547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.5190147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.5194644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_cpu_dispatch.h 2025-08-26T20:45:21.5199353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_cuda_dispatch.h 2025-08-26T20:45:21.5203111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_meta.h 2025-08-26T20:45:21.5207672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_meta_dispatch.h 2025-08-26T20:45:21.5211830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_native.h 2025-08-26T20:45:21.5216494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_ops.h 2025-08-26T20:45:21.5220168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w.h 2025-08-26T20:45:21.5224668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.5232925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.5233472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_cpu_dispatch.h 2025-08-26T20:45:21.5238476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_cuda_dispatch.h 2025-08-26T20:45:21.5253107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_meta.h 2025-08-26T20:45:21.5253505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_meta_dispatch.h 2025-08-26T20:45:21.5253864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_native.h 2025-08-26T20:45:21.5256447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_ops.h 2025-08-26T20:45:21.5260283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_sinc.h 2025-08-26T20:45:21.5264655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_sinc_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5268981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_sinc_native.h 2025-08-26T20:45:21.5273203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_sinc_ops.h 2025-08-26T20:45:21.5277355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_softmax.h 2025-08-26T20:45:21.5281699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_softmax_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5286035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_softmax_native.h 2025-08-26T20:45:21.5290053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_softmax_ops.h 2025-08-26T20:45:21.5294390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0.h 2025-08-26T20:45:21.5299113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.5304003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_cpu_dispatch.h 2025-08-26T20:45:21.5309381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_cuda_dispatch.h 2025-08-26T20:45:21.5313314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_meta.h 2025-08-26T20:45:21.5317567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_meta_dispatch.h 2025-08-26T20:45:21.5321446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_native.h 2025-08-26T20:45:21.5325537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_ops.h 2025-08-26T20:45:21.5329276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py.h 2025-08-26T20:45:21.5333769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.5338469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.5342378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_cpu_dispatch.h 2025-08-26T20:45:21.5346469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_cuda_dispatch.h 2025-08-26T20:45:21.5350827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_meta.h 2025-08-26T20:45:21.5354800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_meta_dispatch.h 2025-08-26T20:45:21.5358950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_native.h 2025-08-26T20:45:21.5362790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_ops.h 2025-08-26T20:45:21.5366858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlogy.h 2025-08-26T20:45:21.5370987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlogy_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5374756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlogy_native.h 2025-08-26T20:45:21.5378680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlogy_ops.h 2025-08-26T20:45:21.5382509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta.h 2025-08-26T20:45:21.5386667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.5390873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.5394678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_cpu_dispatch.h 2025-08-26T20:45:21.5399159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_cuda_dispatch.h 2025-08-26T20:45:21.5403086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_meta.h 2025-08-26T20:45:21.5407270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_meta_dispatch.h 2025-08-26T20:45:21.5411477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_native.h 2025-08-26T20:45:21.5415687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_ops.h 2025-08-26T20:45:21.5419384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split.h 2025-08-26T20:45:21.5422983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.5426745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5430737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_copy.h 2025-08-26T20:45:21.5434771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.5438759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.5442509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_copy_native.h 2025-08-26T20:45:21.5446367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_copy_ops.h 2025-08-26T20:45:21.5450134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_native.h 2025-08-26T20:45:21.5453879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_ops.h 2025-08-26T20:45:21.5457724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes.h 2025-08-26T20:45:21.5461620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.5465636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy.h 2025-08-26T20:45:21.5469643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.5473650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.5477457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy_cuda_dispatch.h 2025-08-26T20:45:21.5481335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy_native.h 2025-08-26T20:45:21.5485167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy_ops.h 2025-08-26T20:45:21.5489267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_native.h 2025-08-26T20:45:21.5493128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_ops.h 2025-08-26T20:45:21.5496927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt.h 2025-08-26T20:45:21.5500948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.5504609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_cpu_dispatch.h 2025-08-26T20:45:21.5508394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_cuda_dispatch.h 2025-08-26T20:45:21.5512153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_meta.h 2025-08-26T20:45:21.5516034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_meta_dispatch.h 2025-08-26T20:45:21.5520085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_native.h 2025-08-26T20:45:21.5524227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_ops.h 2025-08-26T20:45:21.5527837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\square.h 2025-08-26T20:45:21.5531319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\square_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5534849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\square_native.h 2025-08-26T20:45:21.5539068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\square_ops.h 2025-08-26T20:45:21.5543332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze.h 2025-08-26T20:45:21.5547462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.5551428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5555307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_copy.h 2025-08-26T20:45:21.5559378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.5563238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.5567481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_copy_native.h 2025-08-26T20:45:21.5571552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_copy_ops.h 2025-08-26T20:45:21.5575329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_native.h 2025-08-26T20:45:21.5579515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_ops.h 2025-08-26T20:45:21.5583449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm.h 2025-08-26T20:45:21.5587421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5591124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm_cpu_dispatch.h 2025-08-26T20:45:21.5595001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm_cuda_dispatch.h 2025-08-26T20:45:21.5598953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm_native.h 2025-08-26T20:45:21.5602987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm_ops.h 2025-08-26T20:45:21.5607329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stack.h 2025-08-26T20:45:21.5612147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stack_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.5615850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stack_native.h 2025-08-26T20:45:21.5619761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stack_ops.h 2025-08-26T20:45:21.5623619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std.h 2025-08-26T20:45:21.5627137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5631136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_cpu_dispatch.h 2025-08-26T20:45:21.5635081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_cuda_dispatch.h 2025-08-26T20:45:21.5638736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean.h 2025-08-26T20:45:21.5642642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.5646519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5650109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_cpu_dispatch.h 2025-08-26T20:45:21.5653947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_cuda_dispatch.h 2025-08-26T20:45:21.5657696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_native.h 2025-08-26T20:45:21.5661527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_ops.h 2025-08-26T20:45:21.5665411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_native.h 2025-08-26T20:45:21.5669110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_ops.h 2025-08-26T20:45:21.5672547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stft.h 2025-08-26T20:45:21.5676274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stft_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5680304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stft_native.h 2025-08-26T20:45:21.5684301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stft_ops.h 2025-08-26T20:45:21.5687910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stride.h 2025-08-26T20:45:21.5691841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stride_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5695849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stride_native.h 2025-08-26T20:45:21.5751674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stride_ops.h 2025-08-26T20:45:21.5755756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub.h 2025-08-26T20:45:21.5759533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\subtract.h 2025-08-26T20:45:21.5763329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\subtract_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5767254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\subtract_native.h 2025-08-26T20:45:21.5770939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\subtract_ops.h 2025-08-26T20:45:21.5775220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.5779326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.5782896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_cpu_dispatch.h 2025-08-26T20:45:21.5786588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_cuda_dispatch.h 2025-08-26T20:45:21.5790178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_meta.h 2025-08-26T20:45:21.5793660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_meta_dispatch.h 2025-08-26T20:45:21.5797309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_native.h 2025-08-26T20:45:21.5800840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_ops.h 2025-08-26T20:45:21.5804442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum.h 2025-08-26T20:45:21.5808483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.5812199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.5815939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5819596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_cpu_dispatch.h 2025-08-26T20:45:21.5823192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_cuda_dispatch.h 2025-08-26T20:45:21.5826801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_meta.h 2025-08-26T20:45:21.5830424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_meta_dispatch.h 2025-08-26T20:45:21.5834169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_native.h 2025-08-26T20:45:21.5838172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_ops.h 2025-08-26T20:45:21.5841542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_to_size.h 2025-08-26T20:45:21.5845419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_to_size_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5849246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_to_size_native.h 2025-08-26T20:45:21.5852954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_to_size_ops.h 2025-08-26T20:45:21.5856887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\svd.h 2025-08-26T20:45:21.5860760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\svd_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5864584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\svd_native.h 2025-08-26T20:45:21.5868167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\svd_ops.h 2025-08-26T20:45:21.5871606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapaxes.h 2025-08-26T20:45:21.5875205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapaxes_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5878814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapaxes_native.h 2025-08-26T20:45:21.5883547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapaxes_ops.h 2025-08-26T20:45:21.5887743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapdims.h 2025-08-26T20:45:21.5891132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapdims_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5895652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapdims_native.h 2025-08-26T20:45:21.5899419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapdims_ops.h 2025-08-26T20:45:21.5903421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range.h 2025-08-26T20:45:21.5907524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.5912444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_for_size.h 2025-08-26T20:45:21.5917229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.5922074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_for_size_native.h 2025-08-26T20:45:21.5926720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_for_size_ops.h 2025-08-26T20:45:21.5931556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_native.h 2025-08-26T20:45:21.5936199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_ops.h 2025-08-26T20:45:21.5941226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_numel.h 2025-08-26T20:45:21.5946001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_numel_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5950665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_numel_native.h 2025-08-26T20:45:21.5955070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_numel_ops.h 2025-08-26T20:45:21.5959560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_size.h 2025-08-26T20:45:21.5964132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_size_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5968734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_size_native.h 2025-08-26T20:45:21.5973212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_size_ops.h 2025-08-26T20:45:21.5985848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_storage_offset.h 2025-08-26T20:45:21.5986627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_storage_offset_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5987443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_storage_offset_native.h 2025-08-26T20:45:21.5991017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_storage_offset_ops.h 2025-08-26T20:45:21.5994500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_stride.h 2025-08-26T20:45:21.5998858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_stride_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.6002671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_stride_native.h 2025-08-26T20:45:21.6006467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_stride_ops.h 2025-08-26T20:45:21.6010470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t.h 2025-08-26T20:45:21.6013925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take.h 2025-08-26T20:45:21.6017453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_along_dim.h 2025-08-26T20:45:21.6021437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_along_dim_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.6025108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_along_dim_native.h 2025-08-26T20:45:21.6029076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_along_dim_ops.h 2025-08-26T20:45:21.6032890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_cpu_dispatch.h 2025-08-26T20:45:21.6036628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_cuda_dispatch.h 2025-08-26T20:45:21.6040688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_native.h 2025-08-26T20:45:21.6044578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_ops.h 2025-08-26T20:45:21.6048050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan.h 2025-08-26T20:45:21.6052012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh.h 2025-08-26T20:45:21.6055654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward.h 2025-08-26T20:45:21.6059852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.6063803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_cpu_dispatch.h 2025-08-26T20:45:21.6067720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_cuda_dispatch.h 2025-08-26T20:45:21.6071664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_meta.h 2025-08-26T20:45:21.6075627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_meta_dispatch.h 2025-08-26T20:45:21.6079462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_native.h 2025-08-26T20:45:21.6083446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_ops.h 2025-08-26T20:45:21.6087545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.6091340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_cpu_dispatch.h 2025-08-26T20:45:21.6095365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_cuda_dispatch.h 2025-08-26T20:45:21.6099404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_meta.h 2025-08-26T20:45:21.6103069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_meta_dispatch.h 2025-08-26T20:45:21.6107749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_native.h 2025-08-26T20:45:21.6110863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_ops.h 2025-08-26T20:45:21.6114564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.6119274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_cpu_dispatch.h 2025-08-26T20:45:21.6122439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_cuda_dispatch.h 2025-08-26T20:45:21.6126669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_meta.h 2025-08-26T20:45:21.6130916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_meta_dispatch.h 2025-08-26T20:45:21.6134027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_native.h 2025-08-26T20:45:21.6138157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_ops.h 2025-08-26T20:45:21.6142395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensor.h 2025-08-26T20:45:21.6145113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensordot.h 2025-08-26T20:45:21.6149024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensordot_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.6153739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensordot_native.h 2025-08-26T20:45:21.6156587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensordot_ops.h 2025-08-26T20:45:21.6160563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensor_split.h 2025-08-26T20:45:21.6165651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensor_split_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.6168415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensor_split_native.h 2025-08-26T20:45:21.6172198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensor_split_ops.h 2025-08-26T20:45:21.6176838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\thnn_conv2d.h 2025-08-26T20:45:21.6179778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\thnn_conv2d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.6183570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\thnn_conv2d_native.h 2025-08-26T20:45:21.6188484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\thnn_conv2d_ops.h 2025-08-26T20:45:21.6191252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold.h 2025-08-26T20:45:21.6195258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward.h 2025-08-26T20:45:21.6200105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.6202941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_cpu_dispatch.h 2025-08-26T20:45:21.6207532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_cuda_dispatch.h 2025-08-26T20:45:21.6211105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_meta.h 2025-08-26T20:45:21.6215358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_meta_dispatch.h 2025-08-26T20:45:21.6220162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_native.h 2025-08-26T20:45:21.6224222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_ops.h 2025-08-26T20:45:21.6247452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.6251232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_cpu_dispatch.h 2025-08-26T20:45:21.6255187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_cuda_dispatch.h 2025-08-26T20:45:21.6259191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_meta.h 2025-08-26T20:45:21.6263033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_meta_dispatch.h 2025-08-26T20:45:21.6266785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_native.h 2025-08-26T20:45:21.6270501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_ops.h 2025-08-26T20:45:21.6274396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tile.h 2025-08-26T20:45:21.6278130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tile_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.6281818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tile_native.h 2025-08-26T20:45:21.6285966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tile_ops.h 2025-08-26T20:45:21.6289522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to.h 2025-08-26T20:45:21.6293126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk.h 2025-08-26T20:45:21.6296867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.6300542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_cpu_dispatch.h 2025-08-26T20:45:21.6304209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_cuda_dispatch.h 2025-08-26T20:45:21.6307930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_meta.h 2025-08-26T20:45:21.6311604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_meta_dispatch.h 2025-08-26T20:45:21.6315594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_native.h 2025-08-26T20:45:21.6319118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_ops.h 2025-08-26T20:45:21.6322859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.6326422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense.h 2025-08-26T20:45:21.6329902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_backward.h 2025-08-26T20:45:21.6333716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.6337430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_backward_native.h 2025-08-26T20:45:21.6341270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_backward_ops.h 2025-08-26T20:45:21.6345927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.6349922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_native.h 2025-08-26T20:45:21.6353487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_ops.h 2025-08-26T20:45:21.6357141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn.h 2025-08-26T20:45:21.6360750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_backward.h 2025-08-26T20:45:21.6364578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.6368308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_backward_native.h 2025-08-26T20:45:21.6372054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_backward_ops.h 2025-08-26T20:45:21.6376210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.6379899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_cpu_dispatch.h 2025-08-26T20:45:21.6384331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_native.h 2025-08-26T20:45:21.6389652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_ops.h 2025-08-26T20:45:21.6393504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_native.h 2025-08-26T20:45:21.6397076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_ops.h 2025-08-26T20:45:21.6400469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_padded_tensor.h 2025-08-26T20:45:21.6404661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_padded_tensor_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.6408666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_padded_tensor_native.h 2025-08-26T20:45:21.6412351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_padded_tensor_ops.h 2025-08-26T20:45:21.6416408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse.h 2025-08-26T20:45:21.6420406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsc.h 2025-08-26T20:45:21.6424185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsc_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.6427829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsc_native.h 2025-08-26T20:45:21.6431786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsc_ops.h 2025-08-26T20:45:21.6435465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsr.h 2025-08-26T20:45:21.6439503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsr_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.6443866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsr_native.h 2025-08-26T20:45:21.6447793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsr_ops.h 2025-08-26T20:45:21.6452164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.6455819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csc.h 2025-08-26T20:45:21.6459861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csc_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.6463629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csc_native.h 2025-08-26T20:45:21.6467946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csc_ops.h 2025-08-26T20:45:21.6471909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csr.h 2025-08-26T20:45:21.6475721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csr_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.6479536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csr_native.h 2025-08-26T20:45:21.6483402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csr_ops.h 2025-08-26T20:45:21.6487204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_native.h 2025-08-26T20:45:21.6490857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_ops.h 2025-08-26T20:45:21.6495765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace.h 2025-08-26T20:45:21.6499298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_backward.h 2025-08-26T20:45:21.6503134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.6506759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_backward_native.h 2025-08-26T20:45:21.6510424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_backward_ops.h 2025-08-26T20:45:21.6514647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.6519251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_cpu_dispatch.h 2025-08-26T20:45:21.6523073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_cuda_dispatch.h 2025-08-26T20:45:21.6526839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_native.h 2025-08-26T20:45:21.6530541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_ops.h 2025-08-26T20:45:21.6534189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose.h 2025-08-26T20:45:21.6537988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.6542695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.6547026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_copy.h 2025-08-26T20:45:21.6551191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.6555668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.6559449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_copy_native.h 2025-08-26T20:45:21.6563716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_copy_ops.h 2025-08-26T20:45:21.6567768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_native.h 2025-08-26T20:45:21.6571650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_ops.h 2025-08-26T20:45:21.6577626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapezoid.h 2025-08-26T20:45:21.6581605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapezoid_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.6585260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapezoid_native.h 2025-08-26T20:45:21.6589973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapezoid_ops.h 2025-08-26T20:45:21.6593853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapz.h 2025-08-26T20:45:21.6597740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapz_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.6601482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapz_native.h 2025-08-26T20:45:21.6605172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapz_ops.h 2025-08-26T20:45:21.6609078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve.h 2025-08-26T20:45:21.6613909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.6617613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_cpu_dispatch.h 2025-08-26T20:45:21.6621870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_cuda_dispatch.h 2025-08-26T20:45:21.6625730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_meta.h 2025-08-26T20:45:21.6629718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_meta_dispatch.h 2025-08-26T20:45:21.6645200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_native.h 2025-08-26T20:45:21.6649368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_ops.h 2025-08-26T20:45:21.6653198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril.h 2025-08-26T20:45:21.6656978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.6660658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_cpu_dispatch.h 2025-08-26T20:45:21.6664299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_cuda_dispatch.h 2025-08-26T20:45:21.6668498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices.h 2025-08-26T20:45:21.6672623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.6676830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices_cpu_dispatch.h 2025-08-26T20:45:21.6680576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices_cuda_dispatch.h 2025-08-26T20:45:21.6684765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices_native.h 2025-08-26T20:45:21.6688810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices_ops.h 2025-08-26T20:45:21.6692841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_meta.h 2025-08-26T20:45:21.6696947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_meta_dispatch.h 2025-08-26T20:45:21.6700868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_native.h 2025-08-26T20:45:21.6704895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_ops.h 2025-08-26T20:45:21.6708440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triplet_margin_loss.h 2025-08-26T20:45:21.6712362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triplet_margin_loss_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.6716002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triplet_margin_loss_native.h 2025-08-26T20:45:21.6719870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triplet_margin_loss_ops.h 2025-08-26T20:45:21.6723911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu.h 2025-08-26T20:45:21.6727909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.6731546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_cpu_dispatch.h 2025-08-26T20:45:21.6735586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_cuda_dispatch.h 2025-08-26T20:45:21.6739261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices.h 2025-08-26T20:45:21.6743233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.6747057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices_cpu_dispatch.h 2025-08-26T20:45:21.6750986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices_cuda_dispatch.h 2025-08-26T20:45:21.6755117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices_native.h 2025-08-26T20:45:21.6759003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices_ops.h 2025-08-26T20:45:21.6763004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_meta.h 2025-08-26T20:45:21.6766716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_meta_dispatch.h 2025-08-26T20:45:21.6770656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_native.h 2025-08-26T20:45:21.6774350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_ops.h 2025-08-26T20:45:21.6777855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\true_divide.h 2025-08-26T20:45:21.6781959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\true_divide_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.6786464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\true_divide_native.h 2025-08-26T20:45:21.6790259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\true_divide_ops.h 2025-08-26T20:45:21.6811376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc.h 2025-08-26T20:45:21.6815075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.6819164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_cpu_dispatch.h 2025-08-26T20:45:21.6822590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_cuda_dispatch.h 2025-08-26T20:45:21.6826159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_meta.h 2025-08-26T20:45:21.6829983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_meta_dispatch.h 2025-08-26T20:45:21.6833718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_native.h 2025-08-26T20:45:21.6837386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_ops.h 2025-08-26T20:45:21.6841102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\type_as.h 2025-08-26T20:45:21.6844825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\type_as_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.6848571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\type_as_native.h 2025-08-26T20:45:21.6852223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\type_as_ops.h 2025-08-26T20:45:21.6856012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.6859818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_copy.h 2025-08-26T20:45:21.6863500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.6867130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.6870706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_copy_native.h 2025-08-26T20:45:21.6874462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_copy_ops.h 2025-08-26T20:45:21.6878091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_native.h 2025-08-26T20:45:21.6881529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_ops.h 2025-08-26T20:45:21.6885959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind.h 2025-08-26T20:45:21.6889795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.6893430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.6897301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_copy.h 2025-08-26T20:45:21.6901153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.6904942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.6909067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_copy_native.h 2025-08-26T20:45:21.6913227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_copy_ops.h 2025-08-26T20:45:21.6917012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_native.h 2025-08-26T20:45:21.6920757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_ops.h 2025-08-26T20:45:21.6924399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten.h 2025-08-26T20:45:21.6928236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.6932199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_dense_tensors.h 2025-08-26T20:45:21.6935854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_dense_tensors_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.6939629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_dense_tensors_native.h 2025-08-26T20:45:21.6943419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_dense_tensors_ops.h 2025-08-26T20:45:21.6947028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_native.h 2025-08-26T20:45:21.6950673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_ops.h 2025-08-26T20:45:21.6954272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold.h 2025-08-26T20:45:21.6957758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward.h 2025-08-26T20:45:21.6961614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.6965668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward_cpu_dispatch.h 2025-08-26T20:45:21.6969497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward_cuda_dispatch.h 2025-08-26T20:45:21.6973441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward_native.h 2025-08-26T20:45:21.6977218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward_ops.h 2025-08-26T20:45:21.6980868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_copy.h 2025-08-26T20:45:21.6984819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.6988741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.6992428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_copy_native.h 2025-08-26T20:45:21.6996160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_copy_ops.h 2025-08-26T20:45:21.6999853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_cpu_dispatch.h 2025-08-26T20:45:21.7003644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_cuda_dispatch.h 2025-08-26T20:45:21.7007542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_meta_dispatch.h 2025-08-26T20:45:21.7011711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_native.h 2025-08-26T20:45:21.7015440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_ops.h 2025-08-26T20:45:21.7019550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform.h 2025-08-26T20:45:21.7023181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.7026837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_cpu_dispatch.h 2025-08-26T20:45:21.7030460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_cuda_dispatch.h 2025-08-26T20:45:21.7034077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_meta_dispatch.h 2025-08-26T20:45:21.7037740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_native.h 2025-08-26T20:45:21.7041595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_ops.h 2025-08-26T20:45:21.7045555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive.h 2025-08-26T20:45:21.7049878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.7054633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive_cpu_dispatch.h 2025-08-26T20:45:21.7058575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive_cuda_dispatch.h 2025-08-26T20:45:21.7062855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive_native.h 2025-08-26T20:45:21.7066670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive_ops.h 2025-08-26T20:45:21.7070578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim.h 2025-08-26T20:45:21.7074582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.7078389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive.h 2025-08-26T20:45:21.7082551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.7086480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive_cpu_dispatch.h 2025-08-26T20:45:21.7090279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive_cuda_dispatch.h 2025-08-26T20:45:21.7094503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive_native.h 2025-08-26T20:45:21.7098329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive_ops.h 2025-08-26T20:45:21.7102227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_cpu_dispatch.h 2025-08-26T20:45:21.7106427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_cuda_dispatch.h 2025-08-26T20:45:21.7110388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_native.h 2025-08-26T20:45:21.7114149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_ops.h 2025-08-26T20:45:21.7118881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_chunk.h 2025-08-26T20:45:21.7122804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_chunk_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.7126758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_chunk_native.h 2025-08-26T20:45:21.7130523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_chunk_ops.h 2025-08-26T20:45:21.7134258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split.h 2025-08-26T20:45:21.7138137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.7141940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_native.h 2025-08-26T20:45:21.7145738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_ops.h 2025-08-26T20:45:21.7149611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_with_sizes.h 2025-08-26T20:45:21.7154598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.7160108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_with_sizes_native.h 2025-08-26T20:45:21.7164097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_with_sizes_ops.h 2025-08-26T20:45:21.7168079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze.h 2025-08-26T20:45:21.7171865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.7175824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_copy.h 2025-08-26T20:45:21.7180067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.7184121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.7187825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_copy_native.h 2025-08-26T20:45:21.7191700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_copy_ops.h 2025-08-26T20:45:21.7195531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_native.h 2025-08-26T20:45:21.7199400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_ops.h 2025-08-26T20:45:21.7203274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d.h 2025-08-26T20:45:21.7207471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward.h 2025-08-26T20:45:21.7211486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.7215378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_cpu_dispatch.h 2025-08-26T20:45:21.7219739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_cuda_dispatch.h 2025-08-26T20:45:21.7223569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_meta.h 2025-08-26T20:45:21.7228423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_meta_dispatch.h 2025-08-26T20:45:21.7236332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_native.h 2025-08-26T20:45:21.7240573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_ops.h 2025-08-26T20:45:21.7245279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.7249377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.7254147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_cpu_dispatch.h 2025-08-26T20:45:21.7258151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_cuda_dispatch.h 2025-08-26T20:45:21.7262211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_meta.h 2025-08-26T20:45:21.7266139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_meta_dispatch.h 2025-08-26T20:45:21.7270136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_native.h 2025-08-26T20:45:21.7274172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_ops.h 2025-08-26T20:45:21.7278195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d.h 2025-08-26T20:45:21.7282425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward.h 2025-08-26T20:45:21.7286693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.7290535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_cpu_dispatch.h 2025-08-26T20:45:21.7294547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_cuda_dispatch.h 2025-08-26T20:45:21.7298322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_meta.h 2025-08-26T20:45:21.7302516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_meta_dispatch.h 2025-08-26T20:45:21.7306561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_native.h 2025-08-26T20:45:21.7310471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_ops.h 2025-08-26T20:45:21.7314635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.7318925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.7322923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.7326985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_cpu_dispatch.h 2025-08-26T20:45:21.7331059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_cuda_dispatch.h 2025-08-26T20:45:21.7334948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_meta.h 2025-08-26T20:45:21.7338863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_meta_dispatch.h 2025-08-26T20:45:21.7342663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_native.h 2025-08-26T20:45:21.7346855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_ops.h 2025-08-26T20:45:21.7350811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d.h 2025-08-26T20:45:21.7354664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward.h 2025-08-26T20:45:21.7358731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.7362623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_cpu_dispatch.h 2025-08-26T20:45:21.7366571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_cuda_dispatch.h 2025-08-26T20:45:21.7370607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_meta.h 2025-08-26T20:45:21.7374552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_meta_dispatch.h 2025-08-26T20:45:21.7378448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_native.h 2025-08-26T20:45:21.7382426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_ops.h 2025-08-26T20:45:21.7386470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.7390443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.7394413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_cpu_dispatch.h 2025-08-26T20:45:21.7398258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_cuda_dispatch.h 2025-08-26T20:45:21.7402173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_meta.h 2025-08-26T20:45:21.7406693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_meta_dispatch.h 2025-08-26T20:45:21.7410952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_native.h 2025-08-26T20:45:21.7415320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_ops.h 2025-08-26T20:45:21.7419418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d.h 2025-08-26T20:45:21.7423299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward.h 2025-08-26T20:45:21.7427391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.7431269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_cpu_dispatch.h 2025-08-26T20:45:21.7435295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_cuda_dispatch.h 2025-08-26T20:45:21.7439575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_meta.h 2025-08-26T20:45:21.7443690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_meta_dispatch.h 2025-08-26T20:45:21.7447706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_native.h 2025-08-26T20:45:21.7451568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_ops.h 2025-08-26T20:45:21.7455712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.7459582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.7463654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_cpu_dispatch.h 2025-08-26T20:45:21.7467473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_cuda_dispatch.h 2025-08-26T20:45:21.7471342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_meta.h 2025-08-26T20:45:21.7475270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_meta_dispatch.h 2025-08-26T20:45:21.7479434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_native.h 2025-08-26T20:45:21.7483217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_ops.h 2025-08-26T20:45:21.7487334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d.h 2025-08-26T20:45:21.7491150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward.h 2025-08-26T20:45:21.7495154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.7498876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_cpu_dispatch.h 2025-08-26T20:45:21.7503206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_cuda_dispatch.h 2025-08-26T20:45:21.7507226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_meta.h 2025-08-26T20:45:21.7511054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_meta_dispatch.h 2025-08-26T20:45:21.7514994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_native.h 2025-08-26T20:45:21.7518772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_ops.h 2025-08-26T20:45:21.7522899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.7526858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.7531372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.7535294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_cpu_dispatch.h 2025-08-26T20:45:21.7539092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_cuda_dispatch.h 2025-08-26T20:45:21.7542827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_meta.h 2025-08-26T20:45:21.7546800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_meta_dispatch.h 2025-08-26T20:45:21.7550624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_native.h 2025-08-26T20:45:21.7554732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_ops.h 2025-08-26T20:45:21.7559311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d.h 2025-08-26T20:45:21.7563431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward.h 2025-08-26T20:45:21.7567651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.7571572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_cpu_dispatch.h 2025-08-26T20:45:21.7575614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_cuda_dispatch.h 2025-08-26T20:45:21.7580006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_meta.h 2025-08-26T20:45:21.7584516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_meta_dispatch.h 2025-08-26T20:45:21.7588636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_native.h 2025-08-26T20:45:21.7592534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_ops.h 2025-08-26T20:45:21.7597345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.7601425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.7605625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_cpu_dispatch.h 2025-08-26T20:45:21.7609635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_cuda_dispatch.h 2025-08-26T20:45:21.7613419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_meta.h 2025-08-26T20:45:21.7617417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_meta_dispatch.h 2025-08-26T20:45:21.7621323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_native.h 2025-08-26T20:45:21.7626303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_ops.h 2025-08-26T20:45:21.7630193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d.h 2025-08-26T20:45:21.7634418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward.h 2025-08-26T20:45:21.7638716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.7642647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_cpu_dispatch.h 2025-08-26T20:45:21.7646796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_cuda_dispatch.h 2025-08-26T20:45:21.7652415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_meta.h 2025-08-26T20:45:21.7657027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_meta_dispatch.h 2025-08-26T20:45:21.7661389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_native.h 2025-08-26T20:45:21.7665492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_ops.h 2025-08-26T20:45:21.7669668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.7674229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.7678319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_cpu_dispatch.h 2025-08-26T20:45:21.7682144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_cuda_dispatch.h 2025-08-26T20:45:21.7686165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_meta.h 2025-08-26T20:45:21.7690555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_meta_dispatch.h 2025-08-26T20:45:21.7694553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_native.h 2025-08-26T20:45:21.7698756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_ops.h 2025-08-26T20:45:21.7702640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values.h 2025-08-26T20:45:21.7706366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.7709977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_copy.h 2025-08-26T20:45:21.7714034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.7717912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.7722382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_copy_native.h 2025-08-26T20:45:21.7726467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_copy_ops.h 2025-08-26T20:45:21.7730457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_native.h 2025-08-26T20:45:21.7734290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_ops.h 2025-08-26T20:45:21.7738518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\value_selecting_reduction_backward.h 2025-08-26T20:45:21.7742661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.7746537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\value_selecting_reduction_backward_native.h 2025-08-26T20:45:21.7750846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\value_selecting_reduction_backward_ops.h 2025-08-26T20:45:21.7754719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vander.h 2025-08-26T20:45:21.7758622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vander_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.7763029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vander_native.h 2025-08-26T20:45:21.7766871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vander_ops.h 2025-08-26T20:45:21.7770702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var.h 2025-08-26T20:45:21.7774307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.7778270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_cpu_dispatch.h 2025-08-26T20:45:21.7782004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_cuda_dispatch.h 2025-08-26T20:45:21.7785709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean.h 2025-08-26T20:45:21.7789317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.7793704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.7797372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_cpu_dispatch.h 2025-08-26T20:45:21.7801127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_cuda_dispatch.h 2025-08-26T20:45:21.7805187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_native.h 2025-08-26T20:45:21.7809144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_ops.h 2025-08-26T20:45:21.7813249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_native.h 2025-08-26T20:45:21.7816811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_ops.h 2025-08-26T20:45:21.7820201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot.h 2025-08-26T20:45:21.7823885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.7827365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot_cpu_dispatch.h 2025-08-26T20:45:21.7831042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot_cuda_dispatch.h 2025-08-26T20:45:21.7850748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot_native.h 2025-08-26T20:45:21.7854466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot_ops.h 2025-08-26T20:45:21.7857914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view.h 2025-08-26T20:45:21.7861333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as.h 2025-08-26T20:45:21.7864848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex.h 2025-08-26T20:45:21.7868806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_copy.h 2025-08-26T20:45:21.7872758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.7876720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.7880677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_copy_native.h 2025-08-26T20:45:21.7884477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_copy_ops.h 2025-08-26T20:45:21.7888457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_cpu_dispatch.h 2025-08-26T20:45:21.7892301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_cuda_dispatch.h 2025-08-26T20:45:21.7896172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_meta_dispatch.h 2025-08-26T20:45:21.7900164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_native.h 2025-08-26T20:45:21.7903995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_ops.h 2025-08-26T20:45:21.7907949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.7911627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_native.h 2025-08-26T20:45:21.7916188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_ops.h 2025-08-26T20:45:21.7920015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real.h 2025-08-26T20:45:21.7923750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_copy.h 2025-08-26T20:45:21.7927896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.7932005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.7935768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_copy_native.h 2025-08-26T20:45:21.7939620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_copy_ops.h 2025-08-26T20:45:21.7943534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_cpu_dispatch.h 2025-08-26T20:45:21.7948148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_cuda_dispatch.h 2025-08-26T20:45:21.7951968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_meta_dispatch.h 2025-08-26T20:45:21.7956021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_native.h 2025-08-26T20:45:21.7959850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_ops.h 2025-08-26T20:45:21.7963766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.7967397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_copy.h 2025-08-26T20:45:21.7971375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.7975182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.7978931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_copy_native.h 2025-08-26T20:45:21.7982895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_copy_ops.h 2025-08-26T20:45:21.7986683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_cpu_dispatch.h 2025-08-26T20:45:21.7990496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_cuda_dispatch.h 2025-08-26T20:45:21.7994243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_meta_dispatch.h 2025-08-26T20:45:21.7998006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_native.h 2025-08-26T20:45:21.8001586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_ops.h 2025-08-26T20:45:21.8005319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vsplit.h 2025-08-26T20:45:21.8009048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vsplit_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.8012775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vsplit_native.h 2025-08-26T20:45:21.8016436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vsplit_ops.h 2025-08-26T20:45:21.8020949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vstack.h 2025-08-26T20:45:21.8024570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vstack_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.8028180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vstack_native.h 2025-08-26T20:45:21.8031815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vstack_ops.h 2025-08-26T20:45:21.8035756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where.h 2025-08-26T20:45:21.8039385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.8043061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where_cpu_dispatch.h 2025-08-26T20:45:21.8047028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where_cuda_dispatch.h 2025-08-26T20:45:21.8050709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where_native.h 2025-08-26T20:45:21.8054362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where_ops.h 2025-08-26T20:45:21.8057954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy.h 2025-08-26T20:45:21.8061627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.8076001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.8080097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_cpu_dispatch.h 2025-08-26T20:45:21.8083904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_cuda_dispatch.h 2025-08-26T20:45:21.8087719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_meta.h 2025-08-26T20:45:21.8091515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_meta_dispatch.h 2025-08-26T20:45:21.8095303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_native.h 2025-08-26T20:45:21.8099035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_ops.h 2025-08-26T20:45:21.8103158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xor.h 2025-08-26T20:45:21.8106915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xor_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.8110811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xor_native.h 2025-08-26T20:45:21.8114556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xor_ops.h 2025-08-26T20:45:21.8118656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero.h 2025-08-26T20:45:21.8121600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros.h 2025-08-26T20:45:21.8126035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.8129636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_like.h 2025-08-26T20:45:21.8133560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_like_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.8137480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_like_compositeimplicitautogradnestedtensor_dispatch.h 2025-08-26T20:45:21.8142159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_like_native.h 2025-08-26T20:45:21.8145951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_like_ops.h 2025-08-26T20:45:21.8150617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_native.h 2025-08-26T20:45:21.8154507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_ops.h 2025-08-26T20:45:21.8158389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.8162079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_cpu_dispatch.h 2025-08-26T20:45:21.8165888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_cuda_dispatch.h 2025-08-26T20:45:21.8169832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_meta_dispatch.h 2025-08-26T20:45:21.8173508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_native.h 2025-08-26T20:45:21.8177086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_ops.h 2025-08-26T20:45:21.8180566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d.h 2025-08-26T20:45:21.8184191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward.h 2025-08-26T20:45:21.8188125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.8192303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_cpu_dispatch.h 2025-08-26T20:45:21.8196467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_cuda_dispatch.h 2025-08-26T20:45:21.8200248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_native.h 2025-08-26T20:45:21.8204180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_ops.h 2025-08-26T20:45:21.8208332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.8212012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_cpu_dispatch.h 2025-08-26T20:45:21.8216398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_cuda_dispatch.h 2025-08-26T20:45:21.8220211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_native.h 2025-08-26T20:45:21.8224118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_ops.h 2025-08-26T20:45:21.8228487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d.h 2025-08-26T20:45:21.8232332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward.h 2025-08-26T20:45:21.8236343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.8240702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_cpu_dispatch.h 2025-08-26T20:45:21.8244727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_cuda_dispatch.h 2025-08-26T20:45:21.8248649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_native.h 2025-08-26T20:45:21.8252488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_ops.h 2025-08-26T20:45:21.8256419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.8260400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_cpu_dispatch.h 2025-08-26T20:45:21.8264293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_cuda_dispatch.h 2025-08-26T20:45:21.8268086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_native.h 2025-08-26T20:45:21.8272010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_ops.h 2025-08-26T20:45:21.8275816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation.h 2025-08-26T20:45:21.8279694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.8283815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_cpu_dispatch.h 2025-08-26T20:45:21.8287720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_cuda_dispatch.h 2025-08-26T20:45:21.8291319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_meta.h 2025-08-26T20:45:21.8295695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_meta_dispatch.h 2025-08-26T20:45:21.8299494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_native.h 2025-08-26T20:45:21.8303396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_ops.h 2025-08-26T20:45:21.8307342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_batch_dim.h 2025-08-26T20:45:21.8311313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_batch_dim_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.8315095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_batch_dim_native.h 2025-08-26T20:45:21.8318733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_batch_dim_ops.h 2025-08-26T20:45:21.8322450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu.h 2025-08-26T20:45:21.8326411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.8330037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu_cpu_dispatch.h 2025-08-26T20:45:21.8333950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu_meta_dispatch.h 2025-08-26T20:45:21.8338243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu_native.h 2025-08-26T20:45:21.8342042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu_ops.h 2025-08-26T20:45:21.8345731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax.h 2025-08-26T20:45:21.8349281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.8353134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax_cpu_dispatch.h 2025-08-26T20:45:21.8356778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax_cuda_dispatch.h 2025-08-26T20:45:21.8360510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax_native.h 2025-08-26T20:45:21.8364194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax_ops.h 2025-08-26T20:45:21.8368442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale.h 2025-08-26T20:45:21.8372828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.8376521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_cpu_dispatch.h 2025-08-26T20:45:21.8380262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_cuda_dispatch.h 2025-08-26T20:45:21.8384174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_native.h 2025-08-26T20:45:21.8388280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_ops.h 2025-08-26T20:45:21.8392103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale.h 2025-08-26T20:45:21.8395918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.8399635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_cpu_dispatch.h 2025-08-26T20:45:21.8403392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_cuda_dispatch.h 2025-08-26T20:45:21.8407464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_meta_dispatch.h 2025-08-26T20:45:21.8411451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_native.h 2025-08-26T20:45:21.8415242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_ops.h 2025-08-26T20:45:21.8419079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_async.h 2025-08-26T20:45:21.8422924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_async_cpu_dispatch.h 2025-08-26T20:45:21.8426571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_async_cuda_dispatch.h 2025-08-26T20:45:21.8430255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_async_native.h 2025-08-26T20:45:21.8434554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_async_ops.h 2025-08-26T20:45:21.8438426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_scalar.h 2025-08-26T20:45:21.8442300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_scalar_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.8446243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_scalar_native.h 2025-08-26T20:45:21.8450055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_scalar_ops.h 2025-08-26T20:45:21.8453876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_tensor_metadata.h 2025-08-26T20:45:21.8457920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_tensor_metadata_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.8462277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_tensor_metadata_meta_dispatch.h 2025-08-26T20:45:21.8466771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_tensor_metadata_native.h 2025-08-26T20:45:21.8470600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_tensor_metadata_ops.h 2025-08-26T20:45:21.8474478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_full_precision.h 2025-08-26T20:45:21.8478351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_full_precision_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.8482021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_full_precision_native.h 2025-08-26T20:45:21.8486094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_full_precision_ops.h 2025-08-26T20:45:21.8489966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_reduced_precision.h 2025-08-26T20:45:21.8493945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.8497935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_reduced_precision_native.h 2025-08-26T20:45:21.8501702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_reduced_precision_ops.h 2025-08-26T20:45:21.8505610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_backward.h 2025-08-26T20:45:21.8509525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.8513207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_backward_native.h 2025-08-26T20:45:21.8516889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_backward_ops.h 2025-08-26T20:45:21.8520629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index.h 2025-08-26T20:45:21.8524363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_backward.h 2025-08-26T20:45:21.8529037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.8533086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_backward_native.h 2025-08-26T20:45:21.8536894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_backward_ops.h 2025-08-26T20:45:21.8558561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.8562516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_native.h 2025-08-26T20:45:21.8566641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_ops.h 2025-08-26T20:45:21.8571001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_no_update.h 2025-08-26T20:45:21.8575037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_no_update_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.8578887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_no_update_native.h 2025-08-26T20:45:21.8582767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_no_update_ops.h 2025-08-26T20:45:21.8586586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update.h 2025-08-26T20:45:21.8590737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.8594949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update_cpu_dispatch.h 2025-08-26T20:45:21.8599021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update_cuda_dispatch.h 2025-08-26T20:45:21.8602925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update_native.h 2025-08-26T20:45:21.8606933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update_ops.h 2025-08-26T20:45:21.8610643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Byte.h 2025-08-26T20:45:21.8614715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Byte_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.8618602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Byte_native.h 2025-08-26T20:45:21.8622421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Byte_ops.h 2025-08-26T20:45:21.8626308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Char.h 2025-08-26T20:45:21.8630631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Char_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.8634383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Char_native.h 2025-08-26T20:45:21.8638292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Char_ops.h 2025-08-26T20:45:21.8642526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Double.h 2025-08-26T20:45:21.8647166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Double_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.8651073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Double_native.h 2025-08-26T20:45:21.8655492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Double_ops.h 2025-08-26T20:45:21.8659683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Float.h 2025-08-26T20:45:21.8664038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Float_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.8667753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Float_native.h 2025-08-26T20:45:21.8671897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Float_ops.h 2025-08-26T20:45:21.8675873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Half.h 2025-08-26T20:45:21.8679982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Half_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.8683697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Half_native.h 2025-08-26T20:45:21.8687512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Half_ops.h 2025-08-26T20:45:21.8691321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Int.h 2025-08-26T20:45:21.8695327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Int_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.8699080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Int_native.h 2025-08-26T20:45:21.8702826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Int_ops.h 2025-08-26T20:45:21.8706704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Long.h 2025-08-26T20:45:21.8710888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Long_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.8715585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Long_native.h 2025-08-26T20:45:21.8719470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Long_ops.h 2025-08-26T20:45:21.8724066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Short.h 2025-08-26T20:45:21.8728216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Short_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.8731955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Short_native.h 2025-08-26T20:45:21.8735892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Short_ops.h 2025-08-26T20:45:21.8740054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward.h 2025-08-26T20:45:21.8744048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.8747842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward_cpu_dispatch.h 2025-08-26T20:45:21.8751820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward_cuda_dispatch.h 2025-08-26T20:45:21.8757010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward_native.h 2025-08-26T20:45:21.8760785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward_ops.h 2025-08-26T20:45:21.8764868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward.h 2025-08-26T20:45:21.8769086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.8772910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward_cpu_dispatch.h 2025-08-26T20:45:21.8776914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward_cuda_dispatch.h 2025-08-26T20:45:21.8780696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward_native.h 2025-08-26T20:45:21.8784625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward_ops.h 2025-08-26T20:45:21.8788486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper.h 2025-08-26T20:45:21.8792467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.8796261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper_cpu_dispatch.h 2025-08-26T20:45:21.8799948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper_cuda_dispatch.h 2025-08-26T20:45:21.8803794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper_native.h 2025-08-26T20:45:21.8807697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper_ops.h 2025-08-26T20:45:21.8811513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_choose_qparams_per_tensor.h 2025-08-26T20:45:21.8815525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.8819168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_choose_qparams_per_tensor_native.h 2025-08-26T20:45:21.8822953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_choose_qparams_per_tensor_ops.h 2025-08-26T20:45:21.8827460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_chunk_cat.h 2025-08-26T20:45:21.8831209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_chunk_cat_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.8834937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_chunk_cat_cuda_dispatch.h 2025-08-26T20:45:21.8838897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_chunk_cat_native.h 2025-08-26T20:45:21.8843349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_chunk_cat_ops.h 2025-08-26T20:45:21.8847656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesce.h 2025-08-26T20:45:21.8851238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesced.h 2025-08-26T20:45:21.8855083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesced_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.8859160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesced_meta_dispatch.h 2025-08-26T20:45:21.8862847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesced_native.h 2025-08-26T20:45:21.8866614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesced_ops.h 2025-08-26T20:45:21.8870663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesce_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.8874405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesce_native.h 2025-08-26T20:45:21.8878287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesce_ops.h 2025-08-26T20:45:21.8901491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_compute_linear_combination.h 2025-08-26T20:45:21.8905454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_compute_linear_combination_cpu_dispatch.h 2025-08-26T20:45:21.8909225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_compute_linear_combination_cuda_dispatch.h 2025-08-26T20:45:21.8913091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_compute_linear_combination_native.h 2025-08-26T20:45:21.8916914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_compute_linear_combination_ops.h 2025-08-26T20:45:21.8920615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj.h 2025-08-26T20:45:21.8924217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.8928065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_copy.h 2025-08-26T20:45:21.8932090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.8935738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.8939815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_copy_native.h 2025-08-26T20:45:21.8943548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_copy_ops.h 2025-08-26T20:45:21.8947317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_native.h 2025-08-26T20:45:21.8951047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_ops.h 2025-08-26T20:45:21.8955039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_physical.h 2025-08-26T20:45:21.8958950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_physical_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.8962663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_physical_native.h 2025-08-26T20:45:21.8966741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_physical_ops.h 2025-08-26T20:45:21.8970618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr.h 2025-08-26T20:45:21.8974596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.8978678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_cpu_dispatch.h 2025-08-26T20:45:21.8982602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_cuda_dispatch.h 2025-08-26T20:45:21.8986590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_meta.h 2025-08-26T20:45:21.8990447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_meta_dispatch.h 2025-08-26T20:45:21.8994319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_native.h 2025-08-26T20:45:21.8998248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_ops.h 2025-08-26T20:45:21.9002118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo.h 2025-08-26T20:45:21.9006354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.9010427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_cpu_dispatch.h 2025-08-26T20:45:21.9014312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_cuda_dispatch.h 2025-08-26T20:45:21.9018557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_meta.h 2025-08-26T20:45:21.9022491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_meta_dispatch.h 2025-08-26T20:45:21.9026619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_native.h 2025-08-26T20:45:21.9030654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_ops.h 2025-08-26T20:45:21.9034453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack.h 2025-08-26T20:45:21.9038527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_cuda_dispatch.h 2025-08-26T20:45:21.9042416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu.h 2025-08-26T20:45:21.9046809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_cpu_dispatch.h 2025-08-26T20:45:21.9050948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_native.h 2025-08-26T20:45:21.9054743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_ops.h 2025-08-26T20:45:21.9058645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_native.h 2025-08-26T20:45:21.9062458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_ops.h 2025-08-26T20:45:21.9066667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution.h 2025-08-26T20:45:21.9070655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.9074766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9078476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_double_backward.h 2025-08-26T20:45:21.9082463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_double_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9086337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_double_backward_native.h 2025-08-26T20:45:21.9090216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_double_backward_ops.h 2025-08-26T20:45:21.9094052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_mode.h 2025-08-26T20:45:21.9098276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_mode_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9102249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_mode_native.h 2025-08-26T20:45:21.9124067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_mode_ops.h 2025-08-26T20:45:21.9128112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_native.h 2025-08-26T20:45:21.9132143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_ops.h 2025-08-26T20:45:21.9136123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conv_depthwise2d.h 2025-08-26T20:45:21.9139913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conv_depthwise2d_cuda_dispatch.h 2025-08-26T20:45:21.9143885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conv_depthwise2d_native.h 2025-08-26T20:45:21.9147861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conv_depthwise2d_ops.h 2025-08-26T20:45:21.9152214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from.h 2025-08-26T20:45:21.9156488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_and_resize.h 2025-08-26T20:45:21.9160467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_and_resize_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.9164340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_and_resize_native.h 2025-08-26T20:45:21.9168455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_and_resize_ops.h 2025-08-26T20:45:21.9172632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.9176698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_native.h 2025-08-26T20:45:21.9180819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_ops.h 2025-08-26T20:45:21.9185231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_compress.h 2025-08-26T20:45:21.9189055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_compress_cuda_dispatch.h 2025-08-26T20:45:21.9192824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_compress_native.h 2025-08-26T20:45:21.9196797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_compress_ops.h 2025-08-26T20:45:21.9200652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm.h 2025-08-26T20:45:21.9204685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_cuda_dispatch.h 2025-08-26T20:45:21.9209078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_native.h 2025-08-26T20:45:21.9213088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_ops.h 2025-08-26T20:45:21.9216952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_search.h 2025-08-26T20:45:21.9220956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_search_cuda_dispatch.h 2025-08-26T20:45:21.9225139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_search_native.h 2025-08-26T20:45:21.9228908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_search_ops.h 2025-08-26T20:45:21.9232765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss.h 2025-08-26T20:45:21.9236647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward.h 2025-08-26T20:45:21.9240599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.9244367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward_cpu_dispatch.h 2025-08-26T20:45:21.9248923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward_cuda_dispatch.h 2025-08-26T20:45:21.9253942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward_native.h 2025-08-26T20:45:21.9258913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward_ops.h 2025-08-26T20:45:21.9261616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.9265647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_cpu_dispatch.h 2025-08-26T20:45:21.9270821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_cuda_dispatch.h 2025-08-26T20:45:21.9274558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_meta_dispatch.h 2025-08-26T20:45:21.9278607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_native.h 2025-08-26T20:45:21.9282413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_ops.h 2025-08-26T20:45:21.9286348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_backward.h 2025-08-26T20:45:21.9290032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_backward_cuda_dispatch.h 2025-08-26T20:45:21.9294419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_backward_native.h 2025-08-26T20:45:21.9298288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_backward_ops.h 2025-08-26T20:45:21.9301997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_forward.h 2025-08-26T20:45:21.9306142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_forward_cuda_dispatch.h 2025-08-26T20:45:21.9309969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_forward_native.h 2025-08-26T20:45:21.9313854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_forward_ops.h 2025-08-26T20:45:21.9317729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_ctc_loss.h 2025-08-26T20:45:21.9321694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.9325680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_ctc_loss_cuda_dispatch.h 2025-08-26T20:45:21.9329748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_ctc_loss_native.h 2025-08-26T20:45:21.9333542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_ctc_loss_ops.h 2025-08-26T20:45:21.9337601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_init_dropout_state.h 2025-08-26T20:45:21.9341780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.9345658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_init_dropout_state_cuda_dispatch.h 2025-08-26T20:45:21.9349485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_init_dropout_state_native.h 2025-08-26T20:45:21.9353285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_init_dropout_state_ops.h 2025-08-26T20:45:21.9357347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn.h 2025-08-26T20:45:21.9361295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_backward.h 2025-08-26T20:45:21.9365439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.9369477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_backward_cuda_dispatch.h 2025-08-26T20:45:21.9373273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_backward_native.h 2025-08-26T20:45:21.9377100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_backward_ops.h 2025-08-26T20:45:21.9381209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.9385441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_cuda_dispatch.h 2025-08-26T20:45:21.9389227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_flatten_weight.h 2025-08-26T20:45:21.9394018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.9398002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_flatten_weight_cuda_dispatch.h 2025-08-26T20:45:21.9401753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_flatten_weight_native.h 2025-08-26T20:45:21.9405764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_flatten_weight_ops.h 2025-08-26T20:45:21.9409671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_native.h 2025-08-26T20:45:21.9413349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_ops.h 2025-08-26T20:45:21.9417031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_clear_plan_cache.h 2025-08-26T20:45:21.9421000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9424635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_clear_plan_cache_native.h 2025-08-26T20:45:21.9428511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_clear_plan_cache_ops.h 2025-08-26T20:45:21.9432723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_max_size.h 2025-08-26T20:45:21.9436841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_max_size_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9440769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_max_size_native.h 2025-08-26T20:45:21.9444722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_max_size_ops.h 2025-08-26T20:45:21.9448591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_size.h 2025-08-26T20:45:21.9452817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9456664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_size_native.h 2025-08-26T20:45:21.9460721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_size_ops.h 2025-08-26T20:45:21.9464478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_set_plan_cache_max_size.h 2025-08-26T20:45:21.9468605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_set_plan_cache_max_size_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9472620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_set_plan_cache_max_size_native.h 2025-08-26T20:45:21.9476447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_set_plan_cache_max_size_ops.h 2025-08-26T20:45:21.9480234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummax_helper.h 2025-08-26T20:45:21.9484298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummax_helper_cpu_dispatch.h 2025-08-26T20:45:21.9488223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummax_helper_cuda_dispatch.h 2025-08-26T20:45:21.9492086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummax_helper_native.h 2025-08-26T20:45:21.9496133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummax_helper_ops.h 2025-08-26T20:45:21.9500594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummin_helper.h 2025-08-26T20:45:21.9504667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummin_helper_cpu_dispatch.h 2025-08-26T20:45:21.9508377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummin_helper_cuda_dispatch.h 2025-08-26T20:45:21.9512281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummin_helper_native.h 2025-08-26T20:45:21.9516233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummin_helper_ops.h 2025-08-26T20:45:21.9520053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_debug_has_internal_overlap.h 2025-08-26T20:45:21.9524535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9528694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_debug_has_internal_overlap_native.h 2025-08-26T20:45:21.9532681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_debug_has_internal_overlap_ops.h 2025-08-26T20:45:21.9536480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimI.h 2025-08-26T20:45:21.9540537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimI_native.h 2025-08-26T20:45:21.9544364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimI_ops.h 2025-08-26T20:45:21.9548038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimV.h 2025-08-26T20:45:21.9551966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimV_native.h 2025-08-26T20:45:21.9555943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimV_ops.h 2025-08-26T20:45:21.9560312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dim_arange.h 2025-08-26T20:45:21.9564569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dim_arange_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9568348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dim_arange_native.h 2025-08-26T20:45:21.9572065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dim_arange_ops.h 2025-08-26T20:45:21.9575908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad.h 2025-08-26T20:45:21.9579906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.9583561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad_cpu_dispatch.h 2025-08-26T20:45:21.9587656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad_cuda_dispatch.h 2025-08-26T20:45:21.9591990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad_native.h 2025-08-26T20:45:21.9596075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad_ops.h 2025-08-26T20:45:21.9599805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_matmul_4bit.h 2025-08-26T20:45:21.9604042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_matmul_4bit_cpu_dispatch.h 2025-08-26T20:45:21.9608074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_matmul_4bit_native.h 2025-08-26T20:45:21.9612071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_matmul_4bit_ops.h 2025-08-26T20:45:21.9616501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_pack_4bit_weight.h 2025-08-26T20:45:21.9620884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_cpu_dispatch.h 2025-08-26T20:45:21.9624926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_native.h 2025-08-26T20:45:21.9628763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_ops.h 2025-08-26T20:45:21.9632644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor.h 2025-08-26T20:45:21.9636701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.9640616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_cpu_dispatch.h 2025-08-26T20:45:21.9644569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_cuda_dispatch.h 2025-08-26T20:45:21.9649228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_meta_dispatch.h 2025-08-26T20:45:21.9653523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_native.h 2025-08-26T20:45:21.9657275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_ops.h 2025-08-26T20:45:21.9661201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_backward.h 2025-08-26T20:45:21.9665411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_backward_cuda_dispatch.h 2025-08-26T20:45:21.9669915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_backward_native.h 2025-08-26T20:45:21.9673905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_backward_ops.h 2025-08-26T20:45:21.9677782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_forward.h 2025-08-26T20:45:21.9681735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_forward_cuda_dispatch.h 2025-08-26T20:45:21.9685918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_forward_native.h 2025-08-26T20:45:21.9690159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_forward_ops.h 2025-08-26T20:45:21.9694551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag.h 2025-08-26T20:45:21.9698282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_backward.h 2025-08-26T20:45:21.9702252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_backward_cpu_dispatch.h 2025-08-26T20:45:21.9706188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_backward_cuda_dispatch.h 2025-08-26T20:45:21.9710483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_backward_native.h 2025-08-26T20:45:21.9714609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_backward_ops.h 2025-08-26T20:45:21.9718978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.9722949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_cpu_dispatch.h 2025-08-26T20:45:21.9726955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_cuda_dispatch.h 2025-08-26T20:45:21.9730863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward.h 2025-08-26T20:45:21.9735391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.9739573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward_cpu_dispatch.h 2025-08-26T20:45:21.9743400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward_cuda_dispatch.h 2025-08-26T20:45:21.9747205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward_native.h 2025-08-26T20:45:21.9751323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward_ops.h 2025-08-26T20:45:21.9755149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only.h 2025-08-26T20:45:21.9759580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.9763681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only_cpu_dispatch.h 2025-08-26T20:45:21.9767892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only_cuda_dispatch.h 2025-08-26T20:45:21.9771746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only_native.h 2025-08-26T20:45:21.9775641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only_ops.h 2025-08-26T20:45:21.9779652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_native.h 2025-08-26T20:45:21.9783821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_ops.h 2025-08-26T20:45:21.9787808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward.h 2025-08-26T20:45:21.9792205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.9796168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_cpu_dispatch.h 2025-08-26T20:45:21.9800215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_cuda_dispatch.h 2025-08-26T20:45:21.9804723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_native.h 2025-08-26T20:45:21.9808684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_ops.h 2025-08-26T20:45:21.9812748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_sparse_backward.h 2025-08-26T20:45:21.9816824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9820677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_sparse_backward_native.h 2025-08-26T20:45:21.9824834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_sparse_backward_ops.h 2025-08-26T20:45:21.9828716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_affine_quantized.h 2025-08-26T20:45:21.9832614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_affine_quantized_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.9836276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_affine_quantized_cpu_dispatch.h 2025-08-26T20:45:21.9839991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_affine_quantized_native.h 2025-08-26T20:45:21.9843941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_affine_quantized_ops.h 2025-08-26T20:45:21.9848269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_per_channel_affine_quantized.h 2025-08-26T20:45:21.9852193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.9856021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_per_channel_affine_quantized_cpu_dispatch.h 2025-08-26T20:45:21.9859886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_per_channel_affine_quantized_native.h 2025-08-26T20:45:21.9863759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_per_channel_affine_quantized_ops.h 2025-08-26T20:45:21.9867755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_euclidean_dist.h 2025-08-26T20:45:21.9871697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_euclidean_dist_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.9875413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_euclidean_dist_native.h 2025-08-26T20:45:21.9879774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_euclidean_dist_ops.h 2025-08-26T20:45:21.9883752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine.h 2025-08-26T20:45:21.9887755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward.h 2025-08-26T20:45:21.9891850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_cpu_dispatch.h 2025-08-26T20:45:21.9896215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_cuda_dispatch.h 2025-08-26T20:45:21.9900268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_native.h 2025-08-26T20:45:21.9904213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_ops.h 2025-08-26T20:45:21.9908421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.9912711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_cpu_dispatch.h 2025-08-26T20:45:21.9916630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_cuda_dispatch.h 2025-08-26T20:45:21.9920535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_native.h 2025-08-26T20:45:21.9924610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_ops.h 2025-08-26T20:45:21.9928695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine.h 2025-08-26T20:45:21.9932617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward.h 2025-08-26T20:45:21.9936605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_cpu_dispatch.h 2025-08-26T20:45:21.9940591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_cuda_dispatch.h 2025-08-26T20:45:21.9960896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_native.h 2025-08-26T20:45:21.9965028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_ops.h 2025-08-26T20:45:21.9969225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.9973687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_cpu_dispatch.h 2025-08-26T20:45:21.9977729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_cuda_dispatch.h 2025-08-26T20:45:21.9981759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_native.h 2025-08-26T20:45:21.9985712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_ops.h 2025-08-26T20:45:21.9989658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams.h 2025-08-26T20:45:21.9993901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.9998051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cpu_dispatch.h 2025-08-26T20:45:22.0002692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cuda_dispatch.h 2025-08-26T20:45:22.0007266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_native.h 2025-08-26T20:45:22.0011302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_ops.h 2025-08-26T20:45:22.0015203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2c.h 2025-08-26T20:45:22.0019220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2c_cpu_dispatch.h 2025-08-26T20:45:22.0023193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2c_cuda_dispatch.h 2025-08-26T20:45:22.0026981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2c_native.h 2025-08-26T20:45:22.0030840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2c_ops.h 2025-08-26T20:45:22.0034693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2r.h 2025-08-26T20:45:22.0038301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2r_cpu_dispatch.h 2025-08-26T20:45:22.0042621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2r_cuda_dispatch.h 2025-08-26T20:45:22.0046794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2r_native.h 2025-08-26T20:45:22.0050764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2r_ops.h 2025-08-26T20:45:22.0054986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_r2c.h 2025-08-26T20:45:22.0058613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_r2c_cpu_dispatch.h 2025-08-26T20:45:22.0062299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_r2c_cuda_dispatch.h 2025-08-26T20:45:22.0066465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_r2c_native.h 2025-08-26T20:45:22.0070238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_r2c_ops.h 2025-08-26T20:45:22.0074134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fill_mem_eff_dropout_mask.h 2025-08-26T20:45:22.0078214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fill_mem_eff_dropout_mask_cuda_dispatch.h 2025-08-26T20:45:22.0082067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fill_mem_eff_dropout_mask_meta_dispatch.h 2025-08-26T20:45:22.0086044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fill_mem_eff_dropout_mask_native.h 2025-08-26T20:45:22.0090135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fill_mem_eff_dropout_mask_ops.h 2025-08-26T20:45:22.0094452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_backward.h 2025-08-26T20:45:22.0098679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_backward_cuda_dispatch.h 2025-08-26T20:45:22.0103119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_backward_native.h 2025-08-26T20:45:22.0107088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_backward_ops.h 2025-08-26T20:45:22.0111233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_forward.h 2025-08-26T20:45:22.0115319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_forward_cuda_dispatch.h 2025-08-26T20:45:22.0119155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_forward_native.h 2025-08-26T20:45:22.0123140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_forward_ops.h 2025-08-26T20:45:22.0127273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foobar.h 2025-08-26T20:45:22.0131024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foobar_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0134818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foobar_cpu_dispatch.h 2025-08-26T20:45:22.0138735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foobar_native.h 2025-08-26T20:45:22.0142405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foobar_ops.h 2025-08-26T20:45:22.0146227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_abs.h 2025-08-26T20:45:22.0150181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_abs_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0154050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_abs_cuda_dispatch.h 2025-08-26T20:45:22.0158009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_abs_native.h 2025-08-26T20:45:22.0161860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_abs_ops.h 2025-08-26T20:45:22.0165953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_acos.h 2025-08-26T20:45:22.0170404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_acos_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0174664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_acos_cuda_dispatch.h 2025-08-26T20:45:22.0178610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_acos_native.h 2025-08-26T20:45:22.0182560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_acos_ops.h 2025-08-26T20:45:22.0186369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_add.h 2025-08-26T20:45:22.0190615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcdiv.h 2025-08-26T20:45:22.0194521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcdiv_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0198616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcdiv_cuda_dispatch.h 2025-08-26T20:45:22.0202493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcdiv_native.h 2025-08-26T20:45:22.0206392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcdiv_ops.h 2025-08-26T20:45:22.0210660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcmul.h 2025-08-26T20:45:22.0215128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcmul_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0219081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcmul_cuda_dispatch.h 2025-08-26T20:45:22.0223003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcmul_native.h 2025-08-26T20:45:22.0227032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcmul_ops.h 2025-08-26T20:45:22.0230945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_add_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0234933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_add_cuda_dispatch.h 2025-08-26T20:45:22.0239559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_add_native.h 2025-08-26T20:45:22.0243313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_add_ops.h 2025-08-26T20:45:22.0247347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_asin.h 2025-08-26T20:45:22.0251710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_asin_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0255677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_asin_cuda_dispatch.h 2025-08-26T20:45:22.0259538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_asin_native.h 2025-08-26T20:45:22.0263654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_asin_ops.h 2025-08-26T20:45:22.0267472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_atan.h 2025-08-26T20:45:22.0271480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_atan_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0275948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_atan_cuda_dispatch.h 2025-08-26T20:45:22.0280297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_atan_native.h 2025-08-26T20:45:22.0284636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_atan_ops.h 2025-08-26T20:45:22.0288535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_ceil.h 2025-08-26T20:45:22.0292638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_ceil_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0296587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_ceil_cuda_dispatch.h 2025-08-26T20:45:22.0300342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_ceil_native.h 2025-08-26T20:45:22.0304113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_ceil_ops.h 2025-08-26T20:45:22.0308102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_max.h 2025-08-26T20:45:22.0312175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_max_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0315994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_max_cuda_dispatch.h 2025-08-26T20:45:22.0320052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_max_native.h 2025-08-26T20:45:22.0323923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_max_ops.h 2025-08-26T20:45:22.0327767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_min.h 2025-08-26T20:45:22.0331698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_min_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0335529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_min_cuda_dispatch.h 2025-08-26T20:45:22.0339574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_min_native.h 2025-08-26T20:45:22.0343699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_min_ops.h 2025-08-26T20:45:22.0347451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_copy.h 2025-08-26T20:45:22.0351434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0355178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_copy_cuda_dispatch.h 2025-08-26T20:45:22.0358999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_copy_native.h 2025-08-26T20:45:22.0362828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_copy_ops.h 2025-08-26T20:45:22.0366669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cos.h 2025-08-26T20:45:22.0370473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cosh.h 2025-08-26T20:45:22.0375293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cosh_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0379470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cosh_cuda_dispatch.h 2025-08-26T20:45:22.0383262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cosh_native.h 2025-08-26T20:45:22.0387161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cosh_ops.h 2025-08-26T20:45:22.0391201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cos_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0395236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cos_cuda_dispatch.h 2025-08-26T20:45:22.0399391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cos_native.h 2025-08-26T20:45:22.0403380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cos_ops.h 2025-08-26T20:45:22.0407260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_div.h 2025-08-26T20:45:22.0411125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_div_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0415164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_div_cuda_dispatch.h 2025-08-26T20:45:22.0419464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_div_native.h 2025-08-26T20:45:22.0423494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_div_ops.h 2025-08-26T20:45:22.0427274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erf.h 2025-08-26T20:45:22.0431663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erfc.h 2025-08-26T20:45:22.0435748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erfc_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0439543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erfc_cuda_dispatch.h 2025-08-26T20:45:22.0443523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erfc_native.h 2025-08-26T20:45:22.0448225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erfc_ops.h 2025-08-26T20:45:22.0452781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erf_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0456794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erf_cuda_dispatch.h 2025-08-26T20:45:22.0460946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erf_native.h 2025-08-26T20:45:22.0465310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erf_ops.h 2025-08-26T20:45:22.0469613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_exp.h 2025-08-26T20:45:22.0473377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_expm1.h 2025-08-26T20:45:22.0477467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_expm1_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0481403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_expm1_cuda_dispatch.h 2025-08-26T20:45:22.0485457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_expm1_native.h 2025-08-26T20:45:22.0490351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_expm1_ops.h 2025-08-26T20:45:22.0495140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_exp_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0499085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_exp_cuda_dispatch.h 2025-08-26T20:45:22.0502956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_exp_native.h 2025-08-26T20:45:22.0506838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_exp_ops.h 2025-08-26T20:45:22.0510749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_floor.h 2025-08-26T20:45:22.0514922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_floor_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0518920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_floor_cuda_dispatch.h 2025-08-26T20:45:22.0523233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_floor_native.h 2025-08-26T20:45:22.0527353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_floor_ops.h 2025-08-26T20:45:22.0531192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_frac.h 2025-08-26T20:45:22.0535248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_frac_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0539138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_frac_cuda_dispatch.h 2025-08-26T20:45:22.0543237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_frac_native.h 2025-08-26T20:45:22.0547237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_frac_ops.h 2025-08-26T20:45:22.0551451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lerp.h 2025-08-26T20:45:22.0555546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lerp_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0559384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lerp_cuda_dispatch.h 2025-08-26T20:45:22.0563695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lerp_native.h 2025-08-26T20:45:22.0567737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lerp_ops.h 2025-08-26T20:45:22.0571664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lgamma.h 2025-08-26T20:45:22.0575866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lgamma_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0580019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lgamma_cuda_dispatch.h 2025-08-26T20:45:22.0583720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lgamma_native.h 2025-08-26T20:45:22.0587650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lgamma_ops.h 2025-08-26T20:45:22.0591931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log.h 2025-08-26T20:45:22.0595861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log10.h 2025-08-26T20:45:22.0600649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log10_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0604774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log10_cuda_dispatch.h 2025-08-26T20:45:22.0609221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log10_native.h 2025-08-26T20:45:22.0613339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log10_ops.h 2025-08-26T20:45:22.0617255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log1p.h 2025-08-26T20:45:22.0621947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log1p_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0626472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log1p_cuda_dispatch.h 2025-08-26T20:45:22.0630774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log1p_native.h 2025-08-26T20:45:22.0635602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log1p_ops.h 2025-08-26T20:45:22.0639348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log2.h 2025-08-26T20:45:22.0643842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log2_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0648069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log2_cuda_dispatch.h 2025-08-26T20:45:22.0652141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log2_native.h 2025-08-26T20:45:22.0655890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log2_ops.h 2025-08-26T20:45:22.0660990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0665321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log_cuda_dispatch.h 2025-08-26T20:45:22.0669120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log_native.h 2025-08-26T20:45:22.0673052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log_ops.h 2025-08-26T20:45:22.0677538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_max.h 2025-08-26T20:45:22.0681475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_maximum.h 2025-08-26T20:45:22.0685531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_maximum_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0689931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_maximum_cuda_dispatch.h 2025-08-26T20:45:22.0694180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_maximum_native.h 2025-08-26T20:45:22.0697837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_maximum_ops.h 2025-08-26T20:45:22.0701857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_max_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0705708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_max_cuda_dispatch.h 2025-08-26T20:45:22.0710252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_max_native.h 2025-08-26T20:45:22.0714224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_max_ops.h 2025-08-26T20:45:22.0718310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_minimum.h 2025-08-26T20:45:22.0722717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_minimum_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0726419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_minimum_cuda_dispatch.h 2025-08-26T20:45:22.0730221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_minimum_native.h 2025-08-26T20:45:22.0733998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_minimum_ops.h 2025-08-26T20:45:22.0737901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_mul.h 2025-08-26T20:45:22.0742126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_mul_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0746309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_mul_cuda_dispatch.h 2025-08-26T20:45:22.0750318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_mul_native.h 2025-08-26T20:45:22.0754797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_mul_ops.h 2025-08-26T20:45:22.0758570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_neg.h 2025-08-26T20:45:22.0762595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_neg_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0766576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_neg_cuda_dispatch.h 2025-08-26T20:45:22.0770659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_neg_native.h 2025-08-26T20:45:22.0774527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_neg_ops.h 2025-08-26T20:45:22.0778447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_norm.h 2025-08-26T20:45:22.0782293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_norm_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0786331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_norm_cuda_dispatch.h 2025-08-26T20:45:22.0790153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_norm_native.h 2025-08-26T20:45:22.0793676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_norm_ops.h 2025-08-26T20:45:22.0797508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_pow.h 2025-08-26T20:45:22.0801438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_pow_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0805454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_pow_cuda_dispatch.h 2025-08-26T20:45:22.0815011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_pow_native.h 2025-08-26T20:45:22.0815647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_pow_ops.h 2025-08-26T20:45:22.0817927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_reciprocal.h 2025-08-26T20:45:22.0821938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_reciprocal_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0825803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_reciprocal_cuda_dispatch.h 2025-08-26T20:45:22.0844705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_reciprocal_native.h 2025-08-26T20:45:22.0848494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_reciprocal_ops.h 2025-08-26T20:45:22.0852218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_round.h 2025-08-26T20:45:22.0856091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_round_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0860195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_round_cuda_dispatch.h 2025-08-26T20:45:22.0864208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_round_native.h 2025-08-26T20:45:22.0868135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_round_ops.h 2025-08-26T20:45:22.0872069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_rsqrt.h 2025-08-26T20:45:22.0875907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_rsqrt_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0879619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_rsqrt_cuda_dispatch.h 2025-08-26T20:45:22.0883426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_rsqrt_native.h 2025-08-26T20:45:22.0887413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_rsqrt_ops.h 2025-08-26T20:45:22.0891597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sigmoid.h 2025-08-26T20:45:22.0895655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sigmoid_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0899458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sigmoid_cuda_dispatch.h 2025-08-26T20:45:22.0903310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sigmoid_native.h 2025-08-26T20:45:22.0907193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sigmoid_ops.h 2025-08-26T20:45:22.0910824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sign.h 2025-08-26T20:45:22.0914763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sign_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0918672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sign_cuda_dispatch.h 2025-08-26T20:45:22.0922438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sign_native.h 2025-08-26T20:45:22.0926182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sign_ops.h 2025-08-26T20:45:22.0929921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sin.h 2025-08-26T20:45:22.0934230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sinh.h 2025-08-26T20:45:22.0938244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sinh_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0941858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sinh_cuda_dispatch.h 2025-08-26T20:45:22.0945866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sinh_native.h 2025-08-26T20:45:22.0950131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sinh_ops.h 2025-08-26T20:45:22.0954052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sin_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0957819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sin_cuda_dispatch.h 2025-08-26T20:45:22.0961632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sin_native.h 2025-08-26T20:45:22.0965389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sin_ops.h 2025-08-26T20:45:22.0969200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sqrt.h 2025-08-26T20:45:22.0973235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sqrt_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0976942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sqrt_cuda_dispatch.h 2025-08-26T20:45:22.0980734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sqrt_native.h 2025-08-26T20:45:22.0984458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sqrt_ops.h 2025-08-26T20:45:22.0988160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sub.h 2025-08-26T20:45:22.0992085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sub_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0996246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sub_cuda_dispatch.h 2025-08-26T20:45:22.1000233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sub_native.h 2025-08-26T20:45:22.1004085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sub_ops.h 2025-08-26T20:45:22.1024703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tan.h 2025-08-26T20:45:22.1028515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tanh.h 2025-08-26T20:45:22.1032432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tanh_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1036259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tanh_cuda_dispatch.h 2025-08-26T20:45:22.1040160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tanh_native.h 2025-08-26T20:45:22.1044156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tanh_ops.h 2025-08-26T20:45:22.1048132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tan_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1053376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tan_cuda_dispatch.h 2025-08-26T20:45:22.1067588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tan_native.h 2025-08-26T20:45:22.1072715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tan_ops.h 2025-08-26T20:45:22.1077852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_trunc.h 2025-08-26T20:45:22.1083360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_trunc_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1089208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_trunc_cuda_dispatch.h 2025-08-26T20:45:22.1094447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_trunc_native.h 2025-08-26T20:45:22.1099654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_trunc_ops.h 2025-08-26T20:45:22.1104807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_zero.h 2025-08-26T20:45:22.1109172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_zero_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1114564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_zero_cuda_dispatch.h 2025-08-26T20:45:22.1119474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_zero_native.h 2025-08-26T20:45:22.1125002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_zero_ops.h 2025-08-26T20:45:22.1130352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_async.h 2025-08-26T20:45:22.1135500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_async_cpu_dispatch.h 2025-08-26T20:45:22.1140565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_async_native.h 2025-08-26T20:45:22.1144466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_async_ops.h 2025-08-26T20:45:22.1149596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_scalar.h 2025-08-26T20:45:22.1155149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_scalar_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1160363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_scalar_native.h 2025-08-26T20:45:22.1165691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_scalar_ops.h 2025-08-26T20:45:22.1170999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range.h 2025-08-26T20:45:22.1176657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1181989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_for_size.h 2025-08-26T20:45:22.1188662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1193934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_for_size_native.h 2025-08-26T20:45:22.1198037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_for_size_ops.h 2025-08-26T20:45:22.1203321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_native.h 2025-08-26T20:45:22.1208604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_ops.h 2025-08-26T20:45:22.1213949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad.h 2025-08-26T20:45:22.1219190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1224310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad_cpu_dispatch.h 2025-08-26T20:45:22.1229579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad_cuda_dispatch.h 2025-08-26T20:45:22.1235324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad_native.h 2025-08-26T20:45:22.1239409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad_ops.h 2025-08-26T20:45:22.1244807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam.h 2025-08-26T20:45:22.1249994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw.h 2025-08-26T20:45:22.1255922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1275231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw_cpu_dispatch.h 2025-08-26T20:45:22.1280675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw_cuda_dispatch.h 2025-08-26T20:45:22.1286453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw_native.h 2025-08-26T20:45:22.1291907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw_ops.h 2025-08-26T20:45:22.1296087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1301816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam_cpu_dispatch.h 2025-08-26T20:45:22.1305682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam_cuda_dispatch.h 2025-08-26T20:45:22.1311277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam_native.h 2025-08-26T20:45:22.1316386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam_ops.h 2025-08-26T20:45:22.1320537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_dropout.h 2025-08-26T20:45:22.1324760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_dropout_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1329516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_dropout_cuda_dispatch.h 2025-08-26T20:45:22.1333372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_dropout_native.h 2025-08-26T20:45:22.1337130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_dropout_ops.h 2025-08-26T20:45:22.1340997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper.h 2025-08-26T20:45:22.1345025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1348978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_cpu_dispatch.h 2025-08-26T20:45:22.1352982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_cuda_dispatch.h 2025-08-26T20:45:22.1357025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_native.h 2025-08-26T20:45:22.1361065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_ops.h 2025-08-26T20:45:22.1364875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm.h 2025-08-26T20:45:22.1368824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_backward.h 2025-08-26T20:45:22.1372794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_backward_cuda_dispatch.h 2025-08-26T20:45:22.1376973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_backward_native.h 2025-08-26T20:45:22.1380917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_backward_ops.h 2025-08-26T20:45:22.1384915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.1388635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_cuda_dispatch.h 2025-08-26T20:45:22.1392432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_native.h 2025-08-26T20:45:22.1396125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_ops.h 2025-08-26T20:45:22.1400730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice.h 2025-08-26T20:45:22.1404412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice_cpu_dispatch.h 2025-08-26T20:45:22.1409735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice_cuda_dispatch.h 2025-08-26T20:45:22.1413879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice_meta_dispatch.h 2025-08-26T20:45:22.1417785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice_native.h 2025-08-26T20:45:22.1421893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice_ops.h 2025-08-26T20:45:22.1425933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd.h 2025-08-26T20:45:22.1431534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1435517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd_cpu_dispatch.h 2025-08-26T20:45:22.1439332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd_cuda_dispatch.h 2025-08-26T20:45:22.1443519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd_native.h 2025-08-26T20:45:22.1447592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd_ops.h 2025-08-26T20:45:22.1451464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal.h 2025-08-26T20:45:22.1455267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1459394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_copy.h 2025-08-26T20:45:22.1463169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.1467000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1470762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_copy_native.h 2025-08-26T20:45:22.1474610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_copy_ops.h 2025-08-26T20:45:22.1478344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_native.h 2025-08-26T20:45:22.1482375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_ops.h 2025-08-26T20:45:22.1486434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_gather_sparse_backward.h 2025-08-26T20:45:22.1490390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_gather_sparse_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.1494153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_gather_sparse_backward_native.h 2025-08-26T20:45:22.1497892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_gather_sparse_backward_ops.h 2025-08-26T20:45:22.1501663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback.h 2025-08-26T20:45:22.1505883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward.h 2025-08-26T20:45:22.1509962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.1513917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_native.h 2025-08-26T20:45:22.1517666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_ops.h 2025-08-26T20:45:22.1521621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1526115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_native.h 2025-08-26T20:45:22.1530018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_ops.h 2025-08-26T20:45:22.1533794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grouped_mm.h 2025-08-26T20:45:22.1537644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grouped_mm_cuda_dispatch.h 2025-08-26T20:45:22.1541452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grouped_mm_native.h 2025-08-26T20:45:22.1545689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grouped_mm_ops.h 2025-08-26T20:45:22.1549235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_compatible_shallow_copy_type.h 2025-08-26T20:45:22.1553451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.1557143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_compatible_shallow_copy_type_native.h 2025-08-26T20:45:22.1560959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_compatible_shallow_copy_type_ops.h 2025-08-26T20:45:22.1564865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_same_storage_numel.h 2025-08-26T20:45:22.1569205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_same_storage_numel_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1573384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_same_storage_numel_native.h 2025-08-26T20:45:22.1577534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_same_storage_numel_ops.h 2025-08-26T20:45:22.1581500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_bin_edges.h 2025-08-26T20:45:22.1585251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1589306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_bin_edges_cpu_dispatch.h 2025-08-26T20:45:22.1593168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_bin_edges_native.h 2025-08-26T20:45:22.1597535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_bin_edges_ops.h 2025-08-26T20:45:22.1601455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_cts.h 2025-08-26T20:45:22.1605991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1610153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_cts_cpu_dispatch.h 2025-08-26T20:45:22.1614421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_cts_native.h 2025-08-26T20:45:22.1618386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_cts_ops.h 2025-08-26T20:45:22.1623240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_tensors.h 2025-08-26T20:45:22.1627453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1631401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_tensors_cpu_dispatch.h 2025-08-26T20:45:22.1635401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_tensors_native.h 2025-08-26T20:45:22.1639294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_tensors_ops.h 2025-08-26T20:45:22.1643172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl.h 2025-08-26T20:45:22.1647369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1651770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_cpu_dispatch.h 2025-08-26T20:45:22.1655693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_cuda_dispatch.h 2025-08-26T20:45:22.1659408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_meta_dispatch.h 2025-08-26T20:45:22.1663761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_native.h 2025-08-26T20:45:22.1667662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_ops.h 2025-08-26T20:45:22.1671712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices.h 2025-08-26T20:45:22.1675437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_copy.h 2025-08-26T20:45:22.1679459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.1683755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1687471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_copy_native.h 2025-08-26T20:45:22.1691797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_copy_ops.h 2025-08-26T20:45:22.1696130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_native.h 2025-08-26T20:45:22.1700243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_ops.h 2025-08-26T20:45:22.1704168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_int_mm.h 2025-08-26T20:45:22.1708618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_int_mm_cpu_dispatch.h 2025-08-26T20:45:22.1712570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_int_mm_cuda_dispatch.h 2025-08-26T20:45:22.1716474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_int_mm_native.h 2025-08-26T20:45:22.1720503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_int_mm_ops.h 2025-08-26T20:45:22.1723964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_all_true.h 2025-08-26T20:45:22.1728589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_all_true_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1732506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_all_true_native.h 2025-08-26T20:45:22.1736338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_all_true_ops.h 2025-08-26T20:45:22.1740214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_any_true.h 2025-08-26T20:45:22.1744115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_any_true_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1747798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_any_true_native.h 2025-08-26T20:45:22.1751562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_any_true_ops.h 2025-08-26T20:45:22.1755771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_zerotensor.h 2025-08-26T20:45:22.1760151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_zerotensor_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.1764310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_zerotensor_native.h 2025-08-26T20:45:22.1768224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_zerotensor_ops.h 2025-08-26T20:45:22.1772097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_jagged_to_padded_dense_forward.h 2025-08-26T20:45:22.1776173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_jagged_to_padded_dense_forward_cpu_dispatch.h 2025-08-26T20:45:22.1780203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_jagged_to_padded_dense_forward_cuda_dispatch.h 2025-08-26T20:45:22.1784535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_jagged_to_padded_dense_forward_native.h 2025-08-26T20:45:22.1788685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_jagged_to_padded_dense_forward_ops.h 2025-08-26T20:45:22.1793067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lazy_clone.h 2025-08-26T20:45:22.1796876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lazy_clone_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1800644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lazy_clone_native.h 2025-08-26T20:45:22.1804424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lazy_clone_ops.h 2025-08-26T20:45:22.1808279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_check_errors.h 2025-08-26T20:45:22.1812583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_check_errors_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1816565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_check_errors_native.h 2025-08-26T20:45:22.1820185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_check_errors_ops.h 2025-08-26T20:45:22.1824235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det.h 2025-08-26T20:45:22.1828837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.1832587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_cpu_dispatch.h 2025-08-26T20:45:22.1836540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_cuda_dispatch.h 2025-08-26T20:45:22.1840550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_meta.h 2025-08-26T20:45:22.1844386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_meta_dispatch.h 2025-08-26T20:45:22.1848176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_native.h 2025-08-26T20:45:22.1852011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_ops.h 2025-08-26T20:45:22.1855688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh.h 2025-08-26T20:45:22.1860185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.1863996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_cpu_dispatch.h 2025-08-26T20:45:22.1867902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_cuda_dispatch.h 2025-08-26T20:45:22.1871773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_meta.h 2025-08-26T20:45:22.1875899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_meta_dispatch.h 2025-08-26T20:45:22.1879666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_native.h 2025-08-26T20:45:22.1883356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_ops.h 2025-08-26T20:45:22.1887189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigvals.h 2025-08-26T20:45:22.1891005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigvals_cpu_dispatch.h 2025-08-26T20:45:22.1895011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigvals_cuda_dispatch.h 2025-08-26T20:45:22.1898716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigvals_native.h 2025-08-26T20:45:22.1902456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigvals_ops.h 2025-08-26T20:45:22.1906177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet.h 2025-08-26T20:45:22.1910142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.1913853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_cpu_dispatch.h 2025-08-26T20:45:22.1918008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_cuda_dispatch.h 2025-08-26T20:45:22.1921760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_meta.h 2025-08-26T20:45:22.1925599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_meta_dispatch.h 2025-08-26T20:45:22.1929786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_native.h 2025-08-26T20:45:22.1933453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_ops.h 2025-08-26T20:45:22.1937290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex.h 2025-08-26T20:45:22.1941273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.1945136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_cpu_dispatch.h 2025-08-26T20:45:22.1949032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_cuda_dispatch.h 2025-08-26T20:45:22.1952687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_meta.h 2025-08-26T20:45:22.1956509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_meta_dispatch.h 2025-08-26T20:45:22.1960627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_native.h 2025-08-26T20:45:22.1964821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_ops.h 2025-08-26T20:45:22.1968930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd.h 2025-08-26T20:45:22.1972875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.1976682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_cpu_dispatch.h 2025-08-26T20:45:22.1980476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_cuda_dispatch.h 2025-08-26T20:45:22.1984208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_meta.h 2025-08-26T20:45:22.1987931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_meta_dispatch.h 2025-08-26T20:45:22.1991600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_native.h 2025-08-26T20:45:22.1995547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_ops.h 2025-08-26T20:45:22.1999315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_local_scalar_dense.h 2025-08-26T20:45:22.2003110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_local_scalar_dense_cpu_dispatch.h 2025-08-26T20:45:22.2006843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_local_scalar_dense_cuda_dispatch.h 2025-08-26T20:45:22.2010597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_local_scalar_dense_native.h 2025-08-26T20:45:22.2014325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_local_scalar_dense_ops.h 2025-08-26T20:45:22.2018058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_logcumsumexp.h 2025-08-26T20:45:22.2022017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_logcumsumexp_cpu_dispatch.h 2025-08-26T20:45:22.2025742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_logcumsumexp_cuda_dispatch.h 2025-08-26T20:45:22.2029408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_logcumsumexp_native.h 2025-08-26T20:45:22.2033838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_logcumsumexp_ops.h 2025-08-26T20:45:22.2037551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax.h 2025-08-26T20:45:22.2041307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data.h 2025-08-26T20:45:22.2045289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.2049296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_cpu_dispatch.h 2025-08-26T20:45:22.2053697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_cuda_dispatch.h 2025-08-26T20:45:22.2057477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_meta.h 2025-08-26T20:45:22.2061366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_meta_dispatch.h 2025-08-26T20:45:22.2065194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_native.h 2025-08-26T20:45:22.2069275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_ops.h 2025-08-26T20:45:22.2073255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.2077286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_cpu_dispatch.h 2025-08-26T20:45:22.2080959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_cuda_dispatch.h 2025-08-26T20:45:22.2084884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_meta.h 2025-08-26T20:45:22.2088819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_meta_dispatch.h 2025-08-26T20:45:22.2093232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_native.h 2025-08-26T20:45:22.2097527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_ops.h 2025-08-26T20:45:22.2101298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lstm_mps.h 2025-08-26T20:45:22.2105340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lstm_mps_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2109081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lstm_mps_native.h 2025-08-26T20:45:22.2112681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lstm_mps_ops.h 2025-08-26T20:45:22.2116793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lu_with_info.h 2025-08-26T20:45:22.2120773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lu_with_info_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.2140398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lu_with_info_native.h 2025-08-26T20:45:22.2144863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lu_with_info_ops.h 2025-08-26T20:45:22.2148851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dep_token.h 2025-08-26T20:45:22.2153051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dep_token_cpu_dispatch.h 2025-08-26T20:45:22.2157050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dep_token_native.h 2025-08-26T20:45:22.2161879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dep_token_ops.h 2025-08-26T20:45:22.2165935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual.h 2025-08-26T20:45:22.2170120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2174146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_copy.h 2025-08-26T20:45:22.2178322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.2182287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2186258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_copy_native.h 2025-08-26T20:45:22.2190509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_copy_ops.h 2025-08-26T20:45:22.2194531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_native.h 2025-08-26T20:45:22.2198412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_ops.h 2025-08-26T20:45:22.2203269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor.h 2025-08-26T20:45:22.2207490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2211433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor_cpu_dispatch.h 2025-08-26T20:45:22.2215479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor_cuda_dispatch.h 2025-08-26T20:45:22.2219632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor_native.h 2025-08-26T20:45:22.2223741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor_ops.h 2025-08-26T20:45:22.2227567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor.h 2025-08-26T20:45:22.2232071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2236104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_cpu_dispatch.h 2025-08-26T20:45:22.2240384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_cuda_dispatch.h 2025-08-26T20:45:22.2244302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_native.h 2025-08-26T20:45:22.2249164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_ops.h 2025-08-26T20:45:22.2253451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_scale.h 2025-08-26T20:45:22.2257818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_scale_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2273308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_scale_cuda_dispatch.h 2025-08-26T20:45:22.2273996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_scale_native.h 2025-08-26T20:45:22.2274622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_scale_ops.h 2025-08-26T20:45:22.2275378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax.h 2025-08-26T20:45:22.2279580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward.h 2025-08-26T20:45:22.2283455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2287586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward_cpu_dispatch.h 2025-08-26T20:45:22.2291758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward_cuda_dispatch.h 2025-08-26T20:45:22.2295580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward_native.h 2025-08-26T20:45:22.2299699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward_ops.h 2025-08-26T20:45:22.2303709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2307743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_cpu_dispatch.h 2025-08-26T20:45:22.2311511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_cuda_dispatch.h 2025-08-26T20:45:22.2315592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_native.h 2025-08-26T20:45:22.2319422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_ops.h 2025-08-26T20:45:22.2323204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mixed_dtypes_linear.h 2025-08-26T20:45:22.2327550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mixed_dtypes_linear_cuda_dispatch.h 2025-08-26T20:45:22.2331271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mixed_dtypes_linear_native.h 2025-08-26T20:45:22.2334933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mixed_dtypes_linear_ops.h 2025-08-26T20:45:22.2338661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_reshape.h 2025-08-26T20:45:22.2342775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_reshape_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2346516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_reshape_native.h 2025-08-26T20:45:22.2351210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_reshape_ops.h 2025-08-26T20:45:22.2355125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_transpose.h 2025-08-26T20:45:22.2359180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_transpose_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2362859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_transpose_meta_dispatch.h 2025-08-26T20:45:22.2366816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_transpose_native.h 2025-08-26T20:45:22.2370839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_transpose_ops.h 2025-08-26T20:45:22.2374677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution.h 2025-08-26T20:45:22.2378543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2382204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_native.h 2025-08-26T20:45:22.2385976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_ops.h 2025-08-26T20:45:22.2390031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_transpose.h 2025-08-26T20:45:22.2394115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_transpose_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2397784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_transpose_native.h 2025-08-26T20:45:22.2401600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_transpose_ops.h 2025-08-26T20:45:22.2405421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit.h 2025-08-26T20:45:22.2409330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2413166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_cpu_dispatch.h 2025-08-26T20:45:22.2417184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_cuda_dispatch.h 2025-08-26T20:45:22.2420999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_native.h 2025-08-26T20:45:22.2424957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_no_training.h 2025-08-26T20:45:22.2429037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_no_training_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2432922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_no_training_native.h 2025-08-26T20:45:22.2436927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_no_training_ops.h 2025-08-26T20:45:22.2441111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_ops.h 2025-08-26T20:45:22.2445382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention.h 2025-08-26T20:45:22.2449539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2453394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention_cpu_dispatch.h 2025-08-26T20:45:22.2457349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention_cuda_dispatch.h 2025-08-26T20:45:22.2461306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention_native.h 2025-08-26T20:45:22.2465138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention_ops.h 2025-08-26T20:45:22.2468822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view.h 2025-08-26T20:45:22.2472637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2476269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_copy.h 2025-08-26T20:45:22.2481450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.2484453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2488385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_copy_native.h 2025-08-26T20:45:22.2492090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_copy_ops.h 2025-08-26T20:45:22.2495823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_native.h 2025-08-26T20:45:22.2499959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_ops.h 2025-08-26T20:45:22.2503854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets.h 2025-08-26T20:45:22.2507796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_cpu_dispatch.h 2025-08-26T20:45:22.2511614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_cuda_dispatch.h 2025-08-26T20:45:22.2515473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_native.h 2025-08-26T20:45:22.2519328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_ops.h 2025-08-26T20:45:22.2523794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded.h 2025-08-26T20:45:22.2528407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_and_nested_example.h 2025-08-26T20:45:22.2532984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_and_nested_example_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2537251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_and_nested_example_native.h 2025-08-26T20:45:22.2541114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_and_nested_example_ops.h 2025-08-26T20:45:22.2545114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2549069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_cpu_dispatch.h 2025-08-26T20:45:22.2552996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_cuda_dispatch.h 2025-08-26T20:45:22.2556846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_native.h 2025-08-26T20:45:22.2560651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_ops.h 2025-08-26T20:45:22.2564546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_tensor.h 2025-08-26T20:45:22.2568729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_tensor_native.h 2025-08-26T20:45:22.2572928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_tensor_ops.h 2025-08-26T20:45:22.2576907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_jagged_dummy.h 2025-08-26T20:45:22.2581213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_jagged_dummy_native.h 2025-08-26T20:45:22.2585291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_jagged_dummy_ops.h 2025-08-26T20:45:22.2589090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_lengths.h 2025-08-26T20:45:22.2593089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_lengths_native.h 2025-08-26T20:45:22.2597020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_lengths_ops.h 2025-08-26T20:45:22.2601207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_max_seqlen.h 2025-08-26T20:45:22.2605281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_max_seqlen_native.h 2025-08-26T20:45:22.2609155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_max_seqlen_ops.h 2025-08-26T20:45:22.2613172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_min_seqlen.h 2025-08-26T20:45:22.2617087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_min_seqlen_native.h 2025-08-26T20:45:22.2621160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_min_seqlen_ops.h 2025-08-26T20:45:22.2625633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_offsets.h 2025-08-26T20:45:22.2629681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_offsets_native.h 2025-08-26T20:45:22.2633837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_offsets_ops.h 2025-08-26T20:45:22.2638196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_ragged_idx.h 2025-08-26T20:45:22.2642726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_ragged_idx_native.h 2025-08-26T20:45:22.2646618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_ragged_idx_ops.h 2025-08-26T20:45:22.2650529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values.h 2025-08-26T20:45:22.2654445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_copy.h 2025-08-26T20:45:22.2658766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.2662877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2667336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_copy_native.h 2025-08-26T20:45:22.2671362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_copy_ops.h 2025-08-26T20:45:22.2675790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_native.h 2025-08-26T20:45:22.2679820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_ops.h 2025-08-26T20:45:22.2684149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_select_backward.h 2025-08-26T20:45:22.2688328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_select_backward_native.h 2025-08-26T20:45:22.2692222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_select_backward_ops.h 2025-08-26T20:45:22.2696422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_sum_backward.h 2025-08-26T20:45:22.2700533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_sum_backward_native.h 2025-08-26T20:45:22.2704372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_sum_backward_ops.h 2025-08-26T20:45:22.2708452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask.h 2025-08-26T20:45:22.2713000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2717070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_cpu_dispatch.h 2025-08-26T20:45:22.2721324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_cuda_dispatch.h 2025-08-26T20:45:22.2725449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned.h 2025-08-26T20:45:22.2729547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_cpu_dispatch.h 2025-08-26T20:45:22.2733889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_cuda_dispatch.h 2025-08-26T20:45:22.2737801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_native.h 2025-08-26T20:45:22.2742838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_ops.h 2025-08-26T20:45:22.2746779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_native.h 2025-08-26T20:45:22.2750687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_ops.h 2025-08-26T20:45:22.2754831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_tensor_list.h 2025-08-26T20:45:22.2759057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2763180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_tensor_list_native.h 2025-08-26T20:45:22.2767545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_tensor_list_ops.h 2025-08-26T20:45:22.2771589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_size.h 2025-08-26T20:45:22.2775932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_size_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2780128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_size_native.h 2025-08-26T20:45:22.2783952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_size_ops.h 2025-08-26T20:45:22.2788078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_softmax_with_shape.h 2025-08-26T20:45:22.2792193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_softmax_with_shape_native.h 2025-08-26T20:45:22.2796134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_softmax_with_shape_ops.h 2025-08-26T20:45:22.2800109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_storage_offsets.h 2025-08-26T20:45:22.2804680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2808608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_storage_offsets_native.h 2025-08-26T20:45:22.2812530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_storage_offsets_ops.h 2025-08-26T20:45:22.2816840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_strides.h 2025-08-26T20:45:22.2820931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_strides_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2824991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_strides_native.h 2025-08-26T20:45:22.2828894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_strides_ops.h 2025-08-26T20:45:22.2832763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer.h 2025-08-26T20:45:22.2837072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_copy.h 2025-08-26T20:45:22.2841261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.2845264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2849268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_copy_native.h 2025-08-26T20:45:22.2853409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_copy_ops.h 2025-08-26T20:45:22.2857715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_cpu_dispatch.h 2025-08-26T20:45:22.2861756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_cuda_dispatch.h 2025-08-26T20:45:22.2865683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_native.h 2025-08-26T20:45:22.2869708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_ops.h 2025-08-26T20:45:22.2873562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged.h 2025-08-26T20:45:22.2877445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_copy.h 2025-08-26T20:45:22.2881803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.2885844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2889884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_copy_native.h 2025-08-26T20:45:22.2893700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_copy_ops.h 2025-08-26T20:45:22.2897533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_native.h 2025-08-26T20:45:22.2901338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_ops.h 2025-08-26T20:45:22.2905244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_new_zeros_with_same_feature_meta.h 2025-08-26T20:45:22.2909545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_new_zeros_with_same_feature_meta_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2913419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_new_zeros_with_same_feature_meta_native.h 2025-08-26T20:45:22.2917386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_new_zeros_with_same_feature_meta_ops.h 2025-08-26T20:45:22.2921288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_available.h 2025-08-26T20:45:22.2926012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_available_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.2929809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_available_native.h 2025-08-26T20:45:22.2934620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_available_ops.h 2025-08-26T20:45:22.2938254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_spatial_convolution.h 2025-08-26T20:45:22.2942724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2946792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_spatial_convolution_native.h 2025-08-26T20:45:22.2950753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_spatial_convolution_ops.h 2025-08-26T20:45:22.2954723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnz.h 2025-08-26T20:45:22.2958450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnz_native.h 2025-08-26T20:45:22.2962347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnz_ops.h 2025-08-26T20:45:22.2966030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence.h 2025-08-26T20:45:22.2970284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_backward.h 2025-08-26T20:45:22.2974263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.2978041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_backward_native.h 2025-08-26T20:45:22.2982186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_backward_ops.h 2025-08-26T20:45:22.2986555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2990566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_native.h 2025-08-26T20:45:22.2994429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_ops.h 2025-08-26T20:45:22.2998483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_padded_dense_to_jagged_forward.h 2025-08-26T20:45:22.3002686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_padded_dense_to_jagged_forward_cpu_dispatch.h 2025-08-26T20:45:22.3006695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_padded_dense_to_jagged_forward_cuda_dispatch.h 2025-08-26T20:45:22.3010843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_padded_dense_to_jagged_forward_native.h 2025-08-26T20:45:22.3014871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_padded_dense_to_jagged_forward_ops.h 2025-08-26T20:45:22.3018670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_circular.h 2025-08-26T20:45:22.3023103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_circular_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.3026932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_circular_native.h 2025-08-26T20:45:22.3045576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_circular_ops.h 2025-08-26T20:45:22.3049686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_enum.h 2025-08-26T20:45:22.3053496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_enum_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.3057268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_enum_native.h 2025-08-26T20:45:22.3061050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_enum_ops.h 2025-08-26T20:45:22.3064875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_packed_sequence.h 2025-08-26T20:45:22.3068938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_packed_sequence_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.3073876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_packed_sequence_native.h 2025-08-26T20:45:22.3078263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_packed_sequence_ops.h 2025-08-26T20:45:22.3082076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward.h 2025-08-26T20:45:22.3086139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3090296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward_cpu_dispatch.h 2025-08-26T20:45:22.3093771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward_cuda_dispatch.h 2025-08-26T20:45:22.3097656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward_native.h 2025-08-26T20:45:22.3101596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward_ops.h 2025-08-26T20:45:22.3105605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward.h 2025-08-26T20:45:22.3109890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3113921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward_cpu_dispatch.h 2025-08-26T20:45:22.3118012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward_cuda_dispatch.h 2025-08-26T20:45:22.3121794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward_native.h 2025-08-26T20:45:22.3125720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward_ops.h 2025-08-26T20:45:22.3129723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pin_memory.h 2025-08-26T20:45:22.3133783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pin_memory_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3137777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pin_memory_native.h 2025-08-26T20:45:22.3141939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pin_memory_ops.h 2025-08-26T20:45:22.3145770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel.h 2025-08-26T20:45:22.3149667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_backward.h 2025-08-26T20:45:22.3153539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_backward_cpu_dispatch.h 2025-08-26T20:45:22.3157451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_backward_cuda_dispatch.h 2025-08-26T20:45:22.3161452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_backward_native.h 2025-08-26T20:45:22.3165871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_backward_ops.h 2025-08-26T20:45:22.3169835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_cpu_dispatch.h 2025-08-26T20:45:22.3173647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_cuda_dispatch.h 2025-08-26T20:45:22.3177581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_native.h 2025-08-26T20:45:22.3181578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_ops.h 2025-08-26T20:45:22.3185376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_print.h 2025-08-26T20:45:22.3189656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_print_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3211599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_print_native.h 2025-08-26T20:45:22.3215562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_print_ops.h 2025-08-26T20:45:22.3219752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_propagate_xla_data.h 2025-08-26T20:45:22.3224076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_propagate_xla_data_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.3228005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_propagate_xla_data_native.h 2025-08-26T20:45:22.3231719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_propagate_xla_data_ops.h 2025-08-26T20:45:22.3235910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_remove_batch_dim.h 2025-08-26T20:45:22.3240532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_remove_batch_dim_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.3244447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_remove_batch_dim_native.h 2025-08-26T20:45:22.3248306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_remove_batch_dim_ops.h 2025-08-26T20:45:22.3252397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias.h 2025-08-26T20:45:22.3256161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_copy.h 2025-08-26T20:45:22.3260130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.3264715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3268526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_copy_native.h 2025-08-26T20:45:22.3272394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_copy_ops.h 2025-08-26T20:45:22.3276314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_cpu_dispatch.h 2025-08-26T20:45:22.3280422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_cuda_dispatch.h 2025-08-26T20:45:22.3284574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_meta_dispatch.h 2025-08-26T20:45:22.3288268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_native.h 2025-08-26T20:45:22.3292142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_ops.h 2025-08-26T20:45:22.3295801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_copy.h 2025-08-26T20:45:22.3299747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3303502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_copy_native.h 2025-08-26T20:45:22.3307238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_copy_ops.h 2025-08-26T20:45:22.3311877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_from_tensor.h 2025-08-26T20:45:22.3315670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_from_tensor_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.3319405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_from_tensor_native.h 2025-08-26T20:45:22.3323276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_from_tensor_ops.h 2025-08-26T20:45:22.3327254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_resize_output.h 2025-08-26T20:45:22.3331136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_resize_output_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3334857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_resize_output_meta_dispatch.h 2025-08-26T20:45:22.3338964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_resize_output_native.h 2025-08-26T20:45:22.3342787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_resize_output_ops.h 2025-08-26T20:45:22.3346626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_rowwise_prune.h 2025-08-26T20:45:22.3350443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_rowwise_prune_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.3354119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_rowwise_prune_native.h 2025-08-26T20:45:22.3358026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_rowwise_prune_ops.h 2025-08-26T20:45:22.3362068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_safe_softmax.h 2025-08-26T20:45:22.3366990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_safe_softmax_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3370947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_safe_softmax_native.h 2025-08-26T20:45:22.3374787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_safe_softmax_ops.h 2025-08-26T20:45:22.3378830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet.h 2025-08-26T20:45:22.3382869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3386779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet_cpu_dispatch.h 2025-08-26T20:45:22.3390943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet_cuda_dispatch.h 2025-08-26T20:45:22.3395023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet_native.h 2025-08-26T20:45:22.3399151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet_ops.h 2025-08-26T20:45:22.3403592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_saturate_weight_to_fp16.h 2025-08-26T20:45:22.3407672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.3412932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_saturate_weight_to_fp16_native.h 2025-08-26T20:45:22.3416933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_saturate_weight_to_fp16_ops.h 2025-08-26T20:45:22.3420914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math.h 2025-08-26T20:45:22.3424963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.3428962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps.h 2025-08-26T20:45:22.3433235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps_native.h 2025-08-26T20:45:22.3437229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps_ops.h 2025-08-26T20:45:22.3441345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_native.h 2025-08-26T20:45:22.3445195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_ops.h 2025-08-26T20:45:22.3449104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention.h 2025-08-26T20:45:22.3453041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward.h 2025-08-26T20:45:22.3457028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_cuda_dispatch.h 2025-08-26T20:45:22.3462402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_native.h 2025-08-26T20:45:22.3466619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_ops.h 2025-08-26T20:45:22.3470705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_cuda_dispatch.h 2025-08-26T20:45:22.3474860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_native.h 2025-08-26T20:45:22.3478815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_ops.h 2025-08-26T20:45:22.3482882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention.h 2025-08-26T20:45:22.3487082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward.h 2025-08-26T20:45:22.3491094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_cuda_dispatch.h 2025-08-26T20:45:22.3495054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_native.h 2025-08-26T20:45:22.3499299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_ops.h 2025-08-26T20:45:22.3503513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_cuda_dispatch.h 2025-08-26T20:45:22.3507495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_native.h 2025-08-26T20:45:22.3511489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_ops.h 2025-08-26T20:45:22.3515303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention.h 2025-08-26T20:45:22.3519231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward.h 2025-08-26T20:45:22.3523205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_cuda_dispatch.h 2025-08-26T20:45:22.3527183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_native.h 2025-08-26T20:45:22.3531184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_ops.h 2025-08-26T20:45:22.3535126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_cuda_dispatch.h 2025-08-26T20:45:22.3539419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu.h 2025-08-26T20:45:22.3543893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward.h 2025-08-26T20:45:22.3547963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward_cpu_dispatch.h 2025-08-26T20:45:22.3551941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward_native.h 2025-08-26T20:45:22.3555772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward_ops.h 2025-08-26T20:45:22.3559915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_cpu_dispatch.h 2025-08-26T20:45:22.3563791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_native.h 2025-08-26T20:45:22.3567783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_ops.h 2025-08-26T20:45:22.3571669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_native.h 2025-08-26T20:45:22.3575633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_ops.h 2025-08-26T20:45:22.3579767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable.h 2025-08-26T20:45:22.3583816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward.h 2025-08-26T20:45:22.3588324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3592673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward_native.h 2025-08-26T20:45:22.3596524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward_ops.h 2025-08-26T20:45:22.3600797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3604692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_native.h 2025-08-26T20:45:22.3608766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_ops.h 2025-08-26T20:45:22.3612602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_grouped_mm.h 2025-08-26T20:45:22.3616766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_grouped_mm_cuda_dispatch.h 2025-08-26T20:45:22.3621079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_grouped_mm_native.h 2025-08-26T20:45:22.3625038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_grouped_mm_ops.h 2025-08-26T20:45:22.3628860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_mm.h 2025-08-26T20:45:22.3632720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_mm_cpu_dispatch.h 2025-08-26T20:45:22.3636462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_mm_cuda_dispatch.h 2025-08-26T20:45:22.3640427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_mm_native.h 2025-08-26T20:45:22.3644491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_mm_ops.h 2025-08-26T20:45:22.3648832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward.h 2025-08-26T20:45:22.3652917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3656659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward_cpu_dispatch.h 2025-08-26T20:45:22.3660793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward_cuda_dispatch.h 2025-08-26T20:45:22.3664563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward_native.h 2025-08-26T20:45:22.3668795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward_ops.h 2025-08-26T20:45:22.3672756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_shape_as_tensor.h 2025-08-26T20:45:22.3677152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_shape_as_tensor_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.3681029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_shape_as_tensor_native.h 2025-08-26T20:45:22.3685141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_shape_as_tensor_ops.h 2025-08-26T20:45:22.3689176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward.h 2025-08-26T20:45:22.3693130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3697128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward_cpu_dispatch.h 2025-08-26T20:45:22.3701020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward_cuda_dispatch.h 2025-08-26T20:45:22.3705327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward_native.h 2025-08-26T20:45:22.3709589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward_ops.h 2025-08-26T20:45:22.3713291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_forward.h 2025-08-26T20:45:22.3717562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_forward_cpu_dispatch.h 2025-08-26T20:45:22.3722230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_forward_cuda_dispatch.h 2025-08-26T20:45:22.3726259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_forward_native.h 2025-08-26T20:45:22.3730236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_forward_ops.h 2025-08-26T20:45:22.3734447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_draw.h 2025-08-26T20:45:22.3738532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_draw_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.3742263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_draw_native.h 2025-08-26T20:45:22.3746351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_draw_ops.h 2025-08-26T20:45:22.3750280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_ff.h 2025-08-26T20:45:22.3754310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_ff_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.3758144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_ff_native.h 2025-08-26T20:45:22.3761934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_ff_ops.h 2025-08-26T20:45:22.3766285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_initialize_state.h 2025-08-26T20:45:22.3771686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.3776372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_initialize_state_native.h 2025-08-26T20:45:22.3781079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_initialize_state_ops.h 2025-08-26T20:45:22.3784860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_scramble.h 2025-08-26T20:45:22.3789160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_scramble_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.3793380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_scramble_native.h 2025-08-26T20:45:22.3797605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_scramble_ops.h 2025-08-26T20:45:22.3801893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax.h 2025-08-26T20:45:22.3805289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data.h 2025-08-26T20:45:22.3809675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.3813553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_cpu_dispatch.h 2025-08-26T20:45:22.3817361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_cuda_dispatch.h 2025-08-26T20:45:22.3822046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_meta.h 2025-08-26T20:45:22.3826054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_meta_dispatch.h 2025-08-26T20:45:22.3829876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_native.h 2025-08-26T20:45:22.3833944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_ops.h 2025-08-26T20:45:22.3838030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.3841788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_cpu_dispatch.h 2025-08-26T20:45:22.3845704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_cuda_dispatch.h 2025-08-26T20:45:22.3849998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_meta.h 2025-08-26T20:45:22.3853778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_meta_dispatch.h 2025-08-26T20:45:22.3857559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_native.h 2025-08-26T20:45:22.3861536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_ops.h 2025-08-26T20:45:22.3865603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_addmm.h 2025-08-26T20:45:22.3869479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_addmm_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3873483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_addmm_native.h 2025-08-26T20:45:22.3877442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_addmm_ops.h 2025-08-26T20:45:22.3881314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to.h 2025-08-26T20:45:22.3885189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_copy.h 2025-08-26T20:45:22.3889427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.3893334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3897242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_copy_native.h 2025-08-26T20:45:22.3901239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_copy_ops.h 2025-08-26T20:45:22.3905062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_native.h 2025-08-26T20:45:22.3908851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_ops.h 2025-08-26T20:45:22.3912627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsc_tensor_unsafe.h 2025-08-26T20:45:22.3916700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.3921184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_native.h 2025-08-26T20:45:22.3925474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_ops.h 2025-08-26T20:45:22.3929612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsr_tensor_unsafe.h 2025-08-26T20:45:22.3934331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.3938437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_native.h 2025-08-26T20:45:22.3943149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_ops.h 2025-08-26T20:45:22.3947314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_unsafe.h 2025-08-26T20:45:22.3952128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.3955930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_native.h 2025-08-26T20:45:22.3959991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_ops.h 2025-08-26T20:45:22.3963999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_with_dims.h 2025-08-26T20:45:22.3968770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3972886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_native.h 2025-08-26T20:45:22.3976951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_ops.h 2025-08-26T20:45:22.3980840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_unsafe.h 2025-08-26T20:45:22.3984854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.3989039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_unsafe_native.h 2025-08-26T20:45:22.3992920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_unsafe_ops.h 2025-08-26T20:45:22.3997375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims.h 2025-08-26T20:45:22.4001554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors.h 2025-08-26T20:45:22.4005586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4009754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_meta_dispatch.h 2025-08-26T20:45:22.4014242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_native.h 2025-08-26T20:45:22.4018541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_ops.h 2025-08-26T20:45:22.4022726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4026958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_meta_dispatch.h 2025-08-26T20:45:22.4030916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_native.h 2025-08-26T20:45:22.4034995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_ops.h 2025-08-26T20:45:22.4039249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csc_tensor_unsafe.h 2025-08-26T20:45:22.4043764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.4047982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csc_tensor_unsafe_native.h 2025-08-26T20:45:22.4052074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csc_tensor_unsafe_ops.h 2025-08-26T20:45:22.4056085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_prod.h 2025-08-26T20:45:22.4060259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_prod_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4064885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_prod_native.h 2025-08-26T20:45:22.4068892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_prod_ops.h 2025-08-26T20:45:22.4072795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_sum.h 2025-08-26T20:45:22.4076961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_sum_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4080705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_sum_native.h 2025-08-26T20:45:22.4084862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_sum_ops.h 2025-08-26T20:45:22.4089081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_tensor_unsafe.h 2025-08-26T20:45:22.4093750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.4098106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_tensor_unsafe_native.h 2025-08-26T20:45:22.4102251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_tensor_unsafe_ops.h 2025-08-26T20:45:22.4106388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax.h 2025-08-26T20:45:22.4117110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_backward_data.h 2025-08-26T20:45:22.4126150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4130192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_backward_data_native.h 2025-08-26T20:45:22.4134592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_backward_data_ops.h 2025-08-26T20:45:22.4138866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4144156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.4148404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_native.h 2025-08-26T20:45:22.4152520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_ops.h 2025-08-26T20:45:22.4156456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mask_projection.h 2025-08-26T20:45:22.4160623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mask_projection_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4164575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mask_projection_native.h 2025-08-26T20:45:22.4168805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mask_projection_ops.h 2025-08-26T20:45:22.4173160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm.h 2025-08-26T20:45:22.4177774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.4181907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_native.h 2025-08-26T20:45:22.4185832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_ops.h 2025-08-26T20:45:22.4189701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl.h 2025-08-26T20:45:22.4193851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl_backward.h 2025-08-26T20:45:22.4197746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl_backward_native.h 2025-08-26T20:45:22.4201823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl_backward_ops.h 2025-08-26T20:45:22.4206132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl_native.h 2025-08-26T20:45:22.4210471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl_ops.h 2025-08-26T20:45:22.4214625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_addmm.h 2025-08-26T20:45:22.4218845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_addmm_cuda_dispatch.h 2025-08-26T20:45:22.4223444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_addmm_native.h 2025-08-26T20:45:22.4228394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_addmm_ops.h 2025-08-26T20:45:22.4232680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply.h 2025-08-26T20:45:22.4236967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_cuda_dispatch.h 2025-08-26T20:45:22.4241306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_dense.h 2025-08-26T20:45:22.4245555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_dense_cuda_dispatch.h 2025-08-26T20:45:22.4250280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_dense_native.h 2025-08-26T20:45:22.4254178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_dense_ops.h 2025-08-26T20:45:22.4258567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_native.h 2025-08-26T20:45:22.4262673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_ops.h 2025-08-26T20:45:22.4266995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_linear.h 2025-08-26T20:45:22.4271726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_linear_cuda_dispatch.h 2025-08-26T20:45:22.4291570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_linear_native.h 2025-08-26T20:45:22.4296034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_linear_ops.h 2025-08-26T20:45:22.4300479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_mm.h 2025-08-26T20:45:22.4304988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_mm_cuda_dispatch.h 2025-08-26T20:45:22.4309296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_mm_native.h 2025-08-26T20:45:22.4313710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_mm_ops.h 2025-08-26T20:45:22.4318065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_tile.h 2025-08-26T20:45:22.4322156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_tile_cuda_dispatch.h 2025-08-26T20:45:22.4326284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_tile_native.h 2025-08-26T20:45:22.4330271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_tile_ops.h 2025-08-26T20:45:22.4334143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax.h 2025-08-26T20:45:22.4338030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_backward_data.h 2025-08-26T20:45:22.4342908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4347113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_backward_data_native.h 2025-08-26T20:45:22.4351152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_backward_data_ops.h 2025-08-26T20:45:22.4355236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4359259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.4362977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_native.h 2025-08-26T20:45:22.4367081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_ops.h 2025-08-26T20:45:22.4371025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sparse_matmul.h 2025-08-26T20:45:22.4375281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4379096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sparse_matmul_native.h 2025-08-26T20:45:22.4383414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sparse_matmul_ops.h 2025-08-26T20:45:22.4387124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum.h 2025-08-26T20:45:22.4391199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_backward.h 2025-08-26T20:45:22.4396546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4400408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_backward_native.h 2025-08-26T20:45:22.4404346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_backward_ops.h 2025-08-26T20:45:22.4408672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4414416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.4418357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_native.h 2025-08-26T20:45:22.4422459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_ops.h 2025-08-26T20:45:22.4426222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spdiags.h 2025-08-26T20:45:22.4430027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spdiags_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4433627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spdiags_cpu_dispatch.h 2025-08-26T20:45:22.4437472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spdiags_native.h 2025-08-26T20:45:22.4441528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spdiags_ops.h 2025-08-26T20:45:22.4446278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spsolve.h 2025-08-26T20:45:22.4449944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spsolve_native.h 2025-08-26T20:45:22.4453541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spsolve_ops.h 2025-08-26T20:45:22.4457280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_stack.h 2025-08-26T20:45:22.4461186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_stack_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4464811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_stack_cpu_dispatch.h 2025-08-26T20:45:22.4469180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_stack_native.h 2025-08-26T20:45:22.4473266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_stack_ops.h 2025-08-26T20:45:22.4477157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma.h 2025-08-26T20:45:22.4481105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4484887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_cpu_dispatch.h 2025-08-26T20:45:22.4488740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_cuda_dispatch.h 2025-08-26T20:45:22.4492959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad.h 2025-08-26T20:45:22.4497501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4501501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad_cpu_dispatch.h 2025-08-26T20:45:22.4505343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad_cuda_dispatch.h 2025-08-26T20:45:22.4509394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad_native.h 2025-08-26T20:45:22.4513209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad_ops.h 2025-08-26T20:45:22.4516996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_native.h 2025-08-26T20:45:22.4520980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_ops.h 2025-08-26T20:45:22.4524972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_ambiguous_defaults.h 2025-08-26T20:45:22.4528782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.4532817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_ambiguous_defaults_native.h 2025-08-26T20:45:22.4537007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_ambiguous_defaults_ops.h 2025-08-26T20:45:22.4541095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch.h 2025-08-26T20:45:22.4545549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4550447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.4554705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_native.h 2025-08-26T20:45:22.4559710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_ops.h 2025-08-26T20:45:22.4563843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view.h 2025-08-26T20:45:22.4568398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4572955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy.h 2025-08-26T20:45:22.4577286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.4581220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4585207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_native.h 2025-08-26T20:45:22.4589318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_ops.h 2025-08-26T20:45:22.4593471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_native.h 2025-08-26T20:45:22.4597522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_ops.h 2025-08-26T20:45:22.4602511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_check_tensor.h 2025-08-26T20:45:22.4606322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_check_tensor_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.4610166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_check_tensor_native.h 2025-08-26T20:45:22.4614435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_check_tensor_ops.h 2025-08-26T20:45:22.4619274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_functorch_fallback.h 2025-08-26T20:45:22.4623711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_functorch_fallback_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4627924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_functorch_fallback_cpu_dispatch.h 2025-08-26T20:45:22.4631855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_functorch_fallback_native.h 2025-08-26T20:45:22.4635874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_functorch_fallback_ops.h 2025-08-26T20:45:22.4640301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_filled_intlist.h 2025-08-26T20:45:22.4644996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4649209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_filled_intlist_cpu_dispatch.h 2025-08-26T20:45:22.4653961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_filled_intlist_native.h 2025-08-26T20:45:22.4658935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_filled_intlist_ops.h 2025-08-26T20:45:22.4663747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_floatlist.h 2025-08-26T20:45:22.4668170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_floatlist_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4672414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_floatlist_cpu_dispatch.h 2025-08-26T20:45:22.4676995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_floatlist_native.h 2025-08-26T20:45:22.4681168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_floatlist_ops.h 2025-08-26T20:45:22.4685702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_intlist.h 2025-08-26T20:45:22.4690556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_intlist_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4694628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_intlist_cpu_dispatch.h 2025-08-26T20:45:22.4698814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_intlist_native.h 2025-08-26T20:45:22.4702870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_intlist_ops.h 2025-08-26T20:45:22.4706646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_parallel_materialize.h 2025-08-26T20:45:22.4711252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_parallel_materialize_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4715257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_parallel_materialize_native.h 2025-08-26T20:45:22.4719288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_parallel_materialize_ops.h 2025-08-26T20:45:22.4723411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_serialization_subcmul.h 2025-08-26T20:45:22.4728149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_serialization_subcmul_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.4732213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_serialization_subcmul_native.h 2025-08-26T20:45:22.4736114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_serialization_subcmul_ops.h 2025-08-26T20:45:22.4740595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_string_default.h 2025-08-26T20:45:22.4745452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_string_default_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.4749621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_string_default_native.h 2025-08-26T20:45:22.4753372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_string_default_ops.h 2025-08-26T20:45:22.4757393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_warn_in_autograd.h 2025-08-26T20:45:22.4761602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_warn_in_autograd_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4765539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_warn_in_autograd_native.h 2025-08-26T20:45:22.4770142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_warn_in_autograd_ops.h 2025-08-26T20:45:22.4774497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward.h 2025-08-26T20:45:22.4778609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.4782312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_native.h 2025-08-26T20:45:22.4786470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_ops.h 2025-08-26T20:45:22.4791577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward.h 2025-08-26T20:45:22.4795941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.4800098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_native.h 2025-08-26T20:45:22.4804328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_ops.h 2025-08-26T20:45:22.4808395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell.h 2025-08-26T20:45:22.4812673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_backward.h 2025-08-26T20:45:22.4816892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4821193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_backward_cuda_dispatch.h 2025-08-26T20:45:22.4825465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_backward_native.h 2025-08-26T20:45:22.4830075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_backward_ops.h 2025-08-26T20:45:22.4834397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4838484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_cuda_dispatch.h 2025-08-26T20:45:22.4842300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_native.h 2025-08-26T20:45:22.4846551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_ops.h 2025-08-26T20:45:22.4850581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell.h 2025-08-26T20:45:22.4854570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward.h 2025-08-26T20:45:22.4858753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.4862960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl.h 2025-08-26T20:45:22.4867276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4871626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_cuda_dispatch.h 2025-08-26T20:45:22.4875772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_native.h 2025-08-26T20:45:22.4880023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_ops.h 2025-08-26T20:45:22.4884228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_native.h 2025-08-26T20:45:22.4888288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_ops.h 2025-08-26T20:45:22.4892213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4896358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_cuda_dispatch.h 2025-08-26T20:45:22.4900498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_native.h 2025-08-26T20:45:22.4904883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_ops.h 2025-08-26T20:45:22.4908745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_copy.h 2025-08-26T20:45:22.4912446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4916377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_copy_native.h 2025-08-26T20:45:22.4920092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_copy_ops.h 2025-08-26T20:45:22.4923980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_cpu.h 2025-08-26T20:45:22.4927920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_cpu_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.4932879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_cpu_native.h 2025-08-26T20:45:22.4936681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_cpu_ops.h 2025-08-26T20:45:22.4940672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_dense.h 2025-08-26T20:45:22.4944646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_dense_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4948307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_dense_native.h 2025-08-26T20:45:22.4952180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_dense_ops.h 2025-08-26T20:45:22.4955985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse.h 2025-08-26T20:45:22.4959801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc.h 2025-08-26T20:45:22.4964713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4968546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc_cpu_dispatch.h 2025-08-26T20:45:22.4973003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc_cuda_dispatch.h 2025-08-26T20:45:22.4977162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc_native.h 2025-08-26T20:45:22.4981684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc_ops.h 2025-08-26T20:45:22.4985426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr.h 2025-08-26T20:45:22.4989544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4993637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr_cpu_dispatch.h 2025-08-26T20:45:22.4997799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr_cuda_dispatch.h 2025-08-26T20:45:22.5001736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr_native.h 2025-08-26T20:45:22.5005649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr_ops.h 2025-08-26T20:45:22.5009728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5013405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_cpu_dispatch.h 2025-08-26T20:45:22.5017378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc.h 2025-08-26T20:45:22.5021533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5025491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc_cpu_dispatch.h 2025-08-26T20:45:22.5029685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc_cuda_dispatch.h 2025-08-26T20:45:22.5033432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc_native.h 2025-08-26T20:45:22.5037501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc_ops.h 2025-08-26T20:45:22.5042115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr.h 2025-08-26T20:45:22.5047012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5051743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr_cpu_dispatch.h 2025-08-26T20:45:22.5056045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr_cuda_dispatch.h 2025-08-26T20:45:22.5059976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr_native.h 2025-08-26T20:45:22.5063871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr_ops.h 2025-08-26T20:45:22.5067798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_cuda_dispatch.h 2025-08-26T20:45:22.5071727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_native.h 2025-08-26T20:45:22.5075926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_ops.h 2025-08-26T20:45:22.5080407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_semi_structured.h 2025-08-26T20:45:22.5084617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_semi_structured_cuda_dispatch.h 2025-08-26T20:45:22.5088639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_semi_structured_native.h 2025-08-26T20:45:22.5092606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_semi_structured_ops.h 2025-08-26T20:45:22.5096610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd.h 2025-08-26T20:45:22.5100561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5105290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd_cpu_dispatch.h 2025-08-26T20:45:22.5109705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd_cuda_dispatch.h 2025-08-26T20:45:22.5113713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd_native.h 2025-08-26T20:45:22.5117524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd_ops.h 2025-08-26T20:45:22.5121425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv.h 2025-08-26T20:45:22.5126043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5130026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv_cpu_dispatch.h 2025-08-26T20:45:22.5133893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv_cuda_dispatch.h 2025-08-26T20:45:22.5138037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv_native.h 2025-08-26T20:45:22.5142846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv_ops.h 2025-08-26T20:45:22.5146899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_trilinear.h 2025-08-26T20:45:22.5151442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_trilinear_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.5155525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_trilinear_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5159553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_trilinear_native.h 2025-08-26T20:45:22.5163567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_trilinear_ops.h 2025-08-26T20:45:22.5167831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_multi_head_attention.h 2025-08-26T20:45:22.5172548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_multi_head_attention_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5176710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_multi_head_attention_cuda_dispatch.h 2025-08-26T20:45:22.5180770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_multi_head_attention_native.h 2025-08-26T20:45:22.5184846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_multi_head_attention_ops.h 2025-08-26T20:45:22.5188900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_scaled_dot_attention.h 2025-08-26T20:45:22.5192964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5197256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_scaled_dot_attention_cuda_dispatch.h 2025-08-26T20:45:22.5201354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_scaled_dot_attention_native.h 2025-08-26T20:45:22.5205269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_scaled_dot_attention_ops.h 2025-08-26T20:45:22.5209355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique.h 2025-08-26T20:45:22.5213134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2.h 2025-08-26T20:45:22.5216997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5221045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2_cpu_dispatch.h 2025-08-26T20:45:22.5224915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2_cuda_dispatch.h 2025-08-26T20:45:22.5229103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2_native.h 2025-08-26T20:45:22.5233603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2_ops.h 2025-08-26T20:45:22.5237631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5241606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique_cpu_dispatch.h 2025-08-26T20:45:22.5246147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique_cuda_dispatch.h 2025-08-26T20:45:22.5250041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique_native.h 2025-08-26T20:45:22.5254203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique_ops.h 2025-08-26T20:45:22.5258756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unpack_dual.h 2025-08-26T20:45:22.5262904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unpack_dual_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.5266566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unpack_dual_native.h 2025-08-26T20:45:22.5287474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unpack_dual_ops.h 2025-08-26T20:45:22.5291534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index.h 2025-08-26T20:45:22.5295538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5299543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_native.h 2025-08-26T20:45:22.5303570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_ops.h 2025-08-26T20:45:22.5307633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_put.h 2025-08-26T20:45:22.5311663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_put_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5315557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_put_native.h 2025-08-26T20:45:22.5319554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_put_ops.h 2025-08-26T20:45:22.5323314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index.h 2025-08-26T20:45:22.5327685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5331420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_native.h 2025-08-26T20:45:22.5335298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_ops.h 2025-08-26T20:45:22.5339251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_put_accumulate.h 2025-08-26T20:45:22.5343430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5347775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_native.h 2025-08-26T20:45:22.5351807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_ops.h 2025-08-26T20:45:22.5355864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_view.h 2025-08-26T20:45:22.5359899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_view_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5364156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_view_native.h 2025-08-26T20:45:22.5385024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_view_ops.h 2025-08-26T20:45:22.5388972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa.h 2025-08-26T20:45:22.5393085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward.h 2025-08-26T20:45:22.5397262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.5401198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_cpu_dispatch.h 2025-08-26T20:45:22.5405052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_cuda_dispatch.h 2025-08-26T20:45:22.5409542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_meta.h 2025-08-26T20:45:22.5413818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_meta_dispatch.h 2025-08-26T20:45:22.5417806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_native.h 2025-08-26T20:45:22.5421835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_ops.h 2025-08-26T20:45:22.5426188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.5430226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.5434418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_cpu_dispatch.h 2025-08-26T20:45:22.5438403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_cuda_dispatch.h 2025-08-26T20:45:22.5442182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_meta.h 2025-08-26T20:45:22.5446643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_meta_dispatch.h 2025-08-26T20:45:22.5450597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_native.h 2025-08-26T20:45:22.5454629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_ops.h 2025-08-26T20:45:22.5458760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa.h 2025-08-26T20:45:22.5462652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward.h 2025-08-26T20:45:22.5466764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.5471370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_cpu_dispatch.h 2025-08-26T20:45:22.5475759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_cuda_dispatch.h 2025-08-26T20:45:22.5480114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_meta.h 2025-08-26T20:45:22.5484009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_meta_dispatch.h 2025-08-26T20:45:22.5488102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_native.h 2025-08-26T20:45:22.5492092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_ops.h 2025-08-26T20:45:22.5496321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.5500589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.5504429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_cpu_dispatch.h 2025-08-26T20:45:22.5508492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_cuda_dispatch.h 2025-08-26T20:45:22.5512313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_meta.h 2025-08-26T20:45:22.5516454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_meta_dispatch.h 2025-08-26T20:45:22.5520472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_native.h 2025-08-26T20:45:22.5524951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_ops.h 2025-08-26T20:45:22.5529154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d.h 2025-08-26T20:45:22.5533137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward.h 2025-08-26T20:45:22.5537400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.5541493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_cpu_dispatch.h 2025-08-26T20:45:22.5545571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_cuda_dispatch.h 2025-08-26T20:45:22.5550416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_meta.h 2025-08-26T20:45:22.5554827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_meta_dispatch.h 2025-08-26T20:45:22.5558609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_native.h 2025-08-26T20:45:22.5563012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_ops.h 2025-08-26T20:45:22.5567750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.5572136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.5576235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_cpu_dispatch.h 2025-08-26T20:45:22.5580136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_cuda_dispatch.h 2025-08-26T20:45:22.5584083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_meta.h 2025-08-26T20:45:22.5588198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_meta_dispatch.h 2025-08-26T20:45:22.5592607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_native.h 2025-08-26T20:45:22.5596715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_ops.h 2025-08-26T20:45:22.5600754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d.h 2025-08-26T20:45:22.5604709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward.h 2025-08-26T20:45:22.5609200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.5613259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_cpu_dispatch.h 2025-08-26T20:45:22.5617251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_cuda_dispatch.h 2025-08-26T20:45:22.5621258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_meta.h 2025-08-26T20:45:22.5625888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_meta_dispatch.h 2025-08-26T20:45:22.5629910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_native.h 2025-08-26T20:45:22.5634136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_ops.h 2025-08-26T20:45:22.5638673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.5642868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.5647212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_cpu_dispatch.h 2025-08-26T20:45:22.5652064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_cuda_dispatch.h 2025-08-26T20:45:22.5656161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_meta.h 2025-08-26T20:45:22.5660559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_meta_dispatch.h 2025-08-26T20:45:22.5664695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_native.h 2025-08-26T20:45:22.5668876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_ops.h 2025-08-26T20:45:22.5672851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d.h 2025-08-26T20:45:22.5677356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward.h 2025-08-26T20:45:22.5682134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.5686890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_cpu_dispatch.h 2025-08-26T20:45:22.5692224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_cuda_dispatch.h 2025-08-26T20:45:22.5696327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_meta.h 2025-08-26T20:45:22.5700779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_meta_dispatch.h 2025-08-26T20:45:22.5705626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_native.h 2025-08-26T20:45:22.5709762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_ops.h 2025-08-26T20:45:22.5714350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.5718477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.5722921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_cpu_dispatch.h 2025-08-26T20:45:22.5727156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_cuda_dispatch.h 2025-08-26T20:45:22.5731275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_meta.h 2025-08-26T20:45:22.5742024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_meta_dispatch.h 2025-08-26T20:45:22.5742809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_native.h 2025-08-26T20:45:22.5744512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_ops.h 2025-08-26T20:45:22.5748953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_ctc_loss.h 2025-08-26T20:45:22.5752741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_ctc_loss_cuda_dispatch.h 2025-08-26T20:45:22.5756947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_ctc_loss_native.h 2025-08-26T20:45:22.5760904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_ctc_loss_ops.h 2025-08-26T20:45:22.5765259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight.h 2025-08-26T20:45:22.5769823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.5774203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_native.h 2025-08-26T20:45:22.5778441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_ops.h 2025-08-26T20:45:22.5782533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_compressed_sparse_indices.h 2025-08-26T20:45:22.5807173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_compressed_sparse_indices_cpu_dispatch.h 2025-08-26T20:45:22.5808057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_compressed_sparse_indices_cuda_dispatch.h 2025-08-26T20:45:22.5808906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_compressed_sparse_indices_native.h 2025-08-26T20:45:22.5809701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_compressed_sparse_indices_ops.h 2025-08-26T20:45:22.5810463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsc_tensor_args.h 2025-08-26T20:45:22.5812520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.5814597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_native.h 2025-08-26T20:45:22.5819240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_ops.h 2025-08-26T20:45:22.5822996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsr_tensor_args.h 2025-08-26T20:45:22.5827209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.5831718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_native.h 2025-08-26T20:45:22.5835942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_ops.h 2025-08-26T20:45:22.5840098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_compressed_tensor_args.h 2025-08-26T20:45:22.5845007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.5849528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_native.h 2025-08-26T20:45:22.5853471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_ops.h 2025-08-26T20:45:22.5857549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_coo_tensor_args.h 2025-08-26T20:45:22.5861980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.5866187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_coo_tensor_args_native.h 2025-08-26T20:45:22.5870258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_coo_tensor_args_ops.h 2025-08-26T20:45:22.5874360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csc_tensor_args.h 2025-08-26T20:45:22.5878909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.5882987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csc_tensor_args_native.h 2025-08-26T20:45:22.5886991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csc_tensor_args_ops.h 2025-08-26T20:45:22.5891132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csr_tensor_args.h 2025-08-26T20:45:22.5895356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.5899225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csr_tensor_args_native.h 2025-08-26T20:45:22.5903132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csr_tensor_args_ops.h 2025-08-26T20:45:22.5907233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values.h 2025-08-26T20:45:22.5910775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_copy.h 2025-08-26T20:45:22.5915163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.5919523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5923588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_copy_native.h 2025-08-26T20:45:22.5927933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_copy_ops.h 2025-08-26T20:45:22.5931714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_native.h 2025-08-26T20:45:22.5935797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_ops.h 2025-08-26T20:45:22.5940292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_version.h 2025-08-26T20:45:22.5944197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_version_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.5948033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_version_native.h 2025-08-26T20:45:22.5951665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_version_ops.h 2025-08-26T20:45:22.5955470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm.h 2025-08-26T20:45:22.5959520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_cuda_dispatch.h 2025-08-26T20:45:22.5963342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_for_cpu.h 2025-08-26T20:45:22.5967402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_cpu_dispatch.h 2025-08-26T20:45:22.5972229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_native.h 2025-08-26T20:45:22.5976135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_ops.h 2025-08-26T20:45:22.5980176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_native.h 2025-08-26T20:45:22.5984084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_ops.h 2025-08-26T20:45:22.5988072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros.h 2025-08-26T20:45:22.5992156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros_native.h 2025-08-26T20:45:22.5996181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros_ops.h 2025-08-26T20:45:22.6000373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int8pack_mm.h 2025-08-26T20:45:22.6004989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int8pack_mm_cpu_dispatch.h 2025-08-26T20:45:22.6009046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int8pack_mm_cuda_dispatch.h 2025-08-26T20:45:22.6012966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int8pack_mm_native.h 2025-08-26T20:45:22.6016803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int8pack_mm_ops.h 2025-08-26T20:45:22.6020874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm.h 2025-08-26T20:45:22.6025052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.6028934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_differentiable_backward.h 2025-08-26T20:45:22.6033213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.6037264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_differentiable_backward_native.h 2025-08-26T20:45:22.6042422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_differentiable_backward_ops.h 2025-08-26T20:45:22.6046600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface.h 2025-08-26T20:45:22.6050780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward.h 2025-08-26T20:45:22.6055004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.6059249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward_cpu_dispatch.h 2025-08-26T20:45:22.6063283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward_cuda_dispatch.h 2025-08-26T20:45:22.6067660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward_native.h 2025-08-26T20:45:22.6071527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward_ops.h 2025-08-26T20:45:22.6075998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.6079856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_cpu_dispatch.h 2025-08-26T20:45:22.6083917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_cuda_dispatch.h 2025-08-26T20:45:22.6087972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_native.h 2025-08-26T20:45:22.6092205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_ops.h 2025-08-26T20:45:22.6096561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_native.h 2025-08-26T20:45:22.6100465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_ops.h 2025-08-26T20:45:22.6104339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_linear_prepack.h 2025-08-26T20:45:22.6108701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.6112326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_linear_prepack_native.h 2025-08-26T20:45:22.6116294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_linear_prepack_ops.h 2025-08-26T20:45:22.6120502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_quantized_linear_prepacked.h 2025-08-26T20:45:22.6124723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.6128653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_native.h 2025-08-26T20:45:22.6132723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_ops.h 2025-08-26T20:45:22.6380525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\quantized\QTensorImpl.h 2025-08-26T20:45:22.6383817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\quantized\Quantizer.h 2025-08-26T20:45:22.6392461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\CachingHostAllocator.h 2025-08-26T20:45:22.6396050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\PinnedMemoryAllocator.h 2025-08-26T20:45:22.6399770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\XPUContext.h 2025-08-26T20:45:22.6403217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\XPUDevice.h 2025-08-26T20:45:22.6411559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\XPUEvent.h 2025-08-26T20:45:22.6415457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\XPUGeneratorImpl.h 2025-08-26T20:45:22.6422436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\detail\XPUHooks.h 2025-08-26T20:45:22.6434899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\alignment.h 2025-08-26T20:45:22.6438515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Allocator.h 2025-08-26T20:45:22.6442071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\AllocatorConfig.h 2025-08-26T20:45:22.6445499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\AutogradState.h 2025-08-26T20:45:22.6453463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Backend.h 2025-08-26T20:45:22.6457139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\CachingDeviceAllocator.h 2025-08-26T20:45:22.6460629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\CompileTimeFunctionPointer.h 2025-08-26T20:45:22.6464132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\ConstantSymNodeImpl.h 2025-08-26T20:45:22.6468324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Contiguity.h 2025-08-26T20:45:22.6471572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\CopyBytes.h 2025-08-26T20:45:22.6475227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\CPUAllocator.h 2025-08-26T20:45:22.6478670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DefaultDtype.h 2025-08-26T20:45:22.6482237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DefaultTensorOptions.h 2025-08-26T20:45:22.6485865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Device.h 2025-08-26T20:45:22.6489694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DeviceArray.h 2025-08-26T20:45:22.6493363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DeviceGuard.h 2025-08-26T20:45:22.6497333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DeviceType.h 2025-08-26T20:45:22.6500721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DispatchKey.h 2025-08-26T20:45:22.6504971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DispatchKeySet.h 2025-08-26T20:45:22.6508786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DynamicCast.h 2025-08-26T20:45:22.6516554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Event.h 2025-08-26T20:45:22.6520205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\GeneratorImpl.h 2025-08-26T20:45:22.6523598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\GradMode.h 2025-08-26T20:45:22.6527456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\InferenceMode.h 2025-08-26T20:45:22.6530988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Layout.h 2025-08-26T20:45:22.6534359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\MemoryFormat.h 2025-08-26T20:45:22.6538051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\OptionalRef.h 2025-08-26T20:45:22.6541617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\PyHandleCache.h 2025-08-26T20:45:22.6545231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\QEngine.h 2025-08-26T20:45:22.6548560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\QScheme.h 2025-08-26T20:45:22.6552244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\RefcountedDeleter.h 2025-08-26T20:45:22.6555871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SafePyObject.h 2025-08-26T20:45:22.6564069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Scalar.h 2025-08-26T20:45:22.6567753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\ScalarType.h 2025-08-26T20:45:22.6571533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\ScalarTypeToTypeMeta.h 2025-08-26T20:45:22.6575273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Storage.h 2025-08-26T20:45:22.6579250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\StorageImpl.h 2025-08-26T20:45:22.6582848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Stream.h 2025-08-26T20:45:22.6586459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\StreamGuard.h 2025-08-26T20:45:22.6590231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymbolicShapeMeta.h 2025-08-26T20:45:22.6593635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymBool.h 2025-08-26T20:45:22.6597219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymFloat.h 2025-08-26T20:45:22.6600553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymInt.h 2025-08-26T20:45:22.6604161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymIntArrayRef.h 2025-08-26T20:45:22.6612577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymNodeImpl.h 2025-08-26T20:45:22.6616007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\TensorImpl.h 2025-08-26T20:45:22.6620703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\TensorOptions.h 2025-08-26T20:45:22.6624422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\thread_pool.h 2025-08-26T20:45:22.6628024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\UndefinedTensorImpl.h 2025-08-26T20:45:22.6632197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\WrapDimMinimal.h 2025-08-26T20:45:22.6640415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\alloc_cpu.h 2025-08-26T20:45:22.6644379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\COW.h 2025-08-26T20:45:22.6647962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\COWDeleter.h 2025-08-26T20:45:22.6651657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\DeviceGuardImplInterface.h 2025-08-26T20:45:22.6659509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\FakeGuardImpl.h 2025-08-26T20:45:22.6663188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\GPUTrace.h 2025-08-26T20:45:22.6667376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\HermeticPyObjectTLS.h 2025-08-26T20:45:22.6671133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\InlineDeviceGuard.h 2025-08-26T20:45:22.6674773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\InlineEvent.h 2025-08-26T20:45:22.6678311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\InlineStreamGuard.h 2025-08-26T20:45:22.6682134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\LocalDispatchKeySet.h 2025-08-26T20:45:22.6685606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\PyInterpreter.h 2025-08-26T20:45:22.6703441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\PyInterpreterHooks.h 2025-08-26T20:45:22.6707417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\PyObjectSlot.h 2025-08-26T20:45:22.6710999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\PythonDispatcherTLS.h 2025-08-26T20:45:22.6714683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\SizesAndStrides.h 2025-08-26T20:45:22.6718689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\TorchDispatchModeTLS.h 2025-08-26T20:45:22.6722363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\VirtualGuardImpl.h 2025-08-26T20:45:22.6731562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAAlgorithm.h 2025-08-26T20:45:22.6735225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAAllocatorConfig.h 2025-08-26T20:45:22.6738719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDACachingAllocator.h 2025-08-26T20:45:22.6742197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDADeviceAssertion.h 2025-08-26T20:45:22.6751096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDADeviceAssertionHost.h 2025-08-26T20:45:22.6754890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAException.h 2025-08-26T20:45:22.6758549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAFunctions.h 2025-08-26T20:45:22.6762166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAGraphsC10Utils.h 2025-08-26T20:45:22.6765784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAGuard.h 2025-08-26T20:45:22.6769809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAMacros.h 2025-08-26T20:45:22.6773435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAMathCompat.h 2025-08-26T20:45:22.6777369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAMiscFunctions.h 2025-08-26T20:45:22.6781343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAStream.h 2025-08-26T20:45:22.6784968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\driver_api.h 2025-08-26T20:45:22.6793203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\impl\CUDAGuardImpl.h 2025-08-26T20:45:22.6796777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\impl\CUDATest.h 2025-08-26T20:45:22.6804391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\macros\cmake_macros.h 2025-08-26T20:45:22.6808169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\macros\Export.h 2025-08-26T20:45:22.6811386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\macros\Macros.h 2025-08-26T20:45:22.6818619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\atomic.h 2025-08-26T20:45:22.6822013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\common.h 2025-08-26T20:45:22.6825658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\expm1f.h 2025-08-26T20:45:22.6829194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\indexing.h 2025-08-26T20:45:22.6833011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\random.h 2025-08-26T20:45:22.6836699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\reduction_utils.h 2025-08-26T20:45:22.6844555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\special_math.h 2025-08-26T20:45:22.6848542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\utils.h 2025-08-26T20:45:22.6856164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\mobile\CPUCachingAllocator.h 2025-08-26T20:45:22.6859661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\mobile\CPUProfilingAllocator.h 2025-08-26T20:45:22.6870447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\test\util\complex_math_test_common.h 2025-08-26T20:45:22.6874147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\test\util\complex_test_common.h 2025-08-26T20:45:22.6878003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\test\util\Macros.h 2025-08-26T20:45:22.6886317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\AbortHandler.h 2025-08-26T20:45:22.6889715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\accumulate.h 2025-08-26T20:45:22.6893314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\AlignOf.h 2025-08-26T20:45:22.6896698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ApproximateClock.h 2025-08-26T20:45:22.6903959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Array.h 2025-08-26T20:45:22.6907506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ArrayRef.h 2025-08-26T20:45:22.6910792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Backtrace.h 2025-08-26T20:45:22.6914457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\BFloat16-inl.h 2025-08-26T20:45:22.6917808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\BFloat16-math.h 2025-08-26T20:45:22.6921458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\BFloat16.h 2025-08-26T20:45:22.6925295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\bits.h 2025-08-26T20:45:22.6928766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Bitset.h 2025-08-26T20:45:22.6932352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\bit_cast.h 2025-08-26T20:45:22.6936042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\C++17.h 2025-08-26T20:45:22.6939654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\CallOnce.h 2025-08-26T20:45:22.6943347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\complex.h 2025-08-26T20:45:22.6946777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\complex_math.h 2025-08-26T20:45:22.6950189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\complex_utils.h 2025-08-26T20:45:22.6953639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ConstexprCrc.h 2025-08-26T20:45:22.6957172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\copysign.h 2025-08-26T20:45:22.6960617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\DeadlockDetection.h 2025-08-26T20:45:22.6964097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Deprecated.h 2025-08-26T20:45:22.6967745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\DimVector.h 2025-08-26T20:45:22.6971394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\DynamicCounter.h 2025-08-26T20:45:22.6978582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Enumerate.h 2025-08-26T20:45:22.6982206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\env.h 2025-08-26T20:45:22.6985559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\error.h 2025-08-26T20:45:22.6989074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Exception.h 2025-08-26T20:45:22.6992753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ExclusivelyOwned.h 2025-08-26T20:45:22.6996486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ExclusivelyOwnedTensorTraits.h 2025-08-26T20:45:22.7000045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\FbcodeMaps.h 2025-08-26T20:45:22.7004206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Flags.h 2025-08-26T20:45:22.7008417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\flat_hash_map.h 2025-08-26T20:45:22.7012716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float4_e2m1fn_x2.h 2025-08-26T20:45:22.7016319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e4m3fn-inl.h 2025-08-26T20:45:22.7024797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e4m3fn.h 2025-08-26T20:45:22.7028458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e4m3fnuz-inl.h 2025-08-26T20:45:22.7031993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e4m3fnuz.h 2025-08-26T20:45:22.7035498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e5m2-inl.h 2025-08-26T20:45:22.7039271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e5m2.h 2025-08-26T20:45:22.7043142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e5m2fnuz-inl.h 2025-08-26T20:45:22.7047196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e5m2fnuz.h 2025-08-26T20:45:22.7050805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e8m0fnu-inl.h 2025-08-26T20:45:22.7054796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e8m0fnu.h 2025-08-26T20:45:22.7062525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\floating_point_utils.h 2025-08-26T20:45:22.7066454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\FunctionRef.h 2025-08-26T20:45:22.7070321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Gauge.h 2025-08-26T20:45:22.7073747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\generic_math.h 2025-08-26T20:45:22.7077692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Half-inl.h 2025-08-26T20:45:22.7081568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Half.h 2025-08-26T20:45:22.7084913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\hash.h 2025-08-26T20:45:22.7088892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\IdWrapper.h 2025-08-26T20:45:22.7092503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\int128.h 2025-08-26T20:45:22.7095939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\IntrusiveList.h 2025-08-26T20:45:22.7099605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\intrusive_ptr.h 2025-08-26T20:45:22.7103275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\irange.h 2025-08-26T20:45:22.7107253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Lazy.h 2025-08-26T20:45:22.7111047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\LeftRight.h 2025-08-26T20:45:22.7119323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\llvmMathExtras.h 2025-08-26T20:45:22.7124253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Load.h 2025-08-26T20:45:22.7127201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Logging.h 2025-08-26T20:45:22.7130913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\logging_is_google_glog.h 2025-08-26T20:45:22.7135336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\logging_is_not_google_glog.h 2025-08-26T20:45:22.7138831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\MathConstants.h 2025-08-26T20:45:22.7142709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\MaybeOwned.h 2025-08-26T20:45:22.7146608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Metaprogramming.h 2025-08-26T20:45:22.7150280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\NetworkFlow.h 2025-08-26T20:45:22.7154053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\numa.h 2025-08-26T20:45:22.7158064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Optional.h 2025-08-26T20:45:22.7170938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\OptionalArrayRef.h 2025-08-26T20:45:22.7174948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\order_preserving_flat_hash_map.h 2025-08-26T20:45:22.7179127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\overflows.h 2025-08-26T20:45:22.7182804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\overloaded.h 2025-08-26T20:45:22.7186779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ParallelGuard.h 2025-08-26T20:45:22.7190309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\python_stub.h 2025-08-26T20:45:22.7193959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\qint32.h 2025-08-26T20:45:22.7197671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\qint8.h 2025-08-26T20:45:22.7201123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\quint2x4.h 2025-08-26T20:45:22.7204767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\quint4x2.h 2025-08-26T20:45:22.7208247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\quint8.h 2025-08-26T20:45:22.7211739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Registry.h 2025-08-26T20:45:22.7215501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\safe_numerics.h 2025-08-26T20:45:22.7223396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ScopeExit.h 2025-08-26T20:45:22.7227316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Semaphore.h 2025-08-26T20:45:22.7231221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\signal_handler.h 2025-08-26T20:45:22.7234762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\SmallBuffer.h 2025-08-26T20:45:22.7238667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\SmallVector.h 2025-08-26T20:45:22.7243040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\sparse_bitset.h 2025-08-26T20:45:22.7246878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ssize.h 2025-08-26T20:45:22.7250774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\static_tracepoint.h 2025-08-26T20:45:22.7254510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\static_tracepoint_elfx86.h 2025-08-26T20:45:22.7258015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\strides.h 2025-08-26T20:45:22.7261987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\StringUtil.h 2025-08-26T20:45:22.7270371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\string_utils.h 2025-08-26T20:45:22.7273906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\string_view.h 2025-08-26T20:45:22.7278074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\strong_type.h 2025-08-26T20:45:22.7281969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Synchronized.h 2025-08-26T20:45:22.7286085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\tempfile.h 2025-08-26T20:45:22.7290051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ThreadLocal.h 2025-08-26T20:45:22.7293769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ThreadLocalDebugInfo.h 2025-08-26T20:45:22.7297640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\thread_name.h 2025-08-26T20:45:22.7301398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Type.h 2025-08-26T20:45:22.7305377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\TypeCast.h 2025-08-26T20:45:22.7309233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\typeid.h 2025-08-26T20:45:22.7314180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\TypeIndex.h 2025-08-26T20:45:22.7318479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\TypeList.h 2025-08-26T20:45:22.7322559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\TypeSafeSignMath.h 2025-08-26T20:45:22.7326441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\TypeTraits.h 2025-08-26T20:45:22.7330428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Unicode.h 2025-08-26T20:45:22.7333901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\UniqueVoidPtr.h 2025-08-26T20:45:22.7337967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Unroll.h 2025-08-26T20:45:22.7341536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\WaitCounter.h 2025-08-26T20:45:22.7345206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\WaitCounterDynamicBackend.h 2025-08-26T20:45:22.7349300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\win32-headers.h 2025-08-26T20:45:22.7366072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUCachingAllocator.h 2025-08-26T20:45:22.7369835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUDeviceProp.h 2025-08-26T20:45:22.7373834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUException.h 2025-08-26T20:45:22.7377205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUFunctions.h 2025-08-26T20:45:22.7384717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUMacros.h 2025-08-26T20:45:22.7388096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUStream.h 2025-08-26T20:45:22.7395013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\impl\XPUGuardImpl.h 2025-08-26T20:45:22.7405598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\test\impl\XPUTest.h 2025-08-26T20:45:22.7419208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\core\common.h 2025-08-26T20:45:22.7422747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\core\macros.h 2025-08-26T20:45:22.7426089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\core\timer.h 2025-08-26T20:45:22.7432985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\perfkernels\batch_box_cox_vec.h 2025-08-26T20:45:22.7436857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\perfkernels\common.h 2025-08-26T20:45:22.7440463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\perfkernels\embedding_lookup_idx.h 2025-08-26T20:45:22.7447908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\crc_alt.h 2025-08-26T20:45:22.7452020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\file_adapter.h 2025-08-26T20:45:22.7455788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\inline_container.h 2025-08-26T20:45:22.7459523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\in_memory_adapter.h 2025-08-26T20:45:22.7467194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\istream_adapter.h 2025-08-26T20:45:22.7471124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\read_adapter_interface.h 2025-08-26T20:45:22.7474737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\versions.h 2025-08-26T20:45:22.7482020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\fixed_divisor.h 2025-08-26T20:45:22.7485916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\proto_wrap.h 2025-08-26T20:45:22.7489539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\string_utils.h 2025-08-26T20:45:22.7500720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\pthreadpool-cpp.h 2025-08-26T20:45:22.7504774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\pthreadpool.h 2025-08-26T20:45:22.7519209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\ThreadPool.h 2025-08-26T20:45:22.7527245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\ThreadPoolCommon.h 2025-08-26T20:45:22.7530512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\thread_pool_guard.h 2025-08-26T20:45:22.7534148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\WorkersPool.h 2025-08-26T20:45:22.7543006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\args.h 2025-08-26T20:45:22.7546232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\base.h 2025-08-26T20:45:22.7550310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\chrono.h 2025-08-26T20:45:22.7554476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\color.h 2025-08-26T20:45:22.7558194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\compile.h 2025-08-26T20:45:22.7562083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\core.h 2025-08-26T20:45:22.7565492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\format-inl.h 2025-08-26T20:45:22.7573426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\format.h 2025-08-26T20:45:22.7578221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\os.h 2025-08-26T20:45:22.7581914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\ostream.h 2025-08-26T20:45:22.7585179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\printf.h 2025-08-26T20:45:22.7588923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\ranges.h 2025-08-26T20:45:22.7592479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\std.h 2025-08-26T20:45:22.7596079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\xchar.h 2025-08-26T20:45:22.7603396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fp16\bitcasts.h 2025-08-26T20:45:22.7607154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fp16\fp16.h 2025-08-26T20:45:22.7610668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fp16\psimd.h 2025-08-26T20:45:22.7622016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\any.h 2025-08-26T20:45:22.7625296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\any.pb.h 2025-08-26T20:45:22.7628960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\api.pb.h 2025-08-26T20:45:22.7632844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\arena.h 2025-08-26T20:45:22.7636433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\arenastring.h 2025-08-26T20:45:22.7643660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\arena_impl.h 2025-08-26T20:45:22.7647490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\descriptor.h 2025-08-26T20:45:22.7651633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\descriptor.pb.h 2025-08-26T20:45:22.7658833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\descriptor_database.h 2025-08-26T20:45:22.7663011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\duration.pb.h 2025-08-26T20:45:22.7666524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\dynamic_message.h 2025-08-26T20:45:22.7670034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\empty.pb.h 2025-08-26T20:45:22.7673432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\extension_set.h 2025-08-26T20:45:22.7677572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\extension_set_inl.h 2025-08-26T20:45:22.7681492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\field_mask.pb.h 2025-08-26T20:45:22.7685435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\generated_enum_reflection.h 2025-08-26T20:45:22.7689021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\generated_enum_util.h 2025-08-26T20:45:22.7692753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\generated_message_reflection.h 2025-08-26T20:45:22.7696360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\generated_message_table_driven.h 2025-08-26T20:45:22.7700316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\generated_message_util.h 2025-08-26T20:45:22.7708879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\has_bits.h 2025-08-26T20:45:22.7712471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\implicit_weak_message.h 2025-08-26T20:45:22.7716304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\inlined_string_field.h 2025-08-26T20:45:22.7719724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map.h 2025-08-26T20:45:22.7723489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_entry.h 2025-08-26T20:45:22.7727145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_entry_lite.h 2025-08-26T20:45:22.7730837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_field.h 2025-08-26T20:45:22.7734711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_field_inl.h 2025-08-26T20:45:22.7738414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_field_lite.h 2025-08-26T20:45:22.7742221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_type_handler.h 2025-08-26T20:45:22.7750340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\message.h 2025-08-26T20:45:22.7754577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\message_lite.h 2025-08-26T20:45:22.7758278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\metadata.h 2025-08-26T20:45:22.7761911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\metadata_lite.h 2025-08-26T20:45:22.7766100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\parse_context.h 2025-08-26T20:45:22.7787149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\port.h 2025-08-26T20:45:22.7790809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\reflection.h 2025-08-26T20:45:22.7794490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\reflection_ops.h 2025-08-26T20:45:22.7798613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\repeated_field.h 2025-08-26T20:45:22.7803018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\service.h 2025-08-26T20:45:22.7806813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\source_context.pb.h 2025-08-26T20:45:22.7810533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\struct.pb.h 2025-08-26T20:45:22.7818482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\text_format.h 2025-08-26T20:45:22.7822419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\timestamp.pb.h 2025-08-26T20:45:22.7825966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\type.pb.h 2025-08-26T20:45:22.7830451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\unknown_field_set.h 2025-08-26T20:45:22.7834224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\wire_format.h 2025-08-26T20:45:22.7837642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\wire_format_lite.h 2025-08-26T20:45:22.7842133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\wrappers.pb.h 2025-08-26T20:45:22.7850511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\code_generator.h 2025-08-26T20:45:22.7854222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\command_line_interface.h 2025-08-26T20:45:22.7857753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\importer.h 2025-08-26T20:45:22.7861452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\parser.h 2025-08-26T20:45:22.7865450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\plugin.h 2025-08-26T20:45:22.7872140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\plugin.pb.h 2025-08-26T20:45:22.7880593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\cpp\cpp_generator.h 2025-08-26T20:45:22.7888034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\csharp\csharp_generator.h 2025-08-26T20:45:22.7891478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\csharp\csharp_names.h 2025-08-26T20:45:22.7898478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\java\java_generator.h 2025-08-26T20:45:22.7902530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\java\java_names.h 2025-08-26T20:45:22.7909441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\js\js_generator.h 2025-08-26T20:45:22.7913206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\js\well_known_types_embed.h 2025-08-26T20:45:22.7920605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\objectivec\objectivec_generator.h 2025-08-26T20:45:22.7924401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\objectivec\objectivec_helpers.h 2025-08-26T20:45:22.7931654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\php\php_generator.h 2025-08-26T20:45:22.7938908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\python\python_generator.h 2025-08-26T20:45:22.7945883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\ruby\ruby_generator.h 2025-08-26T20:45:22.7953848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\coded_stream.h 2025-08-26T20:45:22.7958036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\gzip_stream.h 2025-08-26T20:45:22.7961498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\io_win32.h 2025-08-26T20:45:22.7964676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\printer.h 2025-08-26T20:45:22.7968351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\strtod.h 2025-08-26T20:45:22.7976366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\tokenizer.h 2025-08-26T20:45:22.7980027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\zero_copy_stream.h 2025-08-26T20:45:22.7983809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\zero_copy_stream_impl.h 2025-08-26T20:45:22.7987415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\zero_copy_stream_impl_lite.h 2025-08-26T20:45:22.7996171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\bytestream.h 2025-08-26T20:45:22.7999668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\callback.h 2025-08-26T20:45:22.8002970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\casts.h 2025-08-26T20:45:22.8006684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\common.h 2025-08-26T20:45:22.8010328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\fastmem.h 2025-08-26T20:45:22.8013618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\hash.h 2025-08-26T20:45:22.8021918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\logging.h 2025-08-26T20:45:22.8025249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\macros.h 2025-08-26T20:45:22.8028865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\map_util.h 2025-08-26T20:45:22.8032802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\mutex.h 2025-08-26T20:45:22.8036407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\once.h 2025-08-26T20:45:22.8039960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\platform_macros.h 2025-08-26T20:45:22.8043342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\port.h 2025-08-26T20:45:22.8047034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\status.h 2025-08-26T20:45:22.8050613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\stl_util.h 2025-08-26T20:45:22.8054370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\stringpiece.h 2025-08-26T20:45:22.8058053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\strutil.h 2025-08-26T20:45:22.8061834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\template_util.h 2025-08-26T20:45:22.8069791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\delimited_message_util.h 2025-08-26T20:45:22.8073394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\field_comparator.h 2025-08-26T20:45:22.8076845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\field_mask_util.h 2025-08-26T20:45:22.8084563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\json_util.h 2025-08-26T20:45:22.8088446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\message_differencer.h 2025-08-26T20:45:22.8092238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\time_util.h 2025-08-26T20:45:22.8095754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\type_resolver.h 2025-08-26T20:45:22.8099704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\type_resolver_util.h 2025-08-26T20:45:22.8109009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\AbstractConfig.h 2025-08-26T20:45:22.8112731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ActivityProfilerInterface.h 2025-08-26T20:45:22.8116220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ActivityTraceInterface.h 2025-08-26T20:45:22.8124296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ActivityType.h 2025-08-26T20:45:22.8127815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ClientInterface.h 2025-08-26T20:45:22.8131598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\Config.h 2025-08-26T20:45:22.8135086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\GenericTraceActivity.h 2025-08-26T20:45:22.8138785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\IActivityProfiler.h 2025-08-26T20:45:22.8142823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ILoggerObserver.h 2025-08-26T20:45:22.8146392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ITraceActivity.h 2025-08-26T20:45:22.8150021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\libkineto.h 2025-08-26T20:45:22.8154293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\LoggingAPI.h 2025-08-26T20:45:22.8158077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\output_base.h 2025-08-26T20:45:22.8162110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ThreadUtil.h 2025-08-26T20:45:22.8165756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\time_since_epoch.h 2025-08-26T20:45:22.8169541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\TraceSpan.h 2025-08-26T20:45:22.8177581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\legacy\ittnotify.h 2025-08-26T20:45:22.8185455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\mimalloc-2.2\mimalloc-new-delete.h 2025-08-26T20:45:22.8189246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\mimalloc-2.2\mimalloc-override.h 2025-08-26T20:45:22.8192805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\mimalloc-2.2\mimalloc-stats.h 2025-08-26T20:45:22.8200621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\mimalloc-2.2\mimalloc.h 2025-08-26T20:45:22.8213511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl.h 2025-08-26T20:45:22.8218301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl.hpp 2025-08-26T20:45:22.8225741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_common.h 2025-08-26T20:45:22.8229843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_common.hpp 2025-08-26T20:45:22.8233440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_common_types.h 2025-08-26T20:45:22.8240919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_config.h 2025-08-26T20:45:22.8244768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_debug.h 2025-08-26T20:45:22.8247979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph.h 2025-08-26T20:45:22.8252095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph.hpp 2025-08-26T20:45:22.8256318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph_ocl.h 2025-08-26T20:45:22.8259870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph_ocl.hpp 2025-08-26T20:45:22.8263925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph_sycl.h 2025-08-26T20:45:22.8267749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph_sycl.hpp 2025-08-26T20:45:22.8271349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph_types.h 2025-08-26T20:45:22.8274809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ocl.h 2025-08-26T20:45:22.8278147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ocl.hpp 2025-08-26T20:45:22.8281706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ocl_types.h 2025-08-26T20:45:22.8285561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_sycl.h 2025-08-26T20:45:22.8289180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_sycl.hpp 2025-08-26T20:45:22.8293180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_sycl_types.h 2025-08-26T20:45:22.8296993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_threadpool.h 2025-08-26T20:45:22.8306267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_threadpool.hpp 2025-08-26T20:45:22.8310198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_threadpool_iface.hpp 2025-08-26T20:45:22.8313873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_types.h 2025-08-26T20:45:22.8318417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ukernel.h 2025-08-26T20:45:22.8322239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ukernel.hpp 2025-08-26T20:45:22.8326033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ukernel_types.h 2025-08-26T20:45:22.8330114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_version.h 2025-08-26T20:45:22.8333986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_version_hash.h 2025-08-26T20:45:22.8344164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\attr.h 2025-08-26T20:45:22.8348058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\buffer_info.h 2025-08-26T20:45:22.8351365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\cast.h 2025-08-26T20:45:22.8355573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\chrono.h 2025-08-26T20:45:22.8359059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\common.h 2025-08-26T20:45:22.8362680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\complex.h 2025-08-26T20:45:22.8371537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\critical_section.h 2025-08-26T20:45:22.8375117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\eigen.h 2025-08-26T20:45:22.8378359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\embed.h 2025-08-26T20:45:22.8381844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\eval.h 2025-08-26T20:45:22.8385330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\functional.h 2025-08-26T20:45:22.8389170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\gil.h 2025-08-26T20:45:22.8392470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\gil_safe_call_once.h 2025-08-26T20:45:22.8396195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\gil_simple.h 2025-08-26T20:45:22.8399610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\iostream.h 2025-08-26T20:45:22.8403032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\native_enum.h 2025-08-26T20:45:22.8406493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\numpy.h 2025-08-26T20:45:22.8410661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\operators.h 2025-08-26T20:45:22.8414266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\options.h 2025-08-26T20:45:22.8417735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\pybind11.h 2025-08-26T20:45:22.8422347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\pytypes.h 2025-08-26T20:45:22.8426217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\stl.h 2025-08-26T20:45:22.8429699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\stl_bind.h 2025-08-26T20:45:22.8433665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\subinterpreter.h 2025-08-26T20:45:22.8437278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\trampoline_self_life_support.h 2025-08-26T20:45:22.8440807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\type_caster_pyobject_ptr.h 2025-08-26T20:45:22.8444367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\typing.h 2025-08-26T20:45:22.8447778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\warnings.h 2025-08-26T20:45:22.8460027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\conduit\pybind11_conduit_v1.h 2025-08-26T20:45:22.8463501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\conduit\pybind11_platform_abi_id.h 2025-08-26T20:45:22.8467045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\conduit\wrap_include_python_h.h 2025-08-26T20:45:22.8479073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\class.h 2025-08-26T20:45:22.8482431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\common.h 2025-08-26T20:45:22.8486608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\cpp_conduit.h 2025-08-26T20:45:22.8490108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\descr.h 2025-08-26T20:45:22.8493727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\dynamic_raw_ptr_cast_if_possible.h 2025-08-26T20:45:22.8502485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\exception_translation.h 2025-08-26T20:45:22.8506498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\function_record_pyobject.h 2025-08-26T20:45:22.8509823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\init.h 2025-08-26T20:45:22.8513457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\internals.h 2025-08-26T20:45:22.8517161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\native_enum_data.h 2025-08-26T20:45:22.8520814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\pybind11_namespace_macros.h 2025-08-26T20:45:22.8524669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\struct_smart_holder.h 2025-08-26T20:45:22.8528298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\typeid.h 2025-08-26T20:45:22.8531687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\type_caster_base.h 2025-08-26T20:45:22.8535796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\using_smart_holder.h 2025-08-26T20:45:22.8539123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\value_and_holder.h 2025-08-26T20:45:22.8546773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\eigen\common.h 2025-08-26T20:45:22.8550239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\eigen\matrix.h 2025-08-26T20:45:22.8553768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\eigen\tensor.h 2025-08-26T20:45:22.8561482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\stl\filesystem.h 2025-08-26T20:45:22.8571640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\custom_class.h 2025-08-26T20:45:22.8575313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\custom_class_detail.h 2025-08-26T20:45:22.8578667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\extension.h 2025-08-26T20:45:22.8582046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\library.h 2025-08-26T20:45:22.8590480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\script.h 2025-08-26T20:45:22.8599280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\copy_utils.h 2025-08-26T20:45:22.8602912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\CudaIPCTypes.h 2025-08-26T20:45:22.8606560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\DataLoader.h 2025-08-26T20:45:22.8609926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Device.h 2025-08-26T20:45:22.8617836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\DeviceAccelerator.h 2025-08-26T20:45:22.8621311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Dtype.h 2025-08-26T20:45:22.8624790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\DynamicTypes.h 2025-08-26T20:45:22.8628654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Event.h 2025-08-26T20:45:22.8632209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Exceptions.h 2025-08-26T20:45:22.8635867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Export.h 2025-08-26T20:45:22.8639789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Generator.h 2025-08-26T20:45:22.8643778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\itt.h 2025-08-26T20:45:22.8647150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\itt_wrapper.h 2025-08-26T20:45:22.8650675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Layout.h 2025-08-26T20:45:22.8654185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\MemoryFormat.h 2025-08-26T20:45:22.8657764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Module.h 2025-08-26T20:45:22.8661586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\PyInterpreter.h 2025-08-26T20:45:22.8665048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\PyInterpreterHooks.h 2025-08-26T20:45:22.8668907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\python_dimname.h 2025-08-26T20:45:22.8672958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\python_headers.h 2025-08-26T20:45:22.8676270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\QScheme.h 2025-08-26T20:45:22.8679917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\serialization.h 2025-08-26T20:45:22.8683395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Size.h 2025-08-26T20:45:22.8687082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Storage.h 2025-08-26T20:45:22.8694842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\StorageMethods.h 2025-08-26T20:45:22.8698347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\StorageSharing.h 2025-08-26T20:45:22.8701746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Stream.h 2025-08-26T20:45:22.8705142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\THConcat.h 2025-08-26T20:45:22.8708779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\THP.h 2025-08-26T20:45:22.8712660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\TypeInfo.h 2025-08-26T20:45:22.8715936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Types.h 2025-08-26T20:45:22.8719834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils.h 2025-08-26T20:45:22.8734638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\all.h 2025-08-26T20:45:22.8738709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\arg.h 2025-08-26T20:45:22.8742351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\autograd.h 2025-08-26T20:45:22.8745650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\cuda.h 2025-08-26T20:45:22.8749587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data.h 2025-08-26T20:45:22.8753389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\enum.h 2025-08-26T20:45:22.8756823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\expanding_array.h 2025-08-26T20:45:22.8765773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\fft.h 2025-08-26T20:45:22.8769286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\imethod.h 2025-08-26T20:45:22.8772738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\jit.h 2025-08-26T20:45:22.8776374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\mps.h 2025-08-26T20:45:22.8779816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nested.h 2025-08-26T20:45:22.8783286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn.h 2025-08-26T20:45:22.8786757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim.h 2025-08-26T20:45:22.8790183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\ordered_dict.h 2025-08-26T20:45:22.8794156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\python.h 2025-08-26T20:45:22.8797892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\serialize.h 2025-08-26T20:45:22.8801431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\sparse.h 2025-08-26T20:45:22.8805474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\special.h 2025-08-26T20:45:22.8809352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\torch.h 2025-08-26T20:45:22.8812803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\types.h 2025-08-26T20:45:22.8816504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\utils.h 2025-08-26T20:45:22.8820033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\version.h 2025-08-26T20:45:22.8823842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\xpu.h 2025-08-26T20:45:22.8847950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\dataloader.h 2025-08-26T20:45:22.8851816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\dataloader_options.h 2025-08-26T20:45:22.8855482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets.h 2025-08-26T20:45:22.8858933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\example.h 2025-08-26T20:45:22.8862646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\iterator.h 2025-08-26T20:45:22.8870668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers.h 2025-08-26T20:45:22.8874242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms.h 2025-08-26T20:45:22.8877990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\worker_exception.h 2025-08-26T20:45:22.8884987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\dataloader\base.h 2025-08-26T20:45:22.8889050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\dataloader\stateful.h 2025-08-26T20:45:22.8892480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\dataloader\stateless.h 2025-08-26T20:45:22.8899605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\base.h 2025-08-26T20:45:22.8903140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\chunk.h 2025-08-26T20:45:22.8906537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\map.h 2025-08-26T20:45:22.8910050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\mnist.h 2025-08-26T20:45:22.8913726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\shared.h 2025-08-26T20:45:22.8917484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\stateful.h 2025-08-26T20:45:22.8920922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\tensor.h 2025-08-26T20:45:22.8932873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\detail\data_shuttle.h 2025-08-26T20:45:22.8936371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\detail\queue.h 2025-08-26T20:45:22.8939905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\detail\sequencers.h 2025-08-26T20:45:22.8947307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\base.h 2025-08-26T20:45:22.8950767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\custom_batch_request.h 2025-08-26T20:45:22.8954323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\distributed.h 2025-08-26T20:45:22.8957604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\random.h 2025-08-26T20:45:22.8961998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\sequential.h 2025-08-26T20:45:22.8969578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\serialize.h 2025-08-26T20:45:22.8973292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\stream.h 2025-08-26T20:45:22.8980915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms\base.h 2025-08-26T20:45:22.8984243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms\collate.h 2025-08-26T20:45:22.8987668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms\lambda.h 2025-08-26T20:45:22.8991205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms\stack.h 2025-08-26T20:45:22.8994582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms\tensor.h 2025-08-26T20:45:22.9002359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\detail\static.h 2025-08-26T20:45:22.9006169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\detail\TensorDataContainer.h 2025-08-26T20:45:22.9013784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nativert\ModelRunnerHandle.h 2025-08-26T20:45:22.9020991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\cloneable.h 2025-08-26T20:45:22.9024607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional.h 2025-08-26T20:45:22.9028138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\init.h 2025-08-26T20:45:22.9031716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\module.h 2025-08-26T20:45:22.9035208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules.h 2025-08-26T20:45:22.9043239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options.h 2025-08-26T20:45:22.9046923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\pimpl-inl.h 2025-08-26T20:45:22.9050550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\pimpl.h 2025-08-26T20:45:22.9053852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\utils.h 2025-08-26T20:45:22.9060926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\activation.h 2025-08-26T20:45:22.9064695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\batchnorm.h 2025-08-26T20:45:22.9068602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\conv.h 2025-08-26T20:45:22.9072540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\distance.h 2025-08-26T20:45:22.9080554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\dropout.h 2025-08-26T20:45:22.9084458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\embedding.h 2025-08-26T20:45:22.9090699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\fold.h 2025-08-26T20:45:22.9092502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\instancenorm.h 2025-08-26T20:45:22.9121895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\linear.h 2025-08-26T20:45:22.9122234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\loss.h 2025-08-26T20:45:22.9122598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\normalization.h 2025-08-26T20:45:22.9122948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\padding.h 2025-08-26T20:45:22.9123307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\pixelshuffle.h 2025-08-26T20:45:22.9123646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\pooling.h 2025-08-26T20:45:22.9124159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\upsampling.h 2025-08-26T20:45:22.9125093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\vision.h 2025-08-26T20:45:22.9133822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\activation.h 2025-08-26T20:45:22.9137582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\adaptive.h 2025-08-26T20:45:22.9141211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\batchnorm.h 2025-08-26T20:45:22.9144932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\common.h 2025-08-26T20:45:22.9148572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\conv.h 2025-08-26T20:45:22.9156717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\distance.h 2025-08-26T20:45:22.9159728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\dropout.h 2025-08-26T20:45:22.9163794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\embedding.h 2025-08-26T20:45:22.9168101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\fold.h 2025-08-26T20:45:22.9171440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\instancenorm.h 2025-08-26T20:45:22.9175385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\linear.h 2025-08-26T20:45:22.9179683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\loss.h 2025-08-26T20:45:22.9183038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\normalization.h 2025-08-26T20:45:22.9187020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\padding.h 2025-08-26T20:45:22.9191200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\pixelshuffle.h 2025-08-26T20:45:22.9194360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\pooling.h 2025-08-26T20:45:22.9198226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\rnn.h 2025-08-26T20:45:22.9202028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\transformer.h 2025-08-26T20:45:22.9205851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\transformercoder.h 2025-08-26T20:45:22.9210236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\transformerlayer.h 2025-08-26T20:45:22.9213747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\upsampling.h 2025-08-26T20:45:22.9217209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\utils.h 2025-08-26T20:45:22.9220888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\_functions.h 2025-08-26T20:45:22.9228873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\any.h 2025-08-26T20:45:22.9232341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\any_module_holder.h 2025-08-26T20:45:22.9235997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\any_value.h 2025-08-26T20:45:22.9240174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\functional.h 2025-08-26T20:45:22.9248506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\moduledict.h 2025-08-26T20:45:22.9251863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\modulelist.h 2025-08-26T20:45:22.9256001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\named_any.h 2025-08-26T20:45:22.9260267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\parameterdict.h 2025-08-26T20:45:22.9263877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\parameterlist.h 2025-08-26T20:45:22.9267408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\sequential.h 2025-08-26T20:45:22.9276074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\activation.h 2025-08-26T20:45:22.9280956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\adaptive.h 2025-08-26T20:45:22.9284405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\batchnorm.h 2025-08-26T20:45:22.9287990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\conv.h 2025-08-26T20:45:22.9291650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\distance.h 2025-08-26T20:45:22.9299345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\dropout.h 2025-08-26T20:45:22.9303111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\embedding.h 2025-08-26T20:45:22.9306565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\fold.h 2025-08-26T20:45:22.9315311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\instancenorm.h 2025-08-26T20:45:22.9315638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\linear.h 2025-08-26T20:45:22.9318644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\loss.h 2025-08-26T20:45:22.9322835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\normalization.h 2025-08-26T20:45:22.9326502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\padding.h 2025-08-26T20:45:22.9330470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\pixelshuffle.h 2025-08-26T20:45:22.9334269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\pooling.h 2025-08-26T20:45:22.9337954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\rnn.h 2025-08-26T20:45:22.9341587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\transformer.h 2025-08-26T20:45:22.9345482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\transformercoder.h 2025-08-26T20:45:22.9349274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\transformerlayer.h 2025-08-26T20:45:22.9352841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\upsampling.h 2025-08-26T20:45:22.9356884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\vision.h 2025-08-26T20:45:22.9365084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\parallel\data_parallel.h 2025-08-26T20:45:22.9373696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\utils\clip_grad.h 2025-08-26T20:45:22.9377304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\utils\convert_parameters.h 2025-08-26T20:45:22.9381032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\utils\rnn.h 2025-08-26T20:45:22.9389276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\adagrad.h 2025-08-26T20:45:22.9392844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\adam.h 2025-08-26T20:45:22.9396894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\adamw.h 2025-08-26T20:45:22.9399782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\lbfgs.h 2025-08-26T20:45:22.9403584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\optimizer.h 2025-08-26T20:45:22.9407285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\rmsprop.h 2025-08-26T20:45:22.9415300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\serialize.h 2025-08-26T20:45:22.9418838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\sgd.h 2025-08-26T20:45:22.9426628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\schedulers\lr_scheduler.h 2025-08-26T20:45:22.9430526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\schedulers\reduce_on_plateau_scheduler.h 2025-08-26T20:45:22.9434258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\schedulers\step_lr.h 2025-08-26T20:45:22.9446208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\python\init.h 2025-08-26T20:45:22.9453510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\serialize\archive.h 2025-08-26T20:45:22.9457485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\serialize\input-archive.h 2025-08-26T20:45:22.9461287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\serialize\output-archive.h 2025-08-26T20:45:22.9464794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\serialize\tensor.h 2025-08-26T20:45:22.9480432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\anomaly_mode.h 2025-08-26T20:45:22.9484026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\autograd.h 2025-08-26T20:45:22.9487684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\autograd_not_implemented_fallback.h 2025-08-26T20:45:22.9491072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\cpp_hook.h 2025-08-26T20:45:22.9498682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\custom_function.h 2025-08-26T20:45:22.9502352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\edge.h 2025-08-26T20:45:22.9506330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\engine.h 2025-08-26T20:45:22.9509758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\forward_grad.h 2025-08-26T20:45:22.9513511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\function.h 2025-08-26T20:45:22.9517102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\FunctionsManual.h 2025-08-26T20:45:22.9521190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\function_hook.h 2025-08-26T20:45:22.9524756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\grad_mode.h 2025-08-26T20:45:22.9528330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\graph_task.h 2025-08-26T20:45:22.9532344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\InferenceMode.h 2025-08-26T20:45:22.9536298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\input_buffer.h 2025-08-26T20:45:22.9539857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\input_metadata.h 2025-08-26T20:45:22.9543570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\jit_decomp_interface.h 2025-08-26T20:45:22.9547002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\profiler.h 2025-08-26T20:45:22.9550386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\profiler_kineto.h 2025-08-26T20:45:22.9553972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\profiler_legacy.h 2025-08-26T20:45:22.9557716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\profiler_python.h 2025-08-26T20:45:22.9561295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_anomaly_mode.h 2025-08-26T20:45:22.9568507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_autograd.h 2025-08-26T20:45:22.9572026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_cpp_function.h 2025-08-26T20:45:22.9575464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_engine.h 2025-08-26T20:45:22.9579236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_enum_tag.h 2025-08-26T20:45:22.9583027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_fft_functions.h 2025-08-26T20:45:22.9586834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_function.h 2025-08-26T20:45:22.9590468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_hook.h 2025-08-26T20:45:22.9594778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_legacy_variable.h 2025-08-26T20:45:22.9598980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_linalg_functions.h 2025-08-26T20:45:22.9607545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_nested_functions.h 2025-08-26T20:45:22.9611355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_nn_functions.h 2025-08-26T20:45:22.9615067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_saved_variable_hooks.h 2025-08-26T20:45:22.9618792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_sparse_functions.h 2025-08-26T20:45:22.9622792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_special_functions.h 2025-08-26T20:45:22.9626945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_torch_functions.h 2025-08-26T20:45:22.9630715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_variable.h 2025-08-26T20:45:22.9634739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_variable_indexing.h 2025-08-26T20:45:22.9638441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\record_function_ops.h 2025-08-26T20:45:22.9642328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\saved_variable.h 2025-08-26T20:45:22.9645714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\saved_variable_hooks.h 2025-08-26T20:45:22.9653365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\symbolic.h 2025-08-26T20:45:22.9656858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\variable.h 2025-08-26T20:45:22.9660887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\VariableTypeUtils.h 2025-08-26T20:45:22.9664642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\variable_info.h 2025-08-26T20:45:22.9672749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\accumulate_grad.h 2025-08-26T20:45:22.9676404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\basic_ops.h 2025-08-26T20:45:22.9680835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\comm.h 2025-08-26T20:45:22.9683737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\pybind.h 2025-08-26T20:45:22.9691348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\tensor.h 2025-08-26T20:45:22.9695304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\utils.h 2025-08-26T20:45:22.9703433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\Functions.h 2025-08-26T20:45:22.9710403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\python_functions.h 2025-08-26T20:45:22.9714294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\python_return_types.h 2025-08-26T20:45:22.9722354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\VariableType.h 2025-08-26T20:45:22.9726115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\variable_factories.h 2025-08-26T20:45:22.9730644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\ViewFuncs.h 2025-08-26T20:45:22.9740195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\error_messages.h 2025-08-26T20:45:22.9743764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\grad_layout_contract.h 2025-08-26T20:45:22.9747502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\lambda_post_hook.h 2025-08-26T20:45:22.9751281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\python_arg_parsing.h 2025-08-26T20:45:22.9759938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\warnings.h 2025-08-26T20:45:22.9763957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\wrap_outputs.h 2025-08-26T20:45:22.9772896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cpu\Module.h 2025-08-26T20:45:22.9780659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\comm.h 2025-08-26T20:45:22.9784293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\CUDAPluggableAllocator.h 2025-08-26T20:45:22.9787762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\device_set.h 2025-08-26T20:45:22.9791388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\Event.h 2025-08-26T20:45:22.9794717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\GdsFile.h 2025-08-26T20:45:22.9802549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\memory_snapshot.h 2025-08-26T20:45:22.9806203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\Module.h 2025-08-26T20:45:22.9809837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\nccl.h 2025-08-26T20:45:22.9813540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\python_comm.h 2025-08-26T20:45:22.9817309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\python_nccl.h 2025-08-26T20:45:22.9821075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\Stream.h 2025-08-26T20:45:22.9824508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\THCP.h 2025-08-26T20:45:22.9827789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\utils.h 2025-08-26T20:45:22.9839682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\autograd.h 2025-08-26T20:45:22.9843240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\python_autograd.h 2025-08-26T20:45:22.9846736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\utils.h 2025-08-26T20:45:22.9854068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\context\container.h 2025-08-26T20:45:22.9858160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\context\context.h 2025-08-26T20:45:22.9865304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\engine\dist_engine.h 2025-08-26T20:45:22.9877098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\functions\recvrpc_backward.h 2025-08-26T20:45:22.9880831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\functions\sendrpc_backward.h 2025-08-26T20:45:22.9888437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\autograd_metadata.h 2025-08-26T20:45:22.9892390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\cleanup_autograd_context_req.h 2025-08-26T20:45:22.9896165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\cleanup_autograd_context_resp.h 2025-08-26T20:45:22.9921620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\propagate_gradients_req.h 2025-08-26T20:45:22.9925146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\propagate_gradients_resp.h 2025-08-26T20:45:22.9929025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\rpc_with_autograd.h 2025-08-26T20:45:22.9932927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\rpc_with_profiling_req.h 2025-08-26T20:45:22.9936878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\rpc_with_profiling_resp.h 2025-08-26T20:45:22.9940686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\rref_backward_req.h 2025-08-26T20:45:22.9944892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\rref_backward_resp.h 2025-08-26T20:45:22.9954133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Backend.hpp 2025-08-26T20:45:22.9957831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Backoff.hpp 2025-08-26T20:45:22.9961190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\c10d.h 2025-08-26T20:45:22.9964689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\comm.hpp 2025-08-26T20:45:22.9968309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\debug.h 2025-08-26T20:45:22.9971648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\default_comm_hooks.hpp 2025-08-26T20:45:22.9978951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\error.h 2025-08-26T20:45:22.9982843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\exception.h 2025-08-26T20:45:22.9986453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\FakeProcessGroup.hpp 2025-08-26T20:45:22.9989965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\FileStore.hpp 2025-08-26T20:45:22.9993628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\FlightRecorder.hpp 2025-08-26T20:45:22.9997097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\FlightRecorderDetail.hpp 2025-08-26T20:45:23.0000570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Functional.hpp 2025-08-26T20:45:23.0004227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\GlooDeviceFactory.hpp 2025-08-26T20:45:23.0007882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\GroupRegistry.hpp 2025-08-26T20:45:23.0011720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\HashStore.hpp 2025-08-26T20:45:23.0015456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\logger.hpp 2025-08-26T20:45:23.0018718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\logging.h 2025-08-26T20:45:23.0022135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\NanCheck.hpp 2025-08-26T20:45:23.0025683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\NCCLUtils.hpp 2025-08-26T20:45:23.0029318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ParamCommsUtils.hpp 2025-08-26T20:45:23.0032871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\PrefixStore.hpp 2025-08-26T20:45:23.0036396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroup.hpp 2025-08-26T20:45:23.0045064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupGloo.hpp 2025-08-26T20:45:23.0049018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupGlooDetail.hpp 2025-08-26T20:45:23.0052968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupMPI.hpp 2025-08-26T20:45:23.0056592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupNCCL.hpp 2025-08-26T20:45:23.0060591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupUCC.hpp 2025-08-26T20:45:23.0064570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupWrapper.hpp 2025-08-26T20:45:23.0068311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\PyProcessGroup.hpp 2025-08-26T20:45:23.0071807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\python_comm_hook.h 2025-08-26T20:45:23.0076010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\RankLocal.hpp 2025-08-26T20:45:23.0084396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\reducer.hpp 2025-08-26T20:45:23.0088274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\reducer_timer.hpp 2025-08-26T20:45:23.0091877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\sequence_num.hpp 2025-08-26T20:45:23.0095348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\socket.h 2025-08-26T20:45:23.0100120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\socket_fmt.h 2025-08-26T20:45:23.0103784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Store.hpp 2025-08-26T20:45:23.0107822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\TCPStore.hpp 2025-08-26T20:45:23.0111460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\TCPStoreBackend.hpp 2025-08-26T20:45:23.0115668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\TraceUtils.h 2025-08-26T20:45:23.0119558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Types.hpp 2025-08-26T20:45:23.0123821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\UCCTracing.hpp 2025-08-26T20:45:23.0127621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\UCCUtils.hpp 2025-08-26T20:45:23.0135017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\UnixSockUtils.hpp 2025-08-26T20:45:23.0138659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Utils.hpp 2025-08-26T20:45:23.0142327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\WinSockUtils.hpp 2025-08-26T20:45:23.0146042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Work.hpp 2025-08-26T20:45:23.0153961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\control_collectives\ControlCollectives.hpp 2025-08-26T20:45:23.0157897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\control_collectives\StoreCollectives.hpp 2025-08-26T20:45:23.0166080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\control_plane\Handlers.hpp 2025-08-26T20:45:23.0170164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\control_plane\WorkerServer.hpp 2025-08-26T20:45:23.0177826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\cuda\CUDAEventCache.hpp 2025-08-26T20:45:23.0181347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\cuda\StreamBlock.hpp 2025-08-26T20:45:23.0184737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\cuda\utils.hpp 2025-08-26T20:45:23.0193203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\quantization\quantization.h 2025-08-26T20:45:23.0197881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\quantization\quantization_gpu.h 2025-08-26T20:45:23.0202051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\quantization\quantization_utils.h 2025-08-26T20:45:23.0214527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemory-inl.h 2025-08-26T20:45:23.0218460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemory.hpp 2025-08-26T20:45:23.0222496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemoryTypes.hpp 2025-08-26T20:45:23.0231601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemoryUtils.hpp 2025-08-26T20:45:23.0235543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\DMAConnectivity.hpp 2025-08-26T20:45:23.0239211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\intra_node_comm.hpp 2025-08-26T20:45:23.0243316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\SymmetricMemory.hpp 2025-08-26T20:45:23.0252969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\agent_utils.h 2025-08-26T20:45:23.0256649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\message.h 2025-08-26T20:45:23.0260854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\python_call.h 2025-08-26T20:45:23.0264603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\python_functions.h 2025-08-26T20:45:23.0367925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\python_remote_call.h 2025-08-26T20:45:23.0371652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\python_resp.h 2025-08-26T20:45:23.0375429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\python_rpc_handler.h 2025-08-26T20:45:23.0378840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\py_rref.h 2025-08-26T20:45:23.0383413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\request_callback.h 2025-08-26T20:45:23.0387078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\request_callback_impl.h 2025-08-26T20:45:23.0390735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\request_callback_no_python.h 2025-08-26T20:45:23.0394729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rpc.h 2025-08-26T20:45:23.0398168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rpc_agent.h 2025-08-26T20:45:23.0402100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rpc_command_base.h 2025-08-26T20:45:23.0405524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rref_context.h 2025-08-26T20:45:23.0409369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rref_impl.h 2025-08-26T20:45:23.0413767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rref_proto.h 2025-08-26T20:45:23.0417478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\script_call.h 2025-08-26T20:45:23.0422677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\script_remote_call.h 2025-08-26T20:45:23.0426517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\script_resp.h 2025-08-26T20:45:23.0795284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\tensorpipe_agent.h 2025-08-26T20:45:23.0799135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\tensorpipe_utils.h 2025-08-26T20:45:23.0802681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\torchscript_functions.h 2025-08-26T20:45:23.0806707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\types.h 2025-08-26T20:45:23.0810415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\unpickled_python_call.h 2025-08-26T20:45:23.0814224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\unpickled_python_remote_call.h 2025-08-26T20:45:23.0818032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\utils.h 2025-08-26T20:45:23.0826040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\metrics\RpcMetricsHandler.h 2025-08-26T20:45:23.0833762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\profiler\remote_profiler_manager.h 2025-08-26T20:45:23.0837498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\profiler\server_process_global_profiler.h 2025-08-26T20:45:23.0845175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\testing\faulty_tensorpipe_agent.h 2025-08-26T20:45:23.0848822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\testing\testing.h 2025-08-26T20:45:23.0858314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\cache_entry.h 2025-08-26T20:45:23.0862286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\compiled_autograd.h 2025-08-26T20:45:23.0866271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\cpp_shim.h 2025-08-26T20:45:23.0869663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\cpython_defs.h 2025-08-26T20:45:23.1023571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\cpython_includes.h 2025-08-26T20:45:23.1027195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\debug_macros.h 2025-08-26T20:45:23.1135665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\eval_frame.h 2025-08-26T20:45:23.1140152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\eval_frame_cpp.h 2025-08-26T20:45:23.1144413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\extra_state.h 2025-08-26T20:45:23.1148173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\framelocals_mapping.h 2025-08-26T20:45:23.1152212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\guards.h 2025-08-26T20:45:23.1156590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\init.h 2025-08-26T20:45:23.1160545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\python_compiled_autograd.h 2025-08-26T20:45:23.1164007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\utils.h 2025-08-26T20:45:23.1172464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\export\example_upgraders.h 2025-08-26T20:45:23.1176046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\export\pt2_archive_constants.h 2025-08-26T20:45:23.1179857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\export\pybind.h 2025-08-26T20:45:23.1183402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\export\upgrader.h 2025-08-26T20:45:23.1191301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\functorch\init.h 2025-08-26T20:45:23.1199185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\fx\node.h 2025-08-26T20:45:23.1208118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\array_ref_impl.h 2025-08-26T20:45:23.1213092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_prefix.h 2025-08-26T20:45:23.1215839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\inductor_ops.h 2025-08-26T20:45:23.1219695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\static_cuda_launcher.h 2025-08-26T20:45:23.1313044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_eager\kernel_holder.h 2025-08-26T20:45:23.1316814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_eager\kernel_meta_info.h 2025-08-26T20:45:23.1324016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\array_ref.h 2025-08-26T20:45:23.1328654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\common.h 2025-08-26T20:45:23.1331059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\cpu.h 2025-08-26T20:45:23.1334698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\cuda.h 2025-08-26T20:45:23.1338221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\mps.h 2025-08-26T20:45:23.1433020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\xpu.h 2025-08-26T20:45:23.1440147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_package\model_package_loader.h 2025-08-26T20:45:23.1444046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_package\pybind.h 2025-08-26T20:45:23.1451660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner.h 2025-08-26T20:45:23.1455043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_cpu.h 2025-08-26T20:45:23.1459300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_cuda.h 2025-08-26T20:45:23.1563879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_mps.h 2025-08-26T20:45:23.1568155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_xpu.h 2025-08-26T20:45:23.1571845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\pybind.h 2025-08-26T20:45:23.1580244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\arrayref_tensor.h 2025-08-26T20:45:23.1583961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\constant_type.h 2025-08-26T20:45:23.1587556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\device_utils.h 2025-08-26T20:45:23.1685590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\interface.h 2025-08-26T20:45:23.1689223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\mini_array_ref.h 2025-08-26T20:45:23.1692507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\model.h 2025-08-26T20:45:23.1696446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\model_base.h 2025-08-26T20:45:23.1700511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\model_container.h 2025-08-26T20:45:23.1704454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\scalar_to_tensor.h 2025-08-26T20:45:23.1708206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\sycl_runtime_wrappers.h 2025-08-26T20:45:23.1712019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\thread_local.h 2025-08-26T20:45:23.1715895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\utils.h 2025-08-26T20:45:23.1719420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\utils_cuda.h 2025-08-26T20:45:23.1723061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\utils_xpu.h 2025-08-26T20:45:23.1731944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\mkldnn_tensor.h 2025-08-26T20:45:23.1736340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\oss_proxy_executor.h 2025-08-26T20:45:23.1739980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\proxy_executor.h 2025-08-26T20:45:23.1849431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\tensor_converter.h 2025-08-26T20:45:23.1853001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\utils.h 2025-08-26T20:45:23.1860309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\c\macros.h 2025-08-26T20:45:23.1863721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\c\shim.h 2025-08-26T20:45:23.1869115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\c\shim_cpu.h 2025-08-26T20:45:23.1871492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\c\shim_deprecated.h 2025-08-26T20:45:23.1874985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\c\shim_mps.h 2025-08-26T20:45:23.1879130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\c\shim_xpu.h 2025-08-26T20:45:23.1944585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_aten.h 2025-08-26T20:45:23.1947961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_cpu.h 2025-08-26T20:45:23.1951869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_cuda.h 2025-08-26T20:45:23.1964874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_mps.h 2025-08-26T20:45:23.1968888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_xpu.h 2025-08-26T20:45:23.1977579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\array_ref.h 2025-08-26T20:45:23.1981216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\common.h 2025-08-26T20:45:23.1984874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\cpu.h 2025-08-26T20:45:23.1988173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\cuda.h 2025-08-26T20:45:23.1991562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\mps.h 2025-08-26T20:45:23.2102017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\xpu.h 2025-08-26T20:45:23.2108999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\cpu.h 2025-08-26T20:45:23.2112680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\cuda.h 2025-08-26T20:45:23.2115881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\mps.h 2025-08-26T20:45:23.2124350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\xpu.h 2025-08-26T20:45:23.2133392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\instruction_counter\Module.h 2025-08-26T20:45:23.2141232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\jit_log.h 2025-08-26T20:45:23.2144553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\jit_opt_limit.h 2025-08-26T20:45:23.2149575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\resource_guard.h 2025-08-26T20:45:23.2189266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\api\compilation_unit.h 2025-08-26T20:45:23.2193693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\api\function_impl.h 2025-08-26T20:45:23.2197462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\api\method.h 2025-08-26T20:45:23.2201161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\api\module.h 2025-08-26T20:45:23.2205578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\api\object.h 2025-08-26T20:45:23.2439234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend.h 2025-08-26T20:45:23.2442862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_debug_handler.h 2025-08-26T20:45:23.2446440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_debug_info.h 2025-08-26T20:45:23.2449947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_detail.h 2025-08-26T20:45:23.2463099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_exception.h 2025-08-26T20:45:23.2466678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_init.h 2025-08-26T20:45:23.2480943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_interface.h 2025-08-26T20:45:23.2481793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_preprocess.h 2025-08-26T20:45:23.2482528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_resolver.h 2025-08-26T20:45:23.2489268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\cpp\context.h 2025-08-26T20:45:23.2496449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLCompiler.h 2025-08-26T20:45:23.2500273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLExecutor.h 2025-08-26T20:45:23.2503995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLFeatureProvider.h 2025-08-26T20:45:23.2517760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLModelWrapper.h 2025-08-26T20:45:23.2521667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLTensorSpec.h 2025-08-26T20:45:23.2530464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\xnnpack\xnnpack_graph_builder.h 2025-08-26T20:45:23.2538605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\xnnpack\compiler\xnn_compiler.h 2025-08-26T20:45:23.2546038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\xnnpack\executor\xnn_executor.h 2025-08-26T20:45:23.2553577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\xnnpack\serialization\serializer.h 2025-08-26T20:45:23.2566099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\cuda\interface.h 2025-08-26T20:45:23.2573633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\arg_spec.h 2025-08-26T20:45:23.2576992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\codegen.h 2025-08-26T20:45:23.2580322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\compiler.h 2025-08-26T20:45:23.2583914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\executor.h 2025-08-26T20:45:23.2620927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\fallback.h 2025-08-26T20:45:23.2624265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\fused_kernel.h 2025-08-26T20:45:23.2631767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\interface.h 2025-08-26T20:45:23.2635404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\kernel_cache.h 2025-08-26T20:45:23.2638851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\kernel_spec.h 2025-08-26T20:45:23.2642341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\partition_desc.h 2025-08-26T20:45:23.2646109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\tensor_desc.h 2025-08-26T20:45:23.2650088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\tensor_info.h 2025-08-26T20:45:23.2657459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\cpu\fused_kernel.h 2025-08-26T20:45:23.2661067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\cpu\resource_strings.h 2025-08-26T20:45:23.2664657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\cpu\temp_file.h 2025-08-26T20:45:23.2672067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\cuda\fused_kernel.h 2025-08-26T20:45:23.2675547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\cuda\resource_strings.h 2025-08-26T20:45:23.2683971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\decompose_silu.h 2025-08-26T20:45:23.2687491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\defer_size_check.h 2025-08-26T20:45:23.2691514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\graph_fuser.h 2025-08-26T20:45:23.2695121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\graph_helper.h 2025-08-26T20:45:23.2708923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\guard_shape.h 2025-08-26T20:45:23.2712535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\interface.h 2025-08-26T20:45:23.2715964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\kernel.h 2025-08-26T20:45:23.2719835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\layout_propagation.h 2025-08-26T20:45:23.2723520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\LlgaTensorImpl.h 2025-08-26T20:45:23.2727039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\operator.h 2025-08-26T20:45:23.2730941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\prepare_binary.h 2025-08-26T20:45:23.2739666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\cuda\cuda.h 2025-08-26T20:45:23.2747405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\builtin_functions.h 2025-08-26T20:45:23.2750833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\canonicalize_modified_loop.h 2025-08-26T20:45:23.2754805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\concrete_module_type.h 2025-08-26T20:45:23.2768320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\convert_to_ssa.h 2025-08-26T20:45:23.2771927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\edit_distance.h 2025-08-26T20:45:23.2775673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\error_report.h 2025-08-26T20:45:23.2779542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\exit_transforms.h 2025-08-26T20:45:23.2783571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\function_schema_parser.h 2025-08-26T20:45:23.2787385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\inline_loop_condition.h 2025-08-26T20:45:23.2790761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\ir_emitter.h 2025-08-26T20:45:23.2794751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\lexer.h 2025-08-26T20:45:23.2798409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\mini_environment.h 2025-08-26T20:45:23.2802165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\name_mangler.h 2025-08-26T20:45:23.2806034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\parser.h 2025-08-26T20:45:23.2809802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\parser_constants.h 2025-08-26T20:45:23.2813458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\parse_string_literal.h 2025-08-26T20:45:23.2817366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\resolver.h 2025-08-26T20:45:23.2820903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\schema_matching.h 2025-08-26T20:45:23.2824613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\schema_type_parser.h 2025-08-26T20:45:23.2828578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\script_type_parser.h 2025-08-26T20:45:23.2842058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\source_range.h 2025-08-26T20:45:23.2845621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\source_ref.h 2025-08-26T20:45:23.2849297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\strtod.h 2025-08-26T20:45:23.2852865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\sugared_value.h 2025-08-26T20:45:23.2856608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\tracer.h 2025-08-26T20:45:23.2860027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\tree.h 2025-08-26T20:45:23.2863610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\tree_views.h 2025-08-26T20:45:23.2867398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\versioned_symbols.h 2025-08-26T20:45:23.2875688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\alias_analysis.h 2025-08-26T20:45:23.2879169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\attributes.h 2025-08-26T20:45:23.2882609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\constants.h 2025-08-26T20:45:23.2886134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\graph_node_list.h 2025-08-26T20:45:23.2900706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\graph_utils.h 2025-08-26T20:45:23.2904155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\ir.h 2025-08-26T20:45:23.2908241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\irparser.h 2025-08-26T20:45:23.2911655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\ir_views.h 2025-08-26T20:45:23.2915481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\named_value.h 2025-08-26T20:45:23.2919144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\node_hashing.h 2025-08-26T20:45:23.2922352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\scope.h 2025-08-26T20:45:23.2925722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\subgraph_matcher.h 2025-08-26T20:45:23.2929413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\type_hashing.h 2025-08-26T20:45:23.2937137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\code.h 2025-08-26T20:45:23.2940530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\debug_info.h 2025-08-26T20:45:23.2943979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\file_format.h 2025-08-26T20:45:23.2947337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\flatbuffer_loader.h 2025-08-26T20:45:23.2960855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\frame.h 2025-08-26T20:45:23.2964781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\function.h 2025-08-26T20:45:23.2968322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\import.h 2025-08-26T20:45:23.2971857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\import_data.h 2025-08-26T20:45:23.2975301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\import_export_common.h 2025-08-26T20:45:23.2979073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\interpreter.h 2025-08-26T20:45:23.2982503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\method.h 2025-08-26T20:45:23.2986231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\module.h 2025-08-26T20:45:23.2989776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\observer.h 2025-08-26T20:45:23.2993203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\parse_bytecode.h 2025-08-26T20:45:23.2996932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\parse_operators.h 2025-08-26T20:45:23.3000839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\prim_ops_registery.h 2025-08-26T20:45:23.3004649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\profiler_edge.h 2025-08-26T20:45:23.3008352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\promoted_prim_ops.h 2025-08-26T20:45:23.3012096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\quantization.h 2025-08-26T20:45:23.3016087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\register_ops_common_utils.h 2025-08-26T20:45:23.3019879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\type_parser.h 2025-08-26T20:45:23.3023506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\upgrader_mobile.h 2025-08-26T20:45:23.3040837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\compatibility\backport.h 2025-08-26T20:45:23.3044512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\compatibility\backport_manager.h 2025-08-26T20:45:23.3048437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\compatibility\model_compatibility.h 2025-08-26T20:45:23.3062008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\compatibility\runtime_compatibility.h 2025-08-26T20:45:23.3069694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\BuildFeatureTracer.h 2025-08-26T20:45:23.3073171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\CustomClassTracer.h 2025-08-26T20:45:23.3077480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\KernelDTypeTracer.h 2025-08-26T20:45:23.3091332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\MobileModelRunner.h 2025-08-26T20:45:23.3094812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\OperatorCallTracer.h 2025-08-26T20:45:23.3098689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\TensorUtils.h 2025-08-26T20:45:23.3102440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\TracerRunner.h 2025-08-26T20:45:23.3109926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\nnc\aot_compiler.h 2025-08-26T20:45:23.3113576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\nnc\context.h 2025-08-26T20:45:23.3116955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\nnc\registry.h 2025-08-26T20:45:23.3124586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\train\export_data.h 2025-08-26T20:45:23.3128308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\train\random.h 2025-08-26T20:45:23.3131869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\train\sequential.h 2025-08-26T20:45:23.3139075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\train\optim\sgd.h 2025-08-26T20:45:23.3147543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\operator_upgraders\upgraders.h 2025-08-26T20:45:23.3151183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\operator_upgraders\upgraders_entry.h 2025-08-26T20:45:23.3154842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\operator_upgraders\utils.h 2025-08-26T20:45:23.3158525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\operator_upgraders\version_map.h 2025-08-26T20:45:23.3176044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\add_if_then_else.h 2025-08-26T20:45:23.3180005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\annotate_warns.h 2025-08-26T20:45:23.3183880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\autocast.h 2025-08-26T20:45:23.3187625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\bailout_graph.h 2025-08-26T20:45:23.3201171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\batch_mm.h 2025-08-26T20:45:23.3204745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\canonicalize.h 2025-08-26T20:45:23.3208518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\canonicalize_graph_fuser_ops.h 2025-08-26T20:45:23.3211944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\check_strict_fusion.h 2025-08-26T20:45:23.3215712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\clear_profiling.h 2025-08-26T20:45:23.3219324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\clear_undefinedness.h 2025-08-26T20:45:23.3223145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\common_subexpression_elimination.h 2025-08-26T20:45:23.3226839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\concat_opt.h 2025-08-26T20:45:23.3230419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\constant_pooling.h 2025-08-26T20:45:23.3233895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\constant_propagation.h 2025-08-26T20:45:23.3237673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\create_autodiff_subgraphs.h 2025-08-26T20:45:23.3241198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\create_functional_graphs.h 2025-08-26T20:45:23.3244984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\dead_code_elimination.h 2025-08-26T20:45:23.3249401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\decompose_ops.h 2025-08-26T20:45:23.3253093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\device_type_analysis.h 2025-08-26T20:45:23.3266858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\dtype_analysis.h 2025-08-26T20:45:23.3270622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\eliminate_no_ops.h 2025-08-26T20:45:23.3274172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\erase_number_types.h 2025-08-26T20:45:23.3278241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\fixup_trace_scope_blocks.h 2025-08-26T20:45:23.3282302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\fold_conv_bn.h 2025-08-26T20:45:23.3285935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\fold_linear_bn.h 2025-08-26T20:45:23.3289837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\freeze_module.h 2025-08-26T20:45:23.3293698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_concat_linear.h 2025-08-26T20:45:23.3297472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_conv_add_relu_fusion.h 2025-08-26T20:45:23.3311417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_conv_folding.h 2025-08-26T20:45:23.3315159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_graph_optimizations.h 2025-08-26T20:45:23.3319070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_linear_folding.h 2025-08-26T20:45:23.3322918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_linear_transpose.h 2025-08-26T20:45:23.3326638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_ops_to_mkldnn.h 2025-08-26T20:45:23.3330553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\fuse_linear.h 2025-08-26T20:45:23.3334859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\fuse_relu.h 2025-08-26T20:45:23.3338391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\graph_fuser.h 2025-08-26T20:45:23.3342368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\graph_rewrite_helper.h 2025-08-26T20:45:23.3356217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\guard_elimination.h 2025-08-26T20:45:23.3360042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\hoist_conv_packed_params.h 2025-08-26T20:45:23.3363998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\inliner.h 2025-08-26T20:45:23.3367890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\inline_autodiff_subgraphs.h 2025-08-26T20:45:23.3371504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\inline_forked_closures.h 2025-08-26T20:45:23.3375358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\inline_fork_wait.h 2025-08-26T20:45:23.3379142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\inplace_check.h 2025-08-26T20:45:23.3382893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\insert_guards.h 2025-08-26T20:45:23.3386614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\integer_value_refinement.h 2025-08-26T20:45:23.3399573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\lift_closures.h 2025-08-26T20:45:23.3403362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\liveness.h 2025-08-26T20:45:23.3407219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\loop_unrolling.h 2025-08-26T20:45:23.3411069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\lower_grad_of.h 2025-08-26T20:45:23.3414632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\lower_graph.h 2025-08-26T20:45:23.3418165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\lower_tuples.h 2025-08-26T20:45:23.3421831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\metal_rewrite.h 2025-08-26T20:45:23.3425619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\mkldnn_rewrite.h 2025-08-26T20:45:23.3429168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\mobile_optimizer_type.h 2025-08-26T20:45:23.3432850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\normalize_ops.h 2025-08-26T20:45:23.3456310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onednn_graph_fuser.h 2025-08-26T20:45:23.3460111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx.h 2025-08-26T20:45:23.3464410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\pass_manager.h 2025-08-26T20:45:23.3468305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\peephole.h 2025-08-26T20:45:23.3472232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\peephole_alias_sensitive.h 2025-08-26T20:45:23.3475712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\peephole_dict_idioms.h 2025-08-26T20:45:23.3479447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\peephole_list_idioms.h 2025-08-26T20:45:23.3483254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\peephole_non_tensor.h 2025-08-26T20:45:23.3486958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\prepack_folding.h 2025-08-26T20:45:23.3490488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\refine_tuple_types.h 2025-08-26T20:45:23.3494327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_dropout.h 2025-08-26T20:45:23.3508233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_exceptions.h 2025-08-26T20:45:23.3511989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_expands.h 2025-08-26T20:45:23.3515534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_inplace_ops.h 2025-08-26T20:45:23.3519195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_mutation.h 2025-08-26T20:45:23.3523849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_redundant_profiles.h 2025-08-26T20:45:23.3527763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\replacement_of_old_operators.h 2025-08-26T20:45:23.3531355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\requires_grad_analysis.h 2025-08-26T20:45:23.3535219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\restore_mutation.h 2025-08-26T20:45:23.3539092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\shape_analysis.h 2025-08-26T20:45:23.3553327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\specialize_autogradzero.h 2025-08-26T20:45:23.3556826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\subgraph_rewrite.h 2025-08-26T20:45:23.3560338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\symbolic_shape_analysis.h 2025-08-26T20:45:23.3563982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\symbolic_shape_cache.h 2025-08-26T20:45:23.3568203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\symbolic_shape_runtime_fusion.h 2025-08-26T20:45:23.3571977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\tensorexpr_fuser.h 2025-08-26T20:45:23.3575972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\update_differentiable_graph_requires_grad.h 2025-08-26T20:45:23.3579401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\value_refinement_utils.h 2025-08-26T20:45:23.3583077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\variadic_ops.h 2025-08-26T20:45:23.3586892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\vulkan_rewrite.h 2025-08-26T20:45:23.3590436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\xnnpack_rewrite.h 2025-08-26T20:45:23.3599018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\dbr_quantization\remove_redundant_aliases.h 2025-08-26T20:45:23.3608416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\cast_all_constant_to_floating.h 2025-08-26T20:45:23.3611889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\constant_fold.h 2025-08-26T20:45:23.3615452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\constant_map.h 2025-08-26T20:45:23.3618934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\deduplicate_initializers.h 2025-08-26T20:45:23.3632468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\eliminate_unused_items.h 2025-08-26T20:45:23.3636124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\eval_peephole.h 2025-08-26T20:45:23.3639768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\fixup_onnx_controlflow.h 2025-08-26T20:45:23.3643436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\function_extraction.h 2025-08-26T20:45:23.3647589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\function_substitution.h 2025-08-26T20:45:23.3651093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\helper.h 2025-08-26T20:45:23.3654758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\list_model_parameters.h 2025-08-26T20:45:23.3658589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\naming.h 2025-08-26T20:45:23.3662202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\onnx_log.h 2025-08-26T20:45:23.3666272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\peephole.h 2025-08-26T20:45:23.3670141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\prepare_division_for_onnx.h 2025-08-26T20:45:23.3673879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\preprocess_for_onnx.h 2025-08-26T20:45:23.3677614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\remove_inplace_ops_for_onnx.h 2025-08-26T20:45:23.3681651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\scalar_type_analysis.h 2025-08-26T20:45:23.3685625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\shape_type_inference.h 2025-08-26T20:45:23.3689685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\unpack_quantized_weights.h 2025-08-26T20:45:23.3706941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\autograd_function_process.h 2025-08-26T20:45:23.3710674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\common.h 2025-08-26T20:45:23.3714254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\pattern_conversion.h 2025-08-26T20:45:23.3727901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\pattern_encapsulation.h 2025-08-26T20:45:23.3736991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\dedup_module_uses.h 2025-08-26T20:45:23.3740504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\finalize.h 2025-08-26T20:45:23.3744785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\fusion_passes.h 2025-08-26T20:45:23.3748081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\helper.h 2025-08-26T20:45:23.3761655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\insert_observers.h 2025-08-26T20:45:23.3765496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\insert_quant_dequant.h 2025-08-26T20:45:23.3769684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\quantization_patterns.h 2025-08-26T20:45:23.3773784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\quantization_type.h 2025-08-26T20:45:23.3777620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\register_packed_params.h 2025-08-26T20:45:23.3785742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\utils\check_alias_annotation.h 2025-08-26T20:45:23.3789615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\utils\memory_dag.h 2025-08-26T20:45:23.3793336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\utils\optimization_utils.h 2025-08-26T20:45:23.3807205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\utils\op_registry.h 2025-08-26T20:45:23.3821416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\utils\subgraph_utils.h 2025-08-26T20:45:23.3864743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\init.h 2025-08-26T20:45:23.3868163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\module_python.h 2025-08-26T20:45:23.3872790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\pybind.h 2025-08-26T20:45:23.3876416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\pybind_utils.h 2025-08-26T20:45:23.3880475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_arg_flatten.h 2025-08-26T20:45:23.3889279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_custom_class.h 2025-08-26T20:45:23.3893082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_dict.h 2025-08-26T20:45:23.3896755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_ir.h 2025-08-26T20:45:23.3900846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_ivalue.h 2025-08-26T20:45:23.3904319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_list.h 2025-08-26T20:45:23.3908034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_sugared_value.h 2025-08-26T20:45:23.3911696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_tracer.h 2025-08-26T20:45:23.3915328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_tree_views.h 2025-08-26T20:45:23.3918855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\script_init.h 2025-08-26T20:45:23.3922491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\update_graph_executor_opt.h 2025-08-26T20:45:23.3926282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\utf8_decoding_ignore.h 2025-08-26T20:45:23.3935370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\argument_spec.h 2025-08-26T20:45:23.3938877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\autodiff.h 2025-08-26T20:45:23.3943110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\calculate_necessary_args.h 2025-08-26T20:45:23.3946086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\custom_operator.h 2025-08-26T20:45:23.3960143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\decomposition_registry.h 2025-08-26T20:45:23.3963939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\decomposition_registry_util.h 2025-08-26T20:45:23.3968289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\exception_message.h 2025-08-26T20:45:23.3972228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\graph_executor.h 2025-08-26T20:45:23.3975951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\graph_executor_impl.h 2025-08-26T20:45:23.3979510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\graph_iterator.h 2025-08-26T20:45:23.3983811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\instruction.h 2025-08-26T20:45:23.3987374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\interpreter.h 2025-08-26T20:45:23.3990780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\jit_exception.h 2025-08-26T20:45:23.3994503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\jit_trace.h 2025-08-26T20:45:23.3998114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\logging.h 2025-08-26T20:45:23.4001498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\operator.h 2025-08-26T20:45:23.4005193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\operator_options.h 2025-08-26T20:45:23.4008922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\print_handler.h 2025-08-26T20:45:23.4012451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\profiling_graph_executor_impl.h 2025-08-26T20:45:23.4016252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\profiling_record.h 2025-08-26T20:45:23.4029897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\register_ops_utils.h 2025-08-26T20:45:23.4033910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\script_profile.h 2025-08-26T20:45:23.4037648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\serialized_shape_function_registry.h 2025-08-26T20:45:23.4042321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\shape_function_registry.h 2025-08-26T20:45:23.4046561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\simple_graph_executor_impl.h 2025-08-26T20:45:23.4050080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\slice_indices_adjust.h 2025-08-26T20:45:23.4053777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\symbolic_script.h 2025-08-26T20:45:23.4057702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\symbolic_shape_registry.h 2025-08-26T20:45:23.4061581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\symbolic_shape_registry_util.h 2025-08-26T20:45:23.4075374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\vararg_functions.h 2025-08-26T20:45:23.4078961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\variable_tensor_list.h 2025-08-26T20:45:23.4086909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\interpreter\can_emit_inline.h 2025-08-26T20:45:23.4090557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\interpreter\code_impl.h 2025-08-26T20:45:23.4094432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\interpreter\frame.h 2025-08-26T20:45:23.4098478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\interpreter\preprocess_graph.h 2025-08-26T20:45:23.4117111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\fusion.h 2025-08-26T20:45:23.4120424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\impl.h 2025-08-26T20:45:23.4124272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\init.h 2025-08-26T20:45:23.4128344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\memory_planner.h 2025-08-26T20:45:23.4131987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\ops.h 2025-08-26T20:45:23.4136100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\passes.h 2025-08-26T20:45:23.4149621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\ProcessedNodeInputs.h 2025-08-26T20:45:23.4153629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\processed_node_wrapper.h 2025-08-26T20:45:23.4157761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\static_method.h 2025-08-26T20:45:23.4161299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\te_wrapper.h 2025-08-26T20:45:23.4171078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\callstack_debug_info_serialization.h 2025-08-26T20:45:23.4175041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\export.h 2025-08-26T20:45:23.4178524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\export_bytecode.h 2025-08-26T20:45:23.4192638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\flatbuffer_serializer.h 2025-08-26T20:45:23.4196335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\flatbuffer_serializer_jit.h 2025-08-26T20:45:23.4199877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import.h 2025-08-26T20:45:23.4203603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import_export_constants.h 2025-08-26T20:45:23.4207511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import_export_functions.h 2025-08-26T20:45:23.4211566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import_export_helpers.h 2025-08-26T20:45:23.4215925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import_read.h 2025-08-26T20:45:23.4219636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import_source.h 2025-08-26T20:45:23.4223363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\mobile_bytecode_generated.h 2025-08-26T20:45:23.4227906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\onnx.h 2025-08-26T20:45:23.4231289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\pickle.h 2025-08-26T20:45:23.4234754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\pickler.h 2025-08-26T20:45:23.4238280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\pickler_helper.h 2025-08-26T20:45:23.4242268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\python_print.h 2025-08-26T20:45:23.4246054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\source_range_serialization.h 2025-08-26T20:45:23.4249897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\source_range_serialization_impl.h 2025-08-26T20:45:23.4253596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\storage_context.h 2025-08-26T20:45:23.4268062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\type_name_uniquer.h 2025-08-26T20:45:23.4271805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\unpickler.h 2025-08-26T20:45:23.4280456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\analysis.h 2025-08-26T20:45:23.4284225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\block_codegen.h 2025-08-26T20:45:23.4287909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\bounds_inference.h 2025-08-26T20:45:23.4291945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\bounds_overlap.h 2025-08-26T20:45:23.4305025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\codegen.h 2025-08-26T20:45:23.4308557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\cpp_codegen.h 2025-08-26T20:45:23.4312290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\cpp_intrinsics.h 2025-08-26T20:45:23.4316382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\cuda_codegen.h 2025-08-26T20:45:23.4320141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\cuda_random.h 2025-08-26T20:45:23.4323891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\eval.h 2025-08-26T20:45:23.4327422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\exceptions.h 2025-08-26T20:45:23.4331173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\expr.h 2025-08-26T20:45:23.4335063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\external_functions.h 2025-08-26T20:45:23.4338651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\external_functions_core.h 2025-08-26T20:45:23.4342713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\external_functions_registry.h 2025-08-26T20:45:23.4346526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\fwd_decls.h 2025-08-26T20:45:23.4350166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\graph_opt.h 2025-08-26T20:45:23.4354201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\half_support.h 2025-08-26T20:45:23.4357657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\hash_provider.h 2025-08-26T20:45:23.4361237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\intrinsic_symbols.h 2025-08-26T20:45:23.4364747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir.h 2025-08-26T20:45:23.4377996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_cloner.h 2025-08-26T20:45:23.4381552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_mutator.h 2025-08-26T20:45:23.4385032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_printer.h 2025-08-26T20:45:23.4388537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_simplifier.h 2025-08-26T20:45:23.4392238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_verifier.h 2025-08-26T20:45:23.4395701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_visitor.h 2025-08-26T20:45:23.4399356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\kernel.h 2025-08-26T20:45:23.4403293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\llvm_codegen.h 2025-08-26T20:45:23.4407075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\llvm_jit.h 2025-08-26T20:45:23.4410942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\loopnest.h 2025-08-26T20:45:23.4415517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\loopnest_randomization.h 2025-08-26T20:45:23.4429820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\lowerings.h 2025-08-26T20:45:23.4434051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\mem_dependency_checker.h 2025-08-26T20:45:23.4437840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\reduction.h 2025-08-26T20:45:23.4441670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\registerizer.h 2025-08-26T20:45:23.4445490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\stmt.h 2025-08-26T20:45:23.4449017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\tensor.h 2025-08-26T20:45:23.4452879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\tensorexpr_init.h 2025-08-26T20:45:23.4457047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\types.h 2025-08-26T20:45:23.4460524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\unique_name_manager.h 2025-08-26T20:45:23.4464357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\var_substitutor.h 2025-08-26T20:45:23.4472706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\conv2d.h 2025-08-26T20:45:23.4476467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\matmul.h 2025-08-26T20:45:23.4479869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\misc.h 2025-08-26T20:45:23.4483317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\norm.h 2025-08-26T20:45:23.4486912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\operators.h 2025-08-26T20:45:23.4500902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\pointwise.h 2025-08-26T20:45:23.4504761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\quantization.h 2025-08-26T20:45:23.4508602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\reduction.h 2025-08-26T20:45:23.4512248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\softmax.h 2025-08-26T20:45:23.4520571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\testing\catch_utils.hpp 2025-08-26T20:45:23.4524197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\testing\file_check.h 2025-08-26T20:45:23.4527945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\testing\hooks_for_testing.h 2025-08-26T20:45:23.4540658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\backend\backend_data.h 2025-08-26T20:45:23.4544158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\backend\backend_device.h 2025-08-26T20:45:23.4547536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\backend\backend_interface.h 2025-08-26T20:45:23.4551137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\backend\lowering_context.h 2025-08-26T20:45:23.4568527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\cache.h 2025-08-26T20:45:23.4571856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\config.h 2025-08-26T20:45:23.4575381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\debug_util.h 2025-08-26T20:45:23.4578791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\dynamic_ir.h 2025-08-26T20:45:23.4582457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\hash.h 2025-08-26T20:45:23.4595658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\helpers.h 2025-08-26T20:45:23.4599130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ir.h 2025-08-26T20:45:23.4602470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ir_builder.h 2025-08-26T20:45:23.4606008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ir_dump_util.h 2025-08-26T20:45:23.4609556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ir_metadata.h 2025-08-26T20:45:23.4613729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ir_util.h 2025-08-26T20:45:23.4617188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\lazy_graph_executor.h 2025-08-26T20:45:23.4621149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\metrics.h 2025-08-26T20:45:23.4624771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\multi_wait.h 2025-08-26T20:45:23.4628486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\permutation_util.h 2025-08-26T20:45:23.4632467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\shape.h 2025-08-26T20:45:23.4636136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\shape_inference.h 2025-08-26T20:45:23.4639757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\tensor.h 2025-08-26T20:45:23.4643534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\tensor_impl.h 2025-08-26T20:45:23.4647504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\tensor_util.h 2025-08-26T20:45:23.4651209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\thread_pool.h 2025-08-26T20:45:23.4654900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\trie.h 2025-08-26T20:45:23.4658369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\unique.h 2025-08-26T20:45:23.4662121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\util.h 2025-08-26T20:45:23.4679710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\internal_ops\ltc_ops.h 2025-08-26T20:45:23.4687130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ops\arithmetic_ir_ops.h 2025-08-26T20:45:23.4690890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ops\utils.h 2025-08-26T20:45:23.4699096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\generated\LazyIr.h 2025-08-26T20:45:23.4705269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\generated\LazyNativeFunctions.h 2025-08-26T20:45:23.4708949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\generated\LazyNonNativeIr.h 2025-08-26T20:45:23.4716773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\python\init.h 2025-08-26T20:45:23.4720149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\python\python_util.h 2025-08-26T20:45:23.4737801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\config.h 2025-08-26T20:45:23.4741274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\dynamic_ir.h 2025-08-26T20:45:23.4744966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ir_builder.h 2025-08-26T20:45:23.4748576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\tensor_aten_ops.h 2025-08-26T20:45:23.4761735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_autograd_functions.h 2025-08-26T20:45:23.4765509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_backend_impl.h 2025-08-26T20:45:23.4769259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_eager_fallback.h 2025-08-26T20:45:23.4773076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_lowering_context.h 2025-08-26T20:45:23.4777274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_node.h 2025-08-26T20:45:23.4781334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_node_lowering.h 2025-08-26T20:45:23.4788115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ops\device_data.h 2025-08-26T20:45:23.4792477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ops\generic.h 2025-08-26T20:45:23.4795253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ops\to_copy.h 2025-08-26T20:45:23.4804331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\monitor\counters.h 2025-08-26T20:45:23.4807466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\monitor\events.h 2025-08-26T20:45:23.4810838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\monitor\python_init.h 2025-08-26T20:45:23.4818285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\mps\Module.h 2025-08-26T20:45:23.4825509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\mtia\Module.h 2025-08-26T20:45:23.4833134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\mtia\profiler\MTIAMemoryProfiler.h 2025-08-26T20:45:23.4840400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\multiprocessing\init.h 2025-08-26T20:45:23.4847741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\onnx\back_compat.h 2025-08-26T20:45:23.4857233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\onnx\init.h 2025-08-26T20:45:23.4857459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\onnx\onnx.h 2025-08-26T20:45:23.4863273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\api.h 2025-08-26T20:45:23.4866546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\collection.h 2025-08-26T20:45:23.4870455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\combined_traceback.h 2025-08-26T20:45:23.4874308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\containers.h 2025-08-26T20:45:23.4887674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\data_flow.h 2025-08-26T20:45:23.4891436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\events.h 2025-08-26T20:45:23.4894964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\kineto_client_interface.h 2025-08-26T20:45:23.4898677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\kineto_shim.h 2025-08-26T20:45:23.4902391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\perf-inl.h 2025-08-26T20:45:23.4905951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\perf.h 2025-08-26T20:45:23.4909524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\util.h 2025-08-26T20:45:23.4916530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\orchestration\observer.h 2025-08-26T20:45:23.4920216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\orchestration\python_tracer.h 2025-08-26T20:45:23.4924063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\orchestration\vulkan.h 2025-08-26T20:45:23.4931308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\python\combined_traceback.h 2025-08-26T20:45:23.4934737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\python\init.h 2025-08-26T20:45:23.4937959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\python\pybind.h 2025-08-26T20:45:23.4945906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\standalone\execution_trace_observer.h 2025-08-26T20:45:23.4949648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\standalone\itt_observer.h 2025-08-26T20:45:23.4953328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\standalone\nvtx_observer.h 2025-08-26T20:45:23.4967023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\standalone\privateuse1_observer.h 2025-08-26T20:45:23.4974642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\stubs\base.h 2025-08-26T20:45:23.4981699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\action.h 2025-08-26T20:45:23.4985390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\communicate.h 2025-08-26T20:45:23.4988928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\debug_info.h 2025-08-26T20:45:23.4992763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\dwarf_enums.h 2025-08-26T20:45:23.5006255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\dwarf_symbolize_enums.h 2025-08-26T20:45:23.5009821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\eh_frame_hdr.h 2025-08-26T20:45:23.5013349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\fast_symbolizer.h 2025-08-26T20:45:23.5017030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\fde.h 2025-08-26T20:45:23.5020835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\lexer.h 2025-08-26T20:45:23.5024633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\line_number_program.h 2025-08-26T20:45:23.5061598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\mem_file.h 2025-08-26T20:45:23.5065022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\range_table.h 2025-08-26T20:45:23.5068588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\sections.h 2025-08-26T20:45:23.5072063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\unwind.h 2025-08-26T20:45:23.5075686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\unwinder.h 2025-08-26T20:45:23.5079258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\unwind_error.h 2025-08-26T20:45:23.5091914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\stable\accelerator.h 2025-08-26T20:45:23.5095472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\stable\library.h 2025-08-26T20:45:23.5098857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\stable\ops.h 2025-08-26T20:45:23.5102617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\stable\stableivalue_conversions.h 2025-08-26T20:45:23.5106158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\stable\tensor.h 2025-08-26T20:45:23.5119430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\stable\tensor_inl.h 2025-08-26T20:45:23.5123677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\stable\tensor_struct.h 2025-08-26T20:45:23.5131112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\tensor\python_tensor.h 2025-08-26T20:45:23.5139055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\byte_order.h 2025-08-26T20:45:23.5142858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\cpp_stacktraces.h 2025-08-26T20:45:23.5146366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\cuda_enabled.h 2025-08-26T20:45:23.5149936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\device_lazy_init.h 2025-08-26T20:45:23.5164096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\disable_torch_function.h 2025-08-26T20:45:23.5168122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\generated_serialization_types.h 2025-08-26T20:45:23.5172845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\init.h 2025-08-26T20:45:23.5176365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\invalid_arguments.h 2025-08-26T20:45:23.5179811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\nested.h 2025-08-26T20:45:23.5183347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\numpy_stub.h 2025-08-26T20:45:23.5186936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\object_ptr.h 2025-08-26T20:45:23.5190570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\out_types.h 2025-08-26T20:45:23.5193898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\pybind.h 2025-08-26T20:45:23.5197585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\pycfunction_helpers.h 2025-08-26T20:45:23.5201259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\pyobject_preservation.h 2025-08-26T20:45:23.5204726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\pythoncapi_compat.h 2025-08-26T20:45:23.5208844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_arg_parser.h 2025-08-26T20:45:23.5212666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_compat.h 2025-08-26T20:45:23.5216375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_dispatch.h 2025-08-26T20:45:23.5219866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_numbers.h 2025-08-26T20:45:23.5233399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_raii.h 2025-08-26T20:45:23.5236828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_scalars.h 2025-08-26T20:45:23.5240616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_strings.h 2025-08-26T20:45:23.5244156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_stub.h 2025-08-26T20:45:23.5247894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_symnode.h 2025-08-26T20:45:23.5251870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_torch_function_mode.h 2025-08-26T20:45:23.5255447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_tuples.h 2025-08-26T20:45:23.5258909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\schema_info.h 2025-08-26T20:45:23.5262332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\six.h 2025-08-26T20:45:23.5265936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\structseq.h 2025-08-26T20:45:23.5279416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_apply.h 2025-08-26T20:45:23.5283126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_dtypes.h 2025-08-26T20:45:23.5286989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_flatten.h 2025-08-26T20:45:23.5290572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_layouts.h 2025-08-26T20:45:23.5294004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_list.h 2025-08-26T20:45:23.5297737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_memoryformats.h 2025-08-26T20:45:23.5301432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_new.h 2025-08-26T20:45:23.5304932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_numpy.h 2025-08-26T20:45:23.5308705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_qschemes.h 2025-08-26T20:45:23.5322403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_types.h 2025-08-26T20:45:23.5326497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\throughput_benchmark-inl.h 2025-08-26T20:45:23.5330365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\throughput_benchmark.h 2025-08-26T20:45:23.5333732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\torch_dispatch_mode.h 2025-08-26T20:45:23.5337389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\variadic.h 2025-08-26T20:45:23.5340790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\verbose.h 2025-08-26T20:45:23.5349673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\xpu\Event.h 2025-08-26T20:45:23.5353267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\xpu\Module.h 2025-08-26T20:45:23.5356485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\xpu\Stream.h 2025-08-26T20:45:23.5371179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\core\ScalarType.h 2025-08-26T20:45:23.5382174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\cpu\vec\intrinsics.h 2025-08-26T20:45:23.5385645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\cpu\vec\vec_half.h 2025-08-26T20:45:23.5392439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\cpu\vec\vec256\missing_vld1_neon.h 2025-08-26T20:45:23.5395928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\cpu\vec\vec256\missing_vst1_neon.h 2025-08-26T20:45:23.5404813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\macros\cmake_macros.h 2025-08-26T20:45:23.5408614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\macros\Export.h 2025-08-26T20:45:23.5411935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\macros\Macros.h 2025-08-26T20:45:23.5419779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\BFloat16.h 2025-08-26T20:45:23.5423865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\bits.h 2025-08-26T20:45:23.5427491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\bit_cast.h 2025-08-26T20:45:23.5431216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\complex.h 2025-08-26T20:45:23.5435022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Exception.h 2025-08-26T20:45:23.5438773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float4_e2m1fn_x2.h 2025-08-26T20:45:23.5452637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float8_e4m3fn.h 2025-08-26T20:45:23.5456319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float8_e4m3fnuz.h 2025-08-26T20:45:23.5459991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float8_e5m2.h 2025-08-26T20:45:23.5463785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float8_e5m2fnuz.h 2025-08-26T20:45:23.5467273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float8_e8m0fnu.h 2025-08-26T20:45:23.5470779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float8_fnuz_cvt.h 2025-08-26T20:45:23.5474446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\floating_point_utils.h 2025-08-26T20:45:23.5478343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Half.h 2025-08-26T20:45:23.5482138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\qint32.h 2025-08-26T20:45:23.5485555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\qint8.h 2025-08-26T20:45:23.5489816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\quint2x4.h 2025-08-26T20:45:23.5493148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\quint4x2.h 2025-08-26T20:45:23.5497389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\quint8.h 2025-08-26T20:45:23.5500966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\shim_utils.h 2025-08-26T20:45:23.5504964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\TypeSafeSignMath.h 2025-08-26T20:45:23.5516761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\annotations.py 2025-08-26T20:45:23.5520370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\frontend.py 2025-08-26T20:45:23.5524337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\generate_bytecode.py 2025-08-26T20:45:23.5527889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\quantized.py 2025-08-26T20:45:23.5541578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\supported_ops.py 2025-08-26T20:45:23.5544984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\unsupported_tensor_ops.py 2025-08-26T20:45:23.5548587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_async.py 2025-08-26T20:45:23.5552114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_await.py 2025-08-26T20:45:23.5555591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_builtins.py 2025-08-26T20:45:23.5559219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_check.py 2025-08-26T20:45:23.5562861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_dataclass_impls.py 2025-08-26T20:45:23.5566548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_decompositions.py 2025-08-26T20:45:23.5570093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_decomposition_utils.py 2025-08-26T20:45:23.5573729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_freeze.py 2025-08-26T20:45:23.5576951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_fuser.py 2025-08-26T20:45:23.5580365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_ir_utils.py 2025-08-26T20:45:23.5584088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_logging.py 2025-08-26T20:45:23.5587445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_monkeytype_config.py 2025-08-26T20:45:23.5591347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_pickle.py 2025-08-26T20:45:23.5594867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_recursive.py 2025-08-26T20:45:23.5598607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_script.py 2025-08-26T20:45:23.5602386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_script.pyi 2025-08-26T20:45:23.5606123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_serialization.py 2025-08-26T20:45:23.5609817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_shape_functions.py 2025-08-26T20:45:23.5623956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_state.py 2025-08-26T20:45:23.5627366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_trace.py 2025-08-26T20:45:23.5631829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__init__.py 2025-08-26T20:45:23.5638977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\mobile\__init__.py 2025-08-26T20:45:23.5646126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\mobile\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:23.5654455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_passes\_property_propagation.py 2025-08-26T20:45:23.5657950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_passes\__init__.py 2025-08-26T20:45:23.5664061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_passes\__pycache__\_property_propagation.cpython-39.pyc 2025-08-26T20:45:23.5667693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_passes\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:23.5675773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\annotations.cpython-39.pyc 2025-08-26T20:45:23.5679541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\frontend.cpython-39.pyc 2025-08-26T20:45:23.5683185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\generate_bytecode.cpython-39.pyc 2025-08-26T20:45:23.5697970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\quantized.cpython-39.pyc 2025-08-26T20:45:23.5700543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\supported_ops.cpython-39.pyc 2025-08-26T20:45:23.5704295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\unsupported_tensor_ops.cpython-39.pyc 2025-08-26T20:45:23.5708952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_async.cpython-39.pyc 2025-08-26T20:45:23.5712134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_await.cpython-39.pyc 2025-08-26T20:45:23.5716395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_builtins.cpython-39.pyc 2025-08-26T20:45:23.5721100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_check.cpython-39.pyc 2025-08-26T20:45:23.5723832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_dataclass_impls.cpython-39.pyc 2025-08-26T20:45:23.5727769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_decompositions.cpython-39.pyc 2025-08-26T20:45:23.5731406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_decomposition_utils.cpython-39.pyc 2025-08-26T20:45:23.5735616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_freeze.cpython-39.pyc 2025-08-26T20:45:23.5739487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_fuser.cpython-39.pyc 2025-08-26T20:45:23.5743719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_ir_utils.cpython-39.pyc 2025-08-26T20:45:23.5747182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_logging.cpython-39.pyc 2025-08-26T20:45:23.5761809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_monkeytype_config.cpython-39.pyc 2025-08-26T20:45:23.5764903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_pickle.cpython-39.pyc 2025-08-26T20:45:23.5768965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_recursive.cpython-39.pyc 2025-08-26T20:45:23.5773375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_script.cpython-39.pyc 2025-08-26T20:45:23.5776634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_serialization.cpython-39.pyc 2025-08-26T20:45:23.5781245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_shape_functions.cpython-39.pyc 2025-08-26T20:45:23.5786738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_state.cpython-39.pyc 2025-08-26T20:45:23.5790944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_trace.cpython-39.pyc 2025-08-26T20:45:23.5833521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:23.5843784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\aoti_custom_ops.dll 2025-08-26T20:45:23.5849533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\aoti_custom_ops.lib 2025-08-26T20:45:23.5853528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\backend_with_compiler.dll 2025-08-26T20:45:23.6036537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\backend_with_compiler.lib 2025-08-26T20:45:23.6039881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\c10.dll 2025-08-26T20:45:23.6049471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\c10.lib 2025-08-26T20:45:23.6056619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\cpuinfo.lib 2025-08-26T20:45:23.6060559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\dnnl.lib 2025-08-26T20:45:23.9799817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\fmt.lib 2025-08-26T20:45:23.9809643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\jitbackend_test.dll 2025-08-26T20:45:23.9814593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\jitbackend_test.lib 2025-08-26T20:45:23.9818282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\kineto.lib 2025-08-26T20:45:23.9983718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libittnotify.lib 2025-08-26T20:45:23.9988762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libprotobuf-lite.lib 2025-08-26T20:45:24.0017076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libprotobuf.lib 2025-08-26T20:45:24.0202412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libprotoc.lib 2025-08-26T20:45:24.0397954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\microkernels-prod.lib 2025-08-26T20:45:24.0416443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\pthreadpool.lib 2025-08-26T20:45:24.0421658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\shm.dll 2025-08-26T20:45:24.0425226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\shm.lib 2025-08-26T20:45:24.0428840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\sleef.lib 2025-08-26T20:45:24.0480659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch.dll 2025-08-26T20:45:24.0483998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch.lib 2025-08-26T20:45:24.0487519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torchbind_test.dll 2025-08-26T20:45:24.0499092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torchbind_test.lib 2025-08-26T20:45:24.0502713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch_cpu.dll 2025-08-26T20:45:24.1785309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch_cpu.lib 2025-08-26T20:45:24.1934331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch_global_deps.dll 2025-08-26T20:45:24.1938525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch_python.dll 2025-08-26T20:45:24.2025836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch_python.lib 2025-08-26T20:45:24.2030781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\XNNPACK.lib 2025-08-26T20:45:24.2046837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\_C.lib 2025-08-26T20:45:24.2054503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libshm\alloc_info.h 2025-08-26T20:45:24.2057986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libshm\err.h 2025-08-26T20:45:24.2061250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libshm\libshm.h 2025-08-26T20:45:24.2064514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libshm\socket.h 2025-08-26T20:45:24.2071688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libshm_windows\libshm.h 2025-08-26T20:45:24.2079648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\linalg\__init__.py 2025-08-26T20:45:24.2087057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\linalg\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.2095268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\_docs.py 2025-08-26T20:45:24.2098726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\_ops.py 2025-08-26T20:45:24.2102455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\__init__.py 2025-08-26T20:45:24.2109186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\binary.py 2025-08-26T20:45:24.2112376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\core.py 2025-08-26T20:45:24.2115740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\creation.py 2025-08-26T20:45:24.2119004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\passthrough.py 2025-08-26T20:45:24.2122298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\reductions.py 2025-08-26T20:45:24.2131959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\unary.py 2025-08-26T20:45:24.2135109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\_ops_refs.py 2025-08-26T20:45:24.2138477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__init__.py 2025-08-26T20:45:24.2145805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\binary.cpython-39.pyc 2025-08-26T20:45:24.2149488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\core.cpython-39.pyc 2025-08-26T20:45:24.2152991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\creation.cpython-39.pyc 2025-08-26T20:45:24.2162058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\passthrough.cpython-39.pyc 2025-08-26T20:45:24.2166098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\reductions.cpython-39.pyc 2025-08-26T20:45:24.2169641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\unary.cpython-39.pyc 2025-08-26T20:45:24.2173180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\_ops_refs.cpython-39.pyc 2025-08-26T20:45:24.2177591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.2190631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\__pycache__\_docs.cpython-39.pyc 2025-08-26T20:45:24.2194449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\__pycache__\_ops.cpython-39.pyc 2025-08-26T20:45:24.2198006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.2211094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\monitor\__init__.py 2025-08-26T20:45:24.2218301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\monitor\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.2225666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\event.py 2025-08-26T20:45:24.2229356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\profiler.py 2025-08-26T20:45:24.2232762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\__init__.py 2025-08-26T20:45:24.2239545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\__pycache__\event.cpython-39.pyc 2025-08-26T20:45:24.2242992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\__pycache__\profiler.cpython-39.pyc 2025-08-26T20:45:24.2246869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.2259317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\memory.py 2025-08-26T20:45:24.2262743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\_utils.py 2025-08-26T20:45:24.2266073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\__init__.py 2025-08-26T20:45:24.2273516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\__pycache__\memory.cpython-39.pyc 2025-08-26T20:45:24.2276930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\__pycache__\_utils.cpython-39.pyc 2025-08-26T20:45:24.2280725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.2311771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\pool.py 2025-08-26T20:45:24.2315699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\queue.py 2025-08-26T20:45:24.2319116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\reductions.py 2025-08-26T20:45:24.2322511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\spawn.py 2025-08-26T20:45:24.2325949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\_atfork.py 2025-08-26T20:45:24.2334015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__init__.py 2025-08-26T20:45:24.2341170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\pool.cpython-39.pyc 2025-08-26T20:45:24.2345140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\queue.cpython-39.pyc 2025-08-26T20:45:24.2349042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\reductions.cpython-39.pyc 2025-08-26T20:45:24.2357355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\spawn.cpython-39.pyc 2025-08-26T20:45:24.2360952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\_atfork.cpython-39.pyc 2025-08-26T20:45:24.2364427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.2372669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\__init__.py 2025-08-26T20:45:24.2379855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\nested_int.py 2025-08-26T20:45:24.2383640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\nested_tensor.py 2025-08-26T20:45:24.2387477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\ops.py 2025-08-26T20:45:24.2391566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\sdpa.py 2025-08-26T20:45:24.2402350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__init__.py 2025-08-26T20:45:24.2406573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__pycache__\nested_int.cpython-39.pyc 2025-08-26T20:45:24.2412433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__pycache__\nested_tensor.cpython-39.pyc 2025-08-26T20:45:24.2414213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__pycache__\ops.cpython-39.pyc 2025-08-26T20:45:24.2422235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__pycache__\sdpa.cpython-39.pyc 2025-08-26T20:45:24.2426258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.2433864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.2442402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\common_types.py 2025-08-26T20:45:24.2446068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\cpp.py 2025-08-26T20:45:24.2449574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\functional.py 2025-08-26T20:45:24.2454068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\functional.pyi 2025-08-26T20:45:24.2462275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\grad.py 2025-08-26T20:45:24.2465776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\init.py 2025-08-26T20:45:24.2469200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parameter.py 2025-08-26T20:45:24.2472490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parameter.pyi 2025-08-26T20:45:24.2476034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\_reduction.py 2025-08-26T20:45:24.2479602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__init__.py 2025-08-26T20:45:24.2486480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\bias.py 2025-08-26T20:45:24.2489889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\flex_attention.py 2025-08-26T20:45:24.2493502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\_utils.py 2025-08-26T20:45:24.2496790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\__init__.py 2025-08-26T20:45:24.2508843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\experimental\_paged_attention.py 2025-08-26T20:45:24.2512426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\experimental\__init__.py 2025-08-26T20:45:24.2519349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\experimental\__pycache__\_paged_attention.cpython-39.pyc 2025-08-26T20:45:24.2522852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\experimental\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.2530429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\__pycache__\bias.cpython-39.pyc 2025-08-26T20:45:24.2533998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\__pycache__\flex_attention.cpython-39.pyc 2025-08-26T20:45:24.2537611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\__pycache__\_utils.cpython-39.pyc 2025-08-26T20:45:24.2545031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.2552430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\backends\thnn.py 2025-08-26T20:45:24.2555746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\backends\__init__.py 2025-08-26T20:45:24.2561611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\backends\__pycache__\thnn.cpython-39.pyc 2025-08-26T20:45:24.2565210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\backends\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.2573488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\__init__.py 2025-08-26T20:45:24.2580063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\modules\fused.py 2025-08-26T20:45:24.2583401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\modules\__init__.py 2025-08-26T20:45:24.2590684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\modules\__pycache__\fused.cpython-39.pyc 2025-08-26T20:45:24.2594345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.2602275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\__init__.py 2025-08-26T20:45:24.2609388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\conv_fused.py 2025-08-26T20:45:24.2612827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\linear_fused.py 2025-08-26T20:45:24.2616202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\linear_relu.py 2025-08-26T20:45:24.2619484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\__init__.py 2025-08-26T20:45:24.2632106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\__pycache__\conv_fused.cpython-39.pyc 2025-08-26T20:45:24.2635896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\__pycache__\linear_fused.cpython-39.pyc 2025-08-26T20:45:24.2639389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\__pycache__\linear_relu.cpython-39.pyc 2025-08-26T20:45:24.2646400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.2653928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.2662380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\__init__.py 2025-08-26T20:45:24.2669497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\__init__.py 2025-08-26T20:45:24.2676219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\modules\linear_relu.py 2025-08-26T20:45:24.2679798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\modules\__init__.py 2025-08-26T20:45:24.2686670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\modules\__pycache__\linear_relu.cpython-39.pyc 2025-08-26T20:45:24.2690210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.2697487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.2705942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\bn_relu.py 2025-08-26T20:45:24.2709990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\conv_relu.py 2025-08-26T20:45:24.2713371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\linear_relu.py 2025-08-26T20:45:24.2716719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\__init__.py 2025-08-26T20:45:24.2728546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\__pycache__\bn_relu.cpython-39.pyc 2025-08-26T20:45:24.2732019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\__pycache__\conv_relu.cpython-39.pyc 2025-08-26T20:45:24.2735529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\__pycache__\linear_relu.cpython-39.pyc 2025-08-26T20:45:24.2743385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.2750811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.2763259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.2771202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\activation.py 2025-08-26T20:45:24.2774965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\adaptive.py 2025-08-26T20:45:24.2778523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\batchnorm.py 2025-08-26T20:45:24.2782034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\channelshuffle.py 2025-08-26T20:45:24.2789869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\container.py 2025-08-26T20:45:24.2793272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\conv.py 2025-08-26T20:45:24.2796937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\distance.py 2025-08-26T20:45:24.2800404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\dropout.py 2025-08-26T20:45:24.2803588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\flatten.py 2025-08-26T20:45:24.2806775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\fold.py 2025-08-26T20:45:24.2810047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\instancenorm.py 2025-08-26T20:45:24.2813461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\lazy.py 2025-08-26T20:45:24.2816793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\linear.py 2025-08-26T20:45:24.2820088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\loss.py 2025-08-26T20:45:24.2823836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\module.py 2025-08-26T20:45:24.2827946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\normalization.py 2025-08-26T20:45:24.2831425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\padding.py 2025-08-26T20:45:24.2834753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\pixelshuffle.py 2025-08-26T20:45:24.2838169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\pooling.py 2025-08-26T20:45:24.2841711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\rnn.py 2025-08-26T20:45:24.2845320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\sparse.py 2025-08-26T20:45:24.2848659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\transformer.py 2025-08-26T20:45:24.2852582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\upsampling.py 2025-08-26T20:45:24.2855978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\utils.py 2025-08-26T20:45:24.2859329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\_functions.py 2025-08-26T20:45:24.2863016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__init__.py 2025-08-26T20:45:24.2870757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\activation.cpython-39.pyc 2025-08-26T20:45:24.2874743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\adaptive.cpython-39.pyc 2025-08-26T20:45:24.2878279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\batchnorm.cpython-39.pyc 2025-08-26T20:45:24.2887309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\channelshuffle.cpython-39.pyc 2025-08-26T20:45:24.2890989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\container.cpython-39.pyc 2025-08-26T20:45:24.2894738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\conv.cpython-39.pyc 2025-08-26T20:45:24.2899001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\distance.cpython-39.pyc 2025-08-26T20:45:24.2902698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\dropout.cpython-39.pyc 2025-08-26T20:45:24.2906149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\flatten.cpython-39.pyc 2025-08-26T20:45:24.2909681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\fold.cpython-39.pyc 2025-08-26T20:45:24.2913349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\instancenorm.cpython-39.pyc 2025-08-26T20:45:24.2917326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\lazy.cpython-39.pyc 2025-08-26T20:45:24.2921018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\linear.cpython-39.pyc 2025-08-26T20:45:24.2924704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\loss.cpython-39.pyc 2025-08-26T20:45:24.2928907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\module.cpython-39.pyc 2025-08-26T20:45:24.2933137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\normalization.cpython-39.pyc 2025-08-26T20:45:24.2937427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\padding.cpython-39.pyc 2025-08-26T20:45:24.2948207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\pixelshuffle.cpython-39.pyc 2025-08-26T20:45:24.2953211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\pooling.cpython-39.pyc 2025-08-26T20:45:24.2956361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\rnn.cpython-39.pyc 2025-08-26T20:45:24.2960178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\sparse.cpython-39.pyc 2025-08-26T20:45:24.2963791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\transformer.cpython-39.pyc 2025-08-26T20:45:24.2967743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\upsampling.cpython-39.pyc 2025-08-26T20:45:24.2971305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:24.2974851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\_functions.cpython-39.pyc 2025-08-26T20:45:24.2978415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.2991025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\comm.py 2025-08-26T20:45:24.2995011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\data_parallel.py 2025-08-26T20:45:24.2998313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\distributed.py 2025-08-26T20:45:24.3002758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\parallel_apply.py 2025-08-26T20:45:24.3016043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\replicate.py 2025-08-26T20:45:24.3019704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\scatter_gather.py 2025-08-26T20:45:24.3023205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\_functions.py 2025-08-26T20:45:24.3026684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__init__.py 2025-08-26T20:45:24.3035140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\comm.cpython-39.pyc 2025-08-26T20:45:24.3038826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\data_parallel.cpython-39.pyc 2025-08-26T20:45:24.3042391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\distributed.cpython-39.pyc 2025-08-26T20:45:24.3050983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\parallel_apply.cpython-39.pyc 2025-08-26T20:45:24.3054540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\replicate.cpython-39.pyc 2025-08-26T20:45:24.3058028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\scatter_gather.cpython-39.pyc 2025-08-26T20:45:24.3061844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\_functions.cpython-39.pyc 2025-08-26T20:45:24.3065271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.3073869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\__init__.py 2025-08-26T20:45:24.3080814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\__init__.py 2025-08-26T20:45:24.3087389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\modules\linear.py 2025-08-26T20:45:24.3090688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\modules\__init__.py 2025-08-26T20:45:24.3097466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\modules\__pycache__\linear.cpython-39.pyc 2025-08-26T20:45:24.3101649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.3109080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.3116786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\conv.py 2025-08-26T20:45:24.3120338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\embedding_ops.py 2025-08-26T20:45:24.3123695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\linear.py 2025-08-26T20:45:24.3127211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\__init__.py 2025-08-26T20:45:24.3138522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\__pycache__\conv.cpython-39.pyc 2025-08-26T20:45:24.3142263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\__pycache__\embedding_ops.cpython-39.pyc 2025-08-26T20:45:24.3145588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\__pycache__\linear.cpython-39.pyc 2025-08-26T20:45:24.3153057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.3160698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.3169341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\__init__.py 2025-08-26T20:45:24.3176331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\activation.py 2025-08-26T20:45:24.3179667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\rnn.py 2025-08-26T20:45:24.3182897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\__init__.py 2025-08-26T20:45:24.3189664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\__pycache__\activation.cpython-39.pyc 2025-08-26T20:45:24.3193577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\__pycache__\rnn.cpython-39.pyc 2025-08-26T20:45:24.3197369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.3209696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.3219361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\functional.py 2025-08-26T20:45:24.3222688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\__init__.py 2025-08-26T20:45:24.3229755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\__init__.py 2025-08-26T20:45:24.3237605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\conv.py 2025-08-26T20:45:24.3241118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\linear.py 2025-08-26T20:45:24.3244347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\rnn.py 2025-08-26T20:45:24.3248426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\__init__.py 2025-08-26T20:45:24.3255619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\__pycache__\conv.cpython-39.pyc 2025-08-26T20:45:24.3259218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\__pycache__\linear.cpython-39.pyc 2025-08-26T20:45:24.3262804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\__pycache__\rnn.cpython-39.pyc 2025-08-26T20:45:24.3271581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.3279806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.3288023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\activation.py 2025-08-26T20:45:24.3291436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\batchnorm.py 2025-08-26T20:45:24.3294879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\conv.py 2025-08-26T20:45:24.3298339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\dropout.py 2025-08-26T20:45:24.3301646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\embedding_ops.py 2025-08-26T20:45:24.3309658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\functional_modules.py 2025-08-26T20:45:24.3313338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\linear.py 2025-08-26T20:45:24.3324951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\normalization.py 2025-08-26T20:45:24.3325715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\rnn.py 2025-08-26T20:45:24.3326314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\utils.py 2025-08-26T20:45:24.3327418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__init__.py 2025-08-26T20:45:24.3335280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\activation.cpython-39.pyc 2025-08-26T20:45:24.3339140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\batchnorm.cpython-39.pyc 2025-08-26T20:45:24.3342749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\conv.cpython-39.pyc 2025-08-26T20:45:24.3351277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\dropout.cpython-39.pyc 2025-08-26T20:45:24.3354806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\embedding_ops.cpython-39.pyc 2025-08-26T20:45:24.3358597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\functional_modules.cpython-39.pyc 2025-08-26T20:45:24.3362121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\linear.cpython-39.pyc 2025-08-26T20:45:24.3381864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\normalization.cpython-39.pyc 2025-08-26T20:45:24.3385348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\rnn.cpython-39.pyc 2025-08-26T20:45:24.3388841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:24.3392568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.3405692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\__init__.py 2025-08-26T20:45:24.3412363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\conv.py 2025-08-26T20:45:24.3415955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\linear.py 2025-08-26T20:45:24.3419271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\rnn.py 2025-08-26T20:45:24.3422696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\sparse.py 2025-08-26T20:45:24.3425938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\utils.py 2025-08-26T20:45:24.3429372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__init__.py 2025-08-26T20:45:24.3441951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\conv.cpython-39.pyc 2025-08-26T20:45:24.3445496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\linear.cpython-39.pyc 2025-08-26T20:45:24.3449047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\rnn.cpython-39.pyc 2025-08-26T20:45:24.3458077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\sparse.cpython-39.pyc 2025-08-26T20:45:24.3461802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:24.3465313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.3473326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.3482147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\__pycache__\functional.cpython-39.pyc 2025-08-26T20:45:24.3485760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.3494111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\clip_grad.py 2025-08-26T20:45:24.3497555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\convert_parameters.py 2025-08-26T20:45:24.3500884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\fusion.py 2025-08-26T20:45:24.3504245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\init.py 2025-08-26T20:45:24.3507713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\memory_format.py 2025-08-26T20:45:24.3516664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\parametrizations.py 2025-08-26T20:45:24.3520050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\parametrize.py 2025-08-26T20:45:24.3523577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\prune.py 2025-08-26T20:45:24.3527203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\rnn.py 2025-08-26T20:45:24.3530611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\spectral_norm.py 2025-08-26T20:45:24.3534076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\stateless.py 2025-08-26T20:45:24.3537439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\weight_norm.py 2025-08-26T20:45:24.3540972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_deprecation_utils.py 2025-08-26T20:45:24.3544480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_named_member_accessor.py 2025-08-26T20:45:24.3547875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_per_sample_grad.py 2025-08-26T20:45:24.3551775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__init__.py 2025-08-26T20:45:24.3559070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\conv_expanded_weights.py 2025-08-26T20:45:24.3562788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\conv_utils.py 2025-08-26T20:45:24.3566368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\embedding_expanded_weights.py 2025-08-26T20:45:24.3574555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\expanded_weights_impl.py 2025-08-26T20:45:24.3577996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\expanded_weights_utils.py 2025-08-26T20:45:24.3581476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\group_norm_expanded_weights.py 2025-08-26T20:45:24.3584968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\instance_norm_expanded_weights.py 2025-08-26T20:45:24.3588425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\layer_norm_expanded_weights.py 2025-08-26T20:45:24.3591994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\linear_expanded_weights.py 2025-08-26T20:45:24.3595419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__init__.py 2025-08-26T20:45:24.3603803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\conv_expanded_weights.cpython-39.pyc 2025-08-26T20:45:24.3607428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\conv_utils.cpython-39.pyc 2025-08-26T20:45:24.3611089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\embedding_expanded_weights.cpython-39.pyc 2025-08-26T20:45:24.3620782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\expanded_weights_impl.cpython-39.pyc 2025-08-26T20:45:24.3624289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\expanded_weights_utils.cpython-39.pyc 2025-08-26T20:45:24.3627813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\group_norm_expanded_weights.cpython-39.pyc 2025-08-26T20:45:24.3631661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\instance_norm_expanded_weights.cpython-39.pyc 2025-08-26T20:45:24.3635252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\layer_norm_expanded_weights.cpython-39.pyc 2025-08-26T20:45:24.3638796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\linear_expanded_weights.cpython-39.pyc 2025-08-26T20:45:24.3642262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.3650458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\clip_grad.cpython-39.pyc 2025-08-26T20:45:24.3654865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\convert_parameters.cpython-39.pyc 2025-08-26T20:45:24.3658575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\fusion.cpython-39.pyc 2025-08-26T20:45:24.3666244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\init.cpython-39.pyc 2025-08-26T20:45:24.3669792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\memory_format.cpython-39.pyc 2025-08-26T20:45:24.3673338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\parametrizations.cpython-39.pyc 2025-08-26T20:45:24.3676826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\parametrize.cpython-39.pyc 2025-08-26T20:45:24.3680342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\prune.cpython-39.pyc 2025-08-26T20:45:24.3684186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\rnn.cpython-39.pyc 2025-08-26T20:45:24.3687886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\spectral_norm.cpython-39.pyc 2025-08-26T20:45:24.3692020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\stateless.cpython-39.pyc 2025-08-26T20:45:24.3695569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\weight_norm.cpython-39.pyc 2025-08-26T20:45:24.3699122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\_deprecation_utils.cpython-39.pyc 2025-08-26T20:45:24.3703145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\_named_member_accessor.cpython-39.pyc 2025-08-26T20:45:24.3706656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\_per_sample_grad.cpython-39.pyc 2025-08-26T20:45:24.3710327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.3718890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\common_types.cpython-39.pyc 2025-08-26T20:45:24.3722373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\cpp.cpython-39.pyc 2025-08-26T20:45:24.3726355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\functional.cpython-39.pyc 2025-08-26T20:45:24.3735564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\grad.cpython-39.pyc 2025-08-26T20:45:24.3738991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\init.cpython-39.pyc 2025-08-26T20:45:24.3742970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\parameter.cpython-39.pyc 2025-08-26T20:45:24.3746888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\_reduction.cpython-39.pyc 2025-08-26T20:45:24.3750334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.3758715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\numa\binding.py 2025-08-26T20:45:24.3762071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\numa\__init__.py 2025-08-26T20:45:24.3768147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\numa\__pycache__\binding.cpython-39.pyc 2025-08-26T20:45:24.3771748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\numa\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.3780435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\errors.py 2025-08-26T20:45:24.3783885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\operators.py 2025-08-26T20:45:24.3787381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_helper.py 2025-08-26T20:45:24.3791120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset10.py 2025-08-26T20:45:24.3800064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset11.py 2025-08-26T20:45:24.3803817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset12.py 2025-08-26T20:45:24.3807357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset13.py 2025-08-26T20:45:24.3810991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset14.py 2025-08-26T20:45:24.3814973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset15.py 2025-08-26T20:45:24.3818240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset16.py 2025-08-26T20:45:24.3821921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset17.py 2025-08-26T20:45:24.3825570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset18.py 2025-08-26T20:45:24.3829507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset19.py 2025-08-26T20:45:24.3833161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset20.py 2025-08-26T20:45:24.3836766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset7.py 2025-08-26T20:45:24.3840532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset8.py 2025-08-26T20:45:24.3844343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset9.py 2025-08-26T20:45:24.3848953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\utils.py 2025-08-26T20:45:24.3852747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\verification.py 2025-08-26T20:45:24.3856516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_constants.py 2025-08-26T20:45:24.3864893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_experimental.py 2025-08-26T20:45:24.3868220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_flags.py 2025-08-26T20:45:24.3871531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_globals.py 2025-08-26T20:45:24.3875152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_type_utils.py 2025-08-26T20:45:24.3878304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__init__.py 2025-08-26T20:45:24.3886093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\_dtype_mappings.py 2025-08-26T20:45:24.3889512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\_impl.py 2025-08-26T20:45:24.3892941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\_symbolic_impl.py 2025-08-26T20:45:24.3896290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\__init__.py 2025-08-26T20:45:24.3907835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\__pycache__\_dtype_mappings.cpython-39.pyc 2025-08-26T20:45:24.3911599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\__pycache__\_impl.cpython-39.pyc 2025-08-26T20:45:24.3915483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\__pycache__\_symbolic_impl.cpython-39.pyc 2025-08-26T20:45:24.3923698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.3932588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\jit_utils.py 2025-08-26T20:45:24.3936097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\onnx_proto_utils.py 2025-08-26T20:45:24.3939569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\registration.py 2025-08-26T20:45:24.3947751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\_lazy_import.py 2025-08-26T20:45:24.3951377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__init__.py 2025-08-26T20:45:24.3957602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_analysis.py 2025-08-26T20:45:24.3961233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_building.py 2025-08-26T20:45:24.3964788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_capture_strategies.py 2025-08-26T20:45:24.3968658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_compat.py 2025-08-26T20:45:24.3976419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_constants.py 2025-08-26T20:45:24.3979955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_core.py 2025-08-26T20:45:24.3983510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_decomp.py 2025-08-26T20:45:24.3986830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_dispatching.py 2025-08-26T20:45:24.3990301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_dynamic_shapes.py 2025-08-26T20:45:24.3994217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_errors.py 2025-08-26T20:45:24.3997229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_flags.py 2025-08-26T20:45:24.4000628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_fx_passes.py 2025-08-26T20:45:24.4003910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_ir_passes.py 2025-08-26T20:45:24.4007922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_isolated.py 2025-08-26T20:45:24.4011425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_onnx_program.py 2025-08-26T20:45:24.4014771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_registration.py 2025-08-26T20:45:24.4018442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_reporting.py 2025-08-26T20:45:24.4021619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_schemas.py 2025-08-26T20:45:24.4024889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_tensors.py 2025-08-26T20:45:24.4028387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_testing.py 2025-08-26T20:45:24.4032164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_type_casting.py 2025-08-26T20:45:24.4035595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_verification.py 2025-08-26T20:45:24.4039009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__init__.py 2025-08-26T20:45:24.4050901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\_tensor_typing.py 2025-08-26T20:45:24.4054530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\_torchlib_registry.py 2025-08-26T20:45:24.4057933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\__init__.py 2025-08-26T20:45:24.4069076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\core.py 2025-08-26T20:45:24.4072726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\hop.py 2025-08-26T20:45:24.4075975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\nn.py 2025-08-26T20:45:24.4079256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\symbolic.py 2025-08-26T20:45:24.4082493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\symops.py 2025-08-26T20:45:24.4085870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__init__.py 2025-08-26T20:45:24.4097349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\core.cpython-39.pyc 2025-08-26T20:45:24.4100962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\hop.cpython-39.pyc 2025-08-26T20:45:24.4104486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\nn.cpython-39.pyc 2025-08-26T20:45:24.4111792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\symbolic.cpython-39.pyc 2025-08-26T20:45:24.4115414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\symops.cpython-39.pyc 2025-08-26T20:45:24.4118917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.4126841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\__pycache__\_tensor_typing.cpython-39.pyc 2025-08-26T20:45:24.4130409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\__pycache__\_torchlib_registry.cpython-39.pyc 2025-08-26T20:45:24.4133882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.4147415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_analysis.cpython-39.pyc 2025-08-26T20:45:24.4150941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_building.cpython-39.pyc 2025-08-26T20:45:24.4154331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_capture_strategies.cpython-39.pyc 2025-08-26T20:45:24.4161958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_compat.cpython-39.pyc 2025-08-26T20:45:24.4165677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_constants.cpython-39.pyc 2025-08-26T20:45:24.4169254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_core.cpython-39.pyc 2025-08-26T20:45:24.4173213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_decomp.cpython-39.pyc 2025-08-26T20:45:24.4177197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_dispatching.cpython-39.pyc 2025-08-26T20:45:24.4180709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_dynamic_shapes.cpython-39.pyc 2025-08-26T20:45:24.4184620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_errors.cpython-39.pyc 2025-08-26T20:45:24.4188338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_flags.cpython-39.pyc 2025-08-26T20:45:24.4191988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_fx_passes.cpython-39.pyc 2025-08-26T20:45:24.4195630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_ir_passes.cpython-39.pyc 2025-08-26T20:45:24.4199128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_isolated.cpython-39.pyc 2025-08-26T20:45:24.4202917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_onnx_program.cpython-39.pyc 2025-08-26T20:45:24.4206627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_registration.cpython-39.pyc 2025-08-26T20:45:24.4210537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_reporting.cpython-39.pyc 2025-08-26T20:45:24.4219191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_schemas.cpython-39.pyc 2025-08-26T20:45:24.5417612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_tensors.cpython-39.pyc 2025-08-26T20:45:24.5461420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_testing.cpython-39.pyc 2025-08-26T20:45:24.5466846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_type_casting.cpython-39.pyc 2025-08-26T20:45:24.5470922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_verification.cpython-39.pyc 2025-08-26T20:45:24.5476265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.5489395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\type_utils.py 2025-08-26T20:45:24.5492922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\_pass.py 2025-08-26T20:45:24.5498060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__init__.py 2025-08-26T20:45:24.5504055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\type_promotion.py 2025-08-26T20:45:24.5508173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\__init__.py 2025-08-26T20:45:24.5517054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\__pycache__\type_promotion.cpython-39.pyc 2025-08-26T20:45:24.5520692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.5533815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__pycache__\type_utils.cpython-39.pyc 2025-08-26T20:45:24.5537372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__pycache__\_pass.cpython-39.pyc 2025-08-26T20:45:24.5541093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.5553538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__pycache__\jit_utils.cpython-39.pyc 2025-08-26T20:45:24.5557529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__pycache__\onnx_proto_utils.cpython-39.pyc 2025-08-26T20:45:24.5560922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__pycache__\registration.cpython-39.pyc 2025-08-26T20:45:24.5568144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__pycache__\_lazy_import.cpython-39.pyc 2025-08-26T20:45:24.5571729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.5581249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\errors.cpython-39.pyc 2025-08-26T20:45:24.5585102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\operators.cpython-39.pyc 2025-08-26T20:45:24.5588611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_helper.cpython-39.pyc 2025-08-26T20:45:24.5597285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset10.cpython-39.pyc 2025-08-26T20:45:24.5600759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset11.cpython-39.pyc 2025-08-26T20:45:24.5604249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset12.cpython-39.pyc 2025-08-26T20:45:24.5607892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset13.cpython-39.pyc 2025-08-26T20:45:24.5611430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset14.cpython-39.pyc 2025-08-26T20:45:24.5615049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset15.cpython-39.pyc 2025-08-26T20:45:24.5618616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset16.cpython-39.pyc 2025-08-26T20:45:24.5622068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset17.cpython-39.pyc 2025-08-26T20:45:24.5625449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset18.cpython-39.pyc 2025-08-26T20:45:24.5628927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset19.cpython-39.pyc 2025-08-26T20:45:24.5632516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset20.cpython-39.pyc 2025-08-26T20:45:24.5636285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset7.cpython-39.pyc 2025-08-26T20:45:24.5639763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset8.cpython-39.pyc 2025-08-26T20:45:24.5647113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset9.cpython-39.pyc 2025-08-26T20:45:24.5651423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:24.5655147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\verification.cpython-39.pyc 2025-08-26T20:45:24.5658749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\_constants.cpython-39.pyc 2025-08-26T20:45:24.5662242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\_experimental.cpython-39.pyc 2025-08-26T20:45:24.5665979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\_flags.cpython-39.pyc 2025-08-26T20:45:24.5669582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\_globals.cpython-39.pyc 2025-08-26T20:45:24.5673080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\_type_utils.cpython-39.pyc 2025-08-26T20:45:24.5676494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.5686259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\adadelta.py 2025-08-26T20:45:24.5708684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\adagrad.py 2025-08-26T20:45:24.5712474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\adam.py 2025-08-26T20:45:24.5716002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\adamax.py 2025-08-26T20:45:24.5719557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\adamw.py 2025-08-26T20:45:24.5722579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\asgd.py 2025-08-26T20:45:24.5725723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\lbfgs.py 2025-08-26T20:45:24.5733956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\lr_scheduler.py 2025-08-26T20:45:24.5738197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\nadam.py 2025-08-26T20:45:24.5741747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\optimizer.py 2025-08-26T20:45:24.5745839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\radam.py 2025-08-26T20:45:24.5749371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\rmsprop.py 2025-08-26T20:45:24.5753227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\rprop.py 2025-08-26T20:45:24.5757225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\sgd.py 2025-08-26T20:45:24.5761532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\sparse_adam.py 2025-08-26T20:45:24.5765795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\swa_utils.py 2025-08-26T20:45:24.5769405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\_adafactor.py 2025-08-26T20:45:24.5772973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\_functional.py 2025-08-26T20:45:24.5776332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\_muon.py 2025-08-26T20:45:24.5779593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__init__.py 2025-08-26T20:45:24.5788190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\_multi_tensor\__init__.py 2025-08-26T20:45:24.5791665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\_multi_tensor\__init__.pyi 2025-08-26T20:45:24.5798876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\_multi_tensor\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.5806855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\adadelta.cpython-39.pyc 2025-08-26T20:45:24.5810452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\adagrad.cpython-39.pyc 2025-08-26T20:45:24.5814307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\adam.cpython-39.pyc 2025-08-26T20:45:24.5822953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\adamax.cpython-39.pyc 2025-08-26T20:45:24.5826381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\adamw.cpython-39.pyc 2025-08-26T20:45:24.5830070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\asgd.cpython-39.pyc 2025-08-26T20:45:24.5833606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\lbfgs.cpython-39.pyc 2025-08-26T20:45:24.5837133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\lr_scheduler.cpython-39.pyc 2025-08-26T20:45:24.5841012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\nadam.cpython-39.pyc 2025-08-26T20:45:24.5844609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\optimizer.cpython-39.pyc 2025-08-26T20:45:24.5848298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\radam.cpython-39.pyc 2025-08-26T20:45:24.5851865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\rmsprop.cpython-39.pyc 2025-08-26T20:45:24.5855962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\rprop.cpython-39.pyc 2025-08-26T20:45:24.5859671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\sgd.cpython-39.pyc 2025-08-26T20:45:24.5863206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\sparse_adam.cpython-39.pyc 2025-08-26T20:45:24.5866819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\swa_utils.cpython-39.pyc 2025-08-26T20:45:24.5870273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\_adafactor.cpython-39.pyc 2025-08-26T20:45:24.5877723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\_functional.cpython-39.pyc 2025-08-26T20:45:24.5881231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\_muon.cpython-39.pyc 2025-08-26T20:45:24.5885523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.5894677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\file_structure_representation.py 2025-08-26T20:45:24.5898462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\find_file_dependencies.py 2025-08-26T20:45:24.5902268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\glob_group.py 2025-08-26T20:45:24.5909697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\importer.py 2025-08-26T20:45:24.5913405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\package_exporter.py 2025-08-26T20:45:24.5917284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\package_importer.py 2025-08-26T20:45:24.5920735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_digraph.py 2025-08-26T20:45:24.5924225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_directory_reader.py 2025-08-26T20:45:24.5927669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_importlib.py 2025-08-26T20:45:24.5931292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_mangling.py 2025-08-26T20:45:24.5934812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_mock.py 2025-08-26T20:45:24.5938473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_package_pickler.py 2025-08-26T20:45:24.5943454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_package_unpickler.py 2025-08-26T20:45:24.5946985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_stdlib.py 2025-08-26T20:45:24.5950447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__init__.py 2025-08-26T20:45:24.5957496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\find_first_use_of_broken_modules.py 2025-08-26T20:45:24.5960903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\is_from_package.py 2025-08-26T20:45:24.5964398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\trace_dependencies.py 2025-08-26T20:45:24.5972559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\__init__.py 2025-08-26T20:45:24.5980136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\__pycache__\find_first_use_of_broken_modules.cpython-39.pyc 2025-08-26T20:45:24.5983690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\__pycache__\is_from_package.cpython-39.pyc 2025-08-26T20:45:24.5987189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\__pycache__\trace_dependencies.cpython-39.pyc 2025-08-26T20:45:24.5995996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.6004159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\file_structure_representation.cpython-39.pyc 2025-08-26T20:45:24.6007730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\find_file_dependencies.cpython-39.pyc 2025-08-26T20:45:24.6011175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\glob_group.cpython-39.pyc 2025-08-26T20:45:24.6018899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\importer.cpython-39.pyc 2025-08-26T20:45:24.6022736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\package_exporter.cpython-39.pyc 2025-08-26T20:45:24.6026489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\package_importer.cpython-39.pyc 2025-08-26T20:45:24.6029961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_digraph.cpython-39.pyc 2025-08-26T20:45:24.6033439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_directory_reader.cpython-39.pyc 2025-08-26T20:45:24.6036961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_importlib.cpython-39.pyc 2025-08-26T20:45:24.6040447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_mangling.cpython-39.pyc 2025-08-26T20:45:24.6043867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_mock.cpython-39.pyc 2025-08-26T20:45:24.6047807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_package_pickler.cpython-39.pyc 2025-08-26T20:45:24.6051256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_package_unpickler.cpython-39.pyc 2025-08-26T20:45:24.6054716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_stdlib.cpython-39.pyc 2025-08-26T20:45:24.6058151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.6066303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\itt.py 2025-08-26T20:45:24.6069698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\profiler.py 2025-08-26T20:45:24.6073141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\python_tracer.py 2025-08-26T20:45:24.6076715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\_memory_profiler.py 2025-08-26T20:45:24.6080174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\_pattern_matcher.py 2025-08-26T20:45:24.6088241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\_utils.py 2025-08-26T20:45:24.6091505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__init__.py 2025-08-26T20:45:24.6099586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\itt.cpython-39.pyc 2025-08-26T20:45:24.6103181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\profiler.cpython-39.pyc 2025-08-26T20:45:24.6106603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\python_tracer.cpython-39.pyc 2025-08-26T20:45:24.6115470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\_memory_profiler.cpython-39.pyc 2025-08-26T20:45:24.6119310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\_pattern_matcher.cpython-39.pyc 2025-08-26T20:45:24.6122963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\_utils.cpython-39.pyc 2025-08-26T20:45:24.6126541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.6135084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fake_quantize.py 2025-08-26T20:45:24.6138620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fuser_method_mappings.py 2025-08-26T20:45:24.6142470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fuse_modules.py 2025-08-26T20:45:24.6150678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\observer.py 2025-08-26T20:45:24.6154123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\qconfig.py 2025-08-26T20:45:24.6157693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\quantization_mappings.py 2025-08-26T20:45:24.6161364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\quantize.py 2025-08-26T20:45:24.6165115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\quantize_fx.py 2025-08-26T20:45:24.6168807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\quantize_jit.py 2025-08-26T20:45:24.6172195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\quant_type.py 2025-08-26T20:45:24.6175946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\stubs.py 2025-08-26T20:45:24.6179344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\utils.py 2025-08-26T20:45:24.6182978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\_numeric_suite.py 2025-08-26T20:45:24.6186579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\_numeric_suite_fx.py 2025-08-26T20:45:24.6190025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\_quantized_conversions.py 2025-08-26T20:45:24.6193806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__init__.py 2025-08-26T20:45:24.6200842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\convert.py 2025-08-26T20:45:24.6204468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\fuse.py 2025-08-26T20:45:24.6207935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\fusion_patterns.py 2025-08-26T20:45:24.6211429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\graph_module.py 2025-08-26T20:45:24.6215164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\match_utils.py 2025-08-26T20:45:24.6223864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\pattern_utils.py 2025-08-26T20:45:24.6227692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\prepare.py 2025-08-26T20:45:24.6231179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\quantization_patterns.py 2025-08-26T20:45:24.6234684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\quantization_types.py 2025-08-26T20:45:24.6238090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\utils.py 2025-08-26T20:45:24.6241440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\_equalize.py 2025-08-26T20:45:24.6244874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__init__.py 2025-08-26T20:45:24.6252613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\convert.cpython-39.pyc 2025-08-26T20:45:24.6256530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\fuse.cpython-39.pyc 2025-08-26T20:45:24.6260360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\fusion_patterns.cpython-39.pyc 2025-08-26T20:45:24.6268669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\graph_module.cpython-39.pyc 2025-08-26T20:45:24.6272277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\match_utils.cpython-39.pyc 2025-08-26T20:45:24.6275759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\pattern_utils.cpython-39.pyc 2025-08-26T20:45:24.6279344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\prepare.cpython-39.pyc 2025-08-26T20:45:24.6283204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\quantization_patterns.cpython-39.pyc 2025-08-26T20:45:24.6286880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\quantization_types.cpython-39.pyc 2025-08-26T20:45:24.6290954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:24.6294586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\_equalize.cpython-39.pyc 2025-08-26T20:45:24.6298482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.6306845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\fake_quantize.cpython-39.pyc 2025-08-26T20:45:24.6310613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\fuser_method_mappings.cpython-39.pyc 2025-08-26T20:45:24.6314521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\fuse_modules.cpython-39.pyc 2025-08-26T20:45:24.6322403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\observer.cpython-39.pyc 2025-08-26T20:45:24.6326371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\qconfig.cpython-39.pyc 2025-08-26T20:45:24.6329909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\quantization_mappings.cpython-39.pyc 2025-08-26T20:45:24.6333287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\quantize.cpython-39.pyc 2025-08-26T20:45:24.6336929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\quantize_fx.cpython-39.pyc 2025-08-26T20:45:24.6340768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\quantize_jit.cpython-39.pyc 2025-08-26T20:45:24.6344309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\quant_type.cpython-39.pyc 2025-08-26T20:45:24.6348266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\stubs.cpython-39.pyc 2025-08-26T20:45:24.6351806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:24.6355530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\_numeric_suite.cpython-39.pyc 2025-08-26T20:45:24.6359253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\_numeric_suite_fx.cpython-39.pyc 2025-08-26T20:45:24.6362820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\_quantized_conversions.cpython-39.pyc 2025-08-26T20:45:24.6366712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.6386756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\ATen\ATenConfig.cmake 2025-08-26T20:45:24.6393784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Caffe2Config.cmake 2025-08-26T20:45:24.6397231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Caffe2Targets-release.cmake 2025-08-26T20:45:24.6400707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Caffe2Targets.cmake 2025-08-26T20:45:24.6409564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\FindCUDAToolkit.cmake 2025-08-26T20:45:24.6413219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\FindCUDSS.cmake 2025-08-26T20:45:24.6417057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\FindCUSPARSELT.cmake 2025-08-26T20:45:24.6420894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\FindSYCLToolkit.cmake 2025-08-26T20:45:24.6427922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\FindCUDA.cmake 2025-08-26T20:45:24.6431406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\FindCUDNN.cmake 2025-08-26T20:45:24.6443766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\CMakeInitializeConfigs.cmake 2025-08-26T20:45:24.6447370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA.cmake 2025-08-26T20:45:24.6451236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindPackageMessage.cmake 2025-08-26T20:45:24.6463508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\make2cmake.cmake 2025-08-26T20:45:24.6467034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\parse_cubin.cmake 2025-08-26T20:45:24.6470500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\run_nvcc.cmake 2025-08-26T20:45:24.6477483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\select_compute_arch.cmake 2025-08-26T20:45:24.6485775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\cuda.cmake 2025-08-26T20:45:24.6489500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\gflags.cmake 2025-08-26T20:45:24.6492983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\glog.cmake 2025-08-26T20:45:24.6496435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\LoadHIP.cmake 2025-08-26T20:45:24.6503932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\mkl.cmake 2025-08-26T20:45:24.6507459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\mkldnn.cmake 2025-08-26T20:45:24.6511050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\protobuf.cmake 2025-08-26T20:45:24.6514464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\utils.cmake 2025-08-26T20:45:24.6518042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\xpu.cmake 2025-08-26T20:45:24.6525832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Torch\TorchConfig.cmake 2025-08-26T20:45:24.6529398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Torch\TorchConfigVersion.cmake 2025-08-26T20:45:24.6538958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\__init__.py 2025-08-26T20:45:24.6545499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\windows\windows.py 2025-08-26T20:45:24.6549828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\windows\__init__.py 2025-08-26T20:45:24.6556803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\windows\__pycache__\windows.cpython-39.pyc 2025-08-26T20:45:24.6560358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\windows\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.6567928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.6584333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\semi_structured.py 2025-08-26T20:45:24.6587937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\_semi_structured_conversions.py 2025-08-26T20:45:24.6591298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\_semi_structured_ops.py 2025-08-26T20:45:24.6599083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\_triton_ops.py 2025-08-26T20:45:24.6602883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\_triton_ops_meta.py 2025-08-26T20:45:24.6608627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__init__.py 2025-08-26T20:45:24.6615665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\semi_structured.cpython-39.pyc 2025-08-26T20:45:24.6619156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\_semi_structured_conversions.cpython-39.pyc 2025-08-26T20:45:24.6622691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\_semi_structured_ops.cpython-39.pyc 2025-08-26T20:45:24.6631584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\_triton_ops.cpython-39.pyc 2025-08-26T20:45:24.6635381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\_triton_ops_meta.cpython-39.pyc 2025-08-26T20:45:24.6639596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.6647314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\special\__init__.py 2025-08-26T20:45:24.6654138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\special\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.6663164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\apply_utils_test.exe 2025-08-26T20:45:24.6668534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\atest.exe 2025-08-26T20:45:24.6673889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\backend_fallback_test.exe 2025-08-26T20:45:24.6678971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\basic.exe 2025-08-26T20:45:24.6689049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\broadcast_test.exe 2025-08-26T20:45:24.6694089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_accumulate_test.exe 2025-08-26T20:45:24.6699007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_AllocatorConfig_test.exe 2025-08-26T20:45:24.6703785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_ArrayRef_test.exe 2025-08-26T20:45:24.6708563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_bfloat16_test.exe 2025-08-26T20:45:24.6714214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Bitset_test.exe 2025-08-26T20:45:24.6718978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_bit_cast_test.exe 2025-08-26T20:45:24.6723974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_CompileTimeFunctionPointer_test.exe 2025-08-26T20:45:24.6729046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_complex_math_test.exe 2025-08-26T20:45:24.6734480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_complex_test.exe 2025-08-26T20:45:24.6739514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_ConstexprCrc_test.exe 2025-08-26T20:45:24.6744391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_cow_test.exe 2025-08-26T20:45:24.6750917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_DeadlockDetection_test.exe 2025-08-26T20:45:24.6756065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_DeviceGuard_test.exe 2025-08-26T20:45:24.6766226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Device_test.exe 2025-08-26T20:45:24.6771934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_DispatchKeySet_test.exe 2025-08-26T20:45:24.6777589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Enumerate_test.exe 2025-08-26T20:45:24.6782593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_error_test.exe 2025-08-26T20:45:24.6787417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_exception_test.exe 2025-08-26T20:45:24.6792581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_flags_test.exe 2025-08-26T20:45:24.6797669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_generic_math_test.exe 2025-08-26T20:45:24.6802609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Half_test.exe 2025-08-26T20:45:24.6807664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_InlineDeviceGuard_test.exe 2025-08-26T20:45:24.6832416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_InlineStreamGuard_test.exe 2025-08-26T20:45:24.6838793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_IntrusiveList_test.exe 2025-08-26T20:45:24.6843716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_intrusive_ptr_benchmark.exe 2025-08-26T20:45:24.6848444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_intrusive_ptr_test.exe 2025-08-26T20:45:24.6857628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_irange_test.exe 2025-08-26T20:45:24.6862724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_lazy_test.exe 2025-08-26T20:45:24.6867898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_LeftRight_test.exe 2025-08-26T20:45:24.6872821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_logging_test.exe 2025-08-26T20:45:24.6882284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Metaprogramming_test.exe 2025-08-26T20:45:24.6887426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_NetworkFlow_test.exe 2025-08-26T20:45:24.6892831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_optional_test.exe 2025-08-26T20:45:24.6898862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_ordered_preserving_dict_test.exe 2025-08-26T20:45:24.6904247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_registry_test.exe 2025-08-26T20:45:24.6909198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Scalar_test.exe 2025-08-26T20:45:24.6914131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Semaphore_test.exe 2025-08-26T20:45:24.6919632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_SizesAndStrides_test.exe 2025-08-26T20:45:24.6925168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_small_vector_test.exe 2025-08-26T20:45:24.6937282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_ssize_test.exe 2025-08-26T20:45:24.6942556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_StreamGuard_test.exe 2025-08-26T20:45:24.6947801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_string_util_test.exe 2025-08-26T20:45:24.6953138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_string_view_test.exe 2025-08-26T20:45:24.6958201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_SymInt_test.exe 2025-08-26T20:45:24.6963277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Synchronized_test.exe 2025-08-26T20:45:24.6968293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_tempfile_test.exe 2025-08-26T20:45:24.6973526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_ThreadLocal_test.exe 2025-08-26T20:45:24.6986638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_typeid_test.exe 2025-08-26T20:45:24.6992071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_TypeIndex_test.exe 2025-08-26T20:45:24.6997935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_TypeList_test.exe 2025-08-26T20:45:24.7002769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_TypeTraits_test.exe 2025-08-26T20:45:24.7008078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\CppSignature_test.exe 2025-08-26T20:45:24.7013050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\cpu_allocator_test.exe 2025-08-26T20:45:24.7017993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\cpu_generator_test.exe 2025-08-26T20:45:24.7024169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\cpu_profiling_allocator_test.exe 2025-08-26T20:45:24.7028843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\cpu_rng_test.exe 2025-08-26T20:45:24.7039695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\Dict_test.exe 2025-08-26T20:45:24.7045655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\Dimname_test.exe 2025-08-26T20:45:24.7051256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\dlconvertor_test.exe 2025-08-26T20:45:24.7056893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\extension_backend_test.exe 2025-08-26T20:45:24.7062751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\half_test.exe 2025-08-26T20:45:24.7068082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\IListRef_test.exe 2025-08-26T20:45:24.7073574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\inline_container_test.exe 2025-08-26T20:45:24.7079016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\ivalue_test.exe 2025-08-26T20:45:24.7085689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\KernelFunction_test.exe 2025-08-26T20:45:24.7096307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\kernel_function_legacy_test.exe 2025-08-26T20:45:24.7103273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\kernel_function_test.exe 2025-08-26T20:45:24.7109517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\kernel_lambda_legacy_test.exe 2025-08-26T20:45:24.7116997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\kernel_lambda_test.exe 2025-08-26T20:45:24.7123602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\kernel_stackbased_test.exe 2025-08-26T20:45:24.7138605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\lazy_tensor_test.exe 2025-08-26T20:45:24.7144820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\legacy_vmap_test.exe 2025-08-26T20:45:24.7150752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\List_test.exe 2025-08-26T20:45:24.7157815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\make_boxed_from_unboxed_functor_test.exe 2025-08-26T20:45:24.7164197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\math_kernel_test.exe 2025-08-26T20:45:24.7169489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\MaybeOwned_test.exe 2025-08-26T20:45:24.7175589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\memory_format_test.exe 2025-08-26T20:45:24.7180798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\memory_overlapping_test.exe 2025-08-26T20:45:24.7186287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\mobile_memory_cleanup.exe 2025-08-26T20:45:24.7191277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\NamedTensor_test.exe 2025-08-26T20:45:24.7196822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\native_test.exe 2025-08-26T20:45:24.7207494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\operators_test.exe 2025-08-26T20:45:24.7212549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\operator_name_test.exe 2025-08-26T20:45:24.7217360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\op_allowlist_test.exe 2025-08-26T20:45:24.7222113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\op_registration_test.exe 2025-08-26T20:45:24.7238435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\packedtensoraccessor_test.exe 2025-08-26T20:45:24.7243812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\pow_test.exe 2025-08-26T20:45:24.7250755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\quantized_test.exe 2025-08-26T20:45:24.7255858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\reduce_ops_test.exe 2025-08-26T20:45:24.7261028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\reportMemoryUsage_test.exe 2025-08-26T20:45:24.7266153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\scalar_tensor_test.exe 2025-08-26T20:45:24.7271620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\scalar_test.exe 2025-08-26T20:45:24.7277530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\StorageUtils_test.exe 2025-08-26T20:45:24.7283765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\stride_properties_test.exe 2025-08-26T20:45:24.7288945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\tensor_iterator_test.exe 2025-08-26T20:45:24.7294953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\test_parallel.exe 2025-08-26T20:45:24.7300167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\thread_init_test.exe 2025-08-26T20:45:24.7305379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\type_ptr_test.exe 2025-08-26T20:45:24.7310067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\type_test.exe 2025-08-26T20:45:24.7320014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\undefined_tensor_test.exe 2025-08-26T20:45:24.7325305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\verify_api_visibility.exe 2025-08-26T20:45:24.7331229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\weakref_test.exe 2025-08-26T20:45:24.7336481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\wrapdim_test.exe 2025-08-26T20:45:24.7341693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\xla_tensor_test.exe 2025-08-26T20:45:24.7355838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_comparison.py 2025-08-26T20:45:24.7359401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_creation.py 2025-08-26T20:45:24.7362788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_utils.py 2025-08-26T20:45:24.7366169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\__init__.py 2025-08-26T20:45:24.7379285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\autocast_test_lists.py 2025-08-26T20:45:24.7383127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\autograd_function_db.py 2025-08-26T20:45:24.7386635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\check_kernel_launches.py 2025-08-26T20:45:24.7395675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_cuda.py 2025-08-26T20:45:24.7399171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_device_type.py 2025-08-26T20:45:24.7402871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_distributed.py 2025-08-26T20:45:24.7406730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_dist_composable.py 2025-08-26T20:45:24.7410189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_dtype.py 2025-08-26T20:45:24.7414094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_fsdp.py 2025-08-26T20:45:24.7417725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_jit.py 2025-08-26T20:45:24.7421751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_methods_invocations.py 2025-08-26T20:45:24.7430933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_mkldnn.py 2025-08-26T20:45:24.7434562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_modules.py 2025-08-26T20:45:24.7439043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_mps.py 2025-08-26T20:45:24.7442606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_nn.py 2025-08-26T20:45:24.7447336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_optimizers.py 2025-08-26T20:45:24.7451804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_pruning.py 2025-08-26T20:45:24.7455855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_quantization.py 2025-08-26T20:45:24.7464357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_quantized.py 2025-08-26T20:45:24.7467860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_subclass.py 2025-08-26T20:45:24.7471625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_utils.py 2025-08-26T20:45:24.7476475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\composite_compliance.py 2025-08-26T20:45:24.7480125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\custom_op_db.py 2025-08-26T20:45:24.7483924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\custom_tensor.py 2025-08-26T20:45:24.7487936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\dist_utils.py 2025-08-26T20:45:24.7491998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\dynamo_test_failures.py 2025-08-26T20:45:24.7495601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\fake_config_module.py 2025-08-26T20:45:24.7499505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\fake_config_module2.py 2025-08-26T20:45:24.7503273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\fake_config_module3.py 2025-08-26T20:45:24.7512397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\hop_db.py 2025-08-26T20:45:24.7515867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\hypothesis_utils.py 2025-08-26T20:45:24.7519379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\inductor_utils.py 2025-08-26T20:45:24.7522939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\jit_metaprogramming_utils.py 2025-08-26T20:45:24.7526842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\jit_utils.py 2025-08-26T20:45:24.7530400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\logging_tensor.py 2025-08-26T20:45:24.7533735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\logging_utils.py 2025-08-26T20:45:24.7537500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\quantization_torch_package_models.py 2025-08-26T20:45:24.7541069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\static_module.py 2025-08-26T20:45:24.7544324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\subclasses.py 2025-08-26T20:45:24.7552476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\torchbind_impls.py 2025-08-26T20:45:24.7556000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\triton_utils.py 2025-08-26T20:45:24.7560359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\two_tensor.py 2025-08-26T20:45:24.7563945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__init__.py 2025-08-26T20:45:24.7570628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\codegen\__init__.py 2025-08-26T20:45:24.7577438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\codegen\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.7585277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\network1.py 2025-08-26T20:45:24.7588476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\network2.py 2025-08-26T20:45:24.7592661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\__init__.py 2025-08-26T20:45:24.7599708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\__pycache__\network1.cpython-39.pyc 2025-08-26T20:45:24.7603590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\__pycache__\network2.cpython-39.pyc 2025-08-26T20:45:24.7607280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.7623942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\checkpoint_utils.py 2025-08-26T20:45:24.7627285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\common_state_dict.py 2025-08-26T20:45:24.7631065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\ddp_under_dist_autograd_test.py 2025-08-26T20:45:24.7638850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\distributed_test.py 2025-08-26T20:45:24.7644222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\distributed_utils.py 2025-08-26T20:45:24.7647978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\fake_pg.py 2025-08-26T20:45:24.7651452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\multi_threaded_pg.py 2025-08-26T20:45:24.7655270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc_utils.py 2025-08-26T20:45:24.7658659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__init__.py 2025-08-26T20:45:24.7665080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\__init__.py 2025-08-26T20:45:24.7671146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\api\remote_module_test.py 2025-08-26T20:45:24.7674623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\api\__init__.py 2025-08-26T20:45:24.7680813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\api\__pycache__\remote_module_test.cpython-39.pyc 2025-08-26T20:45:24.7684352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\api\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.7691870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.7699919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\dist_autograd_test.py 2025-08-26T20:45:24.7704541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\dist_optimizer_test.py 2025-08-26T20:45:24.7708025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\faulty_agent_rpc_test.py 2025-08-26T20:45:24.7716463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\faulty_rpc_agent_test_fixture.py 2025-08-26T20:45:24.7720002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\rpc_agent_test_fixture.py 2025-08-26T20:45:24.7723374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\rpc_test.py 2025-08-26T20:45:24.7727960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\tensorpipe_rpc_agent_test_fixture.py 2025-08-26T20:45:24.7731342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__init__.py 2025-08-26T20:45:24.7737496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\parameter_server_test.py 2025-08-26T20:45:24.7741017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\reinforcement_learning_rpc_test.py 2025-08-26T20:45:24.7744275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\__init__.py 2025-08-26T20:45:24.7756246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\__pycache__\parameter_server_test.cpython-39.pyc 2025-08-26T20:45:24.7760314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\__pycache__\reinforcement_learning_rpc_test.cpython-39.pyc 2025-08-26T20:45:24.7763970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.7776511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\dist_autograd_test.py 2025-08-26T20:45:24.7779803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\rpc_test.py 2025-08-26T20:45:24.7783906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\rpc_test_faulty.py 2025-08-26T20:45:24.7787378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\__init__.py 2025-08-26T20:45:24.7798174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\__pycache__\dist_autograd_test.cpython-39.pyc 2025-08-26T20:45:24.7801894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\__pycache__\rpc_test.cpython-39.pyc 2025-08-26T20:45:24.7805565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\__pycache__\rpc_test_faulty.cpython-39.pyc 2025-08-26T20:45:24.7813911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.7822312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\dist_autograd_test.cpython-39.pyc 2025-08-26T20:45:24.7826290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\dist_optimizer_test.cpython-39.pyc 2025-08-26T20:45:24.7830098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\faulty_agent_rpc_test.cpython-39.pyc 2025-08-26T20:45:24.7837622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\faulty_rpc_agent_test_fixture.cpython-39.pyc 2025-08-26T20:45:24.7841581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\rpc_agent_test_fixture.cpython-39.pyc 2025-08-26T20:45:24.7845329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\rpc_test.cpython-39.pyc 2025-08-26T20:45:24.7850193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\tensorpipe_rpc_agent_test_fixture.cpython-39.pyc 2025-08-26T20:45:24.7853827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.7862051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\test_common.py 2025-08-26T20:45:24.7865489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\__init__.py 2025-08-26T20:45:24.7873278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\_test_ops_common.py 2025-08-26T20:45:24.7876852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\_test_st_common.py 2025-08-26T20:45:24.7880178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\__init__.py 2025-08-26T20:45:24.7891996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\__pycache__\_test_ops_common.cpython-39.pyc 2025-08-26T20:45:24.7895562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\__pycache__\_test_st_common.cpython-39.pyc 2025-08-26T20:45:24.7899184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.7917519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\__pycache__\test_common.cpython-39.pyc 2025-08-26T20:45:24.7921446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.7929761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_tensor\common_dtensor.py 2025-08-26T20:45:24.7933396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_tensor\__init__.py 2025-08-26T20:45:24.7940035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_tensor\__pycache__\common_dtensor.cpython-39.pyc 2025-08-26T20:45:24.7944250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_tensor\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.7952513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\checkpoint_utils.cpython-39.pyc 2025-08-26T20:45:24.7956392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\common_state_dict.cpython-39.pyc 2025-08-26T20:45:24.7960115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\ddp_under_dist_autograd_test.cpython-39.pyc 2025-08-26T20:45:24.7968145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\distributed_test.cpython-39.pyc 2025-08-26T20:45:24.7973264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\distributed_utils.cpython-39.pyc 2025-08-26T20:45:24.7976794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\fake_pg.cpython-39.pyc 2025-08-26T20:45:24.7981186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\multi_threaded_pg.cpython-39.pyc 2025-08-26T20:45:24.7984818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\rpc_utils.cpython-39.pyc 2025-08-26T20:45:24.7988277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.7997255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\generated\annotated_fn_args.py 2025-08-26T20:45:24.8003503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\generated\__init__.py 2025-08-26T20:45:24.8010105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\generated\__pycache__\annotated_fn_args.cpython-39.pyc 2025-08-26T20:45:24.8014319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\generated\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.8021993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\core.py 2025-08-26T20:45:24.8025817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\refs.py 2025-08-26T20:45:24.8029424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\utils.py 2025-08-26T20:45:24.8032383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\__init__.py 2025-08-26T20:45:24.8039141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\fft.py 2025-08-26T20:45:24.8042671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\linalg.py 2025-08-26T20:45:24.8046619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\nested.py 2025-08-26T20:45:24.8050143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\signal.py 2025-08-26T20:45:24.8053654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\sparse.py 2025-08-26T20:45:24.8057052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\special.py 2025-08-26T20:45:24.8066329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\_masked.py 2025-08-26T20:45:24.8069755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__init__.py 2025-08-26T20:45:24.8076961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\fft.cpython-39.pyc 2025-08-26T20:45:24.8080418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\linalg.cpython-39.pyc 2025-08-26T20:45:24.8084191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\nested.cpython-39.pyc 2025-08-26T20:45:24.8092385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\signal.cpython-39.pyc 2025-08-26T20:45:24.8095910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\sparse.cpython-39.pyc 2025-08-26T20:45:24.8099404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\special.cpython-39.pyc 2025-08-26T20:45:24.8119627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\_masked.cpython-39.pyc 2025-08-26T20:45:24.8123068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.8135017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\__pycache__\core.cpython-39.pyc 2025-08-26T20:45:24.8139109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\__pycache__\refs.cpython-39.pyc 2025-08-26T20:45:24.8143245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:24.8150227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.8157815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\aot_autograd.py 2025-08-26T20:45:24.8161197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\autograd_registration.py 2025-08-26T20:45:24.8164518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\fake_tensor.py 2025-08-26T20:45:24.8167926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\generate_tests.py 2025-08-26T20:45:24.8176142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\make_fx.py 2025-08-26T20:45:24.8180071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__init__.py 2025-08-26T20:45:24.8187051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\aot_autograd.cpython-39.pyc 2025-08-26T20:45:24.8190785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\autograd_registration.cpython-39.pyc 2025-08-26T20:45:24.8194204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\fake_tensor.cpython-39.pyc 2025-08-26T20:45:24.8202359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\generate_tests.cpython-39.pyc 2025-08-26T20:45:24.8205964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\make_fx.cpython-39.pyc 2025-08-26T20:45:24.8209644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.8217479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\future_div.py 2025-08-26T20:45:24.8221069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\no_future_div.py 2025-08-26T20:45:24.8224266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\__init__.py 2025-08-26T20:45:24.8235369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\__pycache__\future_div.cpython-39.pyc 2025-08-26T20:45:24.8239003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\__pycache__\no_future_div.cpython-39.pyc 2025-08-26T20:45:24.8242551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.8256674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\autocast_test_lists.cpython-39.pyc 2025-08-26T20:45:24.8260221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\autograd_function_db.cpython-39.pyc 2025-08-26T20:45:24.8263985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\check_kernel_launches.cpython-39.pyc 2025-08-26T20:45:24.8272738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_cuda.cpython-39.pyc 2025-08-26T20:45:24.8276293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_device_type.cpython-39.pyc 2025-08-26T20:45:24.8280210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_distributed.cpython-39.pyc 2025-08-26T20:45:24.8284107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_dist_composable.cpython-39.pyc 2025-08-26T20:45:24.8287857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_dtype.cpython-39.pyc 2025-08-26T20:45:24.8291393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_fsdp.cpython-39.pyc 2025-08-26T20:45:24.8295160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_jit.cpython-39.pyc 2025-08-26T20:45:24.8299144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_methods_invocations.cpython-39.pyc 2025-08-26T20:45:24.8305191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_mkldnn.cpython-39.pyc 2025-08-26T20:45:24.8309042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_modules.cpython-39.pyc 2025-08-26T20:45:24.8313103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_mps.cpython-39.pyc 2025-08-26T20:45:24.8317103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_nn.cpython-39.pyc 2025-08-26T20:45:24.8321264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_optimizers.cpython-39.pyc 2025-08-26T20:45:24.8329180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_pruning.cpython-39.pyc 2025-08-26T20:45:24.8332959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_quantization.cpython-39.pyc 2025-08-26T20:45:24.8337200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_quantized.cpython-39.pyc 2025-08-26T20:45:24.8341505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_subclass.cpython-39.pyc 2025-08-26T20:45:24.8345251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_utils.cpython-39.pyc 2025-08-26T20:45:24.8349813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\composite_compliance.cpython-39.pyc 2025-08-26T20:45:24.8353767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\custom_op_db.cpython-39.pyc 2025-08-26T20:45:24.8357522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\custom_tensor.cpython-39.pyc 2025-08-26T20:45:24.8361127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\dist_utils.cpython-39.pyc 2025-08-26T20:45:24.8365622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\dynamo_test_failures.cpython-39.pyc 2025-08-26T20:45:24.8369432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\fake_config_module.cpython-39.pyc 2025-08-26T20:45:24.8377830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\fake_config_module2.cpython-39.pyc 2025-08-26T20:45:24.8381470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\fake_config_module3.cpython-39.pyc 2025-08-26T20:45:24.8385167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\hop_db.cpython-39.pyc 2025-08-26T20:45:24.8388895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\hypothesis_utils.cpython-39.pyc 2025-08-26T20:45:24.8392478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\inductor_utils.cpython-39.pyc 2025-08-26T20:45:24.8396327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\jit_metaprogramming_utils.cpython-39.pyc 2025-08-26T20:45:24.8399951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\jit_utils.cpython-39.pyc 2025-08-26T20:45:24.8404117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\logging_tensor.cpython-39.pyc 2025-08-26T20:45:24.8415313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\logging_utils.cpython-39.pyc 2025-08-26T20:45:24.8418949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\quantization_torch_package_models.cpython-39.pyc 2025-08-26T20:45:24.8422645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\static_module.cpython-39.pyc 2025-08-26T20:45:24.8426474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\subclasses.cpython-39.pyc 2025-08-26T20:45:24.8430113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\torchbind_impls.cpython-39.pyc 2025-08-26T20:45:24.8434151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\triton_utils.cpython-39.pyc 2025-08-26T20:45:24.8437821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\two_tensor.cpython-39.pyc 2025-08-26T20:45:24.8441413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.8457779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\__pycache__\_comparison.cpython-39.pyc 2025-08-26T20:45:24.8461838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\__pycache__\_creation.cpython-39.pyc 2025-08-26T20:45:24.8465687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\__pycache__\_utils.cpython-39.pyc 2025-08-26T20:45:24.8473267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.8482190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\backend_registration.py 2025-08-26T20:45:24.8485744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\bundled_inputs.py 2025-08-26T20:45:24.8489204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\checkpoint.py 2025-08-26T20:45:24.8492909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\collect_env.py 2025-08-26T20:45:24.8500708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\cpp_backtrace.py 2025-08-26T20:45:24.8504077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\cpp_extension.py 2025-08-26T20:45:24.8508317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\deterministic.py 2025-08-26T20:45:24.8511650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\dlpack.py 2025-08-26T20:45:24.8514958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\file_baton.py 2025-08-26T20:45:24.8518424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\flop_counter.py 2025-08-26T20:45:24.8521922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hooks.py 2025-08-26T20:45:24.8525150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\mkldnn.py 2025-08-26T20:45:24.8528519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\mobile_optimizer.py 2025-08-26T20:45:24.8532031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_zoo.py 2025-08-26T20:45:24.8535394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\module_tracker.py 2025-08-26T20:45:24.8538869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\show_pickle.py 2025-08-26T20:45:24.8542649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\throughput_benchmark.py 2025-08-26T20:45:24.8545689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\weak.py 2025-08-26T20:45:24.8549519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_appending_byte_serializer.py 2025-08-26T20:45:24.8553160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_backport_slots.py 2025-08-26T20:45:24.8556497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_config_module.py 2025-08-26T20:45:24.8564311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_config_typing.pyi 2025-08-26T20:45:24.8568181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_content_store.py 2025-08-26T20:45:24.8571645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_contextlib.py 2025-08-26T20:45:24.8574973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_cpp_embed_headers.py 2025-08-26T20:45:24.8578851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_cpp_extension_versioner.py 2025-08-26T20:45:24.8582384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_cxx_pytree.py 2025-08-26T20:45:24.8586089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_device.py 2025-08-26T20:45:24.8590194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_dtype_abbrs.py 2025-08-26T20:45:24.8593798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_exposed_in.py 2025-08-26T20:45:24.8597495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_filelock.py 2025-08-26T20:45:24.8605469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_foreach_utils.py 2025-08-26T20:45:24.8609028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_functools.py 2025-08-26T20:45:24.8612764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_get_clean_triton.py 2025-08-26T20:45:24.8615786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_helion.py 2025-08-26T20:45:24.8619072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_import_utils.py 2025-08-26T20:45:24.8622453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_mode_utils.py 2025-08-26T20:45:24.8625851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_ordered_set.py 2025-08-26T20:45:24.8629289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_python_dispatch.py 2025-08-26T20:45:24.8633387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_pytree.py 2025-08-26T20:45:24.8636923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_stats.py 2025-08-26T20:45:24.8644398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_thunk.py 2025-08-26T20:45:24.8647841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_traceback.py 2025-08-26T20:45:24.8651172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_triton.py 2025-08-26T20:45:24.8654519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_typing_utils.py 2025-08-26T20:45:24.8657933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_zip.py 2025-08-26T20:45:24.8661101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__init__.py 2025-08-26T20:45:24.8668097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\backcompat\__init__.py 2025-08-26T20:45:24.8674830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\backcompat\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.8682660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\__init__.py 2025-08-26T20:45:24.8689833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\compare.py 2025-08-26T20:45:24.8693122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\fuzzer.py 2025-08-26T20:45:24.8696416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\op_benchmark.py 2025-08-26T20:45:24.8699803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\simple_timeit.py 2025-08-26T20:45:24.8703613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\spectral_ops_fuzz_test.py 2025-08-26T20:45:24.8710996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__init__.py 2025-08-26T20:45:24.8717467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\compare.cpython-39.pyc 2025-08-26T20:45:24.8720953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\fuzzer.cpython-39.pyc 2025-08-26T20:45:24.8724666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\op_benchmark.cpython-39.pyc 2025-08-26T20:45:24.8733383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\simple_timeit.cpython-39.pyc 2025-08-26T20:45:24.8736840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\spectral_ops_fuzz_test.cpython-39.pyc 2025-08-26T20:45:24.8740584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.8748646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\binary.py 2025-08-26T20:45:24.8752276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\sparse_binary.py 2025-08-26T20:45:24.8755524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\sparse_unary.py 2025-08-26T20:45:24.8758927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\spectral.py 2025-08-26T20:45:24.8767869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\unary.py 2025-08-26T20:45:24.8771352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__init__.py 2025-08-26T20:45:24.8778072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\binary.cpython-39.pyc 2025-08-26T20:45:24.8781913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\sparse_binary.cpython-39.pyc 2025-08-26T20:45:24.8785319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\sparse_unary.cpython-39.pyc 2025-08-26T20:45:24.8793314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\spectral.cpython-39.pyc 2025-08-26T20:45:24.8809230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\unary.cpython-39.pyc 2025-08-26T20:45:24.8810243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.8810937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\common.py 2025-08-26T20:45:24.8812596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\compare.py 2025-08-26T20:45:24.8815805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\compile.py 2025-08-26T20:45:24.8819174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\cpp_jit.py 2025-08-26T20:45:24.8822691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\fuzzer.py 2025-08-26T20:45:24.8825992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\sparse_fuzzer.py 2025-08-26T20:45:24.8833561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\timeit_template.cpp 2025-08-26T20:45:24.8836995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\timer.py 2025-08-26T20:45:24.8840745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\_stubs.py 2025-08-26T20:45:24.8844330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__init__.py 2025-08-26T20:45:24.8851360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\callgrind.h 2025-08-26T20:45:24.8854762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\compat_bindings.cpp 2025-08-26T20:45:24.8858725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\timer_callgrind_template.cpp 2025-08-26T20:45:24.8866896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\timer_interface.py 2025-08-26T20:45:24.8870510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\valgrind.h 2025-08-26T20:45:24.8875917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\__init__.py 2025-08-26T20:45:24.8882439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\__pycache__\timer_interface.cpython-39.pyc 2025-08-26T20:45:24.8886696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.8894690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\common.cpython-39.pyc 2025-08-26T20:45:24.8898432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\compare.cpython-39.pyc 2025-08-26T20:45:24.8902080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\compile.cpython-39.pyc 2025-08-26T20:45:24.8910482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\cpp_jit.cpython-39.pyc 2025-08-26T20:45:24.8914031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\fuzzer.cpython-39.pyc 2025-08-26T20:45:24.8917696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\sparse_fuzzer.cpython-39.pyc 2025-08-26T20:45:24.8921466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\timer.cpython-39.pyc 2025-08-26T20:45:24.8924946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\_stubs.cpython-39.pyc 2025-08-26T20:45:24.8928906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.8941189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.8949034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\bottleneck\__init__.py 2025-08-26T20:45:24.8951539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\bottleneck\__main__.py 2025-08-26T20:45:24.8958758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\bottleneck\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.8962302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\bottleneck\__pycache__\__main__.cpython-39.pyc 2025-08-26T20:45:24.8970096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\backward_compatibility.py 2025-08-26T20:45:24.8973393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\dataloader.py 2025-08-26T20:45:24.8977314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\dataset.py 2025-08-26T20:45:24.8980788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\distributed.py 2025-08-26T20:45:24.8988762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\graph.py 2025-08-26T20:45:24.8992243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\graph_settings.py 2025-08-26T20:45:24.8995546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\sampler.py 2025-08-26T20:45:24.8998838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__init__.py 2025-08-26T20:45:24.9006332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\datapipe.py 2025-08-26T20:45:24.9009700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\datapipe.pyi 2025-08-26T20:45:24.9013036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\gen_pyi.py 2025-08-26T20:45:24.9016402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\_decorator.py 2025-08-26T20:45:24.9019915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\_hook_iterator.py 2025-08-26T20:45:24.9028040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\_typing.py 2025-08-26T20:45:24.9031444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__init__.py 2025-08-26T20:45:24.9038219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\dataframes.py 2025-08-26T20:45:24.9042050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\dataframe_wrapper.py 2025-08-26T20:45:24.9045582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\datapipes.py 2025-08-26T20:45:24.9054557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\structures.py 2025-08-26T20:45:24.9058099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__init__.py 2025-08-26T20:45:24.9065827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__pycache__\dataframes.cpython-39.pyc 2025-08-26T20:45:24.9069727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__pycache__\dataframe_wrapper.cpython-39.pyc 2025-08-26T20:45:24.9073448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__pycache__\datapipes.cpython-39.pyc 2025-08-26T20:45:24.9082156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__pycache__\structures.cpython-39.pyc 2025-08-26T20:45:24.9085931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.9093863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\callable.py 2025-08-26T20:45:24.9097481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\combinatorics.py 2025-08-26T20:45:24.9101272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\combining.py 2025-08-26T20:45:24.9104795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\filelister.py 2025-08-26T20:45:24.9113750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\fileopener.py 2025-08-26T20:45:24.9117424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\grouping.py 2025-08-26T20:45:24.9120959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\routeddecoder.py 2025-08-26T20:45:24.9124207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\selecting.py 2025-08-26T20:45:24.9127790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\sharding.py 2025-08-26T20:45:24.9131085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\streamreader.py 2025-08-26T20:45:24.9134882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\utils.py 2025-08-26T20:45:24.9138395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__init__.py 2025-08-26T20:45:24.9145737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\callable.cpython-39.pyc 2025-08-26T20:45:24.9149241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\combinatorics.cpython-39.pyc 2025-08-26T20:45:24.9152757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\combining.cpython-39.pyc 2025-08-26T20:45:24.9161449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\filelister.cpython-39.pyc 2025-08-26T20:45:24.9165003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\fileopener.cpython-39.pyc 2025-08-26T20:45:24.9168619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\grouping.cpython-39.pyc 2025-08-26T20:45:24.9172543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\routeddecoder.cpython-39.pyc 2025-08-26T20:45:24.9175874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\selecting.cpython-39.pyc 2025-08-26T20:45:24.9179364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\sharding.cpython-39.pyc 2025-08-26T20:45:24.9182903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\streamreader.cpython-39.pyc 2025-08-26T20:45:24.9186398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:24.9190058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.9199113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\callable.py 2025-08-26T20:45:24.9217922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\combinatorics.py 2025-08-26T20:45:24.9221169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\combining.py 2025-08-26T20:45:24.9224882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\grouping.py 2025-08-26T20:45:24.9228139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\utils.py 2025-08-26T20:45:24.9235652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__init__.py 2025-08-26T20:45:24.9242720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\callable.cpython-39.pyc 2025-08-26T20:45:24.9246261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\combinatorics.cpython-39.pyc 2025-08-26T20:45:24.9249953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\combining.cpython-39.pyc 2025-08-26T20:45:24.9259133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\grouping.cpython-39.pyc 2025-08-26T20:45:24.9262663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:24.9266115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.9274076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\common.py 2025-08-26T20:45:24.9277585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\decoder.py 2025-08-26T20:45:24.9281321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\snapshot.py 2025-08-26T20:45:24.9285002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\__init__.py 2025-08-26T20:45:24.9291189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\__pycache__\common.cpython-39.pyc 2025-08-26T20:45:24.9294620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\__pycache__\decoder.cpython-39.pyc 2025-08-26T20:45:24.9298131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\__pycache__\snapshot.cpython-39.pyc 2025-08-26T20:45:24.9306889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.9315590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\datapipe.cpython-39.pyc 2025-08-26T20:45:24.9319127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\gen_pyi.cpython-39.pyc 2025-08-26T20:45:24.9323498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\_decorator.cpython-39.pyc 2025-08-26T20:45:24.9331446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\_hook_iterator.cpython-39.pyc 2025-08-26T20:45:24.9334795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\_typing.cpython-39.pyc 2025-08-26T20:45:24.9338325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.9346527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\collate.py 2025-08-26T20:45:24.9350286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\fetch.py 2025-08-26T20:45:24.9353722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\pin_memory.py 2025-08-26T20:45:24.9357334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\signal_handling.py 2025-08-26T20:45:24.9360812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\worker.py 2025-08-26T20:45:24.9368741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__init__.py 2025-08-26T20:45:24.9375775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\collate.cpython-39.pyc 2025-08-26T20:45:24.9379412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\fetch.cpython-39.pyc 2025-08-26T20:45:24.9383014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\pin_memory.cpython-39.pyc 2025-08-26T20:45:24.9391526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\signal_handling.cpython-39.pyc 2025-08-26T20:45:24.9395253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\worker.cpython-39.pyc 2025-08-26T20:45:24.9398692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.9406763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\backward_compatibility.cpython-39.pyc 2025-08-26T20:45:24.9410177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\dataloader.cpython-39.pyc 2025-08-26T20:45:24.9414021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\dataset.cpython-39.pyc 2025-08-26T20:45:24.9423318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\distributed.cpython-39.pyc 2025-08-26T20:45:24.9426707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\graph.cpython-39.pyc 2025-08-26T20:45:24.9430861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\graph_settings.cpython-39.pyc 2025-08-26T20:45:24.9434305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\sampler.cpython-39.pyc 2025-08-26T20:45:24.9437968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.9446085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\constants.py 2025-08-26T20:45:24.9449929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\cuda_to_hip_mappings.py 2025-08-26T20:45:24.9456719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\hipify_python.py 2025-08-26T20:45:24.9460931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\version.py 2025-08-26T20:45:24.9469034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__init__.py 2025-08-26T20:45:24.9475935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__pycache__\constants.cpython-39.pyc 2025-08-26T20:45:24.9480014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__pycache__\cuda_to_hip_mappings.cpython-39.pyc 2025-08-26T20:45:24.9484673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__pycache__\hipify_python.cpython-39.pyc 2025-08-26T20:45:24.9493001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__pycache__\version.cpython-39.pyc 2025-08-26T20:45:24.9496816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.9504525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\jit\log_extract.py 2025-08-26T20:45:24.9507857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\jit\__init__.py 2025-08-26T20:45:24.9513800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\jit\__pycache__\log_extract.cpython-39.pyc 2025-08-26T20:45:24.9517581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\jit\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.9525397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\code.js 2025-08-26T20:45:24.9528833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\htm.mjs 2025-08-26T20:45:24.9532135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\preact.mjs 2025-08-26T20:45:24.9535605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\skeleton.html 2025-08-26T20:45:24.9539000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\__init__.py 2025-08-26T20:45:24.9546406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\__main__.py 2025-08-26T20:45:24.9553531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.9557071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\__pycache__\__main__.cpython-39.pyc 2025-08-26T20:45:24.9564403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\serialization\config.py 2025-08-26T20:45:24.9567866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\serialization\__init__.py 2025-08-26T20:45:24.9574881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\serialization\__pycache__\config.cpython-39.pyc 2025-08-26T20:45:24.9578306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\serialization\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.9585558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\summary.py 2025-08-26T20:45:24.9589018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\writer.py 2025-08-26T20:45:24.9592454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_convert_np.py 2025-08-26T20:45:24.9596045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_embedding.py 2025-08-26T20:45:24.9604103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_onnx_graph.py 2025-08-26T20:45:24.9607695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_proto_graph.py 2025-08-26T20:45:24.9610957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_pytorch_graph.py 2025-08-26T20:45:24.9614275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_utils.py 2025-08-26T20:45:24.9617507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__init__.py 2025-08-26T20:45:24.9624557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\summary.cpython-39.pyc 2025-08-26T20:45:24.9628181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\writer.cpython-39.pyc 2025-08-26T20:45:24.9631714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_convert_np.cpython-39.pyc 2025-08-26T20:45:24.9640261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_embedding.cpython-39.pyc 2025-08-26T20:45:24.9643739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_onnx_graph.cpython-39.pyc 2025-08-26T20:45:24.9647351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_proto_graph.cpython-39.pyc 2025-08-26T20:45:24.9651016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_pytorch_graph.cpython-39.pyc 2025-08-26T20:45:24.9654516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_utils.cpython-39.pyc 2025-08-26T20:45:24.9657802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.9665367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\viz\_cycles.py 2025-08-26T20:45:24.9668895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\viz\__init__.py 2025-08-26T20:45:24.9674888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\viz\__pycache__\_cycles.cpython-39.pyc 2025-08-26T20:45:24.9678503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\viz\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.9686470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_strobelight\cli_function_profiler.py 2025-08-26T20:45:24.9689836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_strobelight\__init__.py 2025-08-26T20:45:24.9696139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_strobelight\__pycache__\cli_function_profiler.cpython-39.pyc 2025-08-26T20:45:24.9699729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_strobelight\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.9707382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\functions.py 2025-08-26T20:45:24.9711795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\interp.py 2025-08-26T20:45:24.9715744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\numbers.py 2025-08-26T20:45:24.9719353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\printers.py 2025-08-26T20:45:24.9723359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\reference.py 2025-08-26T20:45:24.9811219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\singleton_int.py 2025-08-26T20:45:24.9814619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\solve.py 2025-08-26T20:45:24.9818079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\symbol.py 2025-08-26T20:45:24.9822271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\value_ranges.py 2025-08-26T20:45:24.9825996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__init__.py 2025-08-26T20:45:24.9832607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\functions.cpython-39.pyc 2025-08-26T20:45:24.9836427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\interp.cpython-39.pyc 2025-08-26T20:45:24.9841061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\numbers.cpython-39.pyc 2025-08-26T20:45:24.9942773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\printers.cpython-39.pyc 2025-08-26T20:45:24.9946596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\reference.cpython-39.pyc 2025-08-26T20:45:24.9951513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\singleton_int.cpython-39.pyc 2025-08-26T20:45:24.9955594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\solve.cpython-39.pyc 2025-08-26T20:45:24.9959249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\symbol.cpython-39.pyc 2025-08-26T20:45:24.9962960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\value_ranges.cpython-39.pyc 2025-08-26T20:45:24.9967642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.9976030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\backend_registration.cpython-39.pyc 2025-08-26T20:45:24.9980250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\bundled_inputs.cpython-39.pyc 2025-08-26T20:45:24.9983936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\checkpoint.cpython-39.pyc 2025-08-26T20:45:25.0064324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\collect_env.cpython-39.pyc 2025-08-26T20:45:25.0067847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\cpp_backtrace.cpython-39.pyc 2025-08-26T20:45:25.0071351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\cpp_extension.cpython-39.pyc 2025-08-26T20:45:25.0075704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\deterministic.cpython-39.pyc 2025-08-26T20:45:25.0079208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\dlpack.cpython-39.pyc 2025-08-26T20:45:25.0083072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\file_baton.cpython-39.pyc 2025-08-26T20:45:25.0087052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\flop_counter.cpython-39.pyc 2025-08-26T20:45:25.0091321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\hooks.cpython-39.pyc 2025-08-26T20:45:25.0095256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\mkldnn.cpython-39.pyc 2025-08-26T20:45:25.0099088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\mobile_optimizer.cpython-39.pyc 2025-08-26T20:45:25.0102337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\model_zoo.cpython-39.pyc 2025-08-26T20:45:25.0106247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\module_tracker.cpython-39.pyc 2025-08-26T20:45:25.0110189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\show_pickle.cpython-39.pyc 2025-08-26T20:45:25.0113667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\throughput_benchmark.cpython-39.pyc 2025-08-26T20:45:25.5224763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\weak.cpython-39.pyc 2025-08-26T20:45:25.5228176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_appending_byte_serializer.cpython-39.pyc 2025-08-26T20:45:25.5231767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_backport_slots.cpython-39.pyc 2025-08-26T20:45:25.5235446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_config_module.cpython-39.pyc 2025-08-26T20:45:25.5239362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_content_store.cpython-39.pyc 2025-08-26T20:45:25.5243230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_contextlib.cpython-39.pyc 2025-08-26T20:45:25.5247344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_cpp_embed_headers.cpython-39.pyc 2025-08-26T20:45:26.0303334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_cpp_extension_versioner.cpython-39.pyc 2025-08-26T20:45:26.0306745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_cxx_pytree.cpython-39.pyc 2025-08-26T20:45:26.0310669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_device.cpython-39.pyc 2025-08-26T20:45:26.0315087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_dtype_abbrs.cpython-39.pyc 2025-08-26T20:45:26.0318871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_exposed_in.cpython-39.pyc 2025-08-26T20:45:26.0322672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_filelock.cpython-39.pyc 2025-08-26T20:45:26.0327045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_foreach_utils.cpython-39.pyc 2025-08-26T20:45:26.0332431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_functools.cpython-39.pyc 2025-08-26T20:45:26.0336442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_get_clean_triton.cpython-39.pyc 2025-08-26T20:45:26.5527717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_helion.cpython-39.pyc 2025-08-26T20:45:26.5531092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_import_utils.cpython-39.pyc 2025-08-26T20:45:26.5535187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_mode_utils.cpython-39.pyc 2025-08-26T20:45:26.5539610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_ordered_set.cpython-39.pyc 2025-08-26T20:45:26.5542862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_python_dispatch.cpython-39.pyc 2025-08-26T20:45:26.5546555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_pytree.cpython-39.pyc 2025-08-26T20:45:26.5550385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_stats.cpython-39.pyc 2025-08-26T20:45:26.5554036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_thunk.cpython-39.pyc 2025-08-26T20:45:27.2638616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_traceback.cpython-39.pyc 2025-08-26T20:45:27.2641873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_triton.cpython-39.pyc 2025-08-26T20:45:27.2645949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_typing_utils.cpython-39.pyc 2025-08-26T20:45:27.2649566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_zip.cpython-39.pyc 2025-08-26T20:45:27.2653393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.2663081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\memory.py 2025-08-26T20:45:27.2666746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\random.py 2025-08-26T20:45:27.2670035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\streams.py 2025-08-26T20:45:27.2673633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\_gpu_trace.py 2025-08-26T20:45:27.2677112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\_utils.py 2025-08-26T20:45:27.2680628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__init__.py 2025-08-26T20:45:27.2699924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\memory.cpython-39.pyc 2025-08-26T20:45:27.2703535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\random.cpython-39.pyc 2025-08-26T20:45:27.2707063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\streams.cpython-39.pyc 2025-08-26T20:45:27.2722248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\_gpu_trace.cpython-39.pyc 2025-08-26T20:45:27.2725993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\_utils.cpython-39.pyc 2025-08-26T20:45:27.2729454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.2737073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_awaits\__init__.py 2025-08-26T20:45:27.2744230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_awaits\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.2751717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_aoti.pyi 2025-08-26T20:45:27.2755471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_autograd.pyi 2025-08-26T20:45:27.2758510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_cpu.pyi 2025-08-26T20:45:27.2761761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_cudnn.pyi 2025-08-26T20:45:27.2765218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_cusparselt.pyi 2025-08-26T20:45:27.2780360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_distributed_autograd.pyi 2025-08-26T20:45:27.2783884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_distributed_c10d.pyi 2025-08-26T20:45:27.2787501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_distributed_rpc.pyi 2025-08-26T20:45:27.2791607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_distributed_rpc_testing.pyi 2025-08-26T20:45:27.2795575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_functions.pyi 2025-08-26T20:45:27.2799122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_functorch.pyi 2025-08-26T20:45:27.2802829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_instruction_counter.pyi 2025-08-26T20:45:27.2806401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_itt.pyi 2025-08-26T20:45:27.2809922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_jit_tree_views.pyi 2025-08-26T20:45:27.2813447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_lazy.pyi 2025-08-26T20:45:27.2816791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_lazy_ts_backend.pyi 2025-08-26T20:45:27.2821037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_monitor.pyi 2025-08-26T20:45:27.2824490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_nn.pyi 2025-08-26T20:45:27.2827825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_nvtx.pyi 2025-08-26T20:45:27.2831381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_onnx.pyi 2025-08-26T20:45:27.2834581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_profiler.pyi 2025-08-26T20:45:27.2838660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_VariableFunctions.pyi 2025-08-26T20:45:27.2849529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_verbose.pyi 2025-08-26T20:45:27.2863905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\__init__.pyi 2025-08-26T20:45:27.2873437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_dynamo\compiled_autograd.pyi 2025-08-26T20:45:27.2877417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_dynamo\eval_frame.pyi 2025-08-26T20:45:27.2880783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_dynamo\guards.pyi 2025-08-26T20:45:27.2884334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_dynamo\__init__.pyi 2025-08-26T20:45:27.2891706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_export\pt2_archive_constants.pyi 2025-08-26T20:45:27.2895435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_export\__init__.pyi 2025-08-26T20:45:27.2903307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\autograd.py 2025-08-26T20:45:27.2906790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\impl.py 2025-08-26T20:45:27.2910427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\__init__.py 2025-08-26T20:45:27.2917046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\__pycache__\autograd.cpython-39.pyc 2025-08-26T20:45:27.2920841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\__pycache__\impl.cpython-39.pyc 2025-08-26T20:45:27.2924825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.2944229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C_flatbuffer\__init__.pyi 2025-08-26T20:45:27.2951691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\decompositions.py 2025-08-26T20:45:27.2956559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\decompositions_for_jvp.py 2025-08-26T20:45:27.2960110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\decompositions_for_rng.py 2025-08-26T20:45:27.2974961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\__init__.py 2025-08-26T20:45:27.2982445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\__pycache__\decompositions.cpython-39.pyc 2025-08-26T20:45:27.2987077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\__pycache__\decompositions_for_jvp.cpython-39.pyc 2025-08-26T20:45:27.3026181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\__pycache__\decompositions_for_rng.cpython-39.pyc 2025-08-26T20:45:27.3035604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.3043321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dispatch\python.py 2025-08-26T20:45:27.3046675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dispatch\__init__.py 2025-08-26T20:45:27.3053579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dispatch\__pycache__\python.cpython-39.pyc 2025-08-26T20:45:27.3057095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dispatch\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.3065310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\bytecode_analysis.py 2025-08-26T20:45:27.3069131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\bytecode_transformation.py 2025-08-26T20:45:27.3073895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\cache_size.py 2025-08-26T20:45:27.3088929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\callback.py 2025-08-26T20:45:27.3092161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\codegen.py 2025-08-26T20:45:27.3096393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\code_context.py 2025-08-26T20:45:27.3099848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\compiled_autograd.py 2025-08-26T20:45:27.3103853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\comptime.py 2025-08-26T20:45:27.3107641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\config.py 2025-08-26T20:45:27.3111179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\convert_frame.py 2025-08-26T20:45:27.3115099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\create_parameter_op.py 2025-08-26T20:45:27.3118580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\current_scope_id.py 2025-08-26T20:45:27.3122121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\debug_utils.py 2025-08-26T20:45:27.3125876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\decorators.py 2025-08-26T20:45:27.3130112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\device_interface.py 2025-08-26T20:45:27.3133628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\distributed.py 2025-08-26T20:45:27.3137027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\eval_frame.py 2025-08-26T20:45:27.3141046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\exc.py 2025-08-26T20:45:27.3144545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\external_utils.py 2025-08-26T20:45:27.3148496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\funcname_cache.py 2025-08-26T20:45:27.3152344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\graph_break_hints.py 2025-08-26T20:45:27.3166958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\graph_break_registry.json 2025-08-26T20:45:27.3171366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\graph_deduplication.py 2025-08-26T20:45:27.3175276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\graph_region_tracker.py 2025-08-26T20:45:27.3178706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\graph_utils.py 2025-08-26T20:45:27.3182139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\guards.py 2025-08-26T20:45:27.3186640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\hooks.py 2025-08-26T20:45:27.3189985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\logging.py 2025-08-26T20:45:27.3193362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\metrics_context.py 2025-08-26T20:45:27.3196830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\mutation_guard.py 2025-08-26T20:45:27.3200240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\output_graph.py 2025-08-26T20:45:27.3204470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\package.py 2025-08-26T20:45:27.3218823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\pgo.py 2025-08-26T20:45:27.3222722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\precompile_context.py 2025-08-26T20:45:27.3226475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\profiler.py 2025-08-26T20:45:27.3229988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\replay_record.py 2025-08-26T20:45:27.3233541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\resume_execution.py 2025-08-26T20:45:27.3237396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\side_effects.py 2025-08-26T20:45:27.3241396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\source.py 2025-08-26T20:45:27.3245742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\symbolic_convert.py 2025-08-26T20:45:27.3251608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\tensor_version_op.py 2025-08-26T20:45:27.3255622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\testing.py 2025-08-26T20:45:27.3259452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\test_case.py 2025-08-26T20:45:27.3262935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\test_dont_skip_tracing_functions.py 2025-08-26T20:45:27.3277349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\test_minifier_common.py 2025-08-26T20:45:27.3280881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\trace_rules.py 2025-08-26T20:45:27.3285414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\types.py 2025-08-26T20:45:27.3288802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\utils.py 2025-08-26T20:45:27.3293502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\_trace_wrapped_higher_order_op.py 2025-08-26T20:45:27.3297240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__init__.py 2025-08-26T20:45:27.3304178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\common.py 2025-08-26T20:45:27.3307658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\cudagraphs.py 2025-08-26T20:45:27.3311096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\debugging.py 2025-08-26T20:45:27.3314531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\distributed.py 2025-08-26T20:45:27.3329716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\inductor.py 2025-08-26T20:45:27.3333107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\onnxrt.py 2025-08-26T20:45:27.3336509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\registry.py 2025-08-26T20:45:27.3340341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\tensorrt.py 2025-08-26T20:45:27.3343700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\torchxla.py 2025-08-26T20:45:27.3347223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\tvm.py 2025-08-26T20:45:27.3350531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__init__.py 2025-08-26T20:45:27.3357200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\common.cpython-39.pyc 2025-08-26T20:45:27.3360749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\cudagraphs.cpython-39.pyc 2025-08-26T20:45:27.3364192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\debugging.cpython-39.pyc 2025-08-26T20:45:27.3378761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\distributed.cpython-39.pyc 2025-08-26T20:45:27.3382432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\inductor.cpython-39.pyc 2025-08-26T20:45:27.3385910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\onnxrt.cpython-39.pyc 2025-08-26T20:45:27.3389481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\registry.cpython-39.pyc 2025-08-26T20:45:27.3393154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\tensorrt.cpython-39.pyc 2025-08-26T20:45:27.3396656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\torchxla.cpython-39.pyc 2025-08-26T20:45:27.3400303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\tvm.cpython-39.pyc 2025-08-26T20:45:27.3403686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.3412528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\builtins.py 2025-08-26T20:45:27.3416035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\functools.py 2025-08-26T20:45:27.3419553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\fx.py 2025-08-26T20:45:27.3422990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\itertools.py 2025-08-26T20:45:27.3436869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\loader.py 2025-08-26T20:45:27.3440685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\operator.py 2025-08-26T20:45:27.3443828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\os.py 2025-08-26T20:45:27.3447290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\pytree.py 2025-08-26T20:45:27.3450490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\struct.py 2025-08-26T20:45:27.3453803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\sys.py 2025-08-26T20:45:27.3457094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\tensor.py 2025-08-26T20:45:27.3460458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\_collections.py 2025-08-26T20:45:27.3463819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__init__.py 2025-08-26T20:45:27.3471773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\builtins.cpython-39.pyc 2025-08-26T20:45:27.3475322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\functools.cpython-39.pyc 2025-08-26T20:45:27.3478858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\fx.cpython-39.pyc 2025-08-26T20:45:27.3493266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\itertools.cpython-39.pyc 2025-08-26T20:45:27.3496891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\loader.cpython-39.pyc 2025-08-26T20:45:27.3500365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\operator.cpython-39.pyc 2025-08-26T20:45:27.3503763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\os.cpython-39.pyc 2025-08-26T20:45:27.3507185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\pytree.cpython-39.pyc 2025-08-26T20:45:27.3510618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\struct.cpython-39.pyc 2025-08-26T20:45:27.3514132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\sys.cpython-39.pyc 2025-08-26T20:45:27.3517674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\tensor.cpython-39.pyc 2025-08-26T20:45:27.3521388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\_collections.cpython-39.pyc 2025-08-26T20:45:27.3524856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.3532939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\after_aot.py 2025-08-26T20:45:27.3536733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\after_dynamo.py 2025-08-26T20:45:27.3540535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\aoti.py 2025-08-26T20:45:27.3543857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\__init__.py 2025-08-26T20:45:27.3561309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\__pycache__\after_aot.cpython-39.pyc 2025-08-26T20:45:27.3565160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\__pycache__\after_dynamo.cpython-39.pyc 2025-08-26T20:45:27.3568708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\__pycache__\aoti.cpython-39.pyc 2025-08-26T20:45:27.3584013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.3592067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\base.py 2025-08-26T20:45:27.3595622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\builder.py 2025-08-26T20:45:27.3600487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\builtin.py 2025-08-26T20:45:27.3605213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\constant.py 2025-08-26T20:45:27.3609179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\ctx_manager.py 2025-08-26T20:45:27.3624710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\dicts.py 2025-08-26T20:45:27.3629075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\distributed.py 2025-08-26T20:45:27.3632478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\functions.py 2025-08-26T20:45:27.3637090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\higher_order_ops.py 2025-08-26T20:45:27.3641834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\iter.py 2025-08-26T20:45:27.3645610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\lazy.py 2025-08-26T20:45:27.3649236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\lists.py 2025-08-26T20:45:27.3653132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\misc.py 2025-08-26T20:45:27.3657190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\nn_module.py 2025-08-26T20:45:27.3661606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\optimizer.py 2025-08-26T20:45:27.3665513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\script_object.py 2025-08-26T20:45:27.3669353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\sdpa.py 2025-08-26T20:45:27.3672792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\tensor.py 2025-08-26T20:45:27.3676807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\torch.py 2025-08-26T20:45:27.3680876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\torch_function.py 2025-08-26T20:45:27.3684587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\user_defined.py 2025-08-26T20:45:27.3689090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__init__.py 2025-08-26T20:45:27.3696952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\base.cpython-39.pyc 2025-08-26T20:45:27.3700661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\builder.cpython-39.pyc 2025-08-26T20:45:27.3704779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\builtin.cpython-39.pyc 2025-08-26T20:45:27.3718995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\constant.cpython-39.pyc 2025-08-26T20:45:27.3722528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\ctx_manager.cpython-39.pyc 2025-08-26T20:45:27.3726492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\dicts.cpython-39.pyc 2025-08-26T20:45:27.3730282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\distributed.cpython-39.pyc 2025-08-26T20:45:27.3733908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\functions.cpython-39.pyc 2025-08-26T20:45:27.3738664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\higher_order_ops.cpython-39.pyc 2025-08-26T20:45:27.3742701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\iter.cpython-39.pyc 2025-08-26T20:45:27.3746321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\lazy.cpython-39.pyc 2025-08-26T20:45:27.3749812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\lists.cpython-39.pyc 2025-08-26T20:45:27.3753536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\misc.cpython-39.pyc 2025-08-26T20:45:27.3759336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\nn_module.cpython-39.pyc 2025-08-26T20:45:27.3763219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\optimizer.cpython-39.pyc 2025-08-26T20:45:27.3766923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\script_object.cpython-39.pyc 2025-08-26T20:45:27.3770638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\sdpa.cpython-39.pyc 2025-08-26T20:45:27.3784520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\tensor.cpython-39.pyc 2025-08-26T20:45:27.3788467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\torch.cpython-39.pyc 2025-08-26T20:45:27.3792456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\torch_function.cpython-39.pyc 2025-08-26T20:45:27.3796213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\user_defined.cpython-39.pyc 2025-08-26T20:45:27.3799912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.3809280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\bytecode_analysis.cpython-39.pyc 2025-08-26T20:45:27.3812745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\bytecode_transformation.cpython-39.pyc 2025-08-26T20:45:27.3816496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\cache_size.cpython-39.pyc 2025-08-26T20:45:27.3830322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\callback.cpython-39.pyc 2025-08-26T20:45:27.3833998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\codegen.cpython-39.pyc 2025-08-26T20:45:27.3837668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\code_context.cpython-39.pyc 2025-08-26T20:45:27.3841239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\compiled_autograd.cpython-39.pyc 2025-08-26T20:45:27.3845238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\comptime.cpython-39.pyc 2025-08-26T20:45:27.3849041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\config.cpython-39.pyc 2025-08-26T20:45:27.3852803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\convert_frame.cpython-39.pyc 2025-08-26T20:45:27.3856640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\create_parameter_op.cpython-39.pyc 2025-08-26T20:45:27.3860160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\current_scope_id.cpython-39.pyc 2025-08-26T20:45:27.3863696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\debug_utils.cpython-39.pyc 2025-08-26T20:45:27.3867466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\decorators.cpython-39.pyc 2025-08-26T20:45:27.3872657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\device_interface.cpython-39.pyc 2025-08-26T20:45:27.3876783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\distributed.cpython-39.pyc 2025-08-26T20:45:27.3890469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\eval_frame.cpython-39.pyc 2025-08-26T20:45:27.3903078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\exc.cpython-39.pyc 2025-08-26T20:45:27.3904538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\external_utils.cpython-39.pyc 2025-08-26T20:45:27.3908271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\funcname_cache.cpython-39.pyc 2025-08-26T20:45:27.3911880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\graph_break_hints.cpython-39.pyc 2025-08-26T20:45:27.3915879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\graph_deduplication.cpython-39.pyc 2025-08-26T20:45:27.3919562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\graph_region_tracker.cpython-39.pyc 2025-08-26T20:45:27.3923364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\graph_utils.cpython-39.pyc 2025-08-26T20:45:27.3937713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\guards.cpython-39.pyc 2025-08-26T20:45:27.3942021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\hooks.cpython-39.pyc 2025-08-26T20:45:27.3945828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\logging.cpython-39.pyc 2025-08-26T20:45:27.3949519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\metrics_context.cpython-39.pyc 2025-08-26T20:45:27.3953369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\mutation_guard.cpython-39.pyc 2025-08-26T20:45:27.3956889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\output_graph.cpython-39.pyc 2025-08-26T20:45:27.3961105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\package.cpython-39.pyc 2025-08-26T20:45:27.3965193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\pgo.cpython-39.pyc 2025-08-26T20:45:27.3969510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\precompile_context.cpython-39.pyc 2025-08-26T20:45:27.3983385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\profiler.cpython-39.pyc 2025-08-26T20:45:27.3987005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\replay_record.cpython-39.pyc 2025-08-26T20:45:27.3990639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\resume_execution.cpython-39.pyc 2025-08-26T20:45:27.3994221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\side_effects.cpython-39.pyc 2025-08-26T20:45:27.3997880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\source.cpython-39.pyc 2025-08-26T20:45:27.4001798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\symbolic_convert.cpython-39.pyc 2025-08-26T20:45:27.4006314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\tensor_version_op.cpython-39.pyc 2025-08-26T20:45:27.4010181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\testing.cpython-39.pyc 2025-08-26T20:45:27.4034125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\test_case.cpython-39.pyc 2025-08-26T20:45:27.4038036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\test_dont_skip_tracing_functions.cpython-39.pyc 2025-08-26T20:45:27.4041751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\test_minifier_common.cpython-39.pyc 2025-08-26T20:45:27.4045670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\trace_rules.cpython-39.pyc 2025-08-26T20:45:27.4050440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\types.cpython-39.pyc 2025-08-26T20:45:27.4054074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:27.4058755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\_trace_wrapped_higher_order_op.cpython-39.pyc 2025-08-26T20:45:27.4062635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.4082754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\converter.py 2025-08-26T20:45:27.4087006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\error.py 2025-08-26T20:45:27.4090492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\non_strict_utils.py 2025-08-26T20:45:27.4094523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_base.py 2025-08-26T20:45:27.4108482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\tools.py 2025-08-26T20:45:27.4111991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\utils.py 2025-08-26T20:45:27.4116027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\verifier.py 2025-08-26T20:45:27.4120018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\wrappers.py 2025-08-26T20:45:27.4123601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__init__.py 2025-08-26T20:45:27.4130177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\case.py 2025-08-26T20:45:27.4133779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\gen_example.py 2025-08-26T20:45:27.4138578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\logging.py 2025-08-26T20:45:27.4141852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\__init__.py 2025-08-26T20:45:27.4149783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\assume_constant_result.py 2025-08-26T20:45:27.4153555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\autograd_function.py 2025-08-26T20:45:27.4157818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\class_method.py 2025-08-26T20:45:27.4171316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_branch_class_method.py 2025-08-26T20:45:27.4175569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_branch_nested_function.py 2025-08-26T20:45:27.4178993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_branch_nonlocal_variables.py 2025-08-26T20:45:27.4182258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_closed_over_variable.py 2025-08-26T20:45:27.4185644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_operands.py 2025-08-26T20:45:27.4189180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_predicate.py 2025-08-26T20:45:27.4192999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\constrain_as_size_example.py 2025-08-26T20:45:27.4196460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\constrain_as_value_example.py 2025-08-26T20:45:27.4199933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\decorator.py 2025-08-26T20:45:27.4203353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dictionary.py 2025-08-26T20:45:27.4206804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_assert.py 2025-08-26T20:45:27.4210249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_constructor.py 2025-08-26T20:45:27.4213731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_if_guard.py 2025-08-26T20:45:27.4217429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_map.py 2025-08-26T20:45:27.4220932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_round.py 2025-08-26T20:45:27.4234517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_slicing.py 2025-08-26T20:45:27.4238143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_view.py 2025-08-26T20:45:27.4241627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\fn_with_kwargs.py 2025-08-26T20:45:27.4245094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\list_contains.py 2025-08-26T20:45:27.4248686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\list_unpack.py 2025-08-26T20:45:27.4286181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\model_attr_mutation.py 2025-08-26T20:45:27.4289866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\nested_function.py 2025-08-26T20:45:27.4293651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\null_context_manager.py 2025-08-26T20:45:27.4301278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\optional_input.py 2025-08-26T20:45:27.4304705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\pytree_flatten.py 2025-08-26T20:45:27.4308198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\scalar_output.py 2025-08-26T20:45:27.4311619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\specialized_attribute.py 2025-08-26T20:45:27.4315342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\static_for_loop.py 2025-08-26T20:45:27.4318750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\static_if.py 2025-08-26T20:45:27.4322321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\tensor_setattr.py 2025-08-26T20:45:27.4325862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\type_reflection_method.py 2025-08-26T20:45:27.4329306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\unsupported_operator.py 2025-08-26T20:45:27.4343109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\user_input_mutation.py 2025-08-26T20:45:27.4346531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__init__.py 2025-08-26T20:45:27.4355858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\assume_constant_result.cpython-39.pyc 2025-08-26T20:45:27.4359680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\autograd_function.cpython-39.pyc 2025-08-26T20:45:27.4363474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\class_method.cpython-39.pyc 2025-08-26T20:45:27.4377474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_branch_class_method.cpython-39.pyc 2025-08-26T20:45:27.4381110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_branch_nested_function.cpython-39.pyc 2025-08-26T20:45:27.4384727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_branch_nonlocal_variables.cpython-39.pyc 2025-08-26T20:45:27.4388292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_closed_over_variable.cpython-39.pyc 2025-08-26T20:45:27.4391794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_operands.cpython-39.pyc 2025-08-26T20:45:27.4395515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_predicate.cpython-39.pyc 2025-08-26T20:45:27.4399105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\constrain_as_size_example.cpython-39.pyc 2025-08-26T20:45:27.4402676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\constrain_as_value_example.cpython-39.pyc 2025-08-26T20:45:27.4406230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\decorator.cpython-39.pyc 2025-08-26T20:45:27.4409814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dictionary.cpython-39.pyc 2025-08-26T20:45:27.4413391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_assert.cpython-39.pyc 2025-08-26T20:45:27.4417138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_constructor.cpython-39.pyc 2025-08-26T20:45:27.4420769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_if_guard.cpython-39.pyc 2025-08-26T20:45:27.4434950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_map.cpython-39.pyc 2025-08-26T20:45:27.4438701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_round.cpython-39.pyc 2025-08-26T20:45:27.4442444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_slicing.cpython-39.pyc 2025-08-26T20:45:27.4446032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_view.cpython-39.pyc 2025-08-26T20:45:27.4450510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\fn_with_kwargs.cpython-39.pyc 2025-08-26T20:45:27.4454124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\list_contains.cpython-39.pyc 2025-08-26T20:45:27.4457613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\list_unpack.cpython-39.pyc 2025-08-26T20:45:27.4472289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\model_attr_mutation.cpython-39.pyc 2025-08-26T20:45:27.4475855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\nested_function.cpython-39.pyc 2025-08-26T20:45:27.4479455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\null_context_manager.cpython-39.pyc 2025-08-26T20:45:27.4483092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\optional_input.cpython-39.pyc 2025-08-26T20:45:27.4487423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\pytree_flatten.cpython-39.pyc 2025-08-26T20:45:27.4490619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\scalar_output.cpython-39.pyc 2025-08-26T20:45:27.4494646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\specialized_attribute.cpython-39.pyc 2025-08-26T20:45:27.4498376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\static_for_loop.cpython-39.pyc 2025-08-26T20:45:27.4521991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\static_if.cpython-39.pyc 2025-08-26T20:45:27.4525558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\tensor_setattr.cpython-39.pyc 2025-08-26T20:45:27.4529890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\type_reflection_method.cpython-39.pyc 2025-08-26T20:45:27.4533714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\unsupported_operator.cpython-39.pyc 2025-08-26T20:45:27.4537262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\user_input_mutation.cpython-39.pyc 2025-08-26T20:45:27.4541241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.4560356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\__pycache__\case.cpython-39.pyc 2025-08-26T20:45:27.4564020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\__pycache__\gen_example.cpython-39.pyc 2025-08-26T20:45:27.4567931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\__pycache__\logging.cpython-39.pyc 2025-08-26T20:45:27.4582114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.4590097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\add_runtime_assertions_for_constraints_pass.py 2025-08-26T20:45:27.4593676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\collect_tracepoints_pass.py 2025-08-26T20:45:27.4597296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\constant_folding.py 2025-08-26T20:45:27.4611510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\functionalize_side_effectful_ops_pass.py 2025-08-26T20:45:27.4615367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\insert_custom_op_guards.py 2025-08-26T20:45:27.4619075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\lift_constants_pass.py 2025-08-26T20:45:27.4623026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\remove_runtime_assertions.py 2025-08-26T20:45:27.4626527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\replace_autocast_with_hop_pass.py 2025-08-26T20:45:27.4630937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\replace_quantized_ops_with_standard_ops_pass.py 2025-08-26T20:45:27.4634984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\replace_set_grad_with_hop_pass.py 2025-08-26T20:45:27.4638692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\replace_view_ops_with_view_copy_ops_pass.py 2025-08-26T20:45:27.4642969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\replace_with_hop_pass_util.py 2025-08-26T20:45:27.4646335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\_node_metadata_hook.py 2025-08-26T20:45:27.4649879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__init__.py 2025-08-26T20:45:27.4658317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\add_runtime_assertions_for_constraints_pass.cpython-39.pyc 2025-08-26T20:45:27.4662155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\collect_tracepoints_pass.cpython-39.pyc 2025-08-26T20:45:27.4676109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\constant_folding.cpython-39.pyc 2025-08-26T20:45:27.4679739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\functionalize_side_effectful_ops_pass.cpython-39.pyc 2025-08-26T20:45:27.4683264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\insert_custom_op_guards.cpython-39.pyc 2025-08-26T20:45:27.4687925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\lift_constants_pass.cpython-39.pyc 2025-08-26T20:45:27.4691445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\remove_runtime_assertions.cpython-39.pyc 2025-08-26T20:45:27.4695438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\replace_autocast_with_hop_pass.cpython-39.pyc 2025-08-26T20:45:27.4699062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\replace_quantized_ops_with_standard_ops_pass.cpython-39.pyc 2025-08-26T20:45:27.4702623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\replace_set_grad_with_hop_pass.cpython-39.pyc 2025-08-26T20:45:27.4706189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\replace_view_ops_with_view_copy_ops_pass.cpython-39.pyc 2025-08-26T20:45:27.4709935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\replace_with_hop_pass_util.cpython-39.pyc 2025-08-26T20:45:27.4713450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\_node_metadata_hook.cpython-39.pyc 2025-08-26T20:45:27.4717186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.4725242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\node_metadata.py 2025-08-26T20:45:27.4728730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\proxy_value.py 2025-08-26T20:45:27.4732139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\__init__.py 2025-08-26T20:45:27.4748097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\__pycache__\node_metadata.cpython-39.pyc 2025-08-26T20:45:27.4751771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\__pycache__\proxy_value.cpython-39.pyc 2025-08-26T20:45:27.4756372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.4773727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\dynamic_shapes.py 2025-08-26T20:45:27.4776966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\export_schema.thrift 2025-08-26T20:45:27.4780289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\schema.py 2025-08-26T20:45:27.4783517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\schema.yaml 2025-08-26T20:45:27.4797095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\schema_check.py 2025-08-26T20:45:27.4800610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\serialize.py 2025-08-26T20:45:27.4805123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\union.py 2025-08-26T20:45:27.4808702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__init__.py 2025-08-26T20:45:27.4815397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\dynamic_shapes.cpython-39.pyc 2025-08-26T20:45:27.4818952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\schema.cpython-39.pyc 2025-08-26T20:45:27.4822488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\schema_check.cpython-39.pyc 2025-08-26T20:45:27.4837180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\serialize.cpython-39.pyc 2025-08-26T20:45:27.4841396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\union.cpython-39.pyc 2025-08-26T20:45:27.4844926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.4853066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\converter.cpython-39.pyc 2025-08-26T20:45:27.4856797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\error.cpython-39.pyc 2025-08-26T20:45:27.4860452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\non_strict_utils.cpython-39.pyc 2025-08-26T20:45:27.4874220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\pass_base.cpython-39.pyc 2025-08-26T20:45:27.4877772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\tools.cpython-39.pyc 2025-08-26T20:45:27.4881493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:27.4885559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\verifier.cpython-39.pyc 2025-08-26T20:45:27.4889228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\wrappers.cpython-39.pyc 2025-08-26T20:45:27.4892722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.4902187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\aot_autograd.py 2025-08-26T20:45:27.4906426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\apis.py 2025-08-26T20:45:27.4910048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\autograd_function.py 2025-08-26T20:45:27.4913764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\batch_norm_replacement.py 2025-08-26T20:45:27.4927700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\benchmark_utils.py 2025-08-26T20:45:27.4931327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\compilers.py 2025-08-26T20:45:27.4935242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\compile_utils.py 2025-08-26T20:45:27.4938764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\config.py 2025-08-26T20:45:27.4942312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\deprecated.py 2025-08-26T20:45:27.4945826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\eager_transforms.py 2025-08-26T20:45:27.4950083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\functional_call.py 2025-08-26T20:45:27.4953733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\fx_minifier.py 2025-08-26T20:45:27.4957240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\make_functional.py 2025-08-26T20:45:27.4961220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\partitioners.py 2025-08-26T20:45:27.4966380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\predispatch.py 2025-08-26T20:45:27.4969953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\pyfunctorch.py 2025-08-26T20:45:27.4973507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\python_key.py 2025-08-26T20:45:27.4977042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\pytree_hacks.py 2025-08-26T20:45:27.4980617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\top_operators_github_usage.py 2025-08-26T20:45:27.4984506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\utils.py 2025-08-26T20:45:27.4998117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\vmap.py 2025-08-26T20:45:27.5002060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__init__.py 2025-08-26T20:45:27.5010097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\ac_logging_utils.py 2025-08-26T20:45:27.5013555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\graph_info_provider.py 2025-08-26T20:45:27.5017132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\knapsack.py 2025-08-26T20:45:27.5030910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\knapsack_evaluator.py 2025-08-26T20:45:27.5034424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__init__.py 2025-08-26T20:45:27.5042337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__pycache__\ac_logging_utils.cpython-39.pyc 2025-08-26T20:45:27.5046392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__pycache__\graph_info_provider.cpython-39.pyc 2025-08-26T20:45:27.5049990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__pycache__\knapsack.cpython-39.pyc 2025-08-26T20:45:27.5063621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__pycache__\knapsack_evaluator.cpython-39.pyc 2025-08-26T20:45:27.5067057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.5075403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\autograd_cache.py 2025-08-26T20:45:27.5079701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\collect_metadata_analysis.py 2025-08-26T20:45:27.5083730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\descriptors.py 2025-08-26T20:45:27.5097223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\frontend_utils.py 2025-08-26T20:45:27.5100729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\functional_utils.py 2025-08-26T20:45:27.5105010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\fx_utils.py 2025-08-26T20:45:27.5108339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\graph_capture.py 2025-08-26T20:45:27.5111794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\graph_capture_wrappers.py 2025-08-26T20:45:27.5116041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\graph_compile.py 2025-08-26T20:45:27.5120243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\input_output_analysis.py 2025-08-26T20:45:27.5123916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\logging_utils.py 2025-08-26T20:45:27.5127881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\runtime_wrappers.py 2025-08-26T20:45:27.5132245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\schemas.py 2025-08-26T20:45:27.5136235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\subclass_parametrization.py 2025-08-26T20:45:27.5139819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\subclass_utils.py 2025-08-26T20:45:27.5143432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\utils.py 2025-08-26T20:45:27.5146880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__init__.py 2025-08-26T20:45:27.5154672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\autograd_cache.cpython-39.pyc 2025-08-26T20:45:27.5158713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\collect_metadata_analysis.cpython-39.pyc 2025-08-26T20:45:27.5162418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\descriptors.cpython-39.pyc 2025-08-26T20:45:27.5176158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\frontend_utils.cpython-39.pyc 2025-08-26T20:45:27.5179874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\functional_utils.cpython-39.pyc 2025-08-26T20:45:27.5183428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\fx_utils.cpython-39.pyc 2025-08-26T20:45:27.5186897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\graph_capture.cpython-39.pyc 2025-08-26T20:45:27.5190368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\graph_capture_wrappers.cpython-39.pyc 2025-08-26T20:45:27.5194361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\graph_compile.cpython-39.pyc 2025-08-26T20:45:27.5198213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\input_output_analysis.cpython-39.pyc 2025-08-26T20:45:27.5201789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\logging_utils.cpython-39.pyc 2025-08-26T20:45:27.5205347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\runtime_wrappers.cpython-39.pyc 2025-08-26T20:45:27.5209383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\schemas.cpython-39.pyc 2025-08-26T20:45:27.5213363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\subclass_parametrization.cpython-39.pyc 2025-08-26T20:45:27.5217450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\subclass_utils.cpython-39.pyc 2025-08-26T20:45:27.5221136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:27.5234357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.5243051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\aot_autograd.cpython-39.pyc 2025-08-26T20:45:27.5246737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\apis.cpython-39.pyc 2025-08-26T20:45:27.5250364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\autograd_function.cpython-39.pyc 2025-08-26T20:45:27.5263910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\batch_norm_replacement.cpython-39.pyc 2025-08-26T20:45:27.5267483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\benchmark_utils.cpython-39.pyc 2025-08-26T20:45:27.5270918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\compilers.cpython-39.pyc 2025-08-26T20:45:27.5274525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\compile_utils.cpython-39.pyc 2025-08-26T20:45:27.5277956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\config.cpython-39.pyc 2025-08-26T20:45:27.5281611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\deprecated.cpython-39.pyc 2025-08-26T20:45:27.5285104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\eager_transforms.cpython-39.pyc 2025-08-26T20:45:27.5289288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\functional_call.cpython-39.pyc 2025-08-26T20:45:27.5292797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\fx_minifier.cpython-39.pyc 2025-08-26T20:45:27.5296292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\make_functional.cpython-39.pyc 2025-08-26T20:45:27.5299829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\partitioners.cpython-39.pyc 2025-08-26T20:45:27.5304170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\predispatch.cpython-39.pyc 2025-08-26T20:45:27.5307693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\pyfunctorch.cpython-39.pyc 2025-08-26T20:45:27.5321497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\python_key.cpython-39.pyc 2025-08-26T20:45:27.5325186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\pytree_hacks.cpython-39.pyc 2025-08-26T20:45:27.5328882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\top_operators_github_usage.cpython-39.pyc 2025-08-26T20:45:27.5332888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:27.5336422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\vmap.cpython-39.pyc 2025-08-26T20:45:27.5339943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.5348498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\aoti_call_delegate.py 2025-08-26T20:45:27.5352079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\associative_scan.py 2025-08-26T20:45:27.5355522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\auto_functionalize.py 2025-08-26T20:45:27.5369104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\base_hop.py 2025-08-26T20:45:27.5372544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\cond.py 2025-08-26T20:45:27.5376082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\effects.py 2025-08-26T20:45:27.5379537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\executorch_call_delegate.py 2025-08-26T20:45:27.5382920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\flat_apply.py 2025-08-26T20:45:27.5386333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\flex_attention.py 2025-08-26T20:45:27.5390785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\foreach_map.py 2025-08-26T20:45:27.5394486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\hints_wrap.py 2025-08-26T20:45:27.5397984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\invoke_subgraph.py 2025-08-26T20:45:27.5401678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\map.py 2025-08-26T20:45:27.5405075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\out_dtype.py 2025-08-26T20:45:27.5408651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\run_const_graph.py 2025-08-26T20:45:27.5412071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\scan.py 2025-08-26T20:45:27.5415684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\schema.py 2025-08-26T20:45:27.5419086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\strict_mode.py 2025-08-26T20:45:27.5422671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\torchbind.py 2025-08-26T20:45:27.5426430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\triton_kernel_wrap.py 2025-08-26T20:45:27.5430924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\utils.py 2025-08-26T20:45:27.5434792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\while_loop.py 2025-08-26T20:45:27.5447951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\wrap.py 2025-08-26T20:45:27.5451593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\_invoke_quant.py 2025-08-26T20:45:27.5455097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__init__.py 2025-08-26T20:45:27.5463057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\aoti_call_delegate.cpython-39.pyc 2025-08-26T20:45:27.5466680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\associative_scan.cpython-39.pyc 2025-08-26T20:45:27.5470415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\auto_functionalize.cpython-39.pyc 2025-08-26T20:45:27.5484207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\base_hop.cpython-39.pyc 2025-08-26T20:45:27.5487823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\cond.cpython-39.pyc 2025-08-26T20:45:27.5491479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\effects.cpython-39.pyc 2025-08-26T20:45:27.5495163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\executorch_call_delegate.cpython-39.pyc 2025-08-26T20:45:27.5498772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\flat_apply.cpython-39.pyc 2025-08-26T20:45:27.5502294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\flex_attention.cpython-39.pyc 2025-08-26T20:45:27.5506698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\foreach_map.cpython-39.pyc 2025-08-26T20:45:27.5510436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\hints_wrap.cpython-39.pyc 2025-08-26T20:45:27.5513951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\invoke_subgraph.cpython-39.pyc 2025-08-26T20:45:27.5517501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\map.cpython-39.pyc 2025-08-26T20:45:27.5521080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\out_dtype.cpython-39.pyc 2025-08-26T20:45:27.5559213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\run_const_graph.cpython-39.pyc 2025-08-26T20:45:27.5562855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\scan.cpython-39.pyc 2025-08-26T20:45:27.5567512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\schema.cpython-39.pyc 2025-08-26T20:45:27.5575281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\strict_mode.cpython-39.pyc 2025-08-26T20:45:27.5579059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\torchbind.cpython-39.pyc 2025-08-26T20:45:27.5582525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\triton_kernel_wrap.cpython-39.pyc 2025-08-26T20:45:27.5586394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:27.5590299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\while_loop.cpython-39.pyc 2025-08-26T20:45:27.5593899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\wrap.cpython-39.pyc 2025-08-26T20:45:27.5598020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\_invoke_quant.cpython-39.pyc 2025-08-26T20:45:27.5601714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.5622430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analyze_preserves_zero_mask.py 2025-08-26T20:45:27.5626136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\aoti_eager.py 2025-08-26T20:45:27.5629687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\async_compile.py 2025-08-26T20:45:27.5644359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autotune_process.py 2025-08-26T20:45:27.5648525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\await_utils.py 2025-08-26T20:45:27.5652373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\bounds.py 2025-08-26T20:45:27.5655840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\choices.py 2025-08-26T20:45:27.5659514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codecache.py 2025-08-26T20:45:27.5664380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\comms.py 2025-08-26T20:45:27.5668329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\comms_debug.py 2025-08-26T20:45:27.5671941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\comm_analysis.py 2025-08-26T20:45:27.5675442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\comm_lowering.py 2025-08-26T20:45:27.5679181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compiler_bisector.py 2025-08-26T20:45:27.5682736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_fx.py 2025-08-26T20:45:27.5687325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_fx_async.py 2025-08-26T20:45:27.5691285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_fx_ext.py 2025-08-26T20:45:27.5694922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_fx_subproc.py 2025-08-26T20:45:27.5699132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\config.py 2025-08-26T20:45:27.5703230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\constant_folding.py 2025-08-26T20:45:27.5706845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\cpp_builder.py 2025-08-26T20:45:27.5711312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\cpu_vec_isa.py 2025-08-26T20:45:27.5725667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\cudagraph_trees.py 2025-08-26T20:45:27.5730370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\cudagraph_utils.py 2025-08-26T20:45:27.5734251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\custom_graph_pass.py 2025-08-26T20:45:27.5737913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\debug.py 2025-08-26T20:45:27.5741771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\decomposition.py 2025-08-26T20:45:27.5745558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\dependencies.py 2025-08-26T20:45:27.5759304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\dtype_propagation.py 2025-08-26T20:45:27.5759958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\exc.py 2025-08-26T20:45:27.5760481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\extern_node_serializer.py 2025-08-26T20:45:27.5761045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\freezing.py 2025-08-26T20:45:27.5764306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\freezing_utils.py 2025-08-26T20:45:27.5777445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fuzzer.py 2025-08-26T20:45:27.5781066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_utils.py 2025-08-26T20:45:27.5784456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\graph.py 2025-08-26T20:45:27.5788617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\hooks.py 2025-08-26T20:45:27.5792020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\index_propagation.py 2025-08-26T20:45:27.5795526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\inductor_prims.py 2025-08-26T20:45:27.5798941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\ir.py 2025-08-26T20:45:27.5804300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\jagged_lowerings.py 2025-08-26T20:45:27.5808217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel_inputs.py 2025-08-26T20:45:27.5811776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\loop_body.py 2025-08-26T20:45:27.5815327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\lowering.py 2025-08-26T20:45:27.5820140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\memory.py 2025-08-26T20:45:27.5833700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\metrics.py 2025-08-26T20:45:27.5837182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\mkldnn_ir.py 2025-08-26T20:45:27.5841366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\mkldnn_lowerings.py 2025-08-26T20:45:27.5845302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\mock_cache.py 2025-08-26T20:45:27.5849268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\ops_handler.py 2025-08-26T20:45:27.5852970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\optimize_indexing.py 2025-08-26T20:45:27.5856591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\output_code.py 2025-08-26T20:45:27.5860312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\pattern_matcher.py 2025-08-26T20:45:27.5864446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\quantized_lowerings.py 2025-08-26T20:45:27.5867952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\remote_cache.py 2025-08-26T20:45:27.5890555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\remote_gemm_autotune_cache.py 2025-08-26T20:45:27.5894098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\scheduler.py 2025-08-26T20:45:27.5899369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\script.ld 2025-08-26T20:45:27.5902770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\select_algorithm.py 2025-08-26T20:45:27.5907044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\shape_propagation.py 2025-08-26T20:45:27.5910541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\sizevars.py 2025-08-26T20:45:27.5914397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\standalone_compile.py 2025-08-26T20:45:27.5917951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\subgraph_lowering.py 2025-08-26T20:45:27.5921450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\template_heuristics.py 2025-08-26T20:45:27.5925690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\template_registry.py 2025-08-26T20:45:27.5938691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\test_case.py 2025-08-26T20:45:27.5942252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\test_operators.py 2025-08-26T20:45:27.5946959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\tiling_utils.py 2025-08-26T20:45:27.5950786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\triton_bundler.py 2025-08-26T20:45:27.5954435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\utils.py 2025-08-26T20:45:27.5958835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\virtualized.py 2025-08-26T20:45:27.5962485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\wrapper_benchmark.py 2025-08-26T20:45:27.5966343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__autotune_main__.py 2025-08-26T20:45:27.5969820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__init__.py 2025-08-26T20:45:27.5976928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analysis\device_info.py 2025-08-26T20:45:27.5980704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analysis\profile_analysis.py 2025-08-26T20:45:27.5984183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analysis\__init__.py 2025-08-26T20:45:27.6000765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analysis\__pycache__\device_info.cpython-39.pyc 2025-08-26T20:45:27.6004839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analysis\__pycache__\profile_analysis.cpython-39.pyc 2025-08-26T20:45:27.6009189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analysis\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.6027174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\autoheuristic.py 2025-08-26T20:45:27.6030550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\autoheuristic_utils.py 2025-08-26T20:45:27.6034648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\learnedheuristic_interface.py 2025-08-26T20:45:27.6047740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\learned_heuristic_controller.py 2025-08-26T20:45:27.6051677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__init__.py 2025-08-26T20:45:27.6058139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\_MixedMMA100.py 2025-08-26T20:45:27.6061674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\_MixedMMH100.py 2025-08-26T20:45:27.6065042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\_MMRankingA100.py 2025-08-26T20:45:27.6078609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\_MMRankingH100.py 2025-08-26T20:45:27.6082501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\_PadMMA100.py 2025-08-26T20:45:27.6086160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__init__.py 2025-08-26T20:45:27.6092916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\_MixedMMA100.cpython-39.pyc 2025-08-26T20:45:27.6096488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\_MixedMMH100.cpython-39.pyc 2025-08-26T20:45:27.6099885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\_MMRankingA100.cpython-39.pyc 2025-08-26T20:45:27.6113072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\_MMRankingH100.cpython-39.pyc 2025-08-26T20:45:27.6116784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\_PadMMA100.cpython-39.pyc 2025-08-26T20:45:27.6120646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.6129122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__pycache__\autoheuristic.cpython-39.pyc 2025-08-26T20:45:27.6132789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__pycache__\autoheuristic_utils.cpython-39.pyc 2025-08-26T20:45:27.6136551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__pycache__\learnedheuristic_interface.cpython-39.pyc 2025-08-26T20:45:27.6150164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__pycache__\learned_heuristic_controller.cpython-39.pyc 2025-08-26T20:45:27.6155116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.6164038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\aoti_hipify_utils.py 2025-08-26T20:45:27.6167857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\block_analysis.py 2025-08-26T20:45:27.6171055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\common.py 2025-08-26T20:45:27.6175215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp.py 2025-08-26T20:45:27.6180252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_bmm_template.py 2025-08-26T20:45:27.6194227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_flex_attention_template.py 2025-08-26T20:45:27.6197993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_gemm_template.py 2025-08-26T20:45:27.6202291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_grouped_gemm_template.py 2025-08-26T20:45:27.6205959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_micro_gemm.py 2025-08-26T20:45:27.6209975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_template.py 2025-08-26T20:45:27.6213568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_template_kernel.py 2025-08-26T20:45:27.6217201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_utils.py 2025-08-26T20:45:27.6220830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_wrapper_cpu.py 2025-08-26T20:45:27.6225330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_wrapper_cpu_array_ref.py 2025-08-26T20:45:27.6229189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_wrapper_gpu.py 2025-08-26T20:45:27.6233545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_wrapper_mps.py 2025-08-26T20:45:27.6237372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpu_device_op_overrides.py 2025-08-26T20:45:27.6241317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda_combined_scheduling.py 2025-08-26T20:45:27.6244752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\debug_utils.py 2025-08-26T20:45:27.6258010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\halide.py 2025-08-26T20:45:27.6262309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\memory_planning.py 2025-08-26T20:45:27.6265675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\mps.py 2025-08-26T20:45:27.6269355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\mps_device_op_overrides.py 2025-08-26T20:45:27.6273004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\multi_kernel.py 2025-08-26T20:45:27.6276650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\python_wrapper_mtia.py 2025-08-26T20:45:27.6280581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\segmented_tree.py 2025-08-26T20:45:27.6284141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\simd.py 2025-08-26T20:45:27.6288746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\simd_kernel_features.py 2025-08-26T20:45:27.6292259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\subgraph.py 2025-08-26T20:45:27.6295564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\triton.py 2025-08-26T20:45:27.6300281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\triton_combo_kernel.py 2025-08-26T20:45:27.6313870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\triton_split_scan.py 2025-08-26T20:45:27.6317569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\triton_utils.py 2025-08-26T20:45:27.6320941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\wrapper.py 2025-08-26T20:45:27.6325480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\wrapper_fxir.py 2025-08-26T20:45:27.6329234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__init__.py 2025-08-26T20:45:27.6336186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\aoti_runtime\interface.cpp 2025-08-26T20:45:27.6344158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cuda_cpp_scheduling.py 2025-08-26T20:45:27.6347861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cuda_env.py 2025-08-26T20:45:27.6351249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cuda_kernel.py 2025-08-26T20:45:27.6355207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cuda_template.py 2025-08-26T20:45:27.6368790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_cache.py 2025-08-26T20:45:27.6372883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_presets.py 2025-08-26T20:45:27.6376482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_python_evt.py 2025-08-26T20:45:27.6379926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_utils.py 2025-08-26T20:45:27.6383903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\device_op_overrides.py 2025-08-26T20:45:27.6387709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\gemm_template.py 2025-08-26T20:45:27.6392017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\serialization.py 2025-08-26T20:45:27.6395672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__init__.py 2025-08-26T20:45:27.6403055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\evt_extensions.py 2025-08-26T20:45:27.6407041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\gemm_operation_extensions.py 2025-08-26T20:45:27.6410667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\__init__.py 2025-08-26T20:45:27.6427362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\__init__.py 2025-08-26T20:45:27.6433459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\cuda.py 2025-08-26T20:45:27.6438363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\cudart.py 2025-08-26T20:45:27.6441617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\__init__.py 2025-08-26T20:45:27.6448892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\__pycache__\cuda.cpython-39.pyc 2025-08-26T20:45:27.6452543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\__pycache__\cudart.cpython-39.pyc 2025-08-26T20:45:27.6456616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.6474207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\pydot\__init__.py 2025-08-26T20:45:27.6481551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\pydot\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.6489020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy\special.py 2025-08-26T20:45:27.6493353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy\__init__.py 2025-08-26T20:45:27.6501418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy\__pycache__\special.cpython-39.pyc 2025-08-26T20:45:27.6505474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.6523072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.6532100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\__pycache__\evt_extensions.cpython-39.pyc 2025-08-26T20:45:27.6535386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\__pycache__\gemm_operation_extensions.cpython-39.pyc 2025-08-26T20:45:27.6539598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.6557879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cuda_cpp_scheduling.cpython-39.pyc 2025-08-26T20:45:27.6561380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cuda_env.cpython-39.pyc 2025-08-26T20:45:27.6565133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cuda_kernel.cpython-39.pyc 2025-08-26T20:45:27.6578505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cuda_template.cpython-39.pyc 2025-08-26T20:45:27.6581994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cutlass_cache.cpython-39.pyc 2025-08-26T20:45:27.6585704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cutlass_presets.cpython-39.pyc 2025-08-26T20:45:27.6589387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cutlass_python_evt.cpython-39.pyc 2025-08-26T20:45:27.6592903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cutlass_utils.cpython-39.pyc 2025-08-26T20:45:27.6596938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\device_op_overrides.cpython-39.pyc 2025-08-26T20:45:27.6600785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\gemm_template.cpython-39.pyc 2025-08-26T20:45:27.6604832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\serialization.cpython-39.pyc 2025-08-26T20:45:27.6608457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.6616380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cutedsl\cutedsl_kernel.py 2025-08-26T20:45:27.6620356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cutedsl\cutedsl_scheduling.py 2025-08-26T20:45:27.6624096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cutedsl\cutedsl_template.py 2025-08-26T20:45:27.6628166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cutedsl\__init__.py 2025-08-26T20:45:27.6645307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cutedsl\__pycache__\cutedsl_kernel.cpython-39.pyc 2025-08-26T20:45:27.6649415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cutedsl\__pycache__\cutedsl_scheduling.cpython-39.pyc 2025-08-26T20:45:27.6653014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cutedsl\__pycache__\cutedsl_template.cpython-39.pyc 2025-08-26T20:45:27.6666513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cutedsl\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.6674931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\mtia\device_op_overrides.py 2025-08-26T20:45:27.6679149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\mtia\__init__.py 2025-08-26T20:45:27.6685902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\mtia\__pycache__\device_op_overrides.cpython-39.pyc 2025-08-26T20:45:27.6689625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\mtia\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.6697420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\ck_conv_template.py 2025-08-26T20:45:27.6701192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\ck_template.py 2025-08-26T20:45:27.6704730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\ck_tile_template.py 2025-08-26T20:45:27.6708551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\ck_tile_universal_gemm_template.py 2025-08-26T20:45:27.6722095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\ck_universal_gemm_template.py 2025-08-26T20:45:27.6726552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\compile_command.py 2025-08-26T20:45:27.6729945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_benchmark_request.py 2025-08-26T20:45:27.6733451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_cpp_scheduling.py 2025-08-26T20:45:27.6736880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_kernel.py 2025-08-26T20:45:27.6740393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_template.py 2025-08-26T20:45:27.6743997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_template_buffer.py 2025-08-26T20:45:27.6747639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_utils.py 2025-08-26T20:45:27.6751909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__init__.py 2025-08-26T20:45:27.6758729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\ck_conv_template.cpython-39.pyc 2025-08-26T20:45:27.6762304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\ck_template.cpython-39.pyc 2025-08-26T20:45:27.6765803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\ck_tile_template.cpython-39.pyc 2025-08-26T20:45:27.6779004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\ck_tile_universal_gemm_template.cpython-39.pyc 2025-08-26T20:45:27.6782844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\ck_universal_gemm_template.cpython-39.pyc 2025-08-26T20:45:27.6786733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\compile_command.cpython-39.pyc 2025-08-26T20:45:27.6790329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_benchmark_request.cpython-39.pyc 2025-08-26T20:45:27.6793844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_cpp_scheduling.cpython-39.pyc 2025-08-26T20:45:27.6797377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_kernel.cpython-39.pyc 2025-08-26T20:45:27.6801254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_template.cpython-39.pyc 2025-08-26T20:45:27.6804722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_template_buffer.cpython-39.pyc 2025-08-26T20:45:27.6841830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_utils.cpython-39.pyc 2025-08-26T20:45:27.6845401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.6853536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\xpu\device_op_overrides.py 2025-08-26T20:45:27.6857012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\xpu\__init__.py 2025-08-26T20:45:27.6863183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\xpu\__pycache__\device_op_overrides.cpython-39.pyc 2025-08-26T20:45:27.6866808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\xpu\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.6874967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\aoti_hipify_utils.cpython-39.pyc 2025-08-26T20:45:27.6878480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\block_analysis.cpython-39.pyc 2025-08-26T20:45:27.6882048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\common.cpython-39.pyc 2025-08-26T20:45:27.6890537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp.cpython-39.pyc 2025-08-26T20:45:27.6895250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_bmm_template.cpython-39.pyc 2025-08-26T20:45:27.6898919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_flex_attention_template.cpython-39.pyc 2025-08-26T20:45:27.6910800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_gemm_template.cpython-39.pyc 2025-08-26T20:45:27.6912212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_grouped_gemm_template.cpython-39.pyc 2025-08-26T20:45:27.6914157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_micro_gemm.cpython-39.pyc 2025-08-26T20:45:27.6918387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_template.cpython-39.pyc 2025-08-26T20:45:27.6922006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_template_kernel.cpython-39.pyc 2025-08-26T20:45:27.6925544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_utils.cpython-39.pyc 2025-08-26T20:45:27.6929337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_wrapper_cpu.cpython-39.pyc 2025-08-26T20:45:27.6933970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_wrapper_cpu_array_ref.cpython-39.pyc 2025-08-26T20:45:27.6937675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_wrapper_gpu.cpython-39.pyc 2025-08-26T20:45:27.6941379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_wrapper_mps.cpython-39.pyc 2025-08-26T20:45:27.6954643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpu_device_op_overrides.cpython-39.pyc 2025-08-26T20:45:27.6958263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cuda_combined_scheduling.cpython-39.pyc 2025-08-26T20:45:27.6961737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\debug_utils.cpython-39.pyc 2025-08-26T20:45:27.6965403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\halide.cpython-39.pyc 2025-08-26T20:45:27.6969635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\memory_planning.cpython-39.pyc 2025-08-26T20:45:27.6973117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\mps.cpython-39.pyc 2025-08-26T20:45:27.6976933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\mps_device_op_overrides.cpython-39.pyc 2025-08-26T20:45:27.6981197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\multi_kernel.cpython-39.pyc 2025-08-26T20:45:27.6994818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\python_wrapper_mtia.cpython-39.pyc 2025-08-26T20:45:27.6998494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\segmented_tree.cpython-39.pyc 2025-08-26T20:45:27.7002076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\simd.cpython-39.pyc 2025-08-26T20:45:27.7006940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\simd_kernel_features.cpython-39.pyc 2025-08-26T20:45:27.7010909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\subgraph.cpython-39.pyc 2025-08-26T20:45:27.7014227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\triton.cpython-39.pyc 2025-08-26T20:45:27.7019013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\triton_combo_kernel.cpython-39.pyc 2025-08-26T20:45:27.7022916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\triton_split_scan.cpython-39.pyc 2025-08-26T20:45:27.7036926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\triton_utils.cpython-39.pyc 2025-08-26T20:45:27.7040517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\wrapper.cpython-39.pyc 2025-08-26T20:45:27.7044720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\wrapper_fxir.cpython-39.pyc 2025-08-26T20:45:27.7048660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.7058334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\subproc_pool.py 2025-08-26T20:45:27.7061786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\tracked_process_pool.py 2025-08-26T20:45:27.7065167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\utils.py 2025-08-26T20:45:27.7068450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__init__.py 2025-08-26T20:45:27.7081309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__main__.py 2025-08-26T20:45:27.7088422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__pycache__\subproc_pool.cpython-39.pyc 2025-08-26T20:45:27.7091933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__pycache__\tracked_process_pool.cpython-39.pyc 2025-08-26T20:45:27.7095384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:27.7109834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.7113456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__pycache__\__main__.cpython-39.pyc 2025-08-26T20:45:27.7122203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\b2b_gemm.py 2025-08-26T20:45:27.7126335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\binary_folding.py 2025-08-26T20:45:27.7129935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\bucketing.py 2025-08-26T20:45:27.7134276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\ddp_fusion.py 2025-08-26T20:45:27.7147686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\decompose_mem_bound_mm.py 2025-08-26T20:45:27.7151137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\dedupe_symint_uses.py 2025-08-26T20:45:27.7154666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\efficient_conv_bn_eval.py 2025-08-26T20:45:27.7158031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\freezing_patterns.py 2025-08-26T20:45:27.7161587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\fsdp.py 2025-08-26T20:45:27.7164944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\fuse_attention.py 2025-08-26T20:45:27.7168730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\group_batch_fusion.py 2025-08-26T20:45:27.7172679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\joint_graph.py 2025-08-26T20:45:27.7176419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\micro_pipeline_tp.py 2025-08-26T20:45:27.7180115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\misc_patterns.py 2025-08-26T20:45:27.7183558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\mkldnn_fusion.py 2025-08-26T20:45:27.7187496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\numeric_utils.py 2025-08-26T20:45:27.7191538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\pad_mm.py 2025-08-26T20:45:27.7195178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\post_grad.py 2025-08-26T20:45:27.7199279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\pre_grad.py 2025-08-26T20:45:27.7202846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\quantization.py 2025-08-26T20:45:27.7207736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\reinplace.py 2025-08-26T20:45:27.7220925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\replace_random.py 2025-08-26T20:45:27.7225125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\split_cat.py 2025-08-26T20:45:27.7229294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__init__.py 2025-08-26T20:45:27.7238475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\addmm_pattern.py 2025-08-26T20:45:27.7279825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\bmm_pattern.py 2025-08-26T20:45:27.7283489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\mm_pattern.py 2025-08-26T20:45:27.7297389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_1.py 2025-08-26T20:45:27.7301107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_10.py 2025-08-26T20:45:27.7304598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_11.py 2025-08-26T20:45:27.7308653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_12.py 2025-08-26T20:45:27.7312263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_13.py 2025-08-26T20:45:27.7315882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_14.py 2025-08-26T20:45:27.7319578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_15.py 2025-08-26T20:45:27.7323225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_16.py 2025-08-26T20:45:27.7327145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_17.py 2025-08-26T20:45:27.7331021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_18.py 2025-08-26T20:45:27.7334799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_19.py 2025-08-26T20:45:27.7338469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_2.py 2025-08-26T20:45:27.7342128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_20.py 2025-08-26T20:45:27.7345734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_21.py 2025-08-26T20:45:27.7349547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_22.py 2025-08-26T20:45:27.7353538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_23.py 2025-08-26T20:45:27.7366826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_24.py 2025-08-26T20:45:27.7370523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_3.py 2025-08-26T20:45:27.7374195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_4.py 2025-08-26T20:45:27.7378028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_5.py 2025-08-26T20:45:27.7381608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_6.py 2025-08-26T20:45:27.7385168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_7.py 2025-08-26T20:45:27.7388965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_8.py 2025-08-26T20:45:27.7392492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_9.py 2025-08-26T20:45:27.7396139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__init__.py 2025-08-26T20:45:27.7405926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\addmm_pattern.cpython-39.pyc 2025-08-26T20:45:27.7409820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\bmm_pattern.cpython-39.pyc 2025-08-26T20:45:27.7413300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\mm_pattern.cpython-39.pyc 2025-08-26T20:45:27.7427389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_1.cpython-39.pyc 2025-08-26T20:45:27.7431225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_10.cpython-39.pyc 2025-08-26T20:45:27.7434769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_11.cpython-39.pyc 2025-08-26T20:45:27.7438894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_12.cpython-39.pyc 2025-08-26T20:45:27.7442872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_13.cpython-39.pyc 2025-08-26T20:45:27.7446648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_14.cpython-39.pyc 2025-08-26T20:45:27.7450674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_15.cpython-39.pyc 2025-08-26T20:45:27.7454455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_16.cpython-39.pyc 2025-08-26T20:45:27.7458252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_17.cpython-39.pyc 2025-08-26T20:45:27.7462042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_18.cpython-39.pyc 2025-08-26T20:45:27.7465666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_19.cpython-39.pyc 2025-08-26T20:45:27.7469312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_2.cpython-39.pyc 2025-08-26T20:45:27.7473579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_20.cpython-39.pyc 2025-08-26T20:45:27.7486748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_21.cpython-39.pyc 2025-08-26T20:45:27.7490890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_22.cpython-39.pyc 2025-08-26T20:45:27.7494629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_23.cpython-39.pyc 2025-08-26T20:45:27.7498340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_24.cpython-39.pyc 2025-08-26T20:45:27.7502380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_3.cpython-39.pyc 2025-08-26T20:45:27.7506049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_4.cpython-39.pyc 2025-08-26T20:45:27.7509768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_5.cpython-39.pyc 2025-08-26T20:45:27.7513947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_6.cpython-39.pyc 2025-08-26T20:45:27.7517906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_7.cpython-39.pyc 2025-08-26T20:45:27.7521764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_8.cpython-39.pyc 2025-08-26T20:45:27.7526465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_9.cpython-39.pyc 2025-08-26T20:45:27.7530383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.7541812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\b2b_gemm.cpython-39.pyc 2025-08-26T20:45:27.7545347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\binary_folding.cpython-39.pyc 2025-08-26T20:45:27.7549301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\bucketing.cpython-39.pyc 2025-08-26T20:45:27.7562772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\ddp_fusion.cpython-39.pyc 2025-08-26T20:45:27.7566471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\decompose_mem_bound_mm.cpython-39.pyc 2025-08-26T20:45:27.7570020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\dedupe_symint_uses.cpython-39.pyc 2025-08-26T20:45:27.7573659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\efficient_conv_bn_eval.cpython-39.pyc 2025-08-26T20:45:27.7577153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\freezing_patterns.cpython-39.pyc 2025-08-26T20:45:27.7580952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\fsdp.cpython-39.pyc 2025-08-26T20:45:27.7584493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\fuse_attention.cpython-39.pyc 2025-08-26T20:45:27.7588607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\group_batch_fusion.cpython-39.pyc 2025-08-26T20:45:27.7592515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\joint_graph.cpython-39.pyc 2025-08-26T20:45:27.7596169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\micro_pipeline_tp.cpython-39.pyc 2025-08-26T20:45:27.7599943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\misc_patterns.cpython-39.pyc 2025-08-26T20:45:27.7603865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\mkldnn_fusion.cpython-39.pyc 2025-08-26T20:45:27.7607816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\numeric_utils.cpython-39.pyc 2025-08-26T20:45:27.7621104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\pad_mm.cpython-39.pyc 2025-08-26T20:45:27.7624781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\post_grad.cpython-39.pyc 2025-08-26T20:45:27.7628615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\pre_grad.cpython-39.pyc 2025-08-26T20:45:27.7633223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\quantization.cpython-39.pyc 2025-08-26T20:45:27.7637687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\reinplace.cpython-39.pyc 2025-08-26T20:45:27.7641797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\replace_random.cpython-39.pyc 2025-08-26T20:45:27.7645995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\split_cat.cpython-39.pyc 2025-08-26T20:45:27.7650718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.7659443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\bmm.py 2025-08-26T20:45:27.7663049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\conv.py 2025-08-26T20:45:27.7666650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\mm.py 2025-08-26T20:45:27.7670275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\mm_common.py 2025-08-26T20:45:27.7673692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\mm_grouped.py 2025-08-26T20:45:27.7687707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\mm_plus_mm.py 2025-08-26T20:45:27.7691432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__init__.py 2025-08-26T20:45:27.7697953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\common.py 2025-08-26T20:45:27.7701288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\flex_attention.py 2025-08-26T20:45:27.7704848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\flex_cpu.py 2025-08-26T20:45:27.7708162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\flex_decoding.py 2025-08-26T20:45:27.7711496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\__init__.py 2025-08-26T20:45:27.7728476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\templates\common.py.jinja 2025-08-26T20:45:27.7732166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\templates\flex_attention.py.jinja 2025-08-26T20:45:27.7736203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\templates\flex_backwards.py.jinja 2025-08-26T20:45:27.7749909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\templates\flex_decode.py.jinja 2025-08-26T20:45:27.7753454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\templates\utilities.py.jinja 2025-08-26T20:45:27.7761227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\__pycache__\common.cpython-39.pyc 2025-08-26T20:45:27.7764719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\__pycache__\flex_attention.cpython-39.pyc 2025-08-26T20:45:27.7768272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\__pycache__\flex_cpu.cpython-39.pyc 2025-08-26T20:45:27.7781571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\__pycache__\flex_decoding.cpython-39.pyc 2025-08-26T20:45:27.7784951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.7792737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\bmm.cpython-39.pyc 2025-08-26T20:45:27.7796087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\conv.cpython-39.pyc 2025-08-26T20:45:27.7799340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\mm.cpython-39.pyc 2025-08-26T20:45:27.7812839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\mm_common.cpython-39.pyc 2025-08-26T20:45:27.7816342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\mm_grouped.cpython-39.pyc 2025-08-26T20:45:27.7820044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\mm_plus_mm.cpython-39.pyc 2025-08-26T20:45:27.7823465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.7831673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\build_package.py 2025-08-26T20:45:27.7834982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\package.py 2025-08-26T20:45:27.7838177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\__init__.py 2025-08-26T20:45:27.7844961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\__pycache__\build_package.cpython-39.pyc 2025-08-26T20:45:27.7848658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\__pycache__\package.cpython-39.pyc 2025-08-26T20:45:27.7852539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.7870121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\autotune_cache.py 2025-08-26T20:45:27.7873699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\benchmarking.py 2025-08-26T20:45:27.7877084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\cache_dir_utils.py 2025-08-26T20:45:27.7880434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\compile_tasks.py 2025-08-26T20:45:27.7893780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\coordinate_descent_tuner.py 2025-08-26T20:45:27.7897241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\debug_utils.py 2025-08-26T20:45:27.7900722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\halide_helpers.py 2025-08-26T20:45:27.7904062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\hints.py 2025-08-26T20:45:27.7907814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\runtime_utils.py 2025-08-26T20:45:27.7911121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\static_cuda_launcher.py 2025-08-26T20:45:27.7914542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\triton_compat.py 2025-08-26T20:45:27.7917876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\triton_helpers.py 2025-08-26T20:45:27.7921413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\triton_heuristics.py 2025-08-26T20:45:27.7925733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__init__.py 2025-08-26T20:45:27.7932691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\autotune_cache.cpython-39.pyc 2025-08-26T20:45:27.7936357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\benchmarking.cpython-39.pyc 2025-08-26T20:45:27.7939818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\cache_dir_utils.cpython-39.pyc 2025-08-26T20:45:27.7953090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\compile_tasks.cpython-39.pyc 2025-08-26T20:45:27.7957072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\coordinate_descent_tuner.cpython-39.pyc 2025-08-26T20:45:27.7960838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\debug_utils.cpython-39.pyc 2025-08-26T20:45:27.7964576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\halide_helpers.cpython-39.pyc 2025-08-26T20:45:27.7968572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\hints.cpython-39.pyc 2025-08-26T20:45:27.7972149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\runtime_utils.cpython-39.pyc 2025-08-26T20:45:27.7975660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\static_cuda_launcher.cpython-39.pyc 2025-08-26T20:45:27.7979095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\triton_compat.cpython-39.pyc 2025-08-26T20:45:27.7982687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\triton_helpers.cpython-39.pyc 2025-08-26T20:45:27.7986321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\triton_heuristics.cpython-39.pyc 2025-08-26T20:45:27.7991173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.8010514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\analyze_preserves_zero_mask.cpython-39.pyc 2025-08-26T20:45:27.8014424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\aoti_eager.cpython-39.pyc 2025-08-26T20:45:27.8018048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\async_compile.cpython-39.pyc 2025-08-26T20:45:27.8031069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\autotune_process.cpython-39.pyc 2025-08-26T20:45:27.8034734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\await_utils.cpython-39.pyc 2025-08-26T20:45:27.8038482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\bounds.cpython-39.pyc 2025-08-26T20:45:27.8042144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\choices.cpython-39.pyc 2025-08-26T20:45:27.8045808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\codecache.cpython-39.pyc 2025-08-26T20:45:27.8051075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\comms.cpython-39.pyc 2025-08-26T20:45:27.8055334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\comms_debug.cpython-39.pyc 2025-08-26T20:45:27.8058991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\comm_analysis.cpython-39.pyc 2025-08-26T20:45:27.8062475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\comm_lowering.cpython-39.pyc 2025-08-26T20:45:27.8066694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\compiler_bisector.cpython-39.pyc 2025-08-26T20:45:27.8070368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\compile_fx.cpython-39.pyc 2025-08-26T20:45:27.8074841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\compile_fx_async.cpython-39.pyc 2025-08-26T20:45:27.8078775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\compile_fx_ext.cpython-39.pyc 2025-08-26T20:45:27.8093059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\compile_fx_subproc.cpython-39.pyc 2025-08-26T20:45:27.8096520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\config.cpython-39.pyc 2025-08-26T20:45:27.8135229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\constant_folding.cpython-39.pyc 2025-08-26T20:45:27.8139507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\cpp_builder.cpython-39.pyc 2025-08-26T20:45:27.8143535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\cpu_vec_isa.cpython-39.pyc 2025-08-26T20:45:27.8147390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\cudagraph_trees.cpython-39.pyc 2025-08-26T20:45:27.8151776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\cudagraph_utils.cpython-39.pyc 2025-08-26T20:45:27.8155646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\custom_graph_pass.cpython-39.pyc 2025-08-26T20:45:27.8165482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\debug.cpython-39.pyc 2025-08-26T20:45:27.8169580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\decomposition.cpython-39.pyc 2025-08-26T20:45:27.8173856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\dependencies.cpython-39.pyc 2025-08-26T20:45:27.8177662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\dtype_propagation.cpython-39.pyc 2025-08-26T20:45:27.8181412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\exc.cpython-39.pyc 2025-08-26T20:45:27.8185055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\extern_node_serializer.cpython-39.pyc 2025-08-26T20:45:27.8188739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\freezing.cpython-39.pyc 2025-08-26T20:45:27.8192372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\freezing_utils.cpython-39.pyc 2025-08-26T20:45:27.8196164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\fuzzer.cpython-39.pyc 2025-08-26T20:45:27.8210499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\fx_utils.cpython-39.pyc 2025-08-26T20:45:27.8214022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\graph.cpython-39.pyc 2025-08-26T20:45:27.8217910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\hooks.cpython-39.pyc 2025-08-26T20:45:27.8221768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\index_propagation.cpython-39.pyc 2025-08-26T20:45:27.8225321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\inductor_prims.cpython-39.pyc 2025-08-26T20:45:27.8228757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\ir.cpython-39.pyc 2025-08-26T20:45:27.8233798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\jagged_lowerings.cpython-39.pyc 2025-08-26T20:45:27.8237445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\kernel_inputs.cpython-39.pyc 2025-08-26T20:45:27.8261631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\loop_body.cpython-39.pyc 2025-08-26T20:45:27.8264773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\lowering.cpython-39.pyc 2025-08-26T20:45:27.8269453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\memory.cpython-39.pyc 2025-08-26T20:45:27.8273222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\metrics.cpython-39.pyc 2025-08-26T20:45:27.8276801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\mkldnn_ir.cpython-39.pyc 2025-08-26T20:45:27.8280491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\mkldnn_lowerings.cpython-39.pyc 2025-08-26T20:45:27.8284374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\mock_cache.cpython-39.pyc 2025-08-26T20:45:27.8288106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\ops_handler.cpython-39.pyc 2025-08-26T20:45:27.8301432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\optimize_indexing.cpython-39.pyc 2025-08-26T20:45:27.8304973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\output_code.cpython-39.pyc 2025-08-26T20:45:27.8308605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\pattern_matcher.cpython-39.pyc 2025-08-26T20:45:27.8312701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\quantized_lowerings.cpython-39.pyc 2025-08-26T20:45:27.8316664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\remote_cache.cpython-39.pyc 2025-08-26T20:45:27.8320312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\remote_gemm_autotune_cache.cpython-39.pyc 2025-08-26T20:45:27.8323786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\scheduler.cpython-39.pyc 2025-08-26T20:45:27.8328586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\select_algorithm.cpython-39.pyc 2025-08-26T20:45:27.8342069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\shape_propagation.cpython-39.pyc 2025-08-26T20:45:27.8345575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\sizevars.cpython-39.pyc 2025-08-26T20:45:27.8349323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\standalone_compile.cpython-39.pyc 2025-08-26T20:45:27.8353009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\subgraph_lowering.cpython-39.pyc 2025-08-26T20:45:27.8356582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\template_heuristics.cpython-39.pyc 2025-08-26T20:45:27.8360474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\template_registry.cpython-39.pyc 2025-08-26T20:45:27.8364108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\test_case.cpython-39.pyc 2025-08-26T20:45:27.8368130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\test_operators.cpython-39.pyc 2025-08-26T20:45:27.8371667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\tiling_utils.cpython-39.pyc 2025-08-26T20:45:27.8385246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\triton_bundler.cpython-39.pyc 2025-08-26T20:45:27.8389210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:27.8393770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\virtualized.cpython-39.pyc 2025-08-26T20:45:27.8398360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\wrapper_benchmark.cpython-39.pyc 2025-08-26T20:45:27.8401973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\__autotune_main__.cpython-39.pyc 2025-08-26T20:45:27.8405681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.8416693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\closure.py 2025-08-26T20:45:27.8420420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\computation.py 2025-08-26T20:45:27.8423755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\config.py 2025-08-26T20:45:27.8426943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\debug.py 2025-08-26T20:45:27.8430211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\device_context.py 2025-08-26T20:45:27.8443444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\extract_compiled_graph.py 2025-08-26T20:45:27.8447161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\ir_cache.py 2025-08-26T20:45:27.8450813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\metrics.py 2025-08-26T20:45:27.8454254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\tensor_factory_functions.py 2025-08-26T20:45:27.8457664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\ts_backend.py 2025-08-26T20:45:27.8461158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__init__.py 2025-08-26T20:45:27.8468552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\closure.cpython-39.pyc 2025-08-26T20:45:27.8472189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\computation.cpython-39.pyc 2025-08-26T20:45:27.8476467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\config.cpython-39.pyc 2025-08-26T20:45:27.8489908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\debug.cpython-39.pyc 2025-08-26T20:45:27.8494292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\device_context.cpython-39.pyc 2025-08-26T20:45:27.8498077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\extract_compiled_graph.cpython-39.pyc 2025-08-26T20:45:27.8502272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\ir_cache.cpython-39.pyc 2025-08-26T20:45:27.8506065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\metrics.cpython-39.pyc 2025-08-26T20:45:27.8510309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\tensor_factory_functions.cpython-39.pyc 2025-08-26T20:45:27.8514239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\ts_backend.cpython-39.pyc 2025-08-26T20:45:27.8518238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.8806401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\autograd.py 2025-08-26T20:45:27.8809891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\custom_ops.py 2025-08-26T20:45:27.8813448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\fake_class_registry.py 2025-08-26T20:45:27.8816716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\fake_impl.py 2025-08-26T20:45:27.8919044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\fake_profile.py 2025-08-26T20:45:27.8922600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\infer_schema.py 2025-08-26T20:45:27.8925991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\simple_registry.py 2025-08-26T20:45:27.8929370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\triton.py 2025-08-26T20:45:27.8932703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\utils.py 2025-08-26T20:45:27.8936064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__init__.py 2025-08-26T20:45:27.8944453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\autograd.cpython-39.pyc 2025-08-26T20:45:27.8947849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\custom_ops.cpython-39.pyc 2025-08-26T20:45:27.8951698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\fake_class_registry.cpython-39.pyc 2025-08-26T20:45:27.9052177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\fake_impl.cpython-39.pyc 2025-08-26T20:45:27.9055660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\fake_profile.cpython-39.pyc 2025-08-26T20:45:27.9059115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\infer_schema.cpython-39.pyc 2025-08-26T20:45:27.9063272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\simple_registry.cpython-39.pyc 2025-08-26T20:45:27.9067153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\triton.cpython-39.pyc 2025-08-26T20:45:27.9070403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:27.9074063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.9110377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\scribe.py 2025-08-26T20:45:27.9113789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\structured.py 2025-08-26T20:45:27.9117538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\_internal.py 2025-08-26T20:45:27.9189232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\_registrations.py 2025-08-26T20:45:27.9304213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__init__.py 2025-08-26T20:45:27.9312021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__pycache__\scribe.cpython-39.pyc 2025-08-26T20:45:27.9315701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__pycache__\structured.cpython-39.pyc 2025-08-26T20:45:27.9319346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__pycache__\_internal.cpython-39.pyc 2025-08-26T20:45:27.9402185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__pycache__\_registrations.cpython-39.pyc 2025-08-26T20:45:27.9405791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.9413871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\fft.py 2025-08-26T20:45:27.9417480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\linalg.py 2025-08-26T20:45:27.9420514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\random.py 2025-08-26T20:45:27.9424318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_binary_ufuncs_impl.py 2025-08-26T20:45:27.9428282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_casting_dicts.py 2025-08-26T20:45:27.9532633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_dtypes.py 2025-08-26T20:45:27.9536208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_dtypes_impl.py 2025-08-26T20:45:27.9539520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_funcs.py 2025-08-26T20:45:27.9543416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_funcs_impl.py 2025-08-26T20:45:27.9547729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_getlimits.py 2025-08-26T20:45:27.9551108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_ndarray.py 2025-08-26T20:45:27.9554830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_normalizations.py 2025-08-26T20:45:27.9558542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_reductions_impl.py 2025-08-26T20:45:27.9561766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_ufuncs.py 2025-08-26T20:45:27.9565316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_unary_ufuncs_impl.py 2025-08-26T20:45:27.9568990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_util.py 2025-08-26T20:45:27.9572784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__init__.py 2025-08-26T20:45:27.9579936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\testing\utils.py 2025-08-26T20:45:27.9584136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\testing\__init__.py 2025-08-26T20:45:27.9591608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\testing\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:27.9595750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\testing\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.9604073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\fft.cpython-39.pyc 2025-08-26T20:45:27.9607758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\linalg.cpython-39.pyc 2025-08-26T20:45:27.9611892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\random.cpython-39.pyc 2025-08-26T20:45:27.9722184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_binary_ufuncs_impl.cpython-39.pyc 2025-08-26T20:45:27.9725538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_casting_dicts.cpython-39.pyc 2025-08-26T20:45:27.9729341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_dtypes.cpython-39.pyc 2025-08-26T20:45:27.9732649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_dtypes_impl.cpython-39.pyc 2025-08-26T20:45:27.9736072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_funcs.cpython-39.pyc 2025-08-26T20:45:27.9739677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_funcs_impl.cpython-39.pyc 2025-08-26T20:45:27.9743928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_getlimits.cpython-39.pyc 2025-08-26T20:45:27.9747537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_ndarray.cpython-39.pyc 2025-08-26T20:45:27.9755275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_normalizations.cpython-39.pyc 2025-08-26T20:45:27.9758798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_reductions_impl.cpython-39.pyc 2025-08-26T20:45:27.9762219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_ufuncs.cpython-39.pyc 2025-08-26T20:45:27.9766176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_unary_ufuncs_impl.cpython-39.pyc 2025-08-26T20:45:27.9769566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_util.cpython-39.pyc 2025-08-26T20:45:27.9773041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:28.0491181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\context.py 2025-08-26T20:45:28.0493901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\debug_prims.py 2025-08-26T20:45:28.0497880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\executor.py 2025-08-26T20:45:28.0501902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\rng_prims.py 2025-08-26T20:45:28.0505908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__init__.py 2025-08-26T20:45:28.0523145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__pycache__\context.cpython-39.pyc 2025-08-26T20:45:28.0526791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__pycache__\debug_prims.cpython-39.pyc 2025-08-26T20:45:28.0530413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__pycache__\executor.cpython-39.pyc 2025-08-26T20:45:28.0543240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__pycache__\rng_prims.cpython-39.pyc 2025-08-26T20:45:28.0546771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:28.0554895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims_common\wrappers.py 2025-08-26T20:45:28.0558324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims_common\__init__.py 2025-08-26T20:45:28.0566161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims_common\__pycache__\wrappers.cpython-39.pyc 2025-08-26T20:45:28.0569938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims_common\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:28.0577868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\fft.py 2025-08-26T20:45:28.0581337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\_conversions.py 2025-08-26T20:45:28.0584673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\__init__.py 2025-08-26T20:45:28.0593148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\linalg\__init__.py 2025-08-26T20:45:28.0599996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\linalg\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:28.0607779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\nn\__init__.py 2025-08-26T20:45:28.0614328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\nn\functional\__init__.py 2025-08-26T20:45:28.0621912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\nn\functional\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:28.0629862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\nn\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:28.0646657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\special\__init__.py 2025-08-26T20:45:28.0653695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\special\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:28.0661546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\__pycache__\fft.cpython-39.pyc 2025-08-26T20:45:28.0665217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\__pycache__\_conversions.cpython-39.pyc 2025-08-26T20:45:28.0668771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:28.0688562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\cli_function_profiler.py 2025-08-26T20:45:28.0692097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\compile_time_profiler.py 2025-08-26T20:45:28.0695506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\__init__.py 2025-08-26T20:45:28.0710846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\__pycache__\cli_function_profiler.cpython-39.pyc 2025-08-26T20:45:28.0714328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\__pycache__\compile_time_profiler.cpython-39.pyc 2025-08-26T20:45:28.0717589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:28.0734781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\fake_impls.py 2025-08-26T20:45:28.0738682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\fake_tensor.py 2025-08-26T20:45:28.0743164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\fake_utils.py 2025-08-26T20:45:28.0756590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\functional_tensor.py 2025-08-26T20:45:28.0760017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\meta_utils.py 2025-08-26T20:45:28.0764247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\schema_check_mode.py 2025-08-26T20:45:28.0767830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\_fake_tensor_utils.py 2025-08-26T20:45:28.0771154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__init__.py 2025-08-26T20:45:28.0779429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\fake_impls.cpython-39.pyc 2025-08-26T20:45:28.0783144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\fake_tensor.cpython-39.pyc 2025-08-26T20:45:28.0787289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\fake_utils.cpython-39.pyc 2025-08-26T20:45:28.0800243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\functional_tensor.cpython-39.pyc 2025-08-26T20:45:28.0803733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\meta_utils.cpython-39.pyc 2025-08-26T20:45:28.0807716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\schema_check_mode.cpython-39.pyc 2025-08-26T20:45:28.0811363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\_fake_tensor_utils.cpython-39.pyc 2025-08-26T20:45:28.0814881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:28.0823137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\__init__.py 2025-08-26T20:45:28.0828757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\version.py 2025-08-26T20:45:28.0832211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\_structures.py 2025-08-26T20:45:28.0835554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\__init__.py 2025-08-26T20:45:28.0852533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\__pycache__\version.cpython-39.pyc 2025-08-26T20:45:28.0856429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\__pycache__\_structures.cpython-39.pyc 2025-08-26T20:45:28.0859899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:28.0877516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:28.0885838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\functional.cpython-39.pyc 2025-08-26T20:45:28.0890144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\hub.cpython-39.pyc 2025-08-26T20:45:28.0893701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\library.cpython-39.pyc 2025-08-26T20:45:28.0907604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\overrides.cpython-39.pyc 2025-08-26T20:45:28.0912958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\quasirandom.cpython-39.pyc 2025-08-26T20:45:28.0916471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\random.cpython-39.pyc 2025-08-26T20:45:28.0919885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\return_types.cpython-39.pyc 2025-08-26T20:45:28.0923401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\serialization.cpython-39.pyc 2025-08-26T20:45:28.0927297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\storage.cpython-39.pyc 2025-08-26T20:45:28.0931267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\torch_version.cpython-39.pyc 2025-08-26T20:45:28.0934928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\types.cpython-39.pyc 2025-08-26T20:45:28.0938574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\version.cpython-39.pyc 2025-08-26T20:45:28.0942542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_appdirs.cpython-39.pyc 2025-08-26T20:45:28.0946280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_classes.cpython-39.pyc 2025-08-26T20:45:28.0950432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_compile.cpython-39.pyc 2025-08-26T20:45:28.0954423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_custom_ops.cpython-39.pyc 2025-08-26T20:45:28.0958162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_environment.cpython-39.pyc 2025-08-26T20:45:28.0971444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_guards.cpython-39.pyc 2025-08-26T20:45:28.0975282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_jit_internal.cpython-39.pyc 2025-08-26T20:45:28.0979062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_linalg_utils.cpython-39.pyc 2025-08-26T20:45:28.0982541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_lobpcg.cpython-39.pyc 2025-08-26T20:45:28.1019431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_lowrank.cpython-39.pyc 2025-08-26T20:45:28.1022977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_meta_registrations.cpython-39.pyc 2025-08-26T20:45:28.1027886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_namedtensor_internals.cpython-39.pyc 2025-08-26T20:45:28.1031467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_ops.cpython-39.pyc 2025-08-26T20:45:28.1039444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_python_dispatcher.cpython-39.pyc 2025-08-26T20:45:28.1043169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_size_docs.cpython-39.pyc 2025-08-26T20:45:28.1046916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_sources.cpython-39.pyc 2025-08-26T20:45:28.1050284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_storage_docs.cpython-39.pyc 2025-08-26T20:45:28.1053843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_streambase.cpython-39.pyc 2025-08-26T20:45:28.1057297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_tensor.cpython-39.pyc 2025-08-26T20:45:28.1061497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_tensor_docs.cpython-39.pyc 2025-08-26T20:45:28.1066146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_tensor_str.cpython-39.pyc 2025-08-26T20:45:28.1069998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_thread_safe_fork.cpython-39.pyc 2025-08-26T20:45:28.1083294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_torch_docs.cpython-39.pyc 2025-08-26T20:45:28.1089804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_utils.cpython-39.pyc 2025-08-26T20:45:28.1093736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_utils_internal.cpython-39.pyc 2025-08-26T20:45:28.1097402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_VF.cpython-39.pyc 2025-08-26T20:45:28.1101031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_vmap_internals.cpython-39.pyc 2025-08-26T20:45:28.1104575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_weights_only_unpickler.cpython-39.pyc 2025-08-26T20:45:28.1108341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\__config__.cpython-39.pyc 2025-08-26T20:45:28.1111978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\__future__.cpython-39.pyc 2025-08-26T20:45:28.1135336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:28.1143576Z 13457 File(s) copied 2025-08-26T20:45:28.7708644Z ********************************************************************** 2025-08-26T20:45:28.7709213Z ** Visual Studio 2022 Developer Command Prompt v17.12.10 2025-08-26T20:45:28.7709580Z ** Copyright (c) 2022 Microsoft Corporation 2025-08-26T20:45:28.7709921Z ********************************************************************** 2025-08-26T20:45:29.2678913Z [vcvarsall.bat] Environment initialized for: 'x64' 2025-08-26T20:45:29.2713148Z 2025-08-26T20:45:29.2713498Z (base) C:\actions-runner\_work\pytorch\pytorch>popd 2025-08-26T20:45:29.2717392Z 2025-08-26T20:45:29.2717643Z (base) C:\actions-runner\_work\pytorch\pytorch>set DISTUTILS_USE_SDK=1 2025-08-26T20:45:29.2720303Z 2025-08-26T20:45:29.2720614Z (base) C:\actions-runner\_work\pytorch\pytorch>if not "0" == "1" goto cuda_build_end 2025-08-26T20:45:29.2723070Z 2025-08-26T20:45:29.2723757Z (base) C:\actions-runner\_work\pytorch\pytorch>set PYTHONPATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build; 2025-08-26T20:45:29.2726278Z 2025-08-26T20:45:29.2726549Z (base) C:\actions-runner\_work\pytorch\pytorch>set 2025-08-26T20:45:29.2893729Z ACTIONS_ID_TOKEN_REQUEST_TOKEN=*** 2025-08-26T20:45:29.2894881Z ACTIONS_ID_TOKEN_REQUEST_URL=https://run-actions-1-azure-eastus.actions.githubusercontent.com/119//idtoken/403c8e96-de86-4002-bfa2-f61cede70191/abe90e36-50e7-5c06-96fd-b73c422c141f?api-version=2.0 2025-08-26T20:45:29.2896129Z ACTIONS_RUNNER_HOOK_JOB_COMPLETED=C:\actions-runner\jobcompleted.ps1 2025-08-26T20:45:29.2896655Z ALLUSERSPROFILE=C:\ProgramData 2025-08-26T20:45:29.2897090Z ALPINE_IMAGE=308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-08-26T20:45:29.2897514Z APPDATA=C:\Users\runneruser\AppData\Roaming 2025-08-26T20:45:29.2897825Z AWS_DEFAULT_REGION=us-east-1 2025-08-26T20:45:29.2898062Z AWS_EXECUTION_ENV=EC2 2025-08-26T20:45:29.2898300Z BUILD_ENVIRONMENT=win-vs2022-cpu-py3 2025-08-26T20:45:29.2898554Z CI=true 2025-08-26T20:45:29.2898743Z CommandPromptType=Native 2025-08-26T20:45:29.2899024Z COMMONPROGRAMFILES=C:\Program Files\Common Files 2025-08-26T20:45:29.2899366Z COMPUTERNAME=EC2AMAZ-TE6SPGV 2025-08-26T20:45:29.2899623Z COMSPEC=C:\Windows\system32\cmd.exe 2025-08-26T20:45:29.2900017Z CONDA_BUILD=C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:45:29.2900414Z CONDA_DEFAULT_ENV=base 2025-08-26T20:45:29.2900672Z CONDA_EXE=C:\Jenkins\Miniconda3\Scripts\conda.exe 2025-08-26T20:45:29.2901081Z CONDA_INSTALL=C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:45:29.2901492Z CONDA_PARENT_DIR=C:\Jenkins 2025-08-26T20:45:29.2901744Z CONDA_PREFIX=C:\Jenkins\Miniconda3 2025-08-26T20:45:29.2902010Z CONDA_PROMPT_MODIFIER=(base) 2025-08-26T20:45:29.2902334Z CONDA_PYTHON_EXE=C:\Jenkins\Miniconda3\python.exe 2025-08-26T20:45:29.2902797Z CONDA_RUN=C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:45:29.2903241Z CONDA_SHLVL=1 2025-08-26T20:45:29.2903442Z CONTINUE_THROUGH_ERROR=True 2025-08-26T20:45:29.2903783Z CUDA_PATH=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.9 2025-08-26T20:45:29.2904283Z CUDA_PATH_V12_6=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-08-26T20:45:29.2904772Z CUDA_PATH_V12_8=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.8 2025-08-26T20:45:29.2905428Z CUDA_PATH_V12_9=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.9 2025-08-26T20:45:29.2905801Z CUDA_VERSION=cpu 2025-08-26T20:45:29.2906046Z ChocolateyInstall=C:\ProgramData\chocolatey 2025-08-26T20:45:29.2906427Z CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files 2025-08-26T20:45:29.2906892Z CommonProgramW6432=C:\Program Files\Common Files 2025-08-26T20:45:29.2907373Z DevEnvDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\ 2025-08-26T20:45:29.2907801Z DISTUTILS_USE_SDK=1 2025-08-26T20:45:29.2908061Z DriverData=C:\Windows\System32\Drivers\DriverData 2025-08-26T20:45:29.2908413Z EC2LAUNCH_TELEMETRY=1 2025-08-26T20:45:29.2908807Z ExtensionSdkDir=C:\Program Files (x86)\Microsoft SDKs\Windows Kits\10\ExtensionSDKs 2025-08-26T20:45:29.2911139Z EXTERNAL_INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um 2025-08-26T20:45:29.2913342Z Framework40Version=v4.0 2025-08-26T20:45:29.2913620Z FrameworkDir=C:\Windows\Microsoft.NET\Framework64\ 2025-08-26T20:45:29.2914010Z FrameworkDir64=C:\Windows\Microsoft.NET\Framework64\ 2025-08-26T20:45:29.2914387Z FrameworkVersion=v4.0.30319 2025-08-26T20:45:29.2914635Z FrameworkVersion64=v4.0.30319 2025-08-26T20:45:29.2914916Z GITHUB_ACTION=test 2025-08-26T20:45:29.2915122Z GITHUB_ACTIONS=true 2025-08-26T20:45:29.2915316Z GITHUB_ACTION_REF= 2025-08-26T20:45:29.2915524Z GITHUB_ACTION_REPOSITORY= 2025-08-26T20:45:29.2915764Z GITHUB_ACTOR=pytorchmergebot 2025-08-26T20:45:29.2916059Z GITHUB_ACTOR_ID=97764156 2025-08-26T20:45:29.2916318Z GITHUB_API_URL=https://api.github.com 2025-08-26T20:45:29.2916589Z GITHUB_BASE_REF= 2025-08-26T20:45:29.2917057Z GITHUB_ENV=C:\actions-runner\_work\_temp\_runner_file_commands\set_env_ec18ff38-328e-48c7-b5ae-7acf64527718 2025-08-26T20:45:29.2917585Z GITHUB_EVENT_NAME=push 2025-08-26T20:45:29.2917945Z GITHUB_EVENT_PATH=C:\actions-runner\_work\_temp\_github_workflow\event.json 2025-08-26T20:45:29.2918404Z GITHUB_GRAPHQL_URL=https://api.github.com/graphql 2025-08-26T20:45:29.2918720Z GITHUB_HEAD_REF= 2025-08-26T20:45:29.2918911Z GITHUB_JOB=test 2025-08-26T20:45:29.2919389Z GITHUB_OUTPUT=C:\actions-runner\_work\_temp\_runner_file_commands\set_output_ec18ff38-328e-48c7-b5ae-7acf64527718 2025-08-26T20:45:29.2920240Z GITHUB_PATH=C:\actions-runner\_work\_temp\_runner_file_commands\add_path_ec18ff38-328e-48c7-b5ae-7acf64527718 2025-08-26T20:45:29.2920771Z GITHUB_REF=refs/heads/main 2025-08-26T20:45:29.2921046Z GITHUB_REF_NAME=main 2025-08-26T20:45:29.2921271Z GITHUB_REF_PROTECTED=true 2025-08-26T20:45:29.2921507Z GITHUB_REF_TYPE=branch 2025-08-26T20:45:29.2921733Z GITHUB_REPOSITORY=pytorch/pytorch 2025-08-26T20:45:29.2922006Z GITHUB_REPOSITORY_ID=65600975 2025-08-26T20:45:29.2922252Z GITHUB_REPOSITORY_OWNER=pytorch 2025-08-26T20:45:29.2922517Z GITHUB_REPOSITORY_OWNER_ID=21003710 2025-08-26T20:45:29.2922782Z GITHUB_RETENTION_DAYS=90 2025-08-26T20:45:29.2923000Z GITHUB_RUN_ATTEMPT=1 2025-08-26T20:45:29.2923213Z GITHUB_RUN_ID=17248463647 2025-08-26T20:45:29.2923431Z GITHUB_RUN_NUMBER=141812 2025-08-26T20:45:29.2923671Z GITHUB_SERVER_URL=https://github.com 2025-08-26T20:45:29.2923982Z GITHUB_SHA=262640fd220236042fbf4443cc163c8838c84c3d 2025-08-26T20:45:29.2924573Z GITHUB_STATE=C:\actions-runner\_work\_temp\_runner_file_commands\save_state_ec18ff38-328e-48c7-b5ae-7acf64527718 2025-08-26T20:45:29.2925483Z GITHUB_STEP_SUMMARY=C:\actions-runner\_work\_temp\_runner_file_commands\step_summary_ec18ff38-328e-48c7-b5ae-7acf64527718 2025-08-26T20:45:29.2926424Z GITHUB_TRIGGERING_ACTOR=pytorchmergebot 2025-08-26T20:45:29.2926717Z GITHUB_WORKFLOW=trunk 2025-08-26T20:45:29.2927129Z GITHUB_WORKFLOW_REF=pytorch/pytorch/.github/workflows/trunk.yml@refs/heads/main 2025-08-26T20:45:29.2927657Z GITHUB_WORKFLOW_SHA=262640fd220236042fbf4443cc163c8838c84c3d 2025-08-26T20:45:29.2928070Z GITHUB_WORKSPACE=C:\actions-runner\_work\pytorch\pytorch 2025-08-26T20:45:29.2928409Z GIT_DEFAULT_BRANCH=main 2025-08-26T20:45:29.2928621Z HOME=C:\Users\runneruser 2025-08-26T20:45:29.2930695Z INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um 2025-08-26T20:45:29.2933206Z INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-08-26T20:45:29.2933819Z INSTALL_WINDOWS_SDK=1 2025-08-26T20:45:29.2934034Z is_x64_arch=true 2025-08-26T20:45:29.2934228Z JOB_ID=48947911988 2025-08-26T20:45:29.2934576Z JOB_NAME=win-vs2022-cpu-py3 / test (default, 1, 3, windows.4xlarge.nonephemeral) 2025-08-26T20:45:29.2935824Z LIB=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x64;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64;C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64;C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64 2025-08-26T20:45:29.2938257Z LIBPATH=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x86\store\references;C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.19041.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.19041.0;C:\Windows\Microsoft.NET\Framework64\v4.0.30319 2025-08-26T20:45:29.2939882Z LOCALAPPDATA=C:\Users\runneruser\AppData\Local 2025-08-26T20:45:29.2940289Z NETFXSDKDir=C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\ 2025-08-26T20:45:29.2940638Z NO_TD=False 2025-08-26T20:45:29.2940840Z NO_TEST_TIMEOUT=False 2025-08-26T20:45:29.2941054Z NUMBER_OF_PROCESSORS=16 2025-08-26T20:45:29.2941277Z NUM_TEST_SHARDS=3 2025-08-26T20:45:29.2941509Z OLDPWD=C:/17248463647/build-results 2025-08-26T20:45:29.2941762Z OS=Windows_NT 2025-08-26T20:45:29.2949506Z PATH=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\Extensions\Microsoft\CodeCoverage.Console;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\\x64;C:\Program Files (x86)\Windows Kits\10\bin\\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\\MSBuild\Current\Bin\amd64;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\;C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\Llvm\x64\bin;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\Linux\bin\ConnectionManagerExe 2025-08-26T20:45:29.2958966Z PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC 2025-08-26T20:45:29.2959419Z Platform=x64 2025-08-26T20:45:29.2959632Z PROCESSOR_ARCHITECTURE=AMD64 2025-08-26T20:45:29.2960028Z PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 85 Stepping 7, GenuineIntel 2025-08-26T20:45:29.2960439Z PROCESSOR_LEVEL=6 2025-08-26T20:45:29.2960651Z PROCESSOR_REVISION=5507 2025-08-26T20:45:29.2960886Z PROGRAMFILES=C:\Program Files 2025-08-26T20:45:29.2961185Z PROJECT_DIR=C:/actions-runner/_work/pytorch/pytorch 2025-08-26T20:45:29.2961606Z PROJECT_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch 2025-08-26T20:45:29.2961945Z PROMPT=(base) $P$G 2025-08-26T20:45:29.2962190Z PR_NUMBER= 2025-08-26T20:45:29.2962654Z PSModulePath=C:\Windows\system32\WindowsPowerShell\v1.0\Modules;C:\Program Files\WindowsPowerShell\Modules 2025-08-26T20:45:29.2963220Z PUBLIC=C:\Users\Public 2025-08-26T20:45:29.2963710Z *** 2025-08-26T20:45:29.2964024Z PYTHONPATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build; 2025-08-26T20:45:29.2964437Z PYTHON_VERSION=3.9 2025-08-26T20:45:29.2964702Z PYTORCH_FINAL_PACKAGE_DIR=C:/17248463647/build-results/ 2025-08-26T20:45:29.2965186Z PYTORCH_FINAL_PACKAGE_DIR_WIN=C:\17248463647\build-results\ 2025-08-26T20:45:29.2965613Z PYTORCH_TEST_CUDA_MEM_LEAK_CHECK=0 2025-08-26T20:45:29.2965906Z PYTORCH_TEST_RERUN_DISABLED_TESTS=0 2025-08-26T20:45:29.2966177Z ProgramData=C:\ProgramData 2025-08-26T20:45:29.2966444Z ProgramFiles(x86)=C:\Program Files (x86) 2025-08-26T20:45:29.2966739Z ProgramW6432=C:\Program Files 2025-08-26T20:45:29.2977298Z REENABLED_ISSUES= 2025-08-26T20:45:29.2977547Z RUNNER_ARCH=X64 2025-08-26T20:45:29.2977766Z RUNNER_ENVIRONMENT=self-hosted 2025-08-26T20:45:29.2978048Z RUNNER_NAME=i-0d7df880c5a372abc 2025-08-26T20:45:29.2978290Z RUNNER_OS=Windows 2025-08-26T20:45:29.2978533Z RUNNER_TEMP=C:\actions-runner\_work\_temp 2025-08-26T20:45:29.2978860Z RUNNER_TOOL_CACHE=C:\actions-runner\_work\_tool 2025-08-26T20:45:29.2979273Z RUNNER_TRACKING_ID=github_eb07ce28-da78-4b2c-8d97-83c22f82fe30 2025-08-26T20:45:29.2979725Z RUNNER_WORKSPACE=C:\actions-runner\_work\pytorch 2025-08-26T20:45:29.2980290Z SCRIPT_HELPERS_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-08-26T20:45:29.2980815Z SHA1=262640fd220236042fbf4443cc163c8838c84c3d 2025-08-26T20:45:29.2981107Z SHARD_NUMBER=1 2025-08-26T20:45:29.2981303Z SHLVL=2 2025-08-26T20:45:29.2981554Z SSL_CERT_FILE=C:\Jenkins\Miniconda3\Library\ssl\cacert.pem 2025-08-26T20:45:29.2981909Z SYSTEMDRIVE=C: 2025-08-26T20:45:29.2982103Z SYSTEMROOT=C:\Windows 2025-08-26T20:45:29.2982353Z TEMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:45:29.2982643Z TERM=xterm-256color 2025-08-26T20:45:29.2982851Z TEST_CONFIG=default 2025-08-26T20:45:29.2983106Z TEST_DIR=C:/actions-runner/_work/pytorch/pytorch/test 2025-08-26T20:45:29.2983511Z TEST_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch\test 2025-08-26T20:45:29.2983859Z TEST_SHOWLOCALS=False 2025-08-26T20:45:29.2984090Z TMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:45:29.2984402Z TMPDIR=C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:45:29.2984767Z TMP_DIR=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-08-26T20:45:29.2985206Z TMP_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp 2025-08-26T20:45:29.2985760Z TORCH_CUDA_ARCH_LIST=8.6 2025-08-26T20:45:29.2986061Z TORCH_SERIALIZATION_DEBUG=1 2025-08-26T20:45:29.2986295Z UCRTVersion=10.0.19041.0 2025-08-26T20:45:29.2986605Z UniversalCRTSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-08-26T20:45:29.2986977Z UPDATEFILE=update.finished 2025-08-26T20:45:29.2987216Z USERDOMAIN=EC2AMAZ-TE6SPGV 2025-08-26T20:45:29.2987447Z USERNAME=runneruser 2025-08-26T20:45:29.2987657Z USERPROFILE=C:\Users\runneruser 2025-08-26T20:45:29.2987896Z USE_CUDA=0 2025-08-26T20:45:29.2988292Z VCIDEInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\ 2025-08-26T20:45:29.2988922Z VCINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\ 2025-08-26T20:45:29.2989604Z VCToolsInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\ 2025-08-26T20:45:29.2990448Z VCToolsRedistDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Redist\MSVC\14.42.34433\ 2025-08-26T20:45:29.2990987Z VCToolsVersion=14.42.34433 2025-08-26T20:45:29.2991220Z VC_PRODUCT=BuildTools 2025-08-26T20:45:29.2991478Z VC_VERSION= 2025-08-26T20:45:29.2991652Z VC_YEAR=2022 2025-08-26T20:45:29.2991899Z VERBOSE_ARG='SilentlyContinue' 2025-08-26T20:45:29.2992147Z VERBOSE_TEST_LOGS=False 2025-08-26T20:45:29.2992371Z VisualStudioVersion=17.0 2025-08-26T20:45:29.2992802Z VS170COMNTOOLS=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\ 2025-08-26T20:45:29.2993285Z VSCMD_ARG_app_plat=Desktop 2025-08-26T20:45:29.2993531Z VSCMD_ARG_HOST_ARCH=x64 2025-08-26T20:45:29.2993748Z VSCMD_ARG_TGT_ARCH=x64 2025-08-26T20:45:29.2993960Z VSCMD_VER=17.12.10 2025-08-26T20:45:29.2994301Z VSINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\ 2025-08-26T20:45:29.2994721Z VS_VERSION=17.4.1 2025-08-26T20:45:29.2994926Z WINDIR=C:\Windows 2025-08-26T20:45:29.2995518Z WindowsLibPath=C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.19041.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.19041.0 2025-08-26T20:45:29.2996320Z WindowsSdkBinPath=C:\Program Files (x86)\Windows Kits\10\bin\ 2025-08-26T20:45:29.2996763Z WindowsSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-08-26T20:45:29.2997126Z WindowsSDKLibVersion=10.0.19041.0\ 2025-08-26T20:45:29.2997597Z WindowsSdkVerBinPath=C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\ 2025-08-26T20:45:29.2998096Z WindowsSDKVersion=10.0.19041.0\ 2025-08-26T20:45:29.2998613Z WindowsSDK_ExecutablePath_x64=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\ 2025-08-26T20:45:29.2999399Z WindowsSDK_ExecutablePath_x86=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\ 2025-08-26T20:45:29.3000140Z _=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/test_python_shard.bat 2025-08-26T20:45:29.3000667Z __CONDA_OPENSLL_CERT_FILE_SET="1" 2025-08-26T20:45:29.3000943Z __DOTNET_ADD_64BIT=1 2025-08-26T20:45:29.3001180Z __DOTNET_PREFERRED_BITNESS=64 2025-08-26T20:45:29.3004590Z __VSCMD_PREINIT_PATH=C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps 2025-08-26T20:45:29.3007951Z 2025-08-26T20:45:29.3008240Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T20:45:29.3008648Z echo "setup pytorch env failed" 2025-08-26T20:45:29.3008916Z echo 0 2025-08-26T20:45:29.3009121Z exit /b 2025-08-26T20:45:29.3009301Z ) 2025-08-26T20:45:29.3009392Z 2025-08-26T20:45:29.3009562Z (base) C:\actions-runner\_work\pytorch\pytorch>pushd test 2025-08-26T20:45:29.3009863Z 2025-08-26T20:45:29.3010274Z (base) C:\actions-runner\_work\pytorch\pytorch\test>set GFLAGS_EXE="C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\gflags.exe" 2025-08-26T20:45:29.3010810Z 2025-08-26T20:45:29.3011224Z (base) C:\actions-runner\_work\pytorch\pytorch\test>if "1" == "1" (if exist "C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\gflags.exe" ( 2025-08-26T20:45:29.3011832Z echo Some smoke tests 2025-08-26T20:45:29.3012220Z "C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\gflags.exe" /i python.exe +sls 2025-08-26T20:45:29.3013002Z python C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\run_python_nn_smoketests.py 2025-08-26T20:45:29.3013569Z if ERRORLEVEL 1 goto fail 2025-08-26T20:45:29.3013991Z "C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\gflags.exe" /i python.exe -sls 2025-08-26T20:45:29.3014430Z if ERRORLEVEL 1 goto fail 2025-08-26T20:45:29.3014666Z ) ) 2025-08-26T20:45:29.3014837Z Some smoke tests 2025-08-26T20:45:29.3015192Z Current Registry Settings for python.exe executable are: 00000002 2025-08-26T20:45:29.3015610Z sls - Show Loader Snaps 2025-08-26T20:45:37.7622655Z Checking that torch is available 2025-08-26T20:45:37.7623121Z Command: python -c import torch 2025-08-26T20:45:37.7623390Z Checking that MKL is available 2025-08-26T20:45:37.7623807Z Command: python -c import torch; exit(0 if torch.backends.mkl.is_available() else 1) 2025-08-26T20:45:37.7734649Z Current Registry Settings for python.exe executable are: 00000000 2025-08-26T20:45:37.7748340Z 2025-08-26T20:45:37.7748909Z (base) C:\actions-runner\_work\pytorch\pytorch\test>echo Copying over test times file 2025-08-26T20:45:37.7749565Z Copying over test times file 2025-08-26T20:45:37.7750683Z 2025-08-26T20:45:37.7751447Z (base) C:\actions-runner\_work\pytorch\pytorch\test>robocopy /E "C:\17248463647\build-results\\.additional_ci_files" "C:\actions-runner\_work\pytorch\pytorch\.additional_ci_files" 2025-08-26T20:45:37.7889765Z 2025-08-26T20:45:37.7890412Z ------------------------------------------------------------------------------- 2025-08-26T20:45:37.7896286Z ROBOCOPY :: Robust File Copy for Windows 2025-08-26T20:45:37.7896789Z ------------------------------------------------------------------------------- 2025-08-26T20:45:37.7897062Z 2025-08-26T20:45:37.7897197Z Started : Tuesday, August 26, 2025 8:45:37 PM 2025-08-26T20:45:37.7897573Z Source : C:\17248463647\build-results\.additional_ci_files\ 2025-08-26T20:45:37.7898054Z Dest : C:\actions-runner\_work\pytorch\pytorch\.additional_ci_files\ 2025-08-26T20:45:37.7898361Z 2025-08-26T20:45:37.7898443Z Files : *.* 2025-08-26T20:45:37.7898643Z 2025-08-26T20:45:37.7898878Z Options : *.* /S /E /DCOPY:DA /COPY:DAT /R:1000000 /W:30 2025-08-26T20:45:37.7899137Z 2025-08-26T20:45:37.7899287Z ------------------------------------------------------------------------------ 2025-08-26T20:45:37.7899654Z 2025-08-26T20:45:37.7906083Z 2 C:\17248463647\build-results\.additional_ci_files\ 2025-08-26T20:45:37.7906877Z *EXTRA File 79455 td_results.json 2025-08-26T20:45:37.7914980Z New File 3.8 m test-class-times.json 2025-08-26T20:45:37.7917853Z 12% 2025-08-26T20:45:37.7921259Z 25% 2025-08-26T20:45:37.7924067Z 38% 2025-08-26T20:45:37.7927519Z 51% 2025-08-26T20:45:37.7930349Z 64% 2025-08-26T20:45:37.7933635Z 77% 2025-08-26T20:45:37.7936168Z 90% 2025-08-26T20:45:37.7938542Z 100% 2025-08-26T20:45:37.7948330Z New File 1.0 m test-times.json 2025-08-26T20:45:37.7949679Z 23% 2025-08-26T20:45:37.7951223Z 47% 2025-08-26T20:45:37.7952982Z 70% 2025-08-26T20:45:37.7954070Z 94% 2025-08-26T20:45:37.7956105Z 100% 2025-08-26T20:45:37.7956486Z 2025-08-26T20:45:37.7956670Z ------------------------------------------------------------------------------ 2025-08-26T20:45:37.7956956Z 2025-08-26T20:45:37.7958059Z Total Copied Skipped Mismatch FAILED Extras 2025-08-26T20:45:37.7958911Z Dirs : 1 0 1 0 0 0 2025-08-26T20:45:37.7959805Z Files : 2 2 0 0 0 1 2025-08-26T20:45:37.7960718Z Bytes : 4.93 m 4.93 m 0 0 0 77.5 k 2025-08-26T20:45:37.7961619Z Times : 0:00:00 0:00:00 0:00:00 0:00:00 2025-08-26T20:45:37.7961868Z 2025-08-26T20:45:37.7962402Z 2025-08-26T20:45:37.7963564Z Speed : 861745166 Bytes/sec. 2025-08-26T20:45:37.7964384Z Speed : 49309.453 MegaBytes/min. 2025-08-26T20:45:37.7964771Z Ended : Tuesday, August 26, 2025 8:45:37 PM 2025-08-26T20:45:37.7965133Z 2025-08-26T20:45:37.7979228Z 2025-08-26T20:45:37.7979516Z (base) C:\actions-runner\_work\pytorch\pytorch\test>echo Run nn tests 2025-08-26T20:45:37.7980025Z Run nn tests 2025-08-26T20:45:37.7981224Z 2025-08-26T20:45:37.7981783Z (base) C:\actions-runner\_work\pytorch\pytorch\test>python run_test.py --exclude-jit-executor --exclude-distributed-tests --shard "1" "3" --verbose 2025-08-26T20:45:51.1016875Z Found test times from artifacts 2025-08-26T20:45:51.1701875Z Found test times from artifacts 2025-08-26T20:45:51.1722258Z Running all tests 2025-08-26T20:45:51.2318114Z Running parallel tests on 3 processes 2025-08-26T20:45:51.2333027Z Name: tests to run (est. time: 87.65min) 2025-08-26T20:45:51.2333338Z Serial tests (49): 2025-08-26T20:45:51.2333605Z inductor/test_flex_attention 1/1 2025-08-26T20:45:51.2333884Z test_ci_sanity_check_fail 1/1 2025-08-26T20:45:51.2334156Z doctests 1/1 2025-08-26T20:45:51.2334538Z inductor/test_max_autotune 1/1 2025-08-26T20:45:51.2334823Z inductor/test_benchmark_fusion 1/1 2025-08-26T20:45:51.2335109Z inductor/test_cutlass_backend 1/1 2025-08-26T20:45:51.2335412Z inductor/test_distributed_patterns 1/1 2025-08-26T20:45:51.2335704Z dynamo/test_fake_distributed 1/1 2025-08-26T20:45:51.2335967Z test_utils 1/1 2025-08-26T20:45:51.2336160Z test_fx 1/1 2025-08-26T20:45:51.2336365Z test_transformers_privateuse1 1/1 2025-08-26T20:45:51.2336655Z test_cpp_api_parity 1/1 2025-08-26T20:45:51.2336894Z test_extension_utils 1/1 2025-08-26T20:45:51.2337135Z test_openreg 1/1 2025-08-26T20:45:51.2337342Z test_show_pickle 1/1 2025-08-26T20:45:51.2337568Z test_torch 1/1 2025-08-26T20:45:51.2337767Z test_tensorexpr 1/1 2025-08-26T20:45:51.2337984Z test_overrides 1/1 2025-08-26T20:45:51.2338210Z test_namedtuple_return_api 1/1 2025-08-26T20:45:51.2338482Z test_multiprocessing 1/2 2025-08-26T20:45:51.2338726Z test_multiprocessing 2/2 2025-08-26T20:45:51.2338982Z test_autograd_fallback 1/1 2025-08-26T20:45:51.2339226Z test_reductions 1/1 2025-08-26T20:45:51.2339442Z test_fake_tensor 1/1 2025-08-26T20:45:51.2339682Z test_python_dispatch 1/1 2025-08-26T20:45:51.2339913Z test_autocast 1/1 2025-08-26T20:45:51.2340130Z test_jit_disabled 1/1 2025-08-26T20:45:51.2340365Z test_tensor_creation_ops 1/1 2025-08-26T20:45:51.2340682Z test_cpp_extensions_mtia_backend 1/1 2025-08-26T20:45:51.2340956Z test_nn 1/1 2025-08-26T20:45:51.2341183Z functorch/test_memory_efficient_fusion 1/1 2025-08-26T20:45:51.2341514Z test_cpp_extensions_stream_and_event 1/1 2025-08-26T20:45:51.2341804Z test_dispatch 1/1 2025-08-26T20:45:51.2342021Z test_native_mha 1/1 2025-08-26T20:45:51.2342256Z test_sort_and_select 1/1 2025-08-26T20:45:51.2342510Z test_cpp_extensions_jit 1/1 2025-08-26T20:45:51.2342763Z nn/test_pooling 1/1 2025-08-26T20:45:51.2342977Z nn/test_convolution 1/1 2025-08-26T20:45:51.2343377Z test_multiprocessing_spawn 1/1 2025-08-26T20:45:51.2343648Z test_cuda_primary_ctx 1/1 2025-08-26T20:45:51.2343900Z test_mobile_optimizer 1/1 2025-08-26T20:45:51.2344140Z test_cuda_trace 1/1 2025-08-26T20:45:51.2344368Z test_cuda_nvml_based_avail 1/1 2025-08-26T20:45:51.2344625Z test_spectral_ops 1/1 2025-08-26T20:45:51.2344882Z distributions/test_distributions 1/1 2025-08-26T20:45:51.2345173Z test_cpp_extensions_aot_no_ninja 1/1 2025-08-26T20:45:51.2345452Z test_autoload_disable 1/1 2025-08-26T20:45:51.2345699Z test_autoload_enable 1/1 2025-08-26T20:45:51.2345947Z test_cpp_extensions_aot_ninja 1/1 2025-08-26T20:45:51.2346219Z Parallel tests (107): 2025-08-26T20:45:51.2346438Z inductor/test_aot_inductor 1/1 2025-08-26T20:45:51.2347127Z inductor/test_extension_backend 1/1 2025-08-26T20:45:51.2347415Z inductor/test_kernel_benchmark 1/1 2025-08-26T20:45:51.2347715Z inductor/test_pattern_matcher 1/1 2025-08-26T20:45:51.2347992Z inductor/test_codecache 1/1 2025-08-26T20:45:51.2348268Z inductor/test_cudagraph_trees 1/1 2025-08-26T20:45:51.2348532Z inductor/test_minifier 1/1 2025-08-26T20:45:51.2348780Z inductor/test_padding 1/1 2025-08-26T20:45:51.2349024Z dynamo/test_modes 1/1 2025-08-26T20:45:51.2349244Z dynamo/test_logging 1/1 2025-08-26T20:45:51.2349484Z inductor/test_torchbind 1/1 2025-08-26T20:45:51.2349728Z dynamo/test_trace_rules 1/1 2025-08-26T20:45:51.2349982Z inductor/test_flex_decoding 1/1 2025-08-26T20:45:51.2350257Z inductor/test_provenance_tracing 1/1 2025-08-26T20:45:51.2350555Z inductor/test_external_callables 1/1 2025-08-26T20:45:51.2350828Z inductor/test_halide 1/1 2025-08-26T20:45:51.2351086Z inductor/test_cpp_wrapper_hipify 1/1 2025-08-26T20:45:51.2351379Z export/test_retraceability 1/1 2025-08-26T20:45:51.2351645Z inductor/test_indexing 1/1 2025-08-26T20:45:51.2351901Z inductor/test_triton_cpu_backend 1/1 2025-08-26T20:45:51.2352246Z inductor/test_ck_backend 1/1 2025-08-26T20:45:51.2352524Z inductor/test_op_completeness 1/1 2025-08-26T20:45:51.2352802Z inductor/test_autoheuristic 1/1 2025-08-26T20:45:51.2353102Z inductor/test_move_constructors_to_cuda 1/1 2025-08-26T20:45:51.2353399Z dynamo/test_decorators 1/1 2025-08-26T20:45:51.2353664Z dynamo/test_recompiles 1/1 2025-08-26T20:45:51.2353934Z inductor/test_cooperative_reductions 1/1 2025-08-26T20:45:51.2354233Z inductor/test_smoke 1/1 2025-08-26T20:45:51.2354473Z inductor/test_debug_trace 1/1 2025-08-26T20:45:51.2354742Z inductor/test_aot_inductor_package 1/1 2025-08-26T20:45:51.2355047Z inductor/test_kernel_optimization 1/1 2025-08-26T20:45:51.2355334Z dynamo/test_buffers_override 1/1 2025-08-26T20:45:51.2355612Z inductor/test_combo_kernels 1/1 2025-08-26T20:45:51.2355890Z inductor/test_static_cuda_launcher 1/1 2025-08-26T20:45:51.2356182Z dynamo/test_ctx_manager 1/1 2025-08-26T20:45:51.2356427Z dynamo/test_nops 1/1 2025-08-26T20:45:51.2356679Z inductor/test_decompose_mem_bound_mm 1/1 2025-08-26T20:45:51.2356958Z dynamo/test_view 1/1 2025-08-26T20:45:51.2357197Z inductor/test_inplacing_pass 1/1 2025-08-26T20:45:51.2357481Z inductor/test_op_dtype_prop 1/1 2025-08-26T20:45:51.2357742Z inductor/test_online_softmax 1/1 2025-08-26T20:45:51.2358125Z inductor/test_custom_post_grad_passes 1/1 2025-08-26T20:45:51.2358474Z dynamo/test_graph_region_tracker 1/1 2025-08-26T20:45:51.2358773Z inductor/test_cpu_select_algorithm 1/1 2025-08-26T20:45:51.2359051Z dynamo/test_config 1/1 2025-08-26T20:45:51.2359292Z dynamo/test_export_mutations 1/1 2025-08-26T20:45:51.2359560Z inductor/test_config 1/1 2025-08-26T20:45:51.2359804Z dynamo/test_compile 1/1 2025-08-26T20:45:51.2360034Z dynamo/test_dicts 1/1 2025-08-26T20:45:51.2360269Z dynamo/test_autograd_function 1/1 2025-08-26T20:45:51.2360538Z dynamo/test_after_aot 1/1 2025-08-26T20:45:51.2360903Z inductor/test_layout_optim 1/1 2025-08-26T20:45:51.2361173Z dynamo/test_list 1/1 2025-08-26T20:45:51.2361396Z dynamo/test_profiler 1/1 2025-08-26T20:45:51.2361659Z inductor/test_minifier_isolate 1/1 2025-08-26T20:45:51.2361951Z inductor/test_binary_folding 1/1 2025-08-26T20:45:51.2362223Z dynamo/test_export 1/1 2025-08-26T20:45:51.2362455Z dynamo/test_optimizers 1/1 2025-08-26T20:45:51.2362723Z inductor/test_unbacked_symints 1/1 2025-08-26T20:45:51.2363009Z inductor/test_loop_ordering 1/1 2025-08-26T20:45:51.2363271Z export/test_nativert 1/1 2025-08-26T20:45:51.2363519Z inductor/test_mmdecomp 1/1 2025-08-26T20:45:51.2363878Z dynamo/test_compiler_bisector 1/1 2025-08-26T20:45:51.2364162Z dynamo/test_bytecode_utils 1/1 2025-08-26T20:45:51.2364466Z dynamo/test_exceptions 1/1 2025-08-26T20:45:51.2364792Z export/test_experimental 1/1 2025-08-26T20:45:51.2365048Z dynamo/test_minifier 1/1 2025-08-26T20:45:51.2365300Z dynamo/test_exc 1/1 2025-08-26T20:45:51.2365532Z dynamo/test_generator 1/1 2025-08-26T20:45:51.2365794Z dynamo/test_python_autograd 1/1 2025-08-26T20:45:51.2366052Z test_decomp 13/17 2025-08-26T20:45:51.2366259Z test_mkldnn_verbose 1/1 2025-08-26T20:45:51.2366501Z test_utils_config_module 1/1 2025-08-26T20:45:51.2366740Z test_ops_jit 1/2 2025-08-26T20:45:51.2366949Z test_ops_jit 2/2 2025-08-26T20:45:51.2367151Z test_modules 1/2 2025-08-26T20:45:51.2367361Z torch_np/test_dtype 1/1 2025-08-26T20:45:51.2367590Z test_datapipe 1/1 2025-08-26T20:45:51.2367800Z test_foreach 1/1 2025-08-26T20:45:51.2368006Z test_flop_counter 1/1 2025-08-26T20:45:51.2368246Z test_expanded_weights 1/1 2025-08-26T20:45:51.2368478Z test_file_check 1/1 2025-08-26T20:45:51.2368713Z test_functionalization 1/1 2025-08-26T20:45:51.2368955Z test_testing 1/1 2025-08-26T20:45:51.2369145Z test_jit 1/1 2025-08-26T20:45:51.2369352Z backends/xeon/test_launch 1/1 2025-08-26T20:45:51.2369671Z functorch/test_ops 1/8 2025-08-26T20:45:51.2369955Z functorch/test_ops 6/8 2025-08-26T20:45:51.2370209Z functorch/test_ops 7/8 2025-08-26T20:45:51.2370449Z test_ops 2/9 2025-08-26T20:45:51.2370631Z test_ops 7/9 2025-08-26T20:45:51.2370815Z test_ops 8/9 2025-08-26T20:45:51.2370999Z xpu/test_gemm 1/1 2025-08-26T20:45:51.2371207Z test_cuda_multigpu 1/1 2025-08-26T20:45:51.2371417Z test_meta 2/4 2025-08-26T20:45:51.2371616Z test_content_store 1/1 2025-08-26T20:45:51.2371838Z test_stateless 1/1 2025-08-26T20:45:51.2372044Z test_numpy_interop 1/1 2025-08-26T20:45:51.2372288Z distributions/test_constraints 1/1 2025-08-26T20:45:51.2372573Z torch_np/test_ufuncs_basic 1/1 2025-08-26T20:45:51.2372837Z test_out_dtype_op 1/1 2025-08-26T20:45:51.2373056Z test_ops_gradients 1/2 2025-08-26T20:45:51.2373300Z test_ops_gradients 2/2 2025-08-26T20:45:51.2373525Z test_ops_fwd_gradients 1/2 2025-08-26T20:45:51.2373788Z test_cuda_expandable_segments 1/1 2025-08-26T20:45:51.2374054Z optim/test_swa_utils 1/1 2025-08-26T20:45:51.2374307Z dynamo/test_nested_graph_breaks 1/1 2025-08-26T20:45:51.2374599Z Name: excluded (est. time: 0.0min) 2025-08-26T20:45:51.2374846Z Serial tests (0): 2025-08-26T20:45:51.2375051Z Parallel tests (0): 2025-08-26T20:45:51.2384885Z Running inductor/test_flex_attention 1/1 ... [2025-08-26 20:45:51.238196] 2025-08-26T20:45:51.2385317Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:45:51.2397240Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_flex_attention.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:45:51.239373] 2025-08-26T20:45:51.2398830Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T20:45:51.2399879Z Ignoring disabled issues: [''] 2025-08-26T20:45:57.5186676Z 2025-08-26T20:45:57.5187622Z inductor/test_flex_attention 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_flex_attention_1.1_eeb81174bdc63a02_.log 2025-08-26T20:45:57.5188359Z 2025-08-26T20:45:57.5194387Z Running test_ci_sanity_check_fail 1/1 ... [2025-08-26 20:45:57.519032] 2025-08-26T20:45:57.5194804Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:45:57.5200634Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ci_sanity_check_fail.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:45:57.519602] 2025-08-26T20:45:57.5201905Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T20:45:57.5202500Z Uploading artifacts took 0.00 seconds 2025-08-26T20:46:16.6100643Z Running doctests 1/1 ... [2025-08-26 20:46:16.609659] 2025-08-26T20:46:17.5509886Z msg = Cannot scrape callname=Library.fallback in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py line=375. 2025-08-26T20:46:17.5510762Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-26T20:46:17.5511328Z Registers the function implementation as the fallback for the given key. 2025-08-26T20:46:17.5511659Z 2025-08-26T20:46:17.5511864Z This function only works for a library with global namespace ("_"). 2025-08-26T20:46:17.5512183Z 2025-08-26T20:46:17.5512254Z Args: 2025-08-26T20:46:17.5512624Z fn: function used as fallback for the given dispatch key or :func:`~fallthrough_kernel` 2025-08-26T20:46:17.5513119Z to register a fallthrough. 2025-08-26T20:46:17.5513636Z dispatch_key: dispatch key that the input function should be registered for. By default, it uses 2025-08-26T20:46:17.5514368Z the dispatch key that the library was created with. 2025-08-26T20:46:17.5514987Z with_keyset: flag controlling if the current dispatcher call keyset should be passed as the first argument 2025-08-26T20:46:17.5515759Z to :attr:`fn` when calling. This should be used to create the appropriate keyset for redispatch calls. 2025-08-26T20:46:17.5516171Z 2025-08-26T20:46:17.5516281Z Example:: 2025-08-26T20:46:17.5516411Z 2025-08-26T20:46:17.5516503Z >>> my_lib = Library("_", "IMPL") 2025-08-26T20:46:17.5516817Z >>> def fallback_kernel(op, *args, **kwargs): 2025-08-26T20:46:17.5517148Z >>> # Handle all autocast ops generically 2025-08-26T20:46:17.5517451Z >>> # ... 2025-08-26T20:46:17.5517709Z >>> my_lib.fallback(fallback_kernel, "Autocast") 2025-08-26T20:46:17.5518023Z 2025-08-26T20:46:17.5518561Z Original Error: IndentationError('expected an indented block', ('', 5, 1, 'my_lib.fallback(fallback_kernel, "Autocast")\n')) 2025-08-26T20:46:17.5519120Z 2025-08-26T20:46:17.5519231Z my_lib.fallback(fallback_kernel, "Autocast") 2025-08-26T20:46:17.5519507Z ^ 2025-08-26T20:46:17.5520074Z msg = Cannot scrape callname=register_fake in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py line=948. 2025-08-26T20:46:17.5520878Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-26T20:46:17.5521407Z Register a FakeTensor implementation ("fake impl") for this operator. 2025-08-26T20:46:17.5521719Z 2025-08-26T20:46:17.5521887Z Also sometimes known as a "meta kernel", "abstract impl". 2025-08-26T20:46:17.5522150Z 2025-08-26T20:46:17.5522421Z An "FakeTensor implementation" specifies the behavior of this operator on 2025-08-26T20:46:17.5522960Z Tensors that carry no data ("FakeTensor"). Given some input Tensors with 2025-08-26T20:46:17.5524393Z certain properties (sizes/strides/storage_offset/device), it specifies 2025-08-26T20:46:17.5524867Z what the properties of the output Tensors are. 2025-08-26T20:46:17.5525099Z 2025-08-26T20:46:17.5525318Z The FakeTensor implementation has the same signature as the operator. 2025-08-26T20:46:17.5525817Z It is run for both FakeTensors and meta tensors. To write a FakeTensor 2025-08-26T20:46:17.5526314Z implementation, assume that all Tensor inputs to the operator are 2025-08-26T20:46:17.5526800Z regular CPU/CUDA/Meta tensors, but they do not have storage, and 2025-08-26T20:46:17.5527274Z you are trying to return regular CPU/CUDA/Meta tensor(s) as output. 2025-08-26T20:46:17.5527778Z The FakeTensor implementation must consist of only PyTorch operations 2025-08-26T20:46:17.5528264Z (and may not directly access the storage or data of any input or 2025-08-26T20:46:17.5528702Z intermediate Tensors). 2025-08-26T20:46:17.5528859Z 2025-08-26T20:46:17.5528993Z This API may be used as a decorator (see examples). 2025-08-26T20:46:17.5529245Z 2025-08-26T20:46:17.5529365Z For a detailed guide on custom ops, please see 2025-08-26T20:46:17.5529813Z https://pytorch.org/tutorials/advanced/custom_ops_landing_page.html 2025-08-26T20:46:17.5530132Z 2025-08-26T20:46:17.5530206Z Args: 2025-08-26T20:46:17.5530509Z op_name: Operator name (along with the overload) or OpOverload object. 2025-08-26T20:46:17.5530913Z func: Fake tensor implementation. 2025-08-26T20:46:17.5531293Z lib (Optional[Library]): Library to register the fake tensor to. 2025-08-26T20:46:17.5531742Z allow_override: Flag controlling if we want to override an 2025-08-26T20:46:17.5532170Z existing registered fake impl. This is by default off, 2025-08-26T20:46:17.5532584Z and will error you're trying to register a fake impl to 2025-08-26T20:46:17.5533009Z an operator that already has a fake impl. This also only 2025-08-26T20:46:17.5533493Z applies if the custom operator was not created via 2025-08-26T20:46:17.5533909Z torch.library.custom_op, as overriding and existing fake 2025-08-26T20:46:17.5534298Z impl is already allowed. 2025-08-26T20:46:17.5534494Z 2025-08-26T20:46:17.5534567Z Examples: 2025-08-26T20:46:17.5534761Z >>> import torch 2025-08-26T20:46:17.5534985Z >>> import numpy as np 2025-08-26T20:46:17.5535236Z >>> from torch import Tensor 2025-08-26T20:46:17.5535482Z >>> 2025-08-26T20:46:17.5535754Z >>> # Example 1: an operator without data-dependent output shape 2025-08-26T20:46:17.5536231Z >>> @torch.library.custom_op("mylib::custom_linear", mutates_args=()) 2025-08-26T20:46:17.5536737Z >>> def custom_linear(x: Tensor, weight: Tensor, bias: Tensor) -> Tensor: 2025-08-26T20:46:17.5537212Z >>> raise NotImplementedError("Implementation goes here") 2025-08-26T20:46:17.5537543Z >>> 2025-08-26T20:46:17.5537803Z >>> @torch.library.register_fake("mylib::custom_linear") 2025-08-26T20:46:17.5538149Z >>> def _(x, weight, bias): 2025-08-26T20:46:17.5538405Z >>> assert x.dim() == 2 2025-08-26T20:46:17.5538672Z >>> assert weight.dim() == 2 2025-08-26T20:46:17.5538943Z >>> assert bias.dim() == 1 2025-08-26T20:46:17.5539237Z >>> assert x.shape[1] == weight.shape[1] 2025-08-26T20:46:17.5539566Z >>> assert weight.shape[0] == bias.shape[0] 2025-08-26T20:46:17.5539887Z >>> assert x.device == weight.device 2025-08-26T20:46:17.5540151Z >>> 2025-08-26T20:46:17.5540352Z >>> return (x @ weight.t()) + bias 2025-08-26T20:46:17.5540612Z >>> 2025-08-26T20:46:17.5540866Z >>> with torch._subclasses.fake_tensor.FakeTensorMode(): 2025-08-26T20:46:17.5541214Z >>> x = torch.randn(2, 3) 2025-08-26T20:46:17.5541474Z >>> w = torch.randn(3, 3) 2025-08-26T20:46:17.5541846Z >>> b = torch.randn(3) 2025-08-26T20:46:17.5542136Z >>> y = torch.ops.mylib.custom_linear(x, w, b) 2025-08-26T20:46:17.5542438Z >>> 2025-08-26T20:46:17.5542623Z >>> assert y.shape == (2, 3) 2025-08-26T20:46:17.5542875Z >>> 2025-08-26T20:46:17.5543124Z >>> # Example 2: an operator with data-dependent output shape 2025-08-26T20:46:17.5543594Z >>> @torch.library.custom_op("mylib::custom_nonzero", mutates_args=()) 2025-08-26T20:46:17.5544030Z >>> def custom_nonzero(x: Tensor) -> Tensor: 2025-08-26T20:46:17.5544337Z >>> x_np = x.numpy(force=True) 2025-08-26T20:46:17.5544662Z >>> res = np.stack(np.nonzero(x_np), axis=1) 2025-08-26T20:46:17.5545015Z >>> return torch.tensor(res, device=x.device) 2025-08-26T20:46:17.5545365Z >>> 2025-08-26T20:46:17.5545620Z >>> @torch.library.register_fake("mylib::custom_nonzero") 2025-08-26T20:46:17.5545961Z >>> def _(x): 2025-08-26T20:46:17.5546233Z >>> # Number of nonzero-elements is data-dependent. 2025-08-26T20:46:17.5546598Z >>> # Since we cannot peek at the data in an fake impl, 2025-08-26T20:46:17.5546984Z >>> # we use the ctx object to construct a new symint that 2025-08-26T20:46:17.5547338Z >>> # represents the data-dependent size. 2025-08-26T20:46:17.5547660Z >>> ctx = torch.library.get_ctx() 2025-08-26T20:46:17.5547956Z >>> nnz = ctx.new_dynamic_size() 2025-08-26T20:46:17.5548238Z >>> shape = [nnz, x.dim()] 2025-08-26T20:46:17.5548555Z >>> result = x.new_empty(shape, dtype=torch.int64) 2025-08-26T20:46:17.5548866Z >>> return result 2025-08-26T20:46:17.5549092Z >>> 2025-08-26T20:46:17.5549349Z >>> from torch.fx.experimental.proxy_tensor import make_fx 2025-08-26T20:46:17.5549698Z >>> 2025-08-26T20:46:17.5549883Z >>> x = torch.tensor([0, 1, 2, 3, 4, 0]) 2025-08-26T20:46:17.5550358Z >>> trace = make_fx(torch.ops.mylib.custom_nonzero, tracing_mode="symbolic")(x) 2025-08-26T20:46:17.5550781Z >>> trace.print_readable() 2025-08-26T20:46:17.5551033Z >>> 2025-08-26T20:46:17.5551344Z >>> assert torch.allclose(trace(x), torch.ops.mylib.custom_nonzero(x)) 2025-08-26T20:46:17.5551668Z 2025-08-26T20:46:17.5551735Z 2025-08-26T20:46:17.5552152Z Original Error: IndentationError('expected an indented block', ('', 38, 1, '_._ = None\n')) 2025-08-26T20:46:17.5552590Z 2025-08-26T20:46:17.5552662Z _._ = None 2025-08-26T20:46:17.5552846Z ^ 2025-08-26T20:46:18.9658878Z msg = Cannot scrape callname=get_kernel in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py line=1482. 2025-08-26T20:46:18.9659721Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-26T20:46:18.9660269Z Returns the computed kernel for a given operator and dispatch key. 2025-08-26T20:46:18.9660594Z 2025-08-26T20:46:18.9660817Z This function retrieves the kernel that would be executed for a given 2025-08-26T20:46:18.9661363Z operator and dispatch key combination. The returned SafeKernelFunction 2025-08-26T20:46:18.9661855Z can be used to call the kernel in a boxed fashion. The intended use 2025-08-26T20:46:18.9662333Z case for this function is to retrieve the original kernel for a given 2025-08-26T20:46:18.9662827Z dispatch key and then register another kernel to the same dispatch key 2025-08-26T20:46:18.9663291Z that calls into the original kernel for certain cases. 2025-08-26T20:46:18.9663535Z 2025-08-26T20:46:18.9663608Z Args: 2025-08-26T20:46:18.9663894Z op: Operator name (along with the overload) or OpOverload object 2025-08-26T20:46:18.9664429Z Can be a string (e.g., "aten::add.Tensor"), an OpOverload, or a CustomOpDef. 2025-08-26T20:46:18.9664977Z dispatch_key (str | torch.DispatchKey): The dispatch key to get the kernel for. 2025-08-26T20:46:18.9665725Z Can be a string (e.g., "CPU", "CUDA") or a DispatchKey enum value. 2025-08-26T20:46:18.9666018Z 2025-08-26T20:46:18.9666102Z Returns: 2025-08-26T20:46:18.9666445Z torch._C._SafeKernelFunction: A safe kernel function that can be used to 2025-08-26T20:46:18.9666856Z call the kernel. 2025-08-26T20:46:18.9667026Z 2025-08-26T20:46:18.9667129Z Raises: 2025-08-26T20:46:18.9667364Z RuntimeError: If the operator does not exist. 2025-08-26T20:46:18.9667604Z 2025-08-26T20:46:18.9667674Z Example: 2025-08-26T20:46:18.9667890Z >>> # Get the CPU kernel for torch.add 2025-08-26T20:46:18.9668291Z >>> kernel = torch.library.get_kernel("aten::add.Tensor", "CPU") 2025-08-26T20:46:18.9668851Z >>> 2025-08-26T20:46:18.9669221Z >>> # You can also use DispatchKey enum 2025-08-26T20:46:18.9669966Z >>> kernel = torch.library.get_kernel("aten::add.Tensor", torch.DispatchKey.CPU) 2025-08-26T20:46:18.9670410Z >>> 2025-08-26T20:46:18.9670605Z >>> # Or use an OpOverload directly 2025-08-26T20:46:18.9671052Z >>> kernel = torch.library.get_kernel(torch.ops.aten.add.Tensor, "CPU") 2025-08-26T20:46:18.9671533Z >>> 2025-08-26T20:46:18.9671835Z >>> # Example: Using get_kernel in a custom op with conditional dispatch 2025-08-26T20:46:18.9672239Z >>> # Get the original kernel for torch.sin 2025-08-26T20:46:18.9672654Z >>> original_sin_kernel = torch.library.get_kernel("aten::sin", "CPU") 2025-08-26T20:46:18.9673034Z >>> 2025-08-26T20:46:18.9673329Z >>> # If input has negative values, use original sin, otherwise return zeros 2025-08-26T20:46:18.9673767Z >>> def conditional_sin_impl(dispatch_keys, x): 2025-08-26T20:46:18.9674067Z >>> if (x < 0).any(): 2025-08-26T20:46:18.9674402Z >>> return original_sin_kernel.call_boxed(dispatch_keys, x) 2025-08-26T20:46:18.9674742Z >>> else: 2025-08-26T20:46:18.9675070Z >>> return torch.zeros_like(x) 2025-08-26T20:46:18.9675347Z >>> 2025-08-26T20:46:18.9675563Z >>> lib = torch.library.Library("aten", "IMPL") 2025-08-26T20:46:18.9676025Z >>> # with_keyset=True so the first argument to the impl is the current DispatchKeySet 2025-08-26T20:46:18.9676539Z >>> which needs to be the first argument to ``kernel.call_boxed`` 2025-08-26T20:46:18.9676989Z >>> lib.impl("sin", conditional_sin_impl, "CPU", with_keyset=True) 2025-08-26T20:46:18.9677335Z >>> 2025-08-26T20:46:18.9677537Z >>> # Test the conditional behavior 2025-08-26T20:46:18.9677828Z >>> x_positive = torch.tensor([1.0, 2.0]) 2025-08-26T20:46:18.9678144Z >>> x_mixed = torch.tensor([-1.0, 2.0]) 2025-08-26T20:46:18.9678436Z >>> torch.sin(x_positive) 2025-08-26T20:46:18.9678682Z tensor([0., 0.]) 2025-08-26T20:46:18.9678915Z >>> torch.sin(x_mixed) 2025-08-26T20:46:18.9679146Z tensor([-0.8415, 0.9093]) 2025-08-26T20:46:18.9679386Z 2025-08-26T20:46:18.9679901Z Original Error: SyntaxError('invalid syntax', ('', 23, 7, 'which needs to be the first argument to ``kernel.call_boxed``\n')) 2025-08-26T20:46:18.9680447Z 2025-08-26T20:46:18.9680611Z which needs to be the first argument to ``kernel.call_boxed`` 2025-08-26T20:46:18.9680950Z ^ 2025-08-26T20:46:18.9681550Z msg = Cannot scrape callname=is_available in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\accelerator\__init__.py line=66. 2025-08-26T20:46:18.9682462Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-26T20:46:18.9683021Z Check if the current accelerator is available at runtime: it was build, all the 2025-08-26T20:46:18.9683551Z required drivers are available and at least one device is visible. 2025-08-26T20:46:18.9683983Z See :ref:`accelerator` for details. 2025-08-26T20:46:18.9684224Z 2025-08-26T20:46:18.9684298Z Returns: 2025-08-26T20:46:18.9684774Z bool: A boolean indicating if there is an available :ref:`accelerator`. 2025-08-26T20:46:18.9685147Z 2025-08-26T20:46:18.9685373Z .. note:: This API delegates to the device-specific version of `is_available`. 2025-08-26T20:46:18.9685943Z On CUDA, when the environment variable ``PYTORCH_NVML_BASED_CUDA_CHECK=1`` is set, 2025-08-26T20:46:18.9686512Z this function will NOT poison fork. Otherwise, it will. For more details, see 2025-08-26T20:46:18.9686974Z :ref:`multiprocessing-poison-fork-note`. 2025-08-26T20:46:18.9687204Z 2025-08-26T20:46:18.9687288Z Example:: 2025-08-26T20:46:18.9687401Z 2025-08-26T20:46:18.9687642Z >>> assert torch.accelerator.is_available() "No available accelerators detected." 2025-08-26T20:46:18.9688121Z 2025-08-26T20:46:18.9688711Z Original Error: SyntaxError('invalid syntax', ('', 1, 41, 'assert torch.accelerator.is_available() "No available accelerators detected."\n')) 2025-08-26T20:46:18.9689338Z 2025-08-26T20:46:18.9689573Z assert torch.accelerator.is_available() "No available accelerators detected." 2025-08-26T20:46:18.9690010Z ^ 2025-08-26T20:46:18.9690700Z msg = Cannot scrape callname=synchronize in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\accelerator\__init__.py line=212. 2025-08-26T20:46:18.9691543Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-26T20:46:18.9692052Z Wait for all kernels in all streams on the given device to complete. 2025-08-26T20:46:18.9692351Z 2025-08-26T20:46:18.9692420Z Args: 2025-08-26T20:46:18.9692802Z device (:class:`torch.device`, str, int, optional): device for which to synchronize. It must match 2025-08-26T20:46:18.9693426Z the current :ref:`accelerator` device type. If not given, 2025-08-26T20:46:18.9693917Z use :func:`torch.accelerator.current_device_index` by default. 2025-08-26T20:46:18.9694255Z 2025-08-26T20:46:18.9694536Z .. note:: This function is a no-op if the current :ref:`accelerator` is not initialized. 2025-08-26T20:46:18.9694939Z 2025-08-26T20:46:18.9695012Z Example:: 2025-08-26T20:46:18.9695130Z 2025-08-26T20:46:18.9695249Z >>> # xdoctest: +REQUIRES(env:TORCH_DOCTEST_CUDA) 2025-08-26T20:46:18.9695721Z >>> assert torch.accelerator.is_available() "No available accelerators detected." 2025-08-26T20:46:18.9696207Z >>> start_event = torch.Event(enable_timing=True) 2025-08-26T20:46:18.9696553Z >>> end_event = torch.Event(enable_timing=True) 2025-08-26T20:46:18.9696869Z >>> start_event.record() 2025-08-26T20:46:18.9697245Z >>> tensor = torch.randn(100, device=torch.accelerator.current_accelerator()) 2025-08-26T20:46:18.9697678Z >>> sum = torch.sum(tensor) 2025-08-26T20:46:18.9697937Z >>> end_event.record() 2025-08-26T20:46:18.9698217Z >>> torch.accelerator.synchronize() 2025-08-26T20:46:18.9698574Z >>> elapsed_time_ms = start_event.elapsed_time(end_event) 2025-08-26T20:46:18.9698890Z 2025-08-26T20:46:18.9699486Z Original Error: SyntaxError('invalid syntax', ('', 2, 41, 'assert torch.accelerator.is_available() "No available accelerators detected."\n')) 2025-08-26T20:46:18.9700090Z 2025-08-26T20:46:18.9700321Z assert torch.accelerator.is_available() "No available accelerators detected." 2025-08-26T20:46:18.9700750Z ^ 2025-08-26T20:46:19.2350154Z msg = Cannot scrape callname=cudart in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\__init__.py line=434. 2025-08-26T20:46:19.2351252Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-26T20:46:19.2352096Z Retrieves the CUDA runtime API module. 2025-08-26T20:46:19.2352399Z 2025-08-26T20:46:19.2352438Z 2025-08-26T20:46:19.2352891Z This function initializes the CUDA runtime environment if it is not already 2025-08-26T20:46:19.2353458Z initialized and returns the CUDA runtime API module (_cudart). The CUDA 2025-08-26T20:46:19.2353989Z runtime API module provides access to various CUDA runtime functions. 2025-08-26T20:46:19.2354304Z 2025-08-26T20:46:19.2354377Z Args: 2025-08-26T20:46:19.2354562Z ``None`` 2025-08-26T20:46:19.2354678Z 2025-08-26T20:46:19.2354751Z Returns: 2025-08-26T20:46:19.2354978Z module: The CUDA runtime API module (_cudart). 2025-08-26T20:46:19.2355208Z 2025-08-26T20:46:19.2355283Z Raises: 2025-08-26T20:46:19.2355592Z RuntimeError: If CUDA cannot be re-initialized in a forked subprocess. 2025-08-26T20:46:19.2356251Z AssertionError: If PyTorch is not compiled with CUDA support or if libcudart functions are unavailable. 2025-08-26T20:46:19.2356760Z 2025-08-26T20:46:19.2356876Z Example of CUDA operations with profiling: 2025-08-26T20:46:19.2357419Z >>> import torch 2025-08-26T20:46:19.2357884Z >>> from torch.cuda import cudart, check_error 2025-08-26T20:46:19.2358357Z >>> import os 2025-08-26T20:46:19.2358563Z >>> 2025-08-26T20:46:19.2358756Z >>> os.environ["CUDA_PROFILE"] = "1" 2025-08-26T20:46:19.2359026Z >>> 2025-08-26T20:46:19.2359239Z >>> def perform_cuda_operations_with_streams(): 2025-08-26T20:46:19.2359566Z >>> stream = torch.cuda.Stream() 2025-08-26T20:46:19.2359857Z >>> with torch.cuda.stream(stream): 2025-08-26T20:46:19.2360174Z >>> x = torch.randn(100, 100, device='cuda') 2025-08-26T20:46:19.2360506Z >>> y = torch.randn(100, 100, device='cuda') 2025-08-26T20:46:19.2360797Z >>> z = torch.mul(x, y) 2025-08-26T20:46:19.2361070Z >>> return z 2025-08-26T20:46:19.2361271Z >>> 2025-08-26T20:46:19.2361471Z >>> torch.cuda.synchronize() 2025-08-26T20:46:19.2361763Z >>> print("====== Start nsys profiling ======") 2025-08-26T20:46:19.2362804Z >>> check_error(cudart().cudaProfilerStart()) 2025-08-26T20:46:19.2363374Z >>> with torch.autograd.profiler.emit_nvtx(): 2025-08-26T20:46:19.2363991Z >>> result = perform_cuda_operations_with_streams() 2025-08-26T20:46:19.2364505Z >>> print("CUDA operations completed.") 2025-08-26T20:46:19.2364861Z >>> check_error(torch.cuda.cudart().cudaProfilerStop()) 2025-08-26T20:46:19.2365213Z >>> print("====== End nsys profiling ======") 2025-08-26T20:46:19.2365426Z 2025-08-26T20:46:19.2365608Z To run this example and save the profiling information, execute: 2025-08-26T20:46:19.2366232Z >>> $ nvprof --profile-from-start off --csv --print-summary -o trace_name.prof -f -- python cudart_test.py 2025-08-26T20:46:19.2366690Z 2025-08-26T20:46:19.2366917Z This command profiles the CUDA operations in the provided script and saves 2025-08-26T20:46:19.2367426Z the profiling information to a file named `trace_name.prof`. 2025-08-26T20:46:19.2367929Z The `--profile-from-start off` option ensures that profiling starts only 2025-08-26T20:46:19.2368391Z after the `cudaProfilerStart` call in the script. 2025-08-26T20:46:19.2368822Z The `--csv` and `--print-summary` options format the profiling output as a 2025-08-26T20:46:19.2369504Z CSV file and print a summary, respectively. 2025-08-26T20:46:19.2370272Z The `-o` option specifies the output file name, and the `-f` option forces the 2025-08-26T20:46:19.2370747Z overwrite of the output file if it already exists. 2025-08-26T20:46:19.2371046Z 2025-08-26T20:46:19.2371751Z Original Error: SyntaxError('invalid syntax', ('', 1, 1, '$ nvprof --profile-from-start off --csv --print-summary -o trace_name.prof -f -- python cudart_test.py\n')) 2025-08-26T20:46:19.2372447Z 2025-08-26T20:46:19.2372776Z $ nvprof --profile-from-start off --csv --print-summary -o trace_name.prof -f -- python cudart_test.py 2025-08-26T20:46:19.2373267Z ^ 2025-08-26T20:46:19.2374255Z msg = Cannot scrape callname=ActivationSparsifier in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\pruning\_experimental\activation_sparsifier\activation_sparsifier.py line=16. 2025-08-26T20:46:19.2375703Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-26T20:46:19.2376294Z 2025-08-26T20:46:19.2376533Z The Activation sparsifier class aims to sparsify/prune activations in a neural 2025-08-26T20:46:19.2377081Z network. The idea is to attach the sparsifier to a layer (or layers) and it 2025-08-26T20:46:19.2377607Z zeroes out the activations based on the mask_fn (or sparsification function) 2025-08-26T20:46:19.2378017Z input by the user. 2025-08-26T20:46:19.2378339Z The mask_fn is applied once all the inputs are aggregated and reduced i.e. 2025-08-26T20:46:19.2378844Z mask = mask_fn(reduce_fn(aggregate_fn(activations))) 2025-08-26T20:46:19.2379081Z 2025-08-26T20:46:19.2379187Z Note:: 2025-08-26T20:46:19.2379575Z The sparsification mask is computed on the input **before it goes through the attached layer**. 2025-08-26T20:46:19.2379975Z 2025-08-26T20:46:19.2380060Z Args: 2025-08-26T20:46:19.2380228Z model (nn.Module): 2025-08-26T20:46:19.2380569Z The model whose layers will be sparsified. The layers that needs to be 2025-08-26T20:46:19.2381326Z sparsified should be added separately using the register_layer() function 2025-08-26T20:46:19.2382119Z aggregate_fn (Optional, Callable): 2025-08-26T20:46:19.2382929Z default aggregate_fn that is used if not specified while registering the layer. 2025-08-26T20:46:19.2383855Z specifies how inputs should be aggregated over time. 2025-08-26T20:46:19.2384821Z The aggregate_fn should usually take 2 torch tensors and return the aggregated tensor. 2025-08-26T20:46:19.2385641Z Example 2025-08-26T20:46:19.2386143Z def add_agg_fn(tensor1, tensor2): return tensor1 + tensor2 2025-08-26T20:46:19.2386964Z reduce_fn (Optional, Callable): 2025-08-26T20:46:19.2387749Z default reduce_fn that is used if not specified while registering the layer. 2025-08-26T20:46:19.2388847Z reduce_fn will be called on the aggregated tensor i.e. the tensor obtained after 2025-08-26T20:46:19.2389659Z calling agg_fn() on all inputs. 2025-08-26T20:46:19.2390179Z Example 2025-08-26T20:46:19.2390736Z def mean_reduce_fn(agg_tensor): return agg_tensor.mean(dim=0) 2025-08-26T20:46:19.2391472Z mask_fn (Optional, Callable): 2025-08-26T20:46:19.2392371Z default mask_fn that is used to create the sparsification mask using the tensor obtained after 2025-08-26T20:46:19.2393554Z calling the reduce_fn(). This is used by default if a custom one is passed in the 2025-08-26T20:46:19.2394348Z register_layer(). 2025-08-26T20:46:19.2395280Z Note that the mask_fn() definition should contain the sparse arguments that is passed in sparse_config 2025-08-26T20:46:19.2396268Z arguments. 2025-08-26T20:46:19.2396709Z features (Optional, list): 2025-08-26T20:46:19.2397264Z default selected features to sparsify. 2025-08-26T20:46:19.2398125Z If this is non-empty, then the mask_fn will be applied for each feature of the input. 2025-08-26T20:46:19.2398939Z For example, 2025-08-26T20:46:19.2399687Z mask = [mask_fn(reduce_fn(aggregated_fn(input[feature])) for feature in features] 2025-08-26T20:46:19.2400514Z feature_dim (Optional, int): 2025-08-26T20:46:19.2401343Z default dimension of input features. Again, features along this dim will be chosen 2025-08-26T20:46:19.2402252Z for sparsification. 2025-08-26T20:46:19.2402752Z sparse_config (Dict): 2025-08-26T20:46:19.2403434Z Default configuration for the mask_fn. This config will be passed 2025-08-26T20:46:19.2404331Z with the mask_fn() 2025-08-26T20:46:19.2404672Z 2025-08-26T20:46:19.2404809Z Example: 2025-08-26T20:46:19.2405118Z >>> # xdoctest: +SKIP 2025-08-26T20:46:19.2405545Z >>> model = SomeModel() 2025-08-26T20:46:19.2406248Z >>> act_sparsifier = ActivationSparsifier(...) # init activation sparsifier 2025-08-26T20:46:19.2407044Z >>> # Initialize aggregate_fn 2025-08-26T20:46:19.2407321Z >>> def agg_fn(x, y): 2025-08-26T20:46:19.2407550Z >>> return x + y 2025-08-26T20:46:19.2407758Z >>> 2025-08-26T20:46:19.2407943Z >>> # Initialize reduce_fn 2025-08-26T20:46:19.2408184Z >>> def reduce_fn(x): 2025-08-26T20:46:19.2408414Z >>> return torch.mean(x, dim=0) 2025-08-26T20:46:19.2408669Z >>> 2025-08-26T20:46:19.2408909Z >>> # Initialize mask_fn 2025-08-26T20:46:19.2409156Z >>> def mask_fn(data): 2025-08-26T20:46:19.2409421Z >>> return torch.eye(data.shape).to(data.device) 2025-08-26T20:46:19.2409735Z >>> 2025-08-26T20:46:19.2409895Z >>> 2025-08-26T20:46:19.2410092Z >>> act_sparsifier.register_layer( 2025-08-26T20:46:19.2410367Z ... model.some_layer, 2025-08-26T20:46:19.2410614Z ... aggregate_fn=agg_fn, 2025-08-26T20:46:19.2410858Z ... reduce_fn=reduce_fn, 2025-08-26T20:46:19.2411118Z ... mask_fn=mask_fn, 2025-08-26T20:46:19.2411344Z ... ) 2025-08-26T20:46:19.2411507Z >>> 2025-08-26T20:46:19.2411705Z >>> # start training process 2025-08-26T20:46:19.2412136Z >>> for _ in [...]: 2025-08-26T20:46:19.2412516Z >>> # epoch starts 2025-08-26T20:46:19.2413029Z >>> # model.forward(), compute_loss() and model.backwards() 2025-08-26T20:46:19.2413675Z >>> # epoch ends 2025-08-26T20:46:19.2414045Z >>> act_sparsifier.step() 2025-08-26T20:46:19.2414533Z >>> # end training process 2025-08-26T20:46:19.2414986Z >>> sparsifier.squash_mask() 2025-08-26T20:46:19.2415321Z 2025-08-26T20:46:19.2416043Z Original Error: IndentationError('expected an indented block', ('', 26, 1, '_._ = None\n')) 2025-08-26T20:46:19.2416903Z 2025-08-26T20:46:19.2417035Z _._ = None 2025-08-26T20:46:19.2417349Z ^ 2025-08-26T20:46:22.3504011Z msg = Cannot scrape callname=DeviceMesh.__getitem__ in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\device_mesh.py line=721. 2025-08-26T20:46:22.3504959Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-26T20:46:22.3505313Z 2025-08-26T20:46:22.3505558Z Slice the current DeviceMesh based on the mesh_dim_names given to create a submesh. 2025-08-26T20:46:22.3506167Z The submesh created consists of the dimensions and the communicators indicated by 2025-08-26T20:46:22.3506635Z ``mesh_dim_names`` 2025-08-26T20:46:22.3506788Z 2025-08-26T20:46:22.3506863Z Args: 2025-08-26T20:46:22.3507214Z mesh_dim_names (Union[str, Tuple[str]]): the name or the tuple of names of the 2025-08-26T20:46:22.3507737Z mesh dimension of the DeviceMesh to create the submesh for. 2025-08-26T20:46:22.3508080Z Returns: 2025-08-26T20:46:22.3508272Z A :class:`DeviceMesh` object 2025-08-26T20:46:22.3508447Z 2025-08-26T20:46:22.3508710Z The following program runs on each process/rank in an SPMD manner in a world size of 8. 2025-08-26T20:46:22.3509171Z In the first example: 2025-08-26T20:46:22.3509540Z Calling mesh_2d["tp"] on rank 0, 1, 2, 3 returns a 1D submesh of DeviceMesh:([0, 1, 2, 3]). 2025-08-26T20:46:22.3510100Z Calling mesh_2d["tp"] on rank 4, 5, 6, 7 returns a 1D submesh of DeviceMesh:([4, 5, 6, 7]). 2025-08-26T20:46:22.3510653Z Calling mesh_2d["dp"] on rank 0, 4 returns a 1D submesh of DeviceMesh:([0, 4]). 2025-08-26T20:46:22.3511169Z Calling mesh_2d["dp"] on rank 1, 5 returns a 1D submesh of DeviceMesh:([1, 5]). 2025-08-26T20:46:22.3511687Z Calling mesh_2d["dp"] on rank 2, 6 returns a 1D submesh of DeviceMesh:([2, 6]). 2025-08-26T20:46:22.3512515Z Calling mesh_2d["dp"] on rank 3, 7 returns a 1D submesh of DeviceMesh:([3, 7]). 2025-08-26T20:46:22.3512867Z 2025-08-26T20:46:22.3512960Z In the second example: 2025-08-26T20:46:22.3513344Z Calling mesh_3d["dp", "cp"] on rank 0, 1, 4, 5 returns a 2D submesh of DeviceMesh:([[0, 1], [4, 5]]). 2025-08-26T20:46:22.3513943Z Calling mesh_3d["dp", "cp"] on rank 2, 3, 6, 7 returns a 2D submesh of DeviceMesh:([[2, 3], [6, 7]]). 2025-08-26T20:46:22.3514532Z Calling mesh_3d["cp", "dp"] on rank 0, 1, 4, 5 returns a 2D submesh of DeviceMesh:([[0, 4], [1, 5]]). 2025-08-26T20:46:22.3515129Z Calling mesh_3d["cp", "dp"] on rank 2, 3, 6, 7 returns a 2D submesh of DeviceMesh:([[2, 6], [3, 7]]). 2025-08-26T20:46:22.3515476Z 2025-08-26T20:46:22.3515593Z Example:: 2025-08-26T20:46:22.3515693Z 2025-08-26T20:46:22.3515785Z >>> # xdoctest: +SKIP("no rank") 2025-08-26T20:46:22.3516199Z >>> from torch.distributed.device_mesh import DeviceMesh 2025-08-26T20:46:22.3516530Z >>> 2025-08-26T20:46:22.3516820Z >>> # Initialize a 2D device mesh as (2, 4) to represent the topology 2025-08-26T20:46:22.3517223Z >>> # of cross-host(dim 0), and within-host (dim 1). 2025-08-26T20:46:22.3517685Z >>> mesh_2d = init_device_mesh(device_type="cuda", (2,4), mesh_dim_names=("dp", "tp")) 2025-08-26T20:46:22.3518121Z >>> tp_mesh = mesh_2d["tp"] 2025-08-26T20:46:22.3518406Z >>> dp_mesh = mesh_2d["dp"] 2025-08-26T20:46:22.3518643Z >>> 2025-08-26T20:46:22.3518849Z >>> # Initialize a 3D mesh. 2025-08-26T20:46:22.3519275Z >>> mesh_3d = init_device_mesh(device_type="cuda", (2,2,2), mesh_dim_names=("dp", "pp", "cp")) 2025-08-26T20:46:22.3519915Z >>> # The order of the mesh_dim_names provided deteremines the order of dimensions in the submesh. 2025-08-26T20:46:22.3520403Z >>> dp_cp_mesh = mesh_3d["dp", "cp"] 2025-08-26T20:46:22.3520700Z >>> cp_dp_mesh = mesh_3d["cp", "dp"] 2025-08-26T20:46:22.3520891Z 2025-08-26T20:46:22.3521522Z Original Error: SyntaxError('positional argument follows keyword argument', ('', 6, 82, 'mesh_2d = init_device_mesh(device_type="cuda", (2,4), mesh_dim_names=("dp", "tp"))\n')) 2025-08-26T20:46:22.3522387Z 2025-08-26T20:46:22.3522612Z mesh_2d = init_device_mesh(device_type="cuda", (2,4), mesh_dim_names=("dp", "tp")) 2025-08-26T20:46:22.3523045Z ^ 2025-08-26T20:46:22.3523831Z msg = Cannot scrape callname=SavePlanner in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\planner.py line=122. 2025-08-26T20:46:22.3524798Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-26T20:46:22.3525132Z 2025-08-26T20:46:22.3525389Z Abstract class defining the protocol used by save_state_dict to plan the save process. 2025-08-26T20:46:22.3525770Z 2025-08-26T20:46:22.3526039Z SavePlanners are stateful objects that can be used to customize the whole save process. 2025-08-26T20:46:22.3526423Z 2025-08-26T20:46:22.3526688Z SavePlanner acts as an access proxy to the state_dict, so any transformation done to it 2025-08-26T20:46:22.3527141Z will be visible to the whole process. 2025-08-26T20:46:22.3527330Z 2025-08-26T20:46:22.3527588Z A planner subclass can expect the following sequence of calls during save_state_dict: 2025-08-26T20:46:22.3527952Z 2025-08-26T20:46:22.3528057Z 1) set_up_planner - called on all ranks. 2025-08-26T20:46:22.3528370Z Signals the start of a checkpoint save. 2025-08-26T20:46:22.3528570Z 2025-08-26T20:46:22.3528674Z 2) create_local_plan - called on all ranks. 2025-08-26T20:46:22.3529140Z Process the state_dict and produces a `SavePlan` that will be sent for global planning. 2025-08-26T20:46:22.3529510Z 2025-08-26T20:46:22.3529675Z 3) create_global_plan - called on the coordinator rank only. 2025-08-26T20:46:22.3530154Z Takes the SavePlan from all ranks and make any global decision. 2025-08-26T20:46:22.3530507Z 2025-08-26T20:46:22.3530712Z 4) finish_plan - called on all ranks. 2025-08-26T20:46:22.3531097Z This gives each rank a chance to adjust to global planning decisions. 2025-08-26T20:46:22.3531416Z 2025-08-26T20:46:22.3531550Z 5) resolve_data - called multiple times on each rank 2025-08-26T20:46:22.3531972Z Lookups a value on the `state_dict` for the storage layer to write. 2025-08-26T20:46:22.3532264Z 2025-08-26T20:46:22.3532537Z Users are recommended to extend DefaultSavePlanner instead of this interface directly as 2025-08-26T20:46:22.3533094Z most changes can be expressed by changes in a single method. 2025-08-26T20:46:22.3533368Z 2025-08-26T20:46:22.3533471Z There are 3 usual patterns of extension: 2025-08-26T20:46:22.3533679Z 2025-08-26T20:46:22.3533904Z Rewriting state_dict. This is the simplest way to extend the save process as it 2025-08-26T20:46:22.3534507Z doesn't requite understanding the intrincacies of how SavePlan works: 2025-08-26T20:46:22.3534820Z 2025-08-26T20:46:22.3534917Z >>> # xdoctest: +SKIP("undefined vars") 2025-08-26T20:46:22.3535255Z >>> class RenamePlanner(DefaultSavePlanner): 2025-08-26T20:46:22.3535553Z >>> def set_up_planner( 2025-08-26T20:46:22.3535819Z >>> self, 2025-08-26T20:46:22.3536022Z >>> state_dict: STATE_DICT_TYPE, 2025-08-26T20:46:22.3536356Z >>> storage_meta: Optional[StorageMeta], 2025-08-26T20:46:22.3536653Z >>> is_coordinator: bool, 2025-08-26T20:46:22.3536905Z >>> ) -> None: 2025-08-26T20:46:22.3537118Z >>> # prefix all keys with `foo_`` 2025-08-26T20:46:22.3537555Z >>> super().set_up_planner({"foo_" + k: v for k, v in state_dict.items()}, storage_meta, is_coordinator) 2025-08-26T20:46:22.3537935Z 2025-08-26T20:46:22.3538248Z Modifying local plan and lookup in tandem. This is useful when fine control of how data is persisted 2025-08-26T20:46:22.3538664Z 2025-08-26T20:46:22.3538759Z >>> # xdoctest: +SKIP("undefined vars") 2025-08-26T20:46:22.3539065Z >>> class FP16Planner(DefaultSavePlanner): 2025-08-26T20:46:22.3539418Z >>> def create_local_plan(self): 2025-08-26T20:46:22.3539708Z >>> plan = super().create_local_plan() 2025-08-26T20:46:22.3540009Z >>> for p in plan: 2025-08-26T20:46:22.3540251Z >>> if p.tensor_data is not None: 2025-08-26T20:46:22.3540594Z >>> p.tensor_data.properties.dtype = torch.float16 2025-08-26T20:46:22.3540918Z >>> return plan 2025-08-26T20:46:22.3541118Z >>> 2025-08-26T20:46:22.3541299Z >>> def resolve_data(self, write_item): 2025-08-26T20:46:22.3541645Z >>> item = super().resolve_data(write_item) 2025-08-26T20:46:22.3542140Z >>> return item if write_item.type == WriteItemType.BYTE_IO else item.to(torch.float16) 2025-08-26T20:46:22.3542511Z 2025-08-26T20:46:22.3542825Z Using the global planning step to make central decisions that can't be made individually by each rank 2025-08-26T20:46:22.3543253Z 2025-08-26T20:46:22.3543362Z >>> # xdoctest: +SKIP("undefined vars") 2025-08-26T20:46:22.3543655Z >>> from itertools import zip_longest 2025-08-26T20:46:22.3543949Z >>> from dataclasses import replace 2025-08-26T20:46:22.3544282Z >>> class DDPLoadBalancingPlanner(DefaultSavePlanner): 2025-08-26T20:46:22.3544799Z >>> # This uses the default local plan behavior of having all non-sharded writes in rank 0 2025-08-26T20:46:22.3545301Z >>> # This sample doesn't handle ShardedTensors 2025-08-26T20:46:22.3545618Z >>> def create_global_plan(self, all_plans): 2025-08-26T20:46:22.3545962Z >>> iters = [iter(all_plans[0].items)] * len(all_plans) 2025-08-26T20:46:22.3546279Z >>> items_per_rank = [ 2025-08-26T20:46:22.3546551Z >>> [item for item in items if item is not None] 2025-08-26T20:46:22.3546911Z >>> for items in zip(*zip_longest(*iters), strict=True) 2025-08-26T20:46:22.3547226Z >>> ] 2025-08-26T20:46:22.3547443Z >>> all_plans = [ 2025-08-26T20:46:22.3547692Z >>> replace(plan, items=items) 2025-08-26T20:46:22.3548193Z >>> for plan, items in zip(all_plans, items_per_rank, strict=True) 2025-08-26T20:46:22.3548551Z >>> ] 2025-08-26T20:46:22.3548789Z >>> return super().create_global_plan(all_plans) 2025-08-26T20:46:22.3549017Z 2025-08-26T20:46:22.3549253Z Finally, some planners need to save additional metadata in the checkpoint, this is 2025-08-26T20:46:22.3549853Z accomplished by having each rank contribute their data items in the local plan and 2025-08-26T20:46:22.3550313Z the global planner aggregate them: 2025-08-26T20:46:22.3550503Z 2025-08-26T20:46:22.3550601Z >>> # xdoctest: +SKIP("undefined vars") 2025-08-26T20:46:22.3550935Z >>> class SaveExtraDataPlanner(DefaultSavePlanner): 2025-08-26T20:46:22.3551277Z >>> def create_local_plan(self) -> SavePlan: 2025-08-26T20:46:22.3551591Z >>> plan = super().create_local_plan() 2025-08-26T20:46:22.3551975Z >>> return replace(plan, planner_data="per-rank-data") 2025-08-26T20:46:22.3552295Z >>> 2025-08-26T20:46:22.3552659Z >>> def create_global_plan(self, all_plans: List[SavePlan]) -> Tuple[List[SavePlan], Metadata]: 2025-08-26T20:46:22.3553256Z >>> global_plan, metadata = super().create_global_plan(all_plans) 2025-08-26T20:46:22.3553714Z >>> merged_data = [p.planner_data for p in global_plan] 2025-08-26T20:46:22.3554107Z >>> metadata = replace(metadata, planner_data=merged_data) 2025-08-26T20:46:22.3554459Z >>> return global_plan, metadata 2025-08-26T20:46:22.3554652Z 2025-08-26T20:46:22.3554981Z Original Error: IndentationError('expected an indented block', ('', 9, 0, '_._ = None\n')) 2025-08-26T20:46:22.3555423Z 2025-08-26T20:46:22.3555492Z _._ = None 2025-08-26T20:46:22.3555651Z ^ 2025-08-26T20:46:22.5019479Z msg = Cannot scrape callname=LoadPlanner in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\planner.py line=305. 2025-08-26T20:46:22.5020985Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-26T20:46:22.5021476Z 2025-08-26T20:46:22.5021757Z Abstract class defining the protocol used by load_state_dict to plan the load process. 2025-08-26T20:46:22.5022131Z 2025-08-26T20:46:22.5022397Z LoadPlanner are stateful objects that can be used to customize the whole load process. 2025-08-26T20:46:22.5022777Z 2025-08-26T20:46:22.5023029Z LoadPlanner acts as an access proxy to the state_dict, so any transformation done to it 2025-08-26T20:46:22.5023502Z will be visible to the whole process. 2025-08-26T20:46:22.5023693Z 2025-08-26T20:46:22.5023940Z A planner subclass can expect the following sequence of calls during load_state_dict: 2025-08-26T20:46:22.5024313Z 2025-08-26T20:46:22.5024418Z 1) set_up_planner - called on all ranks. 2025-08-26T20:46:22.5024727Z Signals the start of loading a checkpoint. 2025-08-26T20:46:22.5024947Z 2025-08-26T20:46:22.5025049Z 2) create_local_plan - called on all ranks. 2025-08-26T20:46:22.5025670Z Process the state_dict and produces a `LoadPlan` that will be sent for global planning. 2025-08-26T20:46:22.5026345Z 2025-08-26T20:46:22.5026628Z 3) create_global_plan - called on the coordinator rank only. 2025-08-26T20:46:22.5027097Z Takes the LoadPlan from all ranks and make any global decision. 2025-08-26T20:46:22.5027379Z 2025-08-26T20:46:22.5027536Z 4) load_bytes - called multiple times on each rank 2025-08-26T20:46:22.5027901Z This is called once per non-tensor value in state_dict. 2025-08-26T20:46:22.5028155Z 2025-08-26T20:46:22.5028354Z 5) resolve_tensor and commit_tensor - called multiple times on each rank 2025-08-26T20:46:22.5028818Z They are called in pair for each Tensor value in state_dict. 2025-08-26T20:46:22.5029091Z 2025-08-26T20:46:22.5029368Z Users are recommended to extend DefaultLoadPlanner instead of this interface directly as 2025-08-26T20:46:22.5029937Z most changes can be expressed by changes in a single method. 2025-08-26T20:46:22.5030201Z 2025-08-26T20:46:22.5030313Z There are two usual patterns of extension: 2025-08-26T20:46:22.5030704Z 2025-08-26T20:46:22.5030942Z Rewriting state_dict. This is the simplest way to extend the load process as it 2025-08-26T20:46:22.5031721Z doesn't requite understanding the intrincacies of how LoadPlan works. We need 2025-08-26T20:46:22.5032658Z to keep a reference to the original state_dict as load happens in place so 2025-08-26T20:46:22.5033082Z we need to be able to perform it in place 2025-08-26T20:46:22.5033291Z 2025-08-26T20:46:22.5033391Z >>> # xdoctest: +SKIP("undefined vars") 2025-08-26T20:46:22.5033706Z >>> class RenamePlanner(DefaultLoadPlanner): 2025-08-26T20:46:22.5033999Z >>> def set_up_planner( 2025-08-26T20:46:22.5034237Z >>> self, 2025-08-26T20:46:22.5034444Z >>> state_dict: STATE_DICT_TYPE, 2025-08-26T20:46:22.5034726Z >>> metadata: Metadata, 2025-08-26T20:46:22.5035054Z >>> is_coordinator: bool, 2025-08-26T20:46:22.5035303Z >>> ) -> None: 2025-08-26T20:46:22.5035526Z >>> self.original_state_dict = state_dict 2025-08-26T20:46:22.5035901Z >>> state_dict = {"foo_" + k: v for k, v in state_dict.items()} 2025-08-26T20:46:22.5036232Z >>> 2025-08-26T20:46:22.5036423Z >>> if self.flatten_sharded_tensors: 2025-08-26T20:46:22.5036766Z >>> state_dict = _flatten_sharded_tensors(state_dict) 2025-08-26T20:46:22.5037071Z >>> 2025-08-26T20:46:22.5037269Z >>> if self.flatten_state_dict: 2025-08-26T20:46:22.5037915Z >>> state_dict, self.mappings = flatten_state_dict(state_dict) 2025-08-26T20:46:22.5038517Z >>> 2025-08-26T20:46:22.5038730Z >>> self.state_dict = state_dict 2025-08-26T20:46:22.5039012Z >>> self.metadata = metadata 2025-08-26T20:46:22.5039293Z >>> self.is_coordinator = is_coordinator 2025-08-26T20:46:22.5039563Z >>> 2025-08-26T20:46:22.5039767Z >>> def load_bytes(self, read_item, value): 2025-08-26T20:46:22.5040051Z >>> # Remove the "foo_" prefix 2025-08-26T20:46:22.5040518Z >>> self.original_state_dict[read_item.dest_index.fqn[4:]] = torch.load(value, weights_only=False) 2025-08-26T20:46:22.5041011Z 2025-08-26T20:46:22.5041016Z 2025-08-26T20:46:22.5041253Z Modifying resolve_tensor and commit_tensor to handle load time transformation. 2025-08-26T20:46:22.5041613Z 2025-08-26T20:46:22.5041708Z >>> # xdoctest: +SKIP("undefined vars") 2025-08-26T20:46:22.5042097Z >>> class MetaModelMaterialize(DefaultSavePlanner): 2025-08-26T20:46:22.5042443Z >>> def resolve_tensor(self, read_item): 2025-08-26T20:46:22.5042764Z >>> tensor = super().resolve_tensor(read_item) 2025-08-26T20:46:22.5043111Z >>> return torch.empty_like(tensor, device="cpu") 2025-08-26T20:46:22.5043593Z >>> 2025-08-26T20:46:22.5043933Z >>> def commit_tensor(self, read_item, tensor): 2025-08-26T20:46:22.5044545Z >>> self.state_dict[read_item.dest_index.fqn] = tensor 2025-08-26T20:46:22.5044803Z 2025-08-26T20:46:22.5045148Z Original Error: IndentationError('expected an indented block', ('', 23, 0, '_._ = None\n')) 2025-08-26T20:46:22.5045604Z 2025-08-26T20:46:22.5045675Z _._ = None 2025-08-26T20:46:22.5045852Z ^ 2025-08-26T20:46:22.5046505Z msg = Cannot scrape callname=FullStateDictConfig in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\api.py line=295. 2025-08-26T20:46:22.5047403Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-26T20:46:22.5047736Z 2025-08-26T20:46:22.5047932Z ``FullStateDictConfig`` is a config class meant to be used with 2025-08-26T20:46:22.5048390Z ``StateDictType.FULL_STATE_DICT``. We recommend enabling both 2025-08-26T20:46:22.5048852Z ``offload_to_cpu=True`` and ``rank0_only=True`` when saving full state 2025-08-26T20:46:22.5049483Z dicts to save GPU memory and CPU memory, respectively. This config class 2025-08-26T20:46:22.5059767Z is meant to be used via the :func:`state_dict_type` context manager as 2025-08-26T20:46:22.5060153Z follows: 2025-08-26T20:46:22.5060284Z 2025-08-26T20:46:22.5060568Z >>> # xdoctest: +SKIP("undefined variables") 2025-08-26T20:46:22.5061015Z >>> from torch.distributed.fsdp import FullyShardedDataParallel as FSDP 2025-08-26T20:46:22.5061690Z >>> fsdp = FSDP(model, auto_wrap_policy=...) 2025-08-26T20:46:22.5062399Z >>> cfg = FullStateDictConfig(offload_to_cpu=True, rank0_only=True) 2025-08-26T20:46:22.5063010Z >>> with FSDP.state_dict_type(fsdp, StateDictType.FULL_STATE_DICT, cfg): 2025-08-26T20:46:22.5063430Z >>> state = fsdp.state_dict() 2025-08-26T20:46:22.5063799Z >>> # `state` will be empty on non rank 0 and contain CPU tensors on rank 0. 2025-08-26T20:46:22.5064322Z >>> # To reload checkpoint for inference, finetuning, transfer learning, etc: 2025-08-26T20:46:22.5064867Z >>> model = model_fn() # Initialize model in preparation for wrapping with FSDP 2025-08-26T20:46:22.5065357Z >>> if dist.get_rank() == 0: 2025-08-26T20:46:22.5065713Z >>> # Load checkpoint only on rank 0 to avoid memory redundancy 2025-08-26T20:46:22.5066109Z >>> state_dict = torch.load("my_checkpoint.pt") 2025-08-26T20:46:22.5066459Z >>> model.load_state_dict(state_dict) 2025-08-26T20:46:22.5066868Z >>> # All ranks initialize FSDP module as usual. `sync_module_states` argument 2025-08-26T20:46:22.5067535Z >>> # communicates loaded checkpoint states from rank 0 to rest of the world. 2025-08-26T20:46:22.5068305Z >>> fsdp = FSDP( 2025-08-26T20:46:22.5068646Z ... model, 2025-08-26T20:46:22.5068882Z ... device_id=torch.cuda.current_device(), 2025-08-26T20:46:22.5069187Z ... auto_wrap_policy=..., 2025-08-26T20:46:22.5069458Z ... sync_module_states=True, 2025-08-26T20:46:22.5069714Z ... ) 2025-08-26T20:46:22.5070015Z >>> # After this point, all ranks have FSDP model with loaded checkpoint. 2025-08-26T20:46:22.5070323Z 2025-08-26T20:46:22.5070405Z Attributes: 2025-08-26T20:46:22.5070695Z rank0_only (bool): If ``True``, then only rank 0 saves the full state 2025-08-26T20:46:22.5071256Z dict, and nonzero ranks save an empty dict. If ``False``, then all 2025-08-26T20:46:22.5071684Z ranks save the full state dict. (Default: ``False``) 2025-08-26T20:46:22.5071929Z 2025-08-26T20:46:22.5072270Z Original Error: IndentationError('expected an indented block', ('', 11, 1, '_._ = None\n')) 2025-08-26T20:46:22.5072719Z 2025-08-26T20:46:22.5072789Z _._ = None 2025-08-26T20:46:22.5072961Z ^ 2025-08-26T20:46:27.6549073Z msg = Cannot scrape callname=register_parametrization in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\parametrize.py line=424. 2025-08-26T20:46:27.6550021Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-26T20:46:27.6550510Z Register a parametrization to a tensor in a module. 2025-08-26T20:46:27.6550774Z 2025-08-26T20:46:27.6551028Z Assume that ``tensor_name="weight"`` for simplicity. When accessing ``module.weight``, 2025-08-26T20:46:27.6551682Z the module will return the parametrized version ``parametrization(module.weight)``. 2025-08-26T20:46:27.6552299Z If the original tensor requires a gradient, the backward pass will differentiate 2025-08-26T20:46:27.6552959Z through :attr:`parametrization`, and the optimizer will update the tensor accordingly. 2025-08-26T20:46:27.6553379Z 2025-08-26T20:46:27.6553679Z The first time that a module registers a parametrization, this function will add an attribute 2025-08-26T20:46:27.6554295Z ``parametrizations`` to the module of type :class:`~ParametrizationList`. 2025-08-26T20:46:27.6554634Z 2025-08-26T20:46:27.6554864Z The list of parametrizations on the tensor ``weight`` will be accessible under 2025-08-26T20:46:27.6555326Z ``module.parametrizations.weight``. 2025-08-26T20:46:27.6555532Z 2025-08-26T20:46:27.6555649Z The original tensor will be accessible under 2025-08-26T20:46:27.6556004Z ``module.parametrizations.weight.original``. 2025-08-26T20:46:27.6556241Z 2025-08-26T20:46:27.6556694Z Parametrizations may be concatenated by registering several parametrizations 2025-08-26T20:46:27.6557144Z on the same attribute. 2025-08-26T20:46:27.6557300Z 2025-08-26T20:46:27.6557527Z The training mode of a registered parametrization is updated on registration 2025-08-26T20:46:27.6557972Z to match the training mode of the host module 2025-08-26T20:46:27.6558186Z 2025-08-26T20:46:27.6558481Z Parametrized parameters and buffers have an inbuilt caching system that can be activated 2025-08-26T20:46:27.6558972Z using the context manager :func:`cached`. 2025-08-26T20:46:27.6559194Z 2025-08-26T20:46:27.6559409Z A :attr:`parametrization` may optionally implement a method with signature 2025-08-26T20:46:27.6559741Z 2025-08-26T20:46:27.6559865Z .. code-block:: python 2025-08-26T20:46:27.6560126Z 2025-08-26T20:46:27.6560330Z def right_inverse(self, X: Tensor) -> Union[Tensor, Sequence[Tensor]] 2025-08-26T20:46:27.6560646Z 2025-08-26T20:46:27.6560890Z This method is called on the unparametrized tensor when the first parametrization 2025-08-26T20:46:27.6561428Z is registered to compute the initial value of the original tensor. 2025-08-26T20:46:27.6562058Z If this method is not implemented, the original tensor will be just the unparametrized tensor. 2025-08-26T20:46:27.6562466Z 2025-08-26T20:46:27.6562758Z If all the parametrizations registered on a tensor implement `right_inverse` it is possible 2025-08-26T20:46:27.6563415Z to initialize a parametrized tensor by assigning to it, as shown in the example below. 2025-08-26T20:46:27.6563799Z 2025-08-26T20:46:27.6564001Z It is possible for the first parametrization to depend on several inputs. 2025-08-26T20:46:27.6564546Z This may be implemented returning a tuple of tensors from ``right_inverse`` 2025-08-26T20:46:27.6565084Z (see the example implementation of a ``RankOne`` parametrization below). 2025-08-26T20:46:27.6565485Z 2025-08-26T20:46:27.6565800Z In this case, the unconstrained tensors are also located under ``module.parametrizations.weight`` 2025-08-26T20:46:27.6566334Z with names ``original0``, ``original1``,... 2025-08-26T20:46:27.6566552Z 2025-08-26T20:46:27.6566629Z .. note:: 2025-08-26T20:46:27.6566742Z 2025-08-26T20:46:27.6567005Z If unsafe=False (default) both the forward and right_inverse methods will be called 2025-08-26T20:46:27.6567481Z once to perform a number of consistency checks. 2025-08-26T20:46:27.6567962Z If unsafe=True, then right_inverse will be called if the tensor is not parametrized, 2025-08-26T20:46:27.6568411Z and nothing will be called otherwise. 2025-08-26T20:46:27.6568623Z 2025-08-26T20:46:27.6568695Z .. note:: 2025-08-26T20:46:27.6568805Z 2025-08-26T20:46:27.6568995Z In most situations, ``right_inverse`` will be a function such that 2025-08-26T20:46:27.6569395Z ``forward(right_inverse(X)) == X`` (see 2025-08-26T20:46:27.6569892Z `right inverse `_). 2025-08-26T20:46:27.6570489Z Sometimes, when the parametrization is not surjective, it may be reasonable 2025-08-26T20:46:27.6570921Z to relax this. 2025-08-26T20:46:27.6571054Z 2025-08-26T20:46:27.6571133Z .. warning:: 2025-08-26T20:46:27.6571264Z 2025-08-26T20:46:27.6571513Z If a parametrization depends on several inputs, :func:`~register_parametrization` 2025-08-26T20:46:27.6572130Z will register a number of new parameters. If such parametrization is registered 2025-08-26T20:46:27.6572730Z after the optimizer is created, these new parameters will need to be added manually 2025-08-26T20:46:27.6573277Z to the optimizer. See :meth:`torch.Optimizer.add_param_group`. 2025-08-26T20:46:27.6573563Z 2025-08-26T20:46:27.6573646Z Args: 2025-08-26T20:46:27.6573933Z module (nn.Module): module on which to register the parametrization 2025-08-26T20:46:27.6574514Z tensor_name (str): name of the parameter or buffer on which to register 2025-08-26T20:46:27.6574909Z the parametrization 2025-08-26T20:46:27.6575264Z parametrization (nn.Module): the parametrization to register 2025-08-26T20:46:27.6575641Z Keyword args: 2025-08-26T20:46:27.6575958Z unsafe (bool): a boolean flag that denotes whether the parametrization 2025-08-26T20:46:27.6576436Z may change the dtype and shape of the tensor. Default: `False` 2025-08-26T20:46:27.6576948Z Warning: the parametrization is not checked for consistency upon registration. 2025-08-26T20:46:27.6577415Z Enable this flag at your own risk. 2025-08-26T20:46:27.6577615Z 2025-08-26T20:46:27.6577682Z Raises: 2025-08-26T20:46:27.6578059Z ValueError: if the module does not have a parameter or a buffer named :attr:`tensor_name` 2025-08-26T20:46:27.6579018Z 2025-08-26T20:46:27.6579106Z Examples: 2025-08-26T20:46:27.6579353Z >>> # xdoctest: +REQUIRES(env:TORCH_DOCTEST_LAPACK) 2025-08-26T20:46:27.6579706Z >>> import torch 2025-08-26T20:46:27.6579931Z >>> import torch.nn as nn 2025-08-26T20:46:27.6580229Z >>> import torch.nn.utils.parametrize as P 2025-08-26T20:46:27.6580512Z >>> 2025-08-26T20:46:27.6580704Z >>> class Symmetric(nn.Module): 2025-08-26T20:46:27.6580971Z >>> def forward(self, X): 2025-08-26T20:46:27.6581305Z >>> return X.triu() + X.triu(1).T # Return a symmetric matrix 2025-08-26T20:46:27.6581639Z >>> 2025-08-26T20:46:27.6581825Z >>> def right_inverse(self, A): 2025-08-26T20:46:27.6582113Z >>> return A.triu() 2025-08-26T20:46:27.6582345Z >>> 2025-08-26T20:46:27.6582526Z >>> m = nn.Linear(5, 5) 2025-08-26T20:46:27.6582826Z >>> P.register_parametrization(m, "weight", Symmetric()) 2025-08-26T20:46:27.6583301Z >>> print(torch.allclose(m.weight, m.weight.T)) # m.weight is now symmetric 2025-08-26T20:46:27.6583758Z True 2025-08-26T20:46:27.6583953Z >>> A = torch.rand(5, 5) 2025-08-26T20:46:27.6584204Z >>> A = A + A.T # A is now symmetric 2025-08-26T20:46:27.6584578Z >>> m.weight = A # Initialize the weight to be the symmetric matrix A 2025-08-26T20:46:27.6584970Z >>> print(torch.allclose(m.weight, A)) 2025-08-26T20:46:27.6585238Z True 2025-08-26T20:46:27.6585339Z 2025-08-26T20:46:27.6585439Z >>> class RankOne(nn.Module): 2025-08-26T20:46:27.6585705Z >>> def forward(self, x, y): 2025-08-26T20:46:27.6586017Z >>> # Form a rank 1 matrix multiplying two vectors 2025-08-26T20:46:27.6586365Z >>> return x.unsqueeze(-1) @ y.unsqueeze(-2) 2025-08-26T20:46:27.6586655Z >>> 2025-08-26T20:46:27.6586855Z >>> def right_inverse(self, Z): 2025-08-26T20:46:27.6587141Z >>> # Project Z onto the rank 1 matrices 2025-08-26T20:46:27.6587485Z >>> U, S, Vh = torch.linalg.svd(Z, full_matrices=False) 2025-08-26T20:46:27.6587822Z >>> # Return rescaled singular vectors 2025-08-26T20:46:27.6588125Z >>> s0_sqrt = S[0].sqrt().unsqueeze(-1) 2025-08-26T20:46:27.6588455Z >>> return U[..., :, 0] * s0_sqrt, Vh[..., 0, :] * s0_sqrt 2025-08-26T20:46:27.6588763Z >>> 2025-08-26T20:46:27.6588984Z >>> linear_rank_one = P.register_parametrization( 2025-08-26T20:46:27.6589325Z ... nn.Linear(4, 4), "weight", RankOne() 2025-08-26T20:46:27.6589604Z ... ) 2025-08-26T20:46:27.6589882Z >>> print(torch.linalg.matrix_rank(linear_rank_one.weight).item()) 2025-08-26T20:46:27.6590246Z 1 2025-08-26T20:46:27.6590346Z 2025-08-26T20:46:27.6590407Z 2025-08-26T20:46:27.6590825Z Original Error: IndentationError('expected an indented block', ('', 3, 0, '_._ = None\n')) 2025-08-26T20:46:27.6591267Z 2025-08-26T20:46:27.6591333Z _._ = None 2025-08-26T20:46:27.6591501Z ^ 2025-08-26T20:46:27.6597670Z msg = Cannot scrape callname=ReduceLROnPlateau in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py line=1233. 2025-08-26T20:46:27.6598573Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-26T20:46:27.6599071Z Reduce learning rate when a metric has stopped improving. 2025-08-26T20:46:27.6599332Z 2025-08-26T20:46:27.6599517Z Models often benefit from reducing the learning rate by a factor 2025-08-26T20:46:27.6599974Z of 2-10 once learning stagnates. This scheduler reads a metrics 2025-08-26T20:46:27.6600426Z quantity and if no improvement is seen for a 'patience' number 2025-08-26T20:46:27.6600803Z of epochs, the learning rate is reduced. 2025-08-26T20:46:27.6601012Z 2025-08-26T20:46:27.6601135Z Args: 2025-08-26T20:46:27.6601347Z optimizer (Optimizer): Wrapped optimizer. 2025-08-26T20:46:27.6601802Z mode (str): One of `min`, `max`. In `min` mode, lr will 2025-08-26T20:46:27.6602183Z be reduced when the quantity monitored has stopped 2025-08-26T20:46:27.6602593Z decreasing; in `max` mode it will be reduced when the 2025-08-26T20:46:27.6603027Z quantity monitored has stopped increasing. Default: 'min'. 2025-08-26T20:46:27.6603452Z factor (float): Factor by which the learning rate will be 2025-08-26T20:46:27.6603831Z reduced. new_lr = lr * factor. Default: 0.1. 2025-08-26T20:46:27.6604246Z patience (int): The number of allowed epochs with no improvement after 2025-08-26T20:46:27.6604665Z which the learning rate will be reduced. 2025-08-26T20:46:27.6605078Z For example, consider the case of having no patience (`patience = 0`). 2025-08-26T20:46:27.6605741Z In the first epoch, a baseline is established and is always considered good as there's no previous baseline. 2025-08-26T20:46:27.6606378Z In the second epoch, if the performance is worse than the baseline, 2025-08-26T20:46:27.6606851Z we have what is considered an intolerable epoch. 2025-08-26T20:46:27.6607337Z Since the count of intolerable epochs (1) is greater than the patience level (0), 2025-08-26T20:46:27.6607834Z the learning rate is reduced at the end of this epoch. 2025-08-26T20:46:27.6608395Z From the third epoch onwards, the learning rate continues to be reduced at the end of each epoch 2025-08-26T20:46:27.6609103Z if the performance is worse than the baseline. If the performance improves or remains the same, 2025-08-26T20:46:27.6609596Z the learning rate is not adjusted. 2025-08-26T20:46:27.6609885Z Default: 10. 2025-08-26T20:46:27.6610193Z threshold (float): Threshold for measuring the new optimum, 2025-08-26T20:46:27.6610612Z to only focus on significant changes. Default: 1e-4. 2025-08-26T20:46:27.6611008Z threshold_mode (str): One of `rel`, `abs`. In `rel` mode, 2025-08-26T20:46:27.6611416Z dynamic_threshold = best * ( 1 + threshold ) in 'max' 2025-08-26T20:46:27.6611786Z mode or best * ( 1 - threshold ) in `min` mode. 2025-08-26T20:46:27.6612158Z In `abs` mode, dynamic_threshold = best + threshold in 2025-08-26T20:46:27.6612571Z `max` mode or best - threshold in `min` mode. Default: 'rel'. 2025-08-26T20:46:27.6612992Z cooldown (int): Number of epochs to wait before resuming 2025-08-26T20:46:27.6613411Z normal operation after lr has been reduced. Default: 0. 2025-08-26T20:46:27.6613805Z min_lr (float or list): A scalar or a list of scalars. A 2025-08-26T20:46:27.6614195Z lower bound on the learning rate of all param groups 2025-08-26T20:46:27.6614557Z or each group respectively. Default: 0. 2025-08-26T20:46:27.6614930Z eps (float): Minimal decay applied to lr. If the difference 2025-08-26T20:46:27.6615431Z between new and old lr is smaller than eps, the update is 2025-08-26T20:46:27.6615794Z ignored. Default: 1e-8. 2025-08-26T20:46:27.6615988Z 2025-08-26T20:46:27.6616062Z Example: 2025-08-26T20:46:27.6616252Z >>> # xdoctest: +SKIP 2025-08-26T20:46:27.6616625Z >>> optimizer = torch.optim.SGD(model.parameters(), lr=0.1, momentum=0.9) 2025-08-26T20:46:27.6617071Z >>> scheduler = ReduceLROnPlateau(optimizer, "min") 2025-08-26T20:46:27.6617412Z >>> for epoch in range(10): 2025-08-26T20:46:27.6617672Z >>> train(...) 2025-08-26T20:46:27.6617901Z >>> val_loss = validate(...) 2025-08-26T20:46:27.6618218Z >>> # Note that step should be called after validate() 2025-08-26T20:46:27.6618555Z >>> scheduler.step(val_loss) 2025-08-26T20:46:27.6618744Z 2025-08-26T20:46:27.6618990Z .. image:: ../scripts/lr_scheduler_images/ReduceLROnPlateau.png 2025-08-26T20:46:27.6619327Z 2025-08-26T20:46:27.6619790Z Original Error: IndentationError('unexpected indent', ('', 8, 4, ' scheduler.step(val_loss)\n')) 2025-08-26T20:46:27.6620274Z 2025-08-26T20:46:27.6620361Z scheduler.step(val_loss) 2025-08-26T20:46:27.6620596Z ^ 2025-08-26T20:46:30.5726727Z msg = Cannot scrape callname=vmap in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\apis.py line=39. 2025-08-26T20:46:30.5727569Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-26T20:46:30.5727910Z 2025-08-26T20:46:30.5728119Z vmap is the vectorizing map; ``vmap(func)`` returns a new function that 2025-08-26T20:46:30.5728596Z maps ``func`` over some dimension of the inputs. Semantically, vmap 2025-08-26T20:46:30.5729079Z pushes the map into PyTorch operations called by ``func``, effectively 2025-08-26T20:46:30.5729469Z vectorizing those operations. 2025-08-26T20:46:30.5729669Z 2025-08-26T20:46:30.5729859Z vmap is useful for handling batch dimensions: one can write a function 2025-08-26T20:46:30.5730491Z ``func`` that runs on examples and then lift it to a function that can 2025-08-26T20:46:30.5730984Z take batches of examples with ``vmap(func)``. vmap can also be used to 2025-08-26T20:46:30.5731431Z compute batched gradients when composed with autograd. 2025-08-26T20:46:30.5731722Z 2025-08-26T20:46:30.5731837Z .. note:: 2025-08-26T20:46:30.5732093Z :func:`torch.vmap` is aliased to :func:`torch.func.vmap` for 2025-08-26T20:46:30.5732475Z convenience. Use whichever one you'd like. 2025-08-26T20:46:30.5732692Z 2025-08-26T20:46:30.5732756Z Args: 2025-08-26T20:46:30.5733049Z func (function): A Python function that takes one or more arguments. 2025-08-26T20:46:30.5733436Z Must return one or more Tensors. 2025-08-26T20:46:30.5733807Z in_dims (int or nested structure): Specifies which dimension of the 2025-08-26T20:46:30.5734257Z inputs should be mapped over. ``in_dims`` should have a 2025-08-26T20:46:30.5734680Z structure like the inputs. If the ``in_dim`` for a particular 2025-08-26T20:46:30.5735125Z input is None, then that indicates there is no map dimension. 2025-08-26T20:46:30.5735463Z Default: 0. 2025-08-26T20:46:30.5735754Z out_dims (int or Tuple[int]): Specifies where the mapped dimension 2025-08-26T20:46:30.5736195Z should appear in the outputs. If ``out_dims`` is a Tuple, then 2025-08-26T20:46:30.5736604Z it should have one element per output. Default: 0. 2025-08-26T20:46:30.5737005Z randomness (str): Specifies whether the randomness in this 2025-08-26T20:46:30.5737453Z vmap should be the same or different across batches. If 'different', 2025-08-26T20:46:30.5737923Z the randomness for each batch will be different. If 'same', the 2025-08-26T20:46:30.5738385Z randomness will be the same across batches. If 'error', any calls to 2025-08-26T20:46:30.5738878Z random functions will error. Default: 'error'. WARNING: this flag 2025-08-26T20:46:30.5740197Z only applies to random PyTorch operations and does not apply to 2025-08-26T20:46:30.5740637Z Python's random module or numpy randomness. 2025-08-26T20:46:30.5741076Z chunk_size (None or int): If None (default), apply a single vmap over inputs. 2025-08-26T20:46:30.5741586Z If not None, then compute the vmap :attr:`chunk_size` samples at a time. 2025-08-26T20:46:30.5742130Z Note that :attr:`chunk_size=1` is equivalent to computing the vmap with a for-loop. 2025-08-26T20:46:30.5742710Z If you run into memory issues computing the vmap, please try a non-None chunk_size. 2025-08-26T20:46:30.5743067Z 2025-08-26T20:46:30.5743141Z Returns: 2025-08-26T20:46:30.5743402Z Returns a new "batched" function. It takes the same inputs as 2025-08-26T20:46:30.5743843Z ``func``, except each input has an extra dimension at the index 2025-08-26T20:46:30.5744349Z specified by ``in_dims``. It takes returns the same outputs as 2025-08-26T20:46:30.5744789Z ``func``, except each output has an extra dimension at the index 2025-08-26T20:46:30.5745154Z specified by ``out_dims``. 2025-08-26T20:46:30.5745318Z 2025-08-26T20:46:30.5745388Z .. warning: 2025-08-26T20:46:30.5745671Z :func:`vmap` works best with functional-style code. Please do not 2025-08-26T20:46:30.5746114Z perform any side-effects in ``func``, with the exception of 2025-08-26T20:46:30.5746607Z in-place PyTorch operations. Examples of side-effects include mutating 2025-08-26T20:46:30.5747128Z Python data structures and assigning values to variables not captured 2025-08-26T20:46:30.5747511Z in ``func``. 2025-08-26T20:46:30.5747636Z 2025-08-26T20:46:30.5747857Z One example of using :func:`vmap` is to compute batched dot products. PyTorch 2025-08-26T20:46:30.5748370Z doesn't provide a batched ``torch.dot`` API; instead of unsuccessfully 2025-08-26T20:46:30.5748876Z rummaging through docs, use :func:`vmap` to construct a new function. 2025-08-26T20:46:30.5749183Z 2025-08-26T20:46:30.5749355Z >>> torch.dot # [D], [D] -> [] 2025-08-26T20:46:30.5749710Z >>> batched_dot = torch.func.vmap(torch.dot) # [N, D], [N, D] -> [N] 2025-08-26T20:46:30.5750112Z >>> x, y = torch.randn(2, 5), torch.randn(2, 5) 2025-08-26T20:46:30.5750409Z >>> batched_dot(x, y) 2025-08-26T20:46:30.5750571Z 2025-08-26T20:46:30.5750774Z :func:`vmap` can be helpful in hiding batch dimensions, leading to a simpler 2025-08-26T20:46:30.5751175Z model authoring experience. 2025-08-26T20:46:30.5751339Z 2025-08-26T20:46:30.5751432Z >>> batch_size, feature_size = 3, 5 2025-08-26T20:46:30.5751774Z >>> weights = torch.randn(feature_size, requires_grad=True) 2025-08-26T20:46:30.5752100Z >>> 2025-08-26T20:46:30.5752286Z >>> def model(feature_vec): 2025-08-26T20:46:30.5752554Z >>> # Very simple linear model with activation 2025-08-26T20:46:30.5752880Z >>> return feature_vec.dot(weights).relu() 2025-08-26T20:46:30.5753163Z >>> 2025-08-26T20:46:30.5753398Z >>> examples = torch.randn(batch_size, feature_size) 2025-08-26T20:46:30.5753732Z >>> result = torch.vmap(model)(examples) 2025-08-26T20:46:30.5753942Z 2025-08-26T20:46:30.5754164Z :func:`vmap` can also help vectorize computations that were previously difficult 2025-08-26T20:46:30.5754720Z or impossible to batch. One example is higher-order gradient computation. 2025-08-26T20:46:30.5755236Z The PyTorch autograd engine computes vjps (vector-Jacobian products). 2025-08-26T20:46:30.5755758Z Computing a full Jacobian matrix for some function f: R^N -> R^N usually 2025-08-26T20:46:30.5756285Z requires N calls to ``autograd.grad``, one per Jacobian row. Using :func:`vmap`, 2025-08-26T20:46:30.5756831Z we can vectorize the whole computation, computing the Jacobian in a single 2025-08-26T20:46:30.5757227Z call to ``autograd.grad``. 2025-08-26T20:46:30.5757395Z 2025-08-26T20:46:30.5757464Z >>> # Setup 2025-08-26T20:46:30.5757649Z >>> N = 5 2025-08-26T20:46:30.5757829Z >>> f = lambda x: x**2 2025-08-26T20:46:30.5758178Z >>> x = torch.randn(N, requires_grad=True) 2025-08-26T20:46:30.5758455Z >>> y = f(x) 2025-08-26T20:46:30.5758668Z >>> I_N = torch.eye(N) 2025-08-26T20:46:30.5758882Z >>> 2025-08-26T20:46:30.5759069Z >>> # Sequential approach 2025-08-26T20:46:30.5759417Z >>> jacobian_rows = [torch.autograd.grad(y, x, v, retain_graph=True)[0] 2025-08-26T20:46:30.5759822Z >>> for v in I_N.unbind()] 2025-08-26T20:46:30.5760116Z >>> jacobian = torch.stack(jacobian_rows) 2025-08-26T20:46:30.5760399Z >>> 2025-08-26T20:46:30.5760593Z >>> # vectorized gradient computation 2025-08-26T20:46:30.5760861Z >>> def get_vjp(v): 2025-08-26T20:46:30.5761097Z >>> return torch.autograd.grad(y, x, v) 2025-08-26T20:46:30.5761395Z >>> jacobian = torch.vmap(get_vjp)(I_N) 2025-08-26T20:46:30.5761741Z 2025-08-26T20:46:30.5761981Z :func:`vmap` can also be nested, producing an output with multiple batched dimensions 2025-08-26T20:46:30.5762335Z 2025-08-26T20:46:30.5762430Z >>> torch.dot # [D], [D] -> [] 2025-08-26T20:46:30.5762700Z >>> batched_dot = torch.vmap( 2025-08-26T20:46:30.5762970Z ... torch.vmap(torch.dot) 2025-08-26T20:46:30.5763229Z ... ) # [N1, N0, D], [N1, N0, D] -> [N1, N0] 2025-08-26T20:46:30.5763560Z >>> x, y = torch.randn(2, 3, 5), torch.randn(2, 3, 5) 2025-08-26T20:46:30.5763885Z >>> batched_dot(x, y) # tensor of size [2, 3] 2025-08-26T20:46:30.5764111Z 2025-08-26T20:46:30.5764321Z If the inputs are not batched along the first dimension, ``in_dims`` specifies 2025-08-26T20:46:30.5764768Z the dimension that each inputs are batched along as 2025-08-26T20:46:30.5765012Z 2025-08-26T20:46:30.5765098Z >>> torch.dot # [N], [N] -> [] 2025-08-26T20:46:30.5765469Z >>> batched_dot = torch.vmap(torch.dot, in_dims=1) # [N, D], [N, D] -> [D] 2025-08-26T20:46:30.5765875Z >>> x, y = torch.randn(2, 5), torch.randn(2, 5) 2025-08-26T20:46:30.5766165Z >>> batched_dot( 2025-08-26T20:46:30.5766407Z ... x, y 2025-08-26T20:46:30.5766699Z ... ) # output is [5] instead of [2] if batched along the 0th dimension 2025-08-26T20:46:30.5766980Z 2025-08-26T20:46:30.5767208Z If there are multiple inputs each of which is batched along different dimensions, 2025-08-26T20:46:30.5767744Z ``in_dims`` must be a tuple with the batch dimension for each input as 2025-08-26T20:46:30.5768029Z 2025-08-26T20:46:30.5768131Z >>> torch.dot # [D], [D] -> [] 2025-08-26T20:46:30.5768511Z >>> batched_dot = torch.vmap(torch.dot, in_dims=(0, None)) # [N, D], [D] -> [N] 2025-08-26T20:46:30.5768940Z >>> x, y = torch.randn(2, 5), torch.randn(5) 2025-08-26T20:46:30.5769219Z >>> batched_dot( 2025-08-26T20:46:30.5769424Z ... x, y 2025-08-26T20:46:30.5769701Z ... ) # second arg doesn't have a batch dim because in_dim[1] was None 2025-08-26T20:46:30.5769997Z 2025-08-26T20:46:30.5770201Z If the input is a Python struct, ``in_dims`` must be a tuple containing a struct 2025-08-26T20:46:30.5770626Z matching the shape of the input: 2025-08-26T20:46:30.5770804Z 2025-08-26T20:46:30.5770922Z >>> f = lambda dict: torch.dot(dict["x"], dict["y"]) 2025-08-26T20:46:30.5771249Z >>> x, y = torch.randn(2, 5), torch.randn(5) 2025-08-26T20:46:30.5771532Z >>> input = {"x": x, "y": y} 2025-08-26T20:46:30.5771854Z >>> batched_dot = torch.vmap(f, in_dims=({"x": 0, "y": None},)) 2025-08-26T20:46:30.5772193Z >>> batched_dot(input) 2025-08-26T20:46:30.5772348Z 2025-08-26T20:46:30.5772590Z By default, the output is batched along the first dimension. However, it can be batched 2025-08-26T20:46:30.5773061Z along any dimension by using ``out_dims`` 2025-08-26T20:46:30.5773262Z 2025-08-26T20:46:30.5773339Z >>> f = lambda x: x**2 2025-08-26T20:46:30.5773567Z >>> x = torch.randn(2, 5) 2025-08-26T20:46:30.5773832Z >>> batched_pow = torch.vmap(f, out_dims=1) 2025-08-26T20:46:30.5774128Z >>> batched_pow(x) # [5, 2] 2025-08-26T20:46:30.5774295Z 2025-08-26T20:46:30.5774638Z For any function that uses kwargs, the returned function will not batch the kwargs but will 2025-08-26T20:46:30.5775092Z accept kwargs 2025-08-26T20:46:30.5775205Z 2025-08-26T20:46:30.5775287Z >>> x = torch.randn([2, 5]) 2025-08-26T20:46:30.5775533Z >>> def fn(x, scale=4.): 2025-08-26T20:46:30.5775768Z >>> return x * scale 2025-08-26T20:46:30.5775972Z >>> 2025-08-26T20:46:30.5776161Z >>> batched_pow = torch.vmap(fn) 2025-08-26T20:46:30.5776460Z >>> assert torch.allclose(batched_pow(x), x * 4) 2025-08-26T20:46:30.5776891Z >>> batched_pow(x, scale=x) # scale is not batched, output has shape [2, 2, 5] 2025-08-26T20:46:30.5777205Z 2025-08-26T20:46:30.5777291Z .. note:: 2025-08-26T20:46:30.5777598Z vmap does not provide general autobatching or handle variable-length 2025-08-26T20:46:30.5778036Z sequences out of the box. 2025-08-26T20:46:30.5778203Z 2025-08-26T20:46:30.5778529Z Original Error: IndentationError('expected an indented block', ('', 5, 1, '_._ = None\n')) 2025-08-26T20:46:30.5778972Z 2025-08-26T20:46:30.5779046Z _._ = None 2025-08-26T20:46:30.5779211Z ^ 2025-08-26T20:46:31.0426207Z msg = Cannot scrape callname=grad in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\apis.py line=306. 2025-08-26T20:46:31.0427052Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-26T20:46:31.0427599Z ``grad`` operator helps computing gradients of ``func`` with respect to the 2025-08-26T20:46:31.0428101Z input(s) specified by ``argnums``. This operator can be nested to 2025-08-26T20:46:31.0428477Z compute higher-order gradients. 2025-08-26T20:46:31.0428684Z 2025-08-26T20:46:31.0428752Z Args: 2025-08-26T20:46:31.0429080Z func (Callable): A Python function that takes one or more arguments. 2025-08-26T20:46:31.0429624Z Must return a single-element Tensor. If specified ``has_aux`` equals ``True``, 2025-08-26T20:46:31.0430382Z function can return a tuple of single-element Tensor and other auxiliary objects: 2025-08-26T20:46:31.0430826Z ``(output, aux)``. 2025-08-26T20:46:31.0431231Z argnums (int or Tuple[int]): Specifies arguments to compute gradients with respect to. 2025-08-26T20:46:31.0431780Z ``argnums`` can be single integer or tuple of integers. Default: 0. 2025-08-26T20:46:31.0432260Z has_aux (bool): Flag indicating that ``func`` returns a tensor and other 2025-08-26T20:46:31.0432714Z auxiliary objects: ``(output, aux)``. Default: False. 2025-08-26T20:46:31.0432964Z 2025-08-26T20:46:31.0433043Z Returns: 2025-08-26T20:46:31.0433414Z Function to compute gradients with respect to its inputs. By default, the output of 2025-08-26T20:46:31.0434000Z the function is the gradient tensor(s) with respect to the first argument. 2025-08-26T20:46:31.0434578Z If specified ``has_aux`` equals ``True``, tuple of gradients and output auxiliary objects 2025-08-26T20:46:31.0435172Z is returned. If ``argnums`` is a tuple of integers, a tuple of output gradients with 2025-08-26T20:46:31.0435624Z respect to each ``argnums`` value is returned. 2025-08-26T20:46:31.0435859Z 2025-08-26T20:46:31.0435948Z Example of using ``grad``: 2025-08-26T20:46:31.0436117Z 2025-08-26T20:46:31.0436205Z >>> # xdoctest: +SKIP 2025-08-26T20:46:31.0436452Z >>> from torch.func import grad 2025-08-26T20:46:31.0436722Z >>> x = torch.randn([]) 2025-08-26T20:46:31.0436979Z >>> cos_x = grad(lambda x: torch.sin(x))(x) 2025-08-26T20:46:31.0437297Z >>> assert torch.allclose(cos_x, x.cos()) 2025-08-26T20:46:31.0437567Z >>> 2025-08-26T20:46:31.0437759Z >>> # Second-order gradients 2025-08-26T20:46:31.0438067Z >>> neg_sin_x = grad(grad(lambda x: torch.sin(x)))(x) 2025-08-26T20:46:31.0438442Z >>> assert torch.allclose(neg_sin_x, -x.sin()) 2025-08-26T20:46:31.0438658Z 2025-08-26T20:46:31.0439050Z When composed with ``vmap``, ``grad`` can be used to compute per-sample-gradients: 2025-08-26T20:46:31.0439399Z 2025-08-26T20:46:31.0439487Z >>> # xdoctest: +SKIP 2025-08-26T20:46:31.0439758Z >>> from torch.func import grad, vmap 2025-08-26T20:46:31.0440061Z >>> batch_size, feature_size = 3, 5 2025-08-26T20:46:31.0440333Z >>> 2025-08-26T20:46:31.0440535Z >>> def model(weights, feature_vec): 2025-08-26T20:46:31.0440861Z >>> # Very simple linear model with activation 2025-08-26T20:46:31.0441178Z >>> assert feature_vec.dim() == 1 2025-08-26T20:46:31.0441551Z >>> return feature_vec.dot(weights).relu() 2025-08-26T20:46:31.0441842Z >>> 2025-08-26T20:46:31.0442062Z >>> def compute_loss(weights, example, target): 2025-08-26T20:46:31.0442461Z >>> y = model(weights, example) 2025-08-26T20:46:31.0442791Z >>> return ((y - target) ** 2).mean() # MSELoss 2025-08-26T20:46:31.0443079Z >>> 2025-08-26T20:46:31.0443341Z >>> weights = torch.randn(feature_size, requires_grad=True) 2025-08-26T20:46:31.0443727Z >>> examples = torch.randn(batch_size, feature_size) 2025-08-26T20:46:31.0444069Z >>> targets = torch.randn(batch_size) 2025-08-26T20:46:31.0444366Z >>> inputs = (weights, examples, targets) 2025-08-26T20:46:31.0444783Z >>> grad_weight_per_example = vmap(grad(compute_loss), in_dims=(None, 0, 0))( 2025-08-26T20:46:31.0445179Z ... *inputs 2025-08-26T20:46:31.0445379Z ... ) 2025-08-26T20:46:31.0445484Z 2025-08-26T20:46:31.0445645Z Example of using ``grad`` with ``has_aux`` and ``argnums``: 2025-08-26T20:46:31.0445906Z 2025-08-26T20:46:31.0445987Z >>> # xdoctest: +SKIP 2025-08-26T20:46:31.0446254Z >>> from torch.func import grad 2025-08-26T20:46:31.0446523Z >>> def my_loss_func(y, y_pred): 2025-08-26T20:46:31.0446821Z >>> loss_per_sample = (0.5 * y_pred - y) ** 2 2025-08-26T20:46:31.0447194Z >>> loss = loss_per_sample.mean() 2025-08-26T20:46:31.0447508Z >>> return loss, (y_pred, loss_per_sample) 2025-08-26T20:46:31.0447793Z >>> 2025-08-26T20:46:31.0448019Z >>> fn = grad(my_loss_func, argnums=(0, 1), has_aux=True) 2025-08-26T20:46:31.0448346Z >>> y_true = torch.rand(4) 2025-08-26T20:46:31.0448629Z >>> y_preds = torch.rand(4, requires_grad=True) 2025-08-26T20:46:31.0448942Z >>> out = fn(y_true, y_preds) 2025-08-26T20:46:31.0449333Z >>> # > output is ((grads w.r.t y_true, grads w.r.t y_preds), (y_pred, loss_per_sample)) 2025-08-26T20:46:31.0449675Z 2025-08-26T20:46:31.0449773Z .. note:: 2025-08-26T20:46:31.0450026Z Using PyTorch ``torch.no_grad`` together with ``grad``. 2025-08-26T20:46:31.0450293Z 2025-08-26T20:46:31.0450421Z Case 1: Using ``torch.no_grad`` inside a function: 2025-08-26T20:46:31.0450649Z 2025-08-26T20:46:31.0450746Z >>> # xdoctest: +SKIP 2025-08-26T20:46:31.0450998Z >>> def f(x): 2025-08-26T20:46:31.0451225Z >>> with torch.no_grad(): 2025-08-26T20:46:31.0451488Z >>> c = x ** 2 2025-08-26T20:46:31.0451732Z >>> return x - c 2025-08-26T20:46:31.0451891Z 2025-08-26T20:46:31.0452069Z In this case, ``grad(f)(x)`` will respect the inner ``torch.no_grad``. 2025-08-26T20:46:31.0452373Z 2025-08-26T20:46:31.0452533Z Case 2: Using ``grad`` inside ``torch.no_grad`` context manager: 2025-08-26T20:46:31.0452806Z 2025-08-26T20:46:31.0452894Z >>> # xdoctest: +SKIP 2025-08-26T20:46:31.0453146Z >>> with torch.no_grad(): 2025-08-26T20:46:31.0453401Z >>> grad(f)(x) 2025-08-26T20:46:31.0453552Z 2025-08-26T20:46:31.0453750Z In this case, ``grad`` will respect the inner ``torch.no_grad``, but not the 2025-08-26T20:46:31.0454273Z outer one. This is because ``grad`` is a "function transform": its result 2025-08-26T20:46:31.0454894Z should not depend on the result of a context manager outside of ``f``. 2025-08-26T20:46:31.0455206Z 2025-08-26T20:46:31.0455272Z 2025-08-26T20:46:31.0455705Z Original Error: IndentationError('expected an indented block', ('', 6, 1, '_._ = None\n')) 2025-08-26T20:46:31.0456141Z 2025-08-26T20:46:31.0456210Z _._ = None 2025-08-26T20:46:31.0456383Z ^ 2025-08-26T20:46:31.0457038Z msg = Cannot scrape callname=CustomOpDef.register_fake in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\custom_ops.py line=397. 2025-08-26T20:46:31.0457949Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-26T20:46:31.0458449Z Register a FakeTensor implementation for this custom op. 2025-08-26T20:46:31.0458705Z 2025-08-26T20:46:31.0458925Z This is necessary to get the operator to work efficiently with torch.compile. 2025-08-26T20:46:31.0459331Z 2025-08-26T20:46:31.0459533Z The Fake impl (sometimes also known as a meta kernel or abstract impl) 2025-08-26T20:46:31.0460047Z specifies the behavior of this operator on Tensors that carry no data. 2025-08-26T20:46:31.0460499Z Given some input Tensors with certain properties 2025-08-26T20:46:31.0460972Z (sizes/strides/storage_offset/device), it specifies what the properties of 2025-08-26T20:46:31.0461401Z the output Tensors are. 2025-08-26T20:46:31.0461571Z 2025-08-26T20:46:31.0461770Z Please see :func:`torch.library.register_fake` for more details. 2025-08-26T20:46:31.0462062Z 2025-08-26T20:46:31.0462131Z Args: 2025-08-26T20:46:31.0462393Z fn (Callable): The function to register as the FakeTensor 2025-08-26T20:46:31.0462729Z implementation. 2025-08-26T20:46:31.0462898Z 2025-08-26T20:46:31.0462970Z Examples: 2025-08-26T20:46:31.0463172Z >>> import torch 2025-08-26T20:46:31.0463401Z >>> import numpy as np 2025-08-26T20:46:31.0464465Z >>> from torch import Tensor 2025-08-26T20:46:31.0464730Z >>> 2025-08-26T20:46:31.0465014Z >>> # Example 1: an operator without data-dependent output shape 2025-08-26T20:46:31.0465480Z >>> @torch.library.custom_op("mylib::linear", mutates_args=()) 2025-08-26T20:46:31.0465936Z >>> def linear(x: Tensor, weight: Tensor, bias: Tensor) -> Tensor: 2025-08-26T20:46:31.0466315Z >>> return (x @ weight.t()) + bias 2025-08-26T20:46:31.0466595Z >>> 2025-08-26T20:46:31.0466805Z >>> @linear.register_fake 2025-08-26T20:46:31.0467062Z >>> def _(x, weight, bias): 2025-08-26T20:46:31.0467332Z >>> assert x.dim() == 2 2025-08-26T20:46:31.0467603Z >>> assert weight.dim() == 2 2025-08-26T20:46:31.0467996Z >>> assert bias.dim() == 1 2025-08-26T20:46:31.0468349Z >>> assert x.shape[1] == weight.shape[1] 2025-08-26T20:46:31.0468690Z >>> assert weight.shape[0] == bias.shape[0] 2025-08-26T20:46:31.0469016Z >>> assert x.device == weight.device 2025-08-26T20:46:31.0469350Z >>> return x.new_empty(x.size(0), weight.size(0)) 2025-08-26T20:46:31.0469651Z >>> 2025-08-26T20:46:31.0469901Z >>> x = torch.randn(2, 2) 2025-08-26T20:46:31.0470171Z >>> weight = torch.randn(2, 2) 2025-08-26T20:46:31.0470495Z >>> bias = torch.randn(2) 2025-08-26T20:46:31.0470788Z >>> # xdoctest: +SKIP("Requires Python <= 3.11") 2025-08-26T20:46:31.0471182Z >>> out = torch.compile(linear, fullgraph=True)(x, weight, bias) 2025-08-26T20:46:31.0471573Z >>> # xdoctest: +SKIP("Requires Python <= 3.11") 2025-08-26T20:46:31.0472022Z >>> assert torch.allclose(out, torch.nn.functional.linear(x, weight, bias)) 2025-08-26T20:46:31.0472436Z >>> 2025-08-26T20:46:31.0472710Z >>> # Example 2: an operator with data-dependent output shape 2025-08-26T20:46:31.0473292Z >>> @torch.library.custom_op("mylib::nonzero", mutates_args=()) 2025-08-26T20:46:31.0473684Z >>> def nonzero(x: Tensor) -> Tensor: 2025-08-26T20:46:31.0473990Z >>> x_np = x.cpu().numpy() 2025-08-26T20:46:31.0474291Z >>> res = np.stack(np.nonzero(x_np), axis=1) 2025-08-26T20:46:31.0474639Z >>> return torch.tensor(res, device=x.device) 2025-08-26T20:46:31.0475017Z >>> 2025-08-26T20:46:31.0475216Z >>> @nonzero.register_fake 2025-08-26T20:46:31.0475493Z >>> def _(x): 2025-08-26T20:46:31.0475805Z >>> # Number of nonzero-elements is data-dependent. 2025-08-26T20:46:31.0476196Z >>> # Since we cannot peek at the data in an abstract impl, 2025-08-26T20:46:31.0476683Z >>> # we use the ctx object to construct a new symint that 2025-08-26T20:46:31.0477111Z >>> # represents the data-dependent size. 2025-08-26T20:46:31.0477488Z >>> ctx = torch.library.get_ctx() 2025-08-26T20:46:31.0477797Z >>> nnz = ctx.new_dynamic_size() 2025-08-26T20:46:31.0478084Z >>> shape = [nnz, x.dim()] 2025-08-26T20:46:31.0478401Z >>> result = x.new_empty(shape, dtype=torch.int64) 2025-08-26T20:46:31.0478725Z >>> return result 2025-08-26T20:46:31.0478950Z >>> 2025-08-26T20:46:31.0479165Z >>> x = torch.tensor([0, 1, 2, 0, 0, 1]) 2025-08-26T20:46:31.0479482Z >>> # xdoctest: +SKIP("Requires Python <= 3.11") 2025-08-26T20:46:31.0479834Z >>> out = torch.compile(nonzero, fullgraph=True)(x) 2025-08-26T20:46:31.0480175Z >>> # xdoctest: +SKIP("Requires Python <= 3.11") 2025-08-26T20:46:31.0480508Z >>> assert torch.allclose(out, x.nonzero()) 2025-08-26T20:46:31.0480777Z 2025-08-26T20:46:31.0480853Z 2025-08-26T20:46:31.0481277Z Original Error: IndentationError('expected an indented block', ('', 37, 1, '_._ = None\n')) 2025-08-26T20:46:31.0481882Z 2025-08-26T20:46:31.0481958Z _._ = None 2025-08-26T20:46:31.0482117Z ^ 2025-08-26T20:46:31.2884608Z msg = Cannot scrape callname=unsafe_generate_fake_kernels in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\fake_profile.py line=94. 2025-08-26T20:46:31.2885636Z Caused by: DoctestParseError('Failed to parse doctest in _label_docsrc_lines') 2025-08-26T20:46:31.2885988Z 2025-08-26T20:46:31.2886198Z Registers a fake kernel based on the given operator profiles. This fake 2025-08-26T20:46:31.2886740Z kernel registration will override any existing fake kernel registrations. 2025-08-26T20:46:31.2887070Z 2025-08-26T20:46:31.2887264Z The input is a dictionary mapping operator names to a set of operator 2025-08-26T20:46:31.2887783Z profiles, which we will use to generate fake kernels. The operator profiles 2025-08-26T20:46:31.2888282Z are a record of the input and output tensor metadata. Based on this 2025-08-26T20:46:31.2888798Z information we will match a given input to the recorded profile, and return 2025-08-26T20:46:31.2889325Z an output with the same metadata as in the recorded profile. If a profile 2025-08-26T20:46:31.2889758Z doesn't exist then an exception will be thrown. 2025-08-26T20:46:31.2889978Z 2025-08-26T20:46:31.2890183Z The fake kernel generation is considered unsafe because it relies on the 2025-08-26T20:46:31.2890803Z rigid, pre-defined operator profiles that do not account for potential 2025-08-26T20:46:31.2891340Z variations in output behavior. Specifically, the generated kernels assume a 2025-08-26T20:46:31.2891906Z fixed relationship between input and output ranks. However, in reality, it's 2025-08-26T20:46:31.2892455Z possible that data-dependent operations may produce outputs of different 2025-08-26T20:46:31.2892987Z ranks even when given inputs of the same rank. The generated fake kernels 2025-08-26T20:46:31.2893485Z are inflexible and unable to accommodate these nuances, making them 2025-08-26T20:46:31.2894061Z potentially unsafe. 2025-08-26T20:46:31.2894195Z 2025-08-26T20:46:31.2894276Z Args: 2025-08-26T20:46:31.2894574Z op_profiles (dict[str, set[OpProfile]]): A dictionary mapping operator 2025-08-26T20:46:31.2895060Z name to a set of operator profiles from which we will generate fake 2025-08-26T20:46:31.2895418Z kernels. 2025-08-26T20:46:31.2895543Z 2025-08-26T20:46:31.2895618Z Examples: 2025-08-26T20:46:31.2895720Z 2025-08-26T20:46:31.2895889Z >>> # Example: Registering an op-profile from draft-export 2025-08-26T20:46:31.2896269Z >>> import torch 2025-08-26T20:46:31.2896602Z >>> from torch.export._draft_export import draft_export 2025-08-26T20:46:31.2896921Z >>> 2025-08-26T20:46:31.2897199Z >>> @torch.library.custom_op("mylib::foo", mutates_args=()) 2025-08-26T20:46:31.2897656Z >>> def foo(x: Tensor, y: Tensor) -> Tensor: 2025-08-26T20:46:31.2897943Z >>> return x + y 2025-08-26T20:46:31.2898160Z >>> 2025-08-26T20:46:31.2898348Z >>> class M(torch.nn.Module): 2025-08-26T20:46:31.2898611Z >>> def forward(self, a, b): 2025-08-26T20:46:31.2898910Z >>> res = torch.ops.mylib.foo(a, b) # no fake impl 2025-08-26T20:46:31.2899230Z >>> return res 2025-08-26T20:46:31.2899444Z >>> 2025-08-26T20:46:31.2899689Z >>> ep = draft_export(M(), (torch.ones(3, 4), torch.ones(3, 4)) 2025-08-26T20:46:31.2900012Z >>> 2025-08-26T20:46:31.2900369Z >>> with torch._library.fake_profile.unsafe_generate_fake_kernels(ep._report.op_profiles): 2025-08-26T20:46:31.2900861Z >>> decomp = ep.run_decompositions() 2025-08-26T20:46:31.2901070Z 2025-08-26T20:46:31.2901074Z 2025-08-26T20:46:31.2901525Z Original Error: IncompleteParseError('ill-formed doctest: all parts have been processed but the doctest source is not balanced') 2025-08-26T20:46:31.2902174Z 2025-08-26T20:46:31.2902249Z running 862 test(s) 2025-08-26T20:46:31.2902804Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::typename:0, line 1082 <- wrt source file 2025-08-26T20:46:31.2903707Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::typename:0 2025-08-26T20:46:31.2904540Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::is_tensor:0, line 1118 <- wrt source file 2025-08-26T20:46:31.2905992Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::is_tensor:0 2025-08-26T20:46:31.2906874Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::set_default_device:0, line 1203 <- wrt source file 2025-08-26T20:46:31.2907826Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::set_default_device:0 2025-08-26T20:46:31.2908778Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::set_default_tensor_type:0, line 1252 <- wrt source file 2025-08-26T20:46:31.2909715Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::set_default_tensor_type:0 2025-08-26T20:46:31.2910606Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::set_default_dtype:0, line 1289 <- wrt source file 2025-08-26T20:46:31.2911489Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::set_default_dtype:0 2025-08-26T20:46:31.2912418Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::use_deterministic_algorithms:0, line 1444 <- wrt source file 2025-08-26T20:46:31.2913380Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::use_deterministic_algorithms:0 2025-08-26T20:46:31.2914370Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::compile:0, line 2567 <- wrt source file 2025-08-26T20:46:31.2915299Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::compile:0 2025-08-26T20:46:31.2916215Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::_is_device_backend_autoload_enabled:0, line 2840 <- wrt source file 2025-08-26T20:46:31.2917231Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::_is_device_backend_autoload_enabled:0 2025-08-26T20:46:31.2918193Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::broadcast_tensors:0, line 64 <- wrt source file 2025-08-26T20:46:31.2919115Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::broadcast_tensors:0 2025-08-26T20:46:31.2920120Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::broadcast_shapes:0, line 92 <- wrt source file 2025-08-26T20:46:31.2921082Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::broadcast_shapes:0 2025-08-26T20:46:31.2922031Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::split:0, line 144 <- wrt source file 2025-08-26T20:46:31.2922852Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::split:0 2025-08-26T20:46:31.2923689Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::einsum:0, line 258 <- wrt source file 2025-08-26T20:46:31.2924525Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::einsum:0 2025-08-26T20:46:31.2925406Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::meshgrid:0, line 450 <- wrt source file 2025-08-26T20:46:31.2926300Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::meshgrid:0 2025-08-26T20:46:31.2927148Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::_unique_impl:0, line 835 <- wrt source file 2025-08-26T20:46:31.2928087Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::_unique_impl:0 2025-08-26T20:46:31.2929020Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::_unique_consecutive_impl:0, line 992 <- wrt source file 2025-08-26T20:46:31.2929986Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::_unique_consecutive_impl:0 2025-08-26T20:46:31.2930917Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::tensordot:0, line 1267 <- wrt source file 2025-08-26T20:46:31.2931877Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::tensordot:0 2025-08-26T20:46:31.2932754Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::cartesian_prod:0, line 1351 <- wrt source file 2025-08-26T20:46:31.2933659Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::cartesian_prod:0 2025-08-26T20:46:31.2934537Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::block_diag:0, line 1385 <- wrt source file 2025-08-26T20:46:31.2935407Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::block_diag:0 2025-08-26T20:46:31.2936266Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::cdist:0, line 1441 <- wrt source file 2025-08-26T20:46:31.2937132Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::cdist:0 2025-08-26T20:46:31.2938037Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::atleast_1d:0, line 1482 <- wrt source file 2025-08-26T20:46:31.2938966Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::atleast_1d:0 2025-08-26T20:46:31.2939918Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::atleast_2d:0, line 1520 <- wrt source file 2025-08-26T20:46:31.2940783Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::atleast_2d:0 2025-08-26T20:46:31.2941637Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::atleast_3d:0, line 1560 <- wrt source file 2025-08-26T20:46:31.2942491Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::atleast_3d:0 2025-08-26T20:46:31.2943380Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::norm:0, line 1735 <- wrt source file 2025-08-26T20:46:31.2944254Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::norm:0 2025-08-26T20:46:32.3969760Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::unravel_index:0, line 1903 <- wrt source file 2025-08-26T20:46:32.3970742Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::unravel_index:0 2025-08-26T20:46:32.3971623Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::chain_matmul:0, line 2003 <- wrt source file 2025-08-26T20:46:32.3972573Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::chain_matmul:0 2025-08-26T20:46:32.3973479Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::_lu_impl:0, line 2104 <- wrt source file 2025-08-26T20:46:32.3974319Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::_lu_impl:0 2025-08-26T20:46:32.3975115Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\hub.py::list:0, line 473 <- wrt source file 2025-08-26T20:46:32.3975871Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\hub.py::list:0 2025-08-26T20:46:32.3976778Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\hub.py::help:0, line 533 <- wrt source file 2025-08-26T20:46:32.3977542Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\hub.py::help:0 2025-08-26T20:46:32.3978327Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\hub.py::load:0, line 624 <- wrt source file 2025-08-26T20:46:32.3979113Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\hub.py::load:0 2025-08-26T20:46:32.3979881Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\hub.py::_load_local:0, line 672 <- wrt source file 2025-08-26T20:46:32.3980686Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\hub.py::_load_local:0 2025-08-26T20:46:32.3981519Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\hub.py::download_url_to_file:0, line 707 <- wrt source file 2025-08-26T20:46:32.3982392Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\hub.py::download_url_to_file:0 2025-08-26T20:46:32.3983259Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\hub.py::load_state_dict_from_url:0, line 847 <- wrt source file 2025-08-26T20:46:32.3984179Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\hub.py::load_state_dict_from_url:0 2025-08-26T20:46:32.3985096Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::Library.define:0, line 153 <- wrt source file 2025-08-26T20:46:32.3985962Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::Library.define:0 2025-08-26T20:46:32.3986870Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::Library._impl_with_aoti_compile:0, line 247 <- wrt source file 2025-08-26T20:46:32.3987860Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::Library._impl_with_aoti_compile:0 2025-08-26T20:46:32.3988896Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::Library.impl:0, line 307 <- wrt source file 2025-08-26T20:46:32.3989802Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::Library.impl:0 2025-08-26T20:46:32.3990673Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::define:0, line 512 <- wrt source file 2025-08-26T20:46:32.3991483Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::define:0 2025-08-26T20:46:32.3992281Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::impl:0, line 618 <- wrt source file 2025-08-26T20:46:32.3993077Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::impl:0 2025-08-26T20:46:32.3993967Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::register_kernel:0, line 799 <- wrt source file 2025-08-26T20:46:32.3994853Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::register_kernel:0 2025-08-26T20:46:32.3995800Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::register_autocast:0, line 867 <- wrt source file 2025-08-26T20:46:32.3996694Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::register_autocast:0 2025-08-26T20:46:32.3997576Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::register_autograd:0, line 1116 <- wrt source file 2025-08-26T20:46:32.3998451Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::register_autograd:0 2025-08-26T20:46:32.3999374Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::register_torch_dispatch:0, line 1232 <- wrt source file 2025-08-26T20:46:32.4000307Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::register_torch_dispatch:0 2025-08-26T20:46:32.4001283Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::register_vmap:0, line 1321 <- wrt source file 2025-08-26T20:46:32.4002240Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::register_vmap:0 2025-08-26T20:46:32.4003072Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::opcheck:0, line 1646 <- wrt source file 2025-08-26T20:46:32.4003895Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::opcheck:0 2025-08-26T20:46:32.4004768Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\overrides.py::get_ignored_functions:0, line 116 <- wrt source file 2025-08-26T20:46:32.4005690Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\overrides.py::get_ignored_functions:0 2025-08-26T20:46:32.4006631Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\overrides.py::get_testing_overrides:0, line 422 <- wrt source file 2025-08-26T20:46:32.4007624Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\overrides.py::get_testing_overrides:0 2025-08-26T20:46:32.4008555Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\overrides.py::wrap_torch_function:0, line 1577 <- wrt source file 2025-08-26T20:46:32.4009466Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\overrides.py::wrap_torch_function:0 2025-08-26T20:46:32.4010380Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\overrides.py::handle_torch_function:0, line 1712 <- wrt source file 2025-08-26T20:46:32.4011307Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\overrides.py::handle_torch_function:0 2025-08-26T20:46:32.4012382Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\overrides.py::is_tensor_method_or_property:0, line 1960 <- wrt source file 2025-08-26T20:46:32.4013405Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\overrides.py::is_tensor_method_or_property:0 2025-08-26T20:46:32.4014330Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\overrides.py::is_tensor_like:0, line 1979 <- wrt source file 2025-08-26T20:46:32.4015206Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\overrides.py::is_tensor_like:0 2025-08-26T20:46:32.4016090Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\quasirandom.py::SobolEngine:0, line 39 <- wrt source file 2025-08-26T20:46:32.4016975Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\quasirandom.py::SobolEngine:0 2025-08-26T20:46:32.4017914Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\serialization.py::add_safe_globals:0, line 299 <- wrt source file 2025-08-26T20:46:32.4018931Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\serialization.py::add_safe_globals:0 2025-08-26T20:46:32.4019832Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\serialization.py::safe_globals:0, line 324 <- wrt source file 2025-08-26T20:46:32.4020733Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\serialization.py::safe_globals:0 2025-08-26T20:46:32.4021624Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\serialization.py::skip_data:0, line 400 <- wrt source file 2025-08-26T20:46:32.4022496Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\serialization.py::skip_data:0 2025-08-26T20:46:32.4023404Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\serialization.py::register_package:0, line 472 <- wrt source file 2025-08-26T20:46:32.4024411Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\serialization.py::register_package:0 2025-08-26T20:46:32.4025341Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\serialization.py::save:0, line 950 <- wrt source file 2025-08-26T20:46:32.4026182Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\serialization.py::save:0 2025-08-26T20:46:32.4027020Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\serialization.py::load:0, line 1363 <- wrt source file 2025-08-26T20:46:32.4027870Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\serialization.py::load:0 2025-08-26T20:46:32.4540873Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\torch_version.py::TorchVersion:0, line 19 <- wrt source file 2025-08-26T20:46:32.4542457Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\torch_version.py::TorchVersion:0 2025-08-26T20:46:32.4544096Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_C.cp39-win_amd64.pyd::Generator:0, line 15 <- wrt source file 2025-08-26T20:46:32.4545645Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_C.cp39-win_amd64.pyd::Generator:0 2025-08-26T20:46:32.4547203Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_C.cp39-win_amd64.pyd::_LinAlgError:0, line 5 <- wrt source file 2025-08-26T20:46:32.4548777Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_C.cp39-win_amd64.pyd::_LinAlgError:0 2025-08-26T20:46:32.4550338Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_custom_ops.py::custom_op:0, line 55 <- wrt source file 2025-08-26T20:46:32.4551806Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_custom_ops.py::custom_op:0 2025-08-26T20:46:32.4563940Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_custom_ops.py::impl:0, line 138 <- wrt source file 2025-08-26T20:46:32.4565469Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_custom_ops.py::impl:0 2025-08-26T20:46:32.4566406Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_custom_ops.py::impl_abstract:0, line 208 <- wrt source file 2025-08-26T20:46:32.4567495Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_custom_ops.py::impl_abstract:0 2025-08-26T20:46:32.4568795Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_namedtensor_internals.py::update_names:0, line 118 <- wrt source file 2025-08-26T20:46:32.4569868Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_namedtensor_internals.py::update_names:0 2025-08-26T20:46:32.4570837Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor.py::Tensor.register_hook:0, line 649 <- wrt source file 2025-08-26T20:46:32.4571858Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor.py::Tensor.register_hook:0 2025-08-26T20:46:32.4572958Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor.py::Tensor.register_post_accumulate_grad_hook:0, line 706 <- wrt source file 2025-08-26T20:46:32.4574028Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor.py::Tensor.register_post_accumulate_grad_hook:0 2025-08-26T20:46:32.4575011Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor.py::Tensor.refine_names:0, line 1333 <- wrt source file 2025-08-26T20:46:32.4575907Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor.py::Tensor.refine_names:0 2025-08-26T20:46:32.4576790Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor.py::Tensor.align_to:0, line 1378 <- wrt source file 2025-08-26T20:46:32.4577656Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor.py::Tensor.align_to:0 2025-08-26T20:46:32.4578658Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor.py::Tensor.rename:0, line 1451 <- wrt source file 2025-08-26T20:46:32.4579525Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor.py::Tensor.rename:0 2025-08-26T20:46:32.4580401Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor.py::Tensor.to_sparse_coo:0, line 1481 <- wrt source file 2025-08-26T20:46:32.4581299Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor.py::Tensor.to_sparse_coo:0 2025-08-26T20:46:32.4582190Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor.py::Tensor.dim_order:0, line 1513 <- wrt source file 2025-08-26T20:46:32.4583069Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor.py::Tensor.dim_order:0 2025-08-26T20:46:32.4584031Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor_str.py::set_printoptions:0, line 53 <- wrt source file 2025-08-26T20:46:32.4584932Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor_str.py::set_printoptions:0 2025-08-26T20:46:32.4585860Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\accelerator\__init__.py::current_accelerator:0, line 113 <- wrt source file 2025-08-26T20:46:32.4586847Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\accelerator\__init__.py::current_accelerator:0 2025-08-26T20:46:32.4587803Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\accelerator\__init__.py::device_index:0, line 249 <- wrt source file 2025-08-26T20:46:32.4588738Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\accelerator\__init__.py::device_index:0 2025-08-26T20:46:32.4589712Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\compiler\__init__.py::allow_in_graph:0, line 125 <- wrt source file 2025-08-26T20:46:32.4590773Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\compiler\__init__.py::allow_in_graph:0 2025-08-26T20:46:32.4591720Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\compiler\__init__.py::substitute_in_graph:0, line 181 <- wrt source file 2025-08-26T20:46:32.4592688Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\compiler\__init__.py::substitute_in_graph:0 2025-08-26T20:46:32.4593611Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\compiler\__init__.py::wrap_numpy:0, line 411 <- wrt source file 2025-08-26T20:46:32.4594514Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\compiler\__init__.py::wrap_numpy:0 2025-08-26T20:46:32.4595459Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\compiler\__init__.py::is_compiling:0, line 443 <- wrt source file 2025-08-26T20:46:32.4596505Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\compiler\__init__.py::is_compiling:0 2025-08-26T20:46:32.4597442Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\compiler\__init__.py::is_dynamo_compiling:0, line 464 <- wrt source file 2025-08-26T20:46:32.4598400Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\compiler\__init__.py::is_dynamo_compiling:0 2025-08-26T20:46:32.4599342Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\compiler\__init__.py::is_exporting:0, line 482 <- wrt source file 2025-08-26T20:46:32.4600250Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\compiler\__init__.py::is_exporting:0 2025-08-26T20:46:32.4601233Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\compiler\__init__.py::save_cache_artifacts:0, line 497 <- wrt source file 2025-08-26T20:46:32.4602407Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\compiler\__init__.py::save_cache_artifacts:0 2025-08-26T20:46:32.4603417Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\compiler\__init__.py::load_cache_artifacts:0, line 512 <- wrt source file 2025-08-26T20:46:32.4604392Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\compiler\__init__.py::load_cache_artifacts:0 2025-08-26T20:46:32.4605324Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\__init__.py::_compile_kernel:0, line 1760 <- wrt source file 2025-08-26T20:46:32.4606222Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\__init__.py::_compile_kernel:0 2025-08-26T20:46:32.4607104Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\export\__init__.py::save:0, line 345 <- wrt source file 2025-08-26T20:46:32.4608040Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\export\__init__.py::save:0 2025-08-26T20:46:32.4608926Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\export\__init__.py::load:0, line 415 <- wrt source file 2025-08-26T20:46:32.4609768Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\export\__init__.py::load:0 2025-08-26T20:46:32.4610646Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\export\__init__.py::register_dataclass:0, line 572 <- wrt source file 2025-08-26T20:46:32.4611592Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\export\__init__.py::register_dataclass:0 2025-08-26T20:46:32.4612510Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\futures\__init__.py::Future.then:0, line 148 <- wrt source file 2025-08-26T20:46:32.4613438Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\futures\__init__.py::Future.then:0 2025-08-26T20:46:32.4614560Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\futures\__init__.py::Future.add_done_callback:0, line 197 <- wrt source file 2025-08-26T20:46:32.4615549Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\futures\__init__.py::Future.add_done_callback:0 2025-08-26T20:46:32.4733864Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\futures\__init__.py::Future.set_result:0, line 231 <- wrt source file 2025-08-26T20:46:32.4735646Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\futures\__init__.py::Future.set_result:0 2025-08-26T20:46:32.4737424Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\futures\__init__.py::Future.set_exception:0, line 261 <- wrt source file 2025-08-26T20:46:32.4739204Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\futures\__init__.py::Future.set_exception:0 2025-08-26T20:46:32.4741775Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\futures\__init__.py::collect_all:0, line 295 <- wrt source file 2025-08-26T20:46:32.4743507Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\futures\__init__.py::collect_all:0 2025-08-26T20:46:32.4745130Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\jit\__init__.py::annotate:0, line 147 <- wrt source file 2025-08-26T20:46:32.4746687Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\jit\__init__.py::annotate:0 2025-08-26T20:46:32.4748398Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\monitor\__init__.py::TensorboardEventHandler:0, line 22 <- wrt source file 2025-08-26T20:46:32.4750268Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\monitor\__init__.py::TensorboardEventHandler:0 2025-08-26T20:46:32.4752015Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\mps\__init__.py::compile_shader:0, line 148 <- wrt source file 2025-08-26T20:46:32.4753932Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\mps\__init__.py::compile_shader:0 2025-08-26T20:46:32.4755606Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nested\__init__.py::as_nested_tensor:0, line 61 <- wrt source file 2025-08-26T20:46:32.4757315Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nested\__init__.py::as_nested_tensor:0 2025-08-26T20:46:32.4759002Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nested\__init__.py::nested_tensor:0, line 240 <- wrt source file 2025-08-26T20:46:32.4760677Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nested\__init__.py::nested_tensor:0 2025-08-26T20:46:32.4762370Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nested\__init__.py::narrow:0, line 315 <- wrt source file 2025-08-26T20:46:32.4764086Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nested\__init__.py::narrow:0 2025-08-26T20:46:32.4765898Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nested\__init__.py::nested_tensor_from_jagged:0, line 405 <- wrt source file 2025-08-26T20:46:32.4767785Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nested\__init__.py::nested_tensor_from_jagged:0 2025-08-26T20:46:32.4769567Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nested\__init__.py::masked_select:0, line 481 <- wrt source file 2025-08-26T20:46:32.4771243Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nested\__init__.py::masked_select:0 2025-08-26T20:46:32.4772889Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\sparse\__init__.py::sum:0, line 223 <- wrt source file 2025-08-26T20:46:32.4774445Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\sparse\__init__.py::sum:0 2025-08-26T20:46:32.4776434Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\sparse\__init__.py::check_sparse_tensor_invariants:0, line 475 <- wrt source file 2025-08-26T20:46:32.4778380Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\sparse\__init__.py::check_sparse_tensor_invariants:0 2025-08-26T20:46:32.4780262Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\sparse\__init__.py::as_sparse_gradcheck:0, line 561 <- wrt source file 2025-08-26T20:46:32.4782035Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\sparse\__init__.py::as_sparse_gradcheck:0 2025-08-26T20:46:32.4783772Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_inductor\__init__.py::list_mode_options:0, line 320 <- wrt source file 2025-08-26T20:46:32.4785546Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_inductor\__init__.py::list_mode_options:0 2025-08-26T20:46:32.4787423Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_inductor\__init__.py::list_options:0, line 357 <- wrt source file 2025-08-26T20:46:32.4789185Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_inductor\__init__.py::list_options:0 2025-08-26T20:46:32.4791016Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_prims_common\__init__.py::compute_required_storage_length:0, line 1884 <- wrt source file 2025-08-26T20:46:32.4793042Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_prims_common\__init__.py::compute_required_storage_length:0 2025-08-26T20:46:32.4794899Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\amp\grad_scaler.py::GradScaler:0, line 64 <- wrt source file 2025-08-26T20:46:32.4796573Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\amp\grad_scaler.py::GradScaler:0 2025-08-26T20:46:32.4798389Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\intrinsic\qat\modules\linear_relu.py::LinearReLU:0, line 30 <- wrt source file 2025-08-26T20:46:32.4800577Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\intrinsic\qat\modules\linear_relu.py::LinearReLU:0 2025-08-26T20:46:32.4802781Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\intrinsic\quantized\dynamic\modules\linear_relu.py::LinearReLU:0, line 24 <- wrt source file 2025-08-26T20:46:32.4804977Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\intrinsic\quantized\dynamic\modules\linear_relu.py::LinearReLU:0 2025-08-26T20:46:32.4807106Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\intrinsic\quantized\modules\linear_relu.py::LinearReLU:0, line 25 <- wrt source file 2025-08-26T20:46:32.4809259Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\intrinsic\quantized\modules\linear_relu.py::LinearReLU:0 2025-08-26T20:46:32.4811539Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\intrinsic\quantized\modules\linear_relu.py::LinearLeakyReLU:0, line 67 <- wrt source file 2025-08-26T20:46:32.4813764Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\intrinsic\quantized\modules\linear_relu.py::LinearLeakyReLU:0 2025-08-26T20:46:32.4815895Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\intrinsic\quantized\modules\linear_relu.py::LinearTanh:0, line 142 <- wrt source file 2025-08-26T20:46:32.4818160Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\intrinsic\quantized\modules\linear_relu.py::LinearTanh:0 2025-08-26T20:46:32.4820287Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantizable\modules\rnn.py::LSTMCell:0, line 30 <- wrt source file 2025-08-26T20:46:32.4822512Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantizable\modules\rnn.py::LSTMCell:0 2025-08-26T20:46:32.4824522Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantizable\modules\rnn.py::LSTM:0, line 413 <- wrt source file 2025-08-26T20:46:32.4826437Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantizable\modules\rnn.py::LSTM:0 2025-08-26T20:46:32.4828347Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\functional.py::conv1d:0, line 211 <- wrt source file 2025-08-26T20:46:32.4830296Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\functional.py::conv1d:0 2025-08-26T20:46:32.4832233Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\functional.py::conv2d:0, line 283 <- wrt source file 2025-08-26T20:46:32.4834277Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\functional.py::conv2d:0 2025-08-26T20:46:32.4836175Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\functional.py::conv3d:0, line 359 <- wrt source file 2025-08-26T20:46:32.4838079Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\functional.py::conv3d:0 2025-08-26T20:46:32.4840041Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\__init__.py::Quantize:0, line 95 <- wrt source file 2025-08-26T20:46:32.4842176Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\__init__.py::Quantize:0 2025-08-26T20:46:32.4844200Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\__init__.py::DeQuantize:0, line 145 <- wrt source file 2025-08-26T20:46:32.4903713Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\__init__.py::DeQuantize:0 2025-08-26T20:46:32.4905802Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\conv.py::Conv1d:0, line 43 <- wrt source file 2025-08-26T20:46:32.4907671Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\conv.py::Conv1d:0 2025-08-26T20:46:32.4909612Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\conv.py::Conv2d:0, line 124 <- wrt source file 2025-08-26T20:46:32.4911610Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\conv.py::Conv2d:0 2025-08-26T20:46:32.4913497Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\conv.py::Conv3d:0, line 209 <- wrt source file 2025-08-26T20:46:32.4915399Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\conv.py::Conv3d:0 2025-08-26T20:46:32.4917339Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\conv.py::ConvTranspose1d:0, line 296 <- wrt source file 2025-08-26T20:46:32.4919376Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\conv.py::ConvTranspose1d:0 2025-08-26T20:46:32.4921517Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\conv.py::ConvTranspose2d:0, line 378 <- wrt source file 2025-08-26T20:46:32.4923565Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\conv.py::ConvTranspose2d:0 2025-08-26T20:46:32.4925595Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\conv.py::ConvTranspose3d:0, line 460 <- wrt source file 2025-08-26T20:46:32.4928782Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\conv.py::ConvTranspose3d:0 2025-08-26T20:46:32.4930843Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\linear.py::Linear:0, line 30 <- wrt source file 2025-08-26T20:46:32.4932776Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\linear.py::Linear:0 2025-08-26T20:46:32.4934711Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\rnn.py::LSTM:0, line 515 <- wrt source file 2025-08-26T20:46:32.4936531Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\rnn.py::LSTM:0 2025-08-26T20:46:32.4938347Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\rnn.py::GRU:0, line 801 <- wrt source file 2025-08-26T20:46:32.4940363Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\rnn.py::GRU:0 2025-08-26T20:46:32.4942372Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\rnn.py::RNNCell:0, line 1206 <- wrt source file 2025-08-26T20:46:32.4944338Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\rnn.py::RNNCell:0 2025-08-26T20:46:32.4946246Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\rnn.py::LSTMCell:0, line 1273 <- wrt source file 2025-08-26T20:46:32.4948194Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\rnn.py::LSTMCell:0 2025-08-26T20:46:32.4950110Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\rnn.py::GRUCell:0, line 1326 <- wrt source file 2025-08-26T20:46:32.4952094Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\rnn.py::GRUCell:0 2025-08-26T20:46:32.4954139Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\activation.py::ReLU6:0, line 36 <- wrt source file 2025-08-26T20:46:32.4955990Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\activation.py::ReLU6:0 2025-08-26T20:46:32.4957823Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\conv.py::Conv1d:0, line 376 <- wrt source file 2025-08-26T20:46:32.4959596Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\conv.py::Conv1d:0 2025-08-26T20:46:32.4961527Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\conv.py::Conv2d:0, line 505 <- wrt source file 2025-08-26T20:46:32.4963407Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\conv.py::Conv2d:0 2025-08-26T20:46:32.4965251Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\conv.py::Conv3d:0, line 635 <- wrt source file 2025-08-26T20:46:32.4967012Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\conv.py::Conv3d:0 2025-08-26T20:46:32.4968843Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\conv.py::ConvTranspose1d:0, line 892 <- wrt source file 2025-08-26T20:46:32.4970702Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\conv.py::ConvTranspose1d:0 2025-08-26T20:46:32.4972638Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\conv.py::ConvTranspose2d:0, line 1014 <- wrt source file 2025-08-26T20:46:32.4974756Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\conv.py::ConvTranspose2d:0 2025-08-26T20:46:32.4976679Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\conv.py::ConvTranspose3d:0, line 1140 <- wrt source file 2025-08-26T20:46:32.4978637Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\conv.py::ConvTranspose3d:0 2025-08-26T20:46:32.4980544Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\embedding_ops.py::Embedding:0, line 111 <- wrt source file 2025-08-26T20:46:32.4982430Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\embedding_ops.py::Embedding:0 2025-08-26T20:46:32.4984441Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\embedding_ops.py::EmbeddingBag:0, line 275 <- wrt source file 2025-08-26T20:46:32.4986549Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\embedding_ops.py::EmbeddingBag:0 2025-08-26T20:46:32.4988666Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\functional_modules.py::FloatFunctional:0, line 23 <- wrt source file 2025-08-26T20:46:32.4990873Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\functional_modules.py::FloatFunctional:0 2025-08-26T20:46:32.4992998Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\functional_modules.py::QFunctional:0, line 176 <- wrt source file 2025-08-26T20:46:32.4995123Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\functional_modules.py::QFunctional:0 2025-08-26T20:46:32.4997216Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\linear.py::Linear:0, line 138 <- wrt source file 2025-08-26T20:46:32.4999269Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\linear.py::Linear:0 2025-08-26T20:46:32.5001055Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\rnn.py::LSTM:0, line 24 <- wrt source file 2025-08-26T20:46:32.5002691Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\rnn.py::LSTM:0 2025-08-26T20:46:32.5004409Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\pruning\scheduler\lambda_scheduler.py::LambdaSL:0, line 24 <- wrt source file 2025-08-26T20:46:32.5006339Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\pruning\scheduler\lambda_scheduler.py::LambdaSL:0 2025-08-26T20:46:32.5008392Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\pruning\sparsifier\base_sparsifier.py::BaseSparsifier:0, line 47 <- wrt source file 2025-08-26T20:46:32.5010461Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\pruning\sparsifier\base_sparsifier.py::BaseSparsifier:0 2025-08-26T20:46:32.5012584Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\pruning\sparsifier\base_sparsifier.py::BaseSparsifier.squash_mask:0, line 245 <- wrt source file 2025-08-26T20:46:32.5014892Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\pruning\sparsifier\base_sparsifier.py::BaseSparsifier.squash_mask:0 2025-08-26T20:46:32.5017416Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\pruning\_experimental\data_scheduler\base_data_scheduler.py::BaseDataScheduler.get_schedule_param:0, line 98 <- wrt source file 2025-08-26T20:46:32.5020164Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\pruning\_experimental\data_scheduler\base_data_scheduler.py::BaseDataScheduler.get_schedule_param:0 2025-08-26T20:46:32.5023061Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\pruning\_experimental\data_sparsifier\base_data_sparsifier.py::BaseDataSparsifier:0, line 55 <- wrt source file 2025-08-26T20:46:32.5025545Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\pruning\_experimental\data_sparsifier\base_data_sparsifier.py::BaseDataSparsifier:0 2025-08-26T20:46:32.5027819Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fuser_method_mappings.py::fuse_conv_bn:0, line 31 <- wrt source file 2025-08-26T20:46:32.5029865Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fuser_method_mappings.py::fuse_conv_bn:0 2025-08-26T20:46:32.5031914Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fuser_method_mappings.py::fuse_conv_bn_relu:0, line 76 <- wrt source file 2025-08-26T20:46:32.5034104Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fuser_method_mappings.py::fuse_conv_bn_relu:0 2025-08-26T20:46:32.5036192Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fuser_method_mappings.py::fuse_linear_bn:0, line 130 <- wrt source file 2025-08-26T20:46:32.5038175Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fuser_method_mappings.py::fuse_linear_bn:0 2025-08-26T20:46:32.5040219Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fuser_method_mappings.py::fuse_convtranspose_bn:0, line 163 <- wrt source file 2025-08-26T20:46:32.5042509Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fuser_method_mappings.py::fuse_convtranspose_bn:0 2025-08-26T20:46:32.5044534Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fuse_modules.py::fuse_modules:0, line 176 <- wrt source file 2025-08-26T20:46:32.5046452Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fuse_modules.py::fuse_modules:0 2025-08-26T20:46:32.5048403Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\observer.py::_with_args:0, line 110 <- wrt source file 2025-08-26T20:46:32.5050184Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\observer.py::_with_args:0 2025-08-26T20:46:32.5052045Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\observer.py::_with_callable_args:0, line 132 <- wrt source file 2025-08-26T20:46:32.5054010Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\observer.py::_with_callable_args:0 2025-08-26T20:46:32.5055900Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_fx.py::fuse_fx:0, line 218 <- wrt source file 2025-08-26T20:46:32.5057767Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_fx.py::fuse_fx:0 2025-08-26T20:46:32.5059621Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_fx.py::prepare_fx:0, line 288 <- wrt source file 2025-08-26T20:46:32.5061539Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_fx.py::prepare_fx:0 2025-08-26T20:46:32.5063445Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_fx.py::prepare_qat_fx:0, line 427 <- wrt source file 2025-08-26T20:46:32.5065404Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_fx.py::prepare_qat_fx:0 2025-08-26T20:46:32.5067355Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_fx.py::convert_fx:0, line 608 <- wrt source file 2025-08-26T20:46:32.5069365Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_fx.py::convert_fx:0 2025-08-26T20:46:32.5071301Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_fx.py::convert_to_reference_fx:0, line 668 <- wrt source file 2025-08-26T20:46:32.5073369Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_fx.py::convert_to_reference_fx:0 2025-08-26T20:46:32.5075499Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_fx.py::_convert_to_reference_decomposed_fx:0, line 720 <- wrt source file 2025-08-26T20:46:32.5090183Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_fx.py::_convert_to_reference_decomposed_fx:0 2025-08-26T20:46:32.5092339Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_pt2e.py::prepare_pt2e:0, line 51 <- wrt source file 2025-08-26T20:46:32.5094436Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_pt2e.py::prepare_pt2e:0 2025-08-26T20:46:32.5096409Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_pt2e.py::prepare_qat_pt2e:0, line 130 <- wrt source file 2025-08-26T20:46:32.5098514Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_pt2e.py::prepare_qat_pt2e:0 2025-08-26T20:46:32.5100576Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_pt2e.py::convert_pt2e:0, line 228 <- wrt source file 2025-08-26T20:46:32.5102557Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_pt2e.py::convert_pt2e:0 2025-08-26T20:46:32.5104471Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\utils.py::get_combined_dict:0, line 172 <- wrt source file 2025-08-26T20:46:32.5106488Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\utils.py::get_combined_dict:0 2025-08-26T20:46:32.5108333Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\utils.py::_get_path_of_module:0, line 544 <- wrt source file 2025-08-26T20:46:32.5110295Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\utils.py::_get_path_of_module:0 2025-08-26T20:46:32.5112238Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\utils.py::_get_signature_locals:0, line 566 <- wrt source file 2025-08-26T20:46:32.5114132Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\utils.py::_get_signature_locals:0 2025-08-26T20:46:32.5116083Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\utils.py::_get_default_kwargs:0, line 580 <- wrt source file 2025-08-26T20:46:32.5117965Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\utils.py::_get_default_kwargs:0 2025-08-26T20:46:32.5119814Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\utils.py::_normalize_kwargs:0, line 602 <- wrt source file 2025-08-26T20:46:32.5121814Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\utils.py::_normalize_kwargs:0 2025-08-26T20:46:32.5123720Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\utils.py::_get_num_pos_args:0, line 729 <- wrt source file 2025-08-26T20:46:32.5125533Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\utils.py::_get_num_pos_args:0 2025-08-26T20:46:32.5127570Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\backend_config\backend_config.py::DTypeConfig:0, line 214 <- wrt source file 2025-08-26T20:46:32.5129961Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\backend_config\backend_config.py::DTypeConfig:0 2025-08-26T20:46:32.5132107Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\backend_config\onednn.py::_fuse_linear_bn_leaky_relu:0, line 85 <- wrt source file 2025-08-26T20:46:32.5134452Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\backend_config\onednn.py::_fuse_linear_bn_leaky_relu:0 2025-08-26T20:46:32.5136591Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fx\_model_report\model_report.py::ModelReport:0, line 84 <- wrt source file 2025-08-26T20:46:32.5188164Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fx\_model_report\model_report.py::ModelReport:0 2025-08-26T20:46:32.5189675Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fx\_model_report\model_report_visualizer.py::ModelReportVisualizer.generate_filtered_tables:0, line 339 <- wrt source file 2025-08-26T20:46:32.5191217Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fx\_model_report\model_report_visualizer.py::ModelReportVisualizer.generate_filtered_tables:0 2025-08-26T20:46:32.5192880Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fx\_model_report\model_report_visualizer.py::ModelReportVisualizer.generate_table_visualization:0, line 427 <- wrt source file 2025-08-26T20:46:32.5194434Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fx\_model_report\model_report_visualizer.py::ModelReportVisualizer.generate_table_visualization:0 2025-08-26T20:46:32.5195996Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fx\_model_report\model_report_visualizer.py::ModelReportVisualizer.generate_plot_visualization:0, line 589 <- wrt source file 2025-08-26T20:46:32.5198173Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fx\_model_report\model_report_visualizer.py::ModelReportVisualizer.generate_plot_visualization:0 2025-08-26T20:46:32.5199744Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fx\_model_report\model_report_visualizer.py::ModelReportVisualizer.generate_histogram_visualization:0, line 662 <- wrt source file 2025-08-26T20:46:32.5201411Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fx\_model_report\model_report_visualizer.py::ModelReportVisualizer.generate_histogram_visualization:0 2025-08-26T20:46:32.5202758Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\pt2e\prepare.py::_get_edge_or_node_to_group_id:0, line 188 <- wrt source file 2025-08-26T20:46:32.5204075Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\pt2e\prepare.py::_get_edge_or_node_to_group_id:0 2025-08-26T20:46:32.5205459Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\pt2e\utils.py::_replace_literals_with_new_placeholders:0, line 436 <- wrt source file 2025-08-26T20:46:32.5206806Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\pt2e\utils.py::_replace_literals_with_new_placeholders:0 2025-08-26T20:46:32.5208205Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\pt2e\_affine_quantization.py::_get_reduction_params:0, line 102 <- wrt source file 2025-08-26T20:46:32.5209552Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\pt2e\_affine_quantization.py::_get_reduction_params:0 2025-08-26T20:46:32.5211003Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\pt2e\_affine_quantization.py::_register_custom_op:0, line 148 <- wrt source file 2025-08-26T20:46:32.5212335Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\pt2e\_affine_quantization.py::_register_custom_op:0 2025-08-26T20:46:32.5213512Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\anomaly_mode.py::detect_anomaly:0, line 28 <- wrt source file 2025-08-26T20:46:32.5214685Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\anomaly_mode.py::detect_anomaly:0 2025-08-26T20:46:32.5215755Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\forward_ad.py::make_dual:0, line 82 <- wrt source file 2025-08-26T20:46:32.5216788Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\forward_ad.py::make_dual:0 2025-08-26T20:46:32.5217924Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\forward_ad.py::unpack_dual:0, line 151 <- wrt source file 2025-08-26T20:46:32.5218981Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\forward_ad.py::unpack_dual:0 2025-08-26T20:46:32.5220022Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\forward_ad.py::dual_level:0, line 187 <- wrt source file 2025-08-26T20:46:32.5221111Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\forward_ad.py::dual_level:0 2025-08-26T20:46:32.5222289Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\function.py::FunctionCtx.save_for_backward:0, line 71 <- wrt source file 2025-08-26T20:46:32.5223514Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\function.py::FunctionCtx.save_for_backward:0 2025-08-26T20:46:32.5224714Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\function.py::FunctionCtx.save_for_forward:0, line 115 <- wrt source file 2025-08-26T20:46:32.5226450Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\function.py::FunctionCtx.save_for_forward:0 2025-08-26T20:46:32.5227488Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\function.py::FunctionCtx.mark_dirty:0, line 167 <- wrt source file 2025-08-26T20:46:32.5228495Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\function.py::FunctionCtx.mark_dirty:0 2025-08-26T20:46:32.5229547Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\function.py::FunctionCtx.mark_non_differentiable:0, line 214 <- wrt source file 2025-08-26T20:46:32.5230666Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\function.py::FunctionCtx.mark_non_differentiable:0 2025-08-26T20:46:32.5231804Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\function.py::FunctionCtx.set_materialize_grads:0, line 243 <- wrt source file 2025-08-26T20:46:32.5233124Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\function.py::FunctionCtx.set_materialize_grads:0 2025-08-26T20:46:32.5234248Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\function.py::Function:0, line 485 <- wrt source file 2025-08-26T20:46:32.5235295Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\function.py::Function:0 2025-08-26T20:46:32.5236313Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\functional.py::vjp:0, line 293 <- wrt source file 2025-08-26T20:46:32.5237325Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\functional.py::vjp:0 2025-08-26T20:46:32.5238324Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\functional.py::jvp:0, line 395 <- wrt source file 2025-08-26T20:46:32.5239440Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\functional.py::jvp:0 2025-08-26T20:46:32.5240517Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\functional.py::jacobian:0, line 630 <- wrt source file 2025-08-26T20:46:32.5241626Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\functional.py::jacobian:0 2025-08-26T20:46:32.5242667Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\functional.py::hessian:0, line 894 <- wrt source file 2025-08-26T20:46:32.5243735Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\functional.py::hessian:0 2025-08-26T20:46:32.5244633Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\functional.py::vhp:0, line 1010 <- wrt source file 2025-08-26T20:46:32.5245561Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\functional.py::vhp:0 2025-08-26T20:46:32.5246459Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\functional.py::hvp:0, line 1109 <- wrt source file 2025-08-26T20:46:32.5247354Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\functional.py::hvp:0 2025-08-26T20:46:32.5248231Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\grad_mode.py::no_grad:0, line 50 <- wrt source file 2025-08-26T20:46:32.5249172Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\grad_mode.py::no_grad:0 2025-08-26T20:46:32.5250213Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\grad_mode.py::enable_grad:0, line 108 <- wrt source file 2025-08-26T20:46:32.5251127Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\grad_mode.py::enable_grad:0 2025-08-26T20:46:32.5252080Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\grad_mode.py::set_grad_enabled:0, line 166 <- wrt source file 2025-08-26T20:46:32.5253397Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\grad_mode.py::set_grad_enabled:0 2025-08-26T20:46:32.5270172Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\grad_mode.py::inference_mode:0, line 238 <- wrt source file 2025-08-26T20:46:32.5271131Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\grad_mode.py::inference_mode:0 2025-08-26T20:46:32.5272027Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py::Node.name:0, line 53 <- wrt source file 2025-08-26T20:46:32.5272956Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py::Node.name:0 2025-08-26T20:46:32.5274000Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py::Node.register_hook:0, line 110 <- wrt source file 2025-08-26T20:46:32.5274957Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py::Node.register_hook:0 2025-08-26T20:46:32.5275910Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py::Node.register_prehook:0, line 147 <- wrt source file 2025-08-26T20:46:32.5276870Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py::Node.register_prehook:0 2025-08-26T20:46:32.5277829Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py::saved_tensors_hooks:0, line 283 <- wrt source file 2025-08-26T20:46:32.5278779Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py::saved_tensors_hooks:0 2025-08-26T20:46:32.5279696Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py::save_on_cpu:0, line 353 <- wrt source file 2025-08-26T20:46:32.5280714Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py::save_on_cpu:0 2025-08-26T20:46:32.5281725Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py::disable_saved_tensors_hooks:0, line 410 <- wrt source file 2025-08-26T20:46:32.5282745Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py::disable_saved_tensors_hooks:0 2025-08-26T20:46:32.5283748Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py::register_multi_grad_hook:0, line 487 <- wrt source file 2025-08-26T20:46:32.5284726Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py::register_multi_grad_hook:0 2025-08-26T20:46:32.5285753Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py::allow_mutation_on_saved_tensors:0, line 753 <- wrt source file 2025-08-26T20:46:32.5286851Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py::allow_mutation_on_saved_tensors:0 2025-08-26T20:46:32.5287809Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\profiler.py::profile:0, line 182 <- wrt source file 2025-08-26T20:46:32.5288727Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\profiler.py::profile:0 2025-08-26T20:46:32.5289812Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\profiler.py::record_function:0, line 745 <- wrt source file 2025-08-26T20:46:32.5290753Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\profiler.py::record_function:0 2025-08-26T20:46:32.5291670Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\profiler.py::emit_itt:0, line 880 <- wrt source file 2025-08-26T20:46:32.5292567Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\profiler.py::emit_itt:0 2025-08-26T20:46:32.5293862Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\profiler.py::emit_nvtx:0, line 953 <- wrt source file 2025-08-26T20:46:32.5294771Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\profiler.py::emit_nvtx:0 2025-08-26T20:46:32.5295655Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\gds.py::gds_register_buffer:0, line 42 <- wrt source file 2025-08-26T20:46:32.5296553Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\gds.py::gds_register_buffer:0 2025-08-26T20:46:32.5297450Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\gds.py::gds_deregister_buffer:0, line 58 <- wrt source file 2025-08-26T20:46:32.5298354Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\gds.py::gds_deregister_buffer:0 2025-08-26T20:46:32.5299221Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\gds.py::GdsFile:0, line 85 <- wrt source file 2025-08-26T20:46:32.5300033Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\gds.py::GdsFile:0 2025-08-26T20:46:32.5300895Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\jiterator.py::_create_jit_fn:0, line 114 <- wrt source file 2025-08-26T20:46:32.5301807Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\jiterator.py::_create_jit_fn:0 2025-08-26T20:46:32.5302699Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\jiterator.py::_create_jit_fn:1, line 125 <- wrt source file 2025-08-26T20:46:32.5303605Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\jiterator.py::_create_jit_fn:1 2025-08-26T20:46:32.5304500Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\jiterator.py::_create_jit_fn:2, line 140 <- wrt source file 2025-08-26T20:46:32.5305478Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\jiterator.py::_create_jit_fn:2 2025-08-26T20:46:32.5306435Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\jiterator.py::_create_multi_output_jit_fn:0, line 173 <- wrt source file 2025-08-26T20:46:32.5307438Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\jiterator.py::_create_multi_output_jit_fn:0 2025-08-26T20:46:32.5308369Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\profiler.py::profile:0, line 75 <- wrt source file 2025-08-26T20:46:32.5309228Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\profiler.py::profile:0 2025-08-26T20:46:32.5310132Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\device_mesh.py::DeviceMesh:0, line 431 <- wrt source file 2025-08-26T20:46:32.5311133Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\device_mesh.py::DeviceMesh:0 2025-08-26T20:46:32.5312141Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\device_mesh.py::DeviceMesh.get_local_rank:0, line 975 <- wrt source file 2025-08-26T20:46:32.5313220Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\device_mesh.py::DeviceMesh.get_local_rank:0 2025-08-26T20:46:32.5314262Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\device_mesh.py::init_device_mesh:0, line 1121 <- wrt source file 2025-08-26T20:46:32.5315269Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\device_mesh.py::init_device_mesh:0 2025-08-26T20:46:32.5316299Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::_coalescing_manager:0, line 2578 <- wrt source file 2025-08-26T20:46:32.5317685Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::_coalescing_manager:0 2025-08-26T20:46:32.5318742Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::_time_estimator:0, line 2680 <- wrt source file 2025-08-26T20:46:32.5319792Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::_time_estimator:0 2025-08-26T20:46:32.5320938Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::batch_isend_irecv:0, line 2727 <- wrt source file 2025-08-26T20:46:32.5322055Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::batch_isend_irecv:0 2025-08-26T20:46:32.5323095Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_reduce:0, line 2864 <- wrt source file 2025-08-26T20:46:32.5324095Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_reduce:0 2025-08-26T20:46:32.5325131Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_gather_object:0, line 3147 <- wrt source file 2025-08-26T20:46:32.5326190Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_gather_object:0 2025-08-26T20:46:32.5327224Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::gather_object:0, line 3251 <- wrt source file 2025-08-26T20:46:32.5328258Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::gather_object:0 2025-08-26T20:46:32.5358376Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::send_object_list:0, line 3376 <- wrt source file 2025-08-26T20:46:32.5359603Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::send_object_list:0 2025-08-26T20:46:32.5360661Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::recv_object_list:0, line 3478 <- wrt source file 2025-08-26T20:46:32.5361934Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::recv_object_list:0 2025-08-26T20:46:32.5363015Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::broadcast_object_list:0, line 3592 <- wrt source file 2025-08-26T20:46:32.5364125Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::broadcast_object_list:0 2025-08-26T20:46:32.5365248Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::scatter_object_list:0, line 3715 <- wrt source file 2025-08-26T20:46:32.5366327Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::scatter_object_list:0 2025-08-26T20:46:32.5367383Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_gather:0, line 3817 <- wrt source file 2025-08-26T20:46:32.5368374Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_gather:0 2025-08-26T20:46:32.5369411Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_gather_into_tensor:0, line 3924 <- wrt source file 2025-08-26T20:46:32.5370502Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_gather_into_tensor:0 2025-08-26T20:46:32.5371580Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_gather_coalesced:0, line 4062 <- wrt source file 2025-08-26T20:46:32.5373071Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_gather_coalesced:0 2025-08-26T20:46:32.5374105Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::gather:0, line 4168 <- wrt source file 2025-08-26T20:46:32.5375093Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::gather:0 2025-08-26T20:46:32.5376081Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::scatter:0, line 4253 <- wrt source file 2025-08-26T20:46:32.5377056Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::scatter:0 2025-08-26T20:46:32.5378103Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::reduce_scatter_tensor:0, line 4391 <- wrt source file 2025-08-26T20:46:32.5379194Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::reduce_scatter_tensor:0 2025-08-26T20:46:32.5380250Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_to_all_single:0, line 4533 <- wrt source file 2025-08-26T20:46:32.5381299Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_to_all_single:0 2025-08-26T20:46:32.5382317Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_to_all:0, line 4667 <- wrt source file 2025-08-26T20:46:32.5383318Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_to_all:0 2025-08-26T20:46:32.5384426Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::monitored_barrier:0, line 4873 <- wrt source file 2025-08-26T20:46:32.5385489Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::monitored_barrier:0 2025-08-26T20:46:32.5386538Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::new_subgroups:0, line 5415 <- wrt source file 2025-08-26T20:46:32.5387578Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::new_subgroups:0 2025-08-26T20:46:32.5388743Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::new_subgroups_by_enumeration:0, line 5509 <- wrt source file 2025-08-26T20:46:32.5389891Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::new_subgroups_by_enumeration:0 2025-08-26T20:46:32.5390959Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\launch.py::__doc__:0, line 84 <- wrt source file 2025-08-26T20:46:32.5391853Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\launch.py::__doc__:0 2025-08-26T20:46:32.5392737Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\run.py::__doc__:0, line 57 <- wrt source file 2025-08-26T20:46:32.5393598Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\run.py::__doc__:0 2025-08-26T20:46:32.5394532Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\autograd\__init__.py::context:0, line 47 <- wrt source file 2025-08-26T20:46:32.5395517Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\autograd\__init__.py::context:0 2025-08-26T20:46:32.5396481Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\join.py::Join:0, line 141 <- wrt source file 2025-08-26T20:46:32.5397754Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\join.py::Join:0 2025-08-26T20:46:32.5398839Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\__init__.py::register_ddp_comm_hook:0, line 107 <- wrt source file 2025-08-26T20:46:32.5400061Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\__init__.py::register_ddp_comm_hook:0 2025-08-26T20:46:32.5401271Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\debugging_hooks.py::noop_hook:0, line 23 <- wrt source file 2025-08-26T20:46:32.5402535Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\debugging_hooks.py::noop_hook:0 2025-08-26T20:46:32.5403742Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\default_hooks.py::allreduce_hook:0, line 49 <- wrt source file 2025-08-26T20:46:32.5404955Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\default_hooks.py::allreduce_hook:0 2025-08-26T20:46:32.5406183Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\default_hooks.py::fp16_compress_hook:0, line 104 <- wrt source file 2025-08-26T20:46:32.5407427Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\default_hooks.py::fp16_compress_hook:0 2025-08-26T20:46:32.5408657Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\default_hooks.py::bf16_compress_hook:0, line 125 <- wrt source file 2025-08-26T20:46:32.5409972Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\default_hooks.py::bf16_compress_hook:0 2025-08-26T20:46:32.5411225Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\default_hooks.py::fp16_compress_wrapper:0, line 143 <- wrt source file 2025-08-26T20:46:32.5412483Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\default_hooks.py::fp16_compress_wrapper:0 2025-08-26T20:46:32.5414006Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\default_hooks.py::bf16_compress_wrapper:0, line 182 <- wrt source file 2025-08-26T20:46:32.5415272Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\default_hooks.py::bf16_compress_wrapper:0 2025-08-26T20:46:32.5416582Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\post_localSGD_hook.py::post_localSGD_hook:0, line 91 <- wrt source file 2025-08-26T20:46:32.5417856Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\post_localSGD_hook.py::post_localSGD_hook:0 2025-08-26T20:46:32.5419114Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\powerSGD_hook.py::powerSGD_hook:0, line 395 <- wrt source file 2025-08-26T20:46:32.5420319Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\powerSGD_hook.py::powerSGD_hook:0 2025-08-26T20:46:32.5421551Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\powerSGD_hook.py::batched_powerSGD_hook:0, line 708 <- wrt source file 2025-08-26T20:46:32.5422823Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\powerSGD_hook.py::batched_powerSGD_hook:0 2025-08-26T20:46:32.5424441Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\quantization_hooks.py::quantization_pertensor_hook:0, line 64 <- wrt source file 2025-08-26T20:46:32.5425818Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\quantization_hooks.py::quantization_pertensor_hook:0 2025-08-26T20:46:32.5427193Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\quantization_hooks.py::quantization_perchannel_hook:0, line 145 <- wrt source file 2025-08-26T20:46:32.5428566Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\quantization_hooks.py::quantization_perchannel_hook:0 2025-08-26T20:46:32.5429906Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\model_averaging\averagers.py::PeriodicModelAverager:0, line 57 <- wrt source file 2025-08-26T20:46:32.5431197Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\model_averaging\averagers.py::PeriodicModelAverager:0 2025-08-26T20:46:32.5432553Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\model_averaging\hierarchical_model_averager.py::HierarchicalModelAverager:0, line 54 <- wrt source file 2025-08-26T20:46:32.5434010Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\model_averaging\hierarchical_model_averager.py::HierarchicalModelAverager:0 2025-08-26T20:46:32.5435357Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\format_utils.py::BroadcastingTorchSaveReader:0, line 49 <- wrt source file 2025-08-26T20:46:32.5436652Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\format_utils.py::BroadcastingTorchSaveReader:0 2025-08-26T20:46:32.5437862Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\format_utils.py::DynamicMetaLoadPlanner:0, line 161 <- wrt source file 2025-08-26T20:46:32.5439047Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\format_utils.py::DynamicMetaLoadPlanner:0 2025-08-26T20:46:32.5440263Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\optimizer.py::load_sharded_optimizer_state_dict:0, line 225 <- wrt source file 2025-08-26T20:46:32.5441574Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\optimizer.py::load_sharded_optimizer_state_dict:0 2025-08-26T20:46:32.5442767Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\state_dict.py::get_state_dict:0, line 1144 <- wrt source file 2025-08-26T20:46:32.5443850Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\state_dict.py::get_state_dict:0 2025-08-26T20:46:32.5444950Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\state_dict.py::_patch_model_state_dict:0, line 1395 <- wrt source file 2025-08-26T20:46:32.5446094Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\state_dict.py::_patch_model_state_dict:0 2025-08-26T20:46:32.5447259Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\state_dict.py::_patch_optimizer_state_dict:0, line 1454 <- wrt source file 2025-08-26T20:46:32.5448443Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\state_dict.py::_patch_optimizer_state_dict:0 2025-08-26T20:46:32.5449562Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\state_dict_loader.py::load:0, line 131 <- wrt source file 2025-08-26T20:46:32.5450920Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\state_dict_loader.py::load:0 2025-08-26T20:46:32.5451973Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\state_dict_saver.py::save:0, line 159 <- wrt source file 2025-08-26T20:46:32.5453039Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\state_dict_saver.py::save:0 2025-08-26T20:46:32.5454107Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\state_dict_saver.py::async_save:0, line 273 <- wrt source file 2025-08-26T20:46:32.5455200Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\state_dict_saver.py::async_save:0 2025-08-26T20:46:32.5456350Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\_experimental\barriers.py::BarrierConfig:0, line 50 <- wrt source file 2025-08-26T20:46:32.5457532Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\_experimental\barriers.py::BarrierConfig:0 2025-08-26T20:46:32.5458724Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\_experimental\builder.py::make_sync_checkpointer:0, line 77 <- wrt source file 2025-08-26T20:46:32.5459968Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\_experimental\builder.py::make_sync_checkpointer:0 2025-08-26T20:46:32.5461208Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\_experimental\builder.py::make_async_checkpointer:0, line 138 <- wrt source file 2025-08-26T20:46:32.5462518Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\_experimental\builder.py::make_async_checkpointer:0 2025-08-26T20:46:32.5463775Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\_experimental\checkpointer.py::SyncCheckpointer:0, line 104 <- wrt source file 2025-08-26T20:46:32.5465020Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\_experimental\checkpointer.py::SyncCheckpointer:0 2025-08-26T20:46:32.5466290Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\_experimental\checkpointer.py::SyncCheckpointer.save:0, line 142 <- wrt source file 2025-08-26T20:46:32.5467590Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\_experimental\checkpointer.py::SyncCheckpointer.save:0 2025-08-26T20:46:32.5469096Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\_experimental\checkpointer.py::AsyncCheckpointer:0, line 213 <- wrt source file 2025-08-26T20:46:32.5470367Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\_experimental\checkpointer.py::AsyncCheckpointer:0 2025-08-26T20:46:32.5471656Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\_experimental\checkpointer.py::AsyncCheckpointer.save:0, line 260 <- wrt source file 2025-08-26T20:46:32.5472950Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\_experimental\checkpointer.py::AsyncCheckpointer.save:0 2025-08-26T20:46:32.5474217Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\_experimental\staging.py::DefaultStager.close:0, line 206 <- wrt source file 2025-08-26T20:46:32.5475451Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\_experimental\staging.py::DefaultStager.close:0 2025-08-26T20:46:32.5476908Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\elastic\events\__init__.py::construct_and_record_rdzv_event:0, line 110 <- wrt source file 2025-08-26T20:46:32.5478110Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\elastic\events\__init__.py::construct_and_record_rdzv_event:0 2025-08-26T20:46:32.5479318Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\elastic\rendezvous\api.py::RendezvousHandler.shutdown:0, line 231 <- wrt source file 2025-08-26T20:46:32.5497124Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\elastic\rendezvous\api.py::RendezvousHandler.shutdown:0 2025-08-26T20:46:32.5499141Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\elastic\utils\distributed.py::get_free_port:0, line 141 <- wrt source file 2025-08-26T20:46:32.5501076Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\elastic\utils\distributed.py::get_free_port:0 2025-08-26T20:46:32.5502860Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\api.py::MixedPrecision:0, line 202 <- wrt source file 2025-08-26T20:46:32.5504537Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\api.py::MixedPrecision:0 2025-08-26T20:46:32.5506202Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\api.py::StateDictType:0, line 262 <- wrt source file 2025-08-26T20:46:32.5507868Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\api.py::StateDictType:0 2025-08-26T20:46:32.5509793Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\fully_sharded_data_parallel.py::FullyShardedDataParallel:0, line 125 <- wrt source file 2025-08-26T20:46:32.5512117Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\fully_sharded_data_parallel.py::FullyShardedDataParallel:0 2025-08-26T20:46:32.5514537Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\fully_sharded_data_parallel.py::FullyShardedDataParallel.set_state_dict_type:0, line 651 <- wrt source file 2025-08-26T20:46:32.5517081Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\fully_sharded_data_parallel.py::FullyShardedDataParallel.set_state_dict_type:0 2025-08-26T20:46:32.5519626Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\fully_sharded_data_parallel.py::FullyShardedDataParallel.state_dict_type:0, line 798 <- wrt source file 2025-08-26T20:46:32.5522143Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\fully_sharded_data_parallel.py::FullyShardedDataParallel.state_dict_type:0 2025-08-26T20:46:32.5524775Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\fully_sharded_data_parallel.py::FullyShardedDataParallel.shard_full_optim_state_dict:0, line 1490 <- wrt source file 2025-08-26T20:46:32.5527420Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\fully_sharded_data_parallel.py::FullyShardedDataParallel.shard_full_optim_state_dict:0 2025-08-26T20:46:32.5530090Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\fully_sharded_data_parallel.py::FullyShardedDataParallel.scatter_full_optim_state_dict:0, line 1610 <- wrt source file 2025-08-26T20:46:32.5532770Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\fully_sharded_data_parallel.py::FullyShardedDataParallel.scatter_full_optim_state_dict:0 2025-08-26T20:46:32.5535373Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\fully_sharded_data_parallel.py::FullyShardedDataParallel.rekey_optim_state_dict:0, line 1695 <- wrt source file 2025-08-26T20:46:32.5538379Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\fully_sharded_data_parallel.py::FullyShardedDataParallel.rekey_optim_state_dict:0 2025-08-26T20:46:32.5540889Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\fully_sharded_data_parallel.py::FullyShardedDataParallel.optim_state_dict:0, line 1824 <- wrt source file 2025-08-26T20:46:32.5543416Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\fully_sharded_data_parallel.py::FullyShardedDataParallel.optim_state_dict:0 2025-08-26T20:46:32.5545965Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\fully_sharded_data_parallel.py::FullyShardedDataParallel.optim_state_dict_to_load:0, line 1911 <- wrt source file 2025-08-26T20:46:32.5548547Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\fully_sharded_data_parallel.py::FullyShardedDataParallel.optim_state_dict_to_load:0 2025-08-26T20:46:32.5550776Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\sharded_grad_scaler.py::ShardedGradScaler:0, line 54 <- wrt source file 2025-08-26T20:46:32.5552720Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\sharded_grad_scaler.py::ShardedGradScaler:0 2025-08-26T20:46:32.5554527Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\wrap.py::CustomPolicy:0, line 224 <- wrt source file 2025-08-26T20:46:32.5556184Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\wrap.py::CustomPolicy:0 2025-08-26T20:46:32.5557947Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\nn\functional.py::_all_gather_base:0, line 134 <- wrt source file 2025-08-26T20:46:32.5559850Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\nn\functional.py::_all_gather_base:0 2025-08-26T20:46:32.5561745Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\nn\api\remote_module.py::_RemoteModule.__init__:0, line 196 <- wrt source file 2025-08-26T20:46:32.5563702Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\nn\api\remote_module.py::_RemoteModule.__init__:0 2025-08-26T20:46:32.5565786Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\nn\api\remote_module.py::_RemoteModule.init_from_module_rref:0, line 520 <- wrt source file 2025-08-26T20:46:32.5567920Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\nn\api\remote_module.py::_RemoteModule.init_from_module_rref:0 2025-08-26T20:46:32.5569925Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\nn\api\remote_module.py::RemoteModule:0, line 643 <- wrt source file 2025-08-26T20:46:32.5571726Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\nn\api\remote_module.py::RemoteModule:0 2025-08-26T20:46:32.5573728Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\optim\apply_optimizer_in_backward.py::_apply_optimizer_in_backward:0, line 43 <- wrt source file 2025-08-26T20:46:32.5575944Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\optim\apply_optimizer_in_backward.py::_apply_optimizer_in_backward:0 2025-08-26T20:46:32.5578134Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\optim\apply_optimizer_in_backward.py::_get_in_backward_optimizers:0, line 114 <- wrt source file 2025-08-26T20:46:32.5580331Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\optim\apply_optimizer_in_backward.py::_get_in_backward_optimizers:0 2025-08-26T20:46:32.5582773Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\optim\named_optimizer.py::_NamedOptimizer:0, line 43 <- wrt source file 2025-08-26T20:46:32.5584650Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\optim\named_optimizer.py::_NamedOptimizer:0 2025-08-26T20:46:32.5586534Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\optim\optimizer.py::DistributedOptimizer:0, line 162 <- wrt source file 2025-08-26T20:46:32.5588416Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\optim\optimizer.py::DistributedOptimizer:0 2025-08-26T20:46:32.5590420Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\optim\post_localSGD_optimizer.py::PostLocalSGDOptimizer:0, line 19 <- wrt source file 2025-08-26T20:46:32.5592532Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\optim\post_localSGD_optimizer.py::PostLocalSGDOptimizer:0 2025-08-26T20:46:32.5594492Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\optim\utils.py::register_functional_optim:0, line 37 <- wrt source file 2025-08-26T20:46:32.5596358Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\optim\utils.py::register_functional_optim:0 2025-08-26T20:46:32.5598397Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\optim\zero_redundancy_optimizer.py::ZeroRedundancyOptimizer:0, line 335 <- wrt source file 2025-08-26T20:46:32.5600568Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\optim\zero_redundancy_optimizer.py::ZeroRedundancyOptimizer:0 2025-08-26T20:46:32.5643080Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\pipelining\microbatch.py::_CustomReducer:0, line 34 <- wrt source file 2025-08-26T20:46:32.5644941Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\pipelining\microbatch.py::_CustomReducer:0 2025-08-26T20:46:32.5646101Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\pipelining\microbatch.py::TensorChunkSpec.from_tuple:0, line 83 <- wrt source file 2025-08-26T20:46:32.5647308Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\pipelining\microbatch.py::TensorChunkSpec.from_tuple:0 2025-08-26T20:46:32.5648602Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\pipelining\microbatch.py::TensorChunkSpec.from_dict:0, line 102 <- wrt source file 2025-08-26T20:46:32.5649798Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\pipelining\microbatch.py::TensorChunkSpec.from_dict:0 2025-08-26T20:46:32.5650950Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\pipelining\_IR.py::pipe_split:0, line 333 <- wrt source file 2025-08-26T20:46:32.5651945Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\pipelining\_IR.py::pipe_split:0 2025-08-26T20:46:32.5652901Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\rpc\api.py::_wait_all:0, line 174 <- wrt source file 2025-08-26T20:46:32.5653877Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\rpc\api.py::_wait_all:0 2025-08-26T20:46:32.5654824Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\rpc\api.py::shutdown:0, line 345 <- wrt source file 2025-08-26T20:46:32.5655736Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\rpc\api.py::shutdown:0 2025-08-26T20:46:32.5656636Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\rpc\api.py::remote:0, line 606 <- wrt source file 2025-08-26T20:46:32.5657869Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\rpc\api.py::remote:0 2025-08-26T20:46:32.5658774Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\rpc\api.py::rpc_sync:0, line 786 <- wrt source file 2025-08-26T20:46:32.5659725Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\rpc\api.py::rpc_sync:0 2025-08-26T20:46:32.5660686Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\rpc\api.py::rpc_async:0, line 878 <- wrt source file 2025-08-26T20:46:32.5661603Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\rpc\api.py::rpc_async:0 2025-08-26T20:46:32.5662561Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\rpc\functions.py::async_execution:0, line 34 <- wrt source file 2025-08-26T20:46:32.5663604Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\rpc\functions.py::async_execution:0 2025-08-26T20:46:32.5664756Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\rpc\options.py::TensorPipeRpcBackendOptions.set_device_map:0, line 125 <- wrt source file 2025-08-26T20:46:32.5666088Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\rpc\options.py::TensorPipeRpcBackendOptions.set_device_map:0 2025-08-26T20:46:32.5667355Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\rpc\server_process_global_profiler.py::_server_process_global_profile:0, line 60 <- wrt source file 2025-08-26T20:46:32.5668647Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\rpc\server_process_global_profiler.py::_server_process_global_profile:0 2025-08-26T20:46:32.5669866Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\_api.py::_shard_tensor:0, line 837 <- wrt source file 2025-08-26T20:46:32.5670846Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\_api.py::_shard_tensor:0 2025-08-26T20:46:32.5672049Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\_random.py::OffsetBasedRNGTracker._set_pre_op_offset:0, line 294 <- wrt source file 2025-08-26T20:46:32.5673296Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\_random.py::OffsetBasedRNGTracker._set_pre_op_offset:0 2025-08-26T20:46:32.5674461Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\experimental\_func_map.py::local_map:0, line 103 <- wrt source file 2025-08-26T20:46:32.5675561Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\experimental\_func_map.py::local_map:0 2025-08-26T20:46:32.5676776Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\experimental\_register_sharding.py::register_sharding:0, line 47 <- wrt source file 2025-08-26T20:46:32.5678108Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\experimental\_register_sharding.py::register_sharding:0 2025-08-26T20:46:32.5679261Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\api.py::parallelize_module:0, line 56 <- wrt source file 2025-08-26T20:46:32.5680352Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\api.py::parallelize_module:0 2025-08-26T20:46:32.5681512Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\ddp.py::_pre_dp_module_transform:0, line 88 <- wrt source file 2025-08-26T20:46:32.5682635Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\ddp.py::_pre_dp_module_transform:0 2025-08-26T20:46:32.5684166Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\loss.py::loss_parallel:0, line 56 <- wrt source file 2025-08-26T20:46:32.5685229Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\loss.py::loss_parallel:0 2025-08-26T20:46:32.5686309Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\style.py::ColwiseParallel:0, line 64 <- wrt source file 2025-08-26T20:46:32.5687403Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\style.py::ColwiseParallel:0 2025-08-26T20:46:32.5688483Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\style.py::RowwiseParallel:0, line 198 <- wrt source file 2025-08-26T20:46:32.5689655Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\style.py::RowwiseParallel:0 2025-08-26T20:46:32.5690749Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\style.py::SequenceParallel:0, line 350 <- wrt source file 2025-08-26T20:46:32.5691834Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\style.py::SequenceParallel:0 2025-08-26T20:46:32.5692930Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\style.py::PrepareModuleInput:0, line 452 <- wrt source file 2025-08-26T20:46:32.5694048Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\style.py::PrepareModuleInput:0 2025-08-26T20:46:32.5695260Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\style.py::PrepareModuleOutput:0, line 615 <- wrt source file 2025-08-26T20:46:32.5696474Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\style.py::PrepareModuleOutput:0 2025-08-26T20:46:32.5697628Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\style.py::PrepareModuleInputOutput:0, line 740 <- wrt source file 2025-08-26T20:46:32.5698824Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\style.py::PrepareModuleInputOutput:0 2025-08-26T20:46:32.5699974Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\_ops\_common_rules.py::pointwise_rule:0, line 230 <- wrt source file 2025-08-26T20:46:32.5701146Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\_ops\_common_rules.py::pointwise_rule:0 2025-08-26T20:46:32.5702325Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_composable\checkpoint_activation.py::checkpoint:0, line 53 <- wrt source file 2025-08-26T20:46:32.5703486Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_composable\checkpoint_activation.py::checkpoint:0 2025-08-26T20:46:32.5704574Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_composable\contract.py::contract:0, line 66 <- wrt source file 2025-08-26T20:46:32.5962054Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_composable\contract.py::contract:0 2025-08-26T20:46:32.5963147Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_composable\replicate.py::replicate:0, line 190 <- wrt source file 2025-08-26T20:46:32.5964193Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_composable\replicate.py::replicate:0 2025-08-26T20:46:32.5965315Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_composable\replicate_with_fsdp.py::replicate:0, line 247 <- wrt source file 2025-08-26T20:46:32.5967018Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_composable\replicate_with_fsdp.py::replicate:0 2025-08-26T20:46:32.5968205Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_shard\sharded_optim\__init__.py::named_params_with_sharded_tensor:0, line 31 <- wrt source file 2025-08-26T20:46:32.5969464Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_shard\sharded_optim\__init__.py::named_params_with_sharded_tensor:0 2025-08-26T20:46:32.5970681Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_shard\sharded_tensor\__init__.py::init_from_local_shards:0, line 384 <- wrt source file 2025-08-26T20:46:32.5971869Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_shard\sharded_tensor\__init__.py::init_from_local_shards:0 2025-08-26T20:46:32.5973051Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_shard\sharded_tensor\__init__.py::custom_sharded_op_impl:0, line 457 <- wrt source file 2025-08-26T20:46:32.5974228Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_shard\sharded_tensor\__init__.py::custom_sharded_op_impl:0 2025-08-26T20:46:32.5975459Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_shard\sharded_tensor\api.py::ShardedTensor._init_from_local_tensor:0, line 856 <- wrt source file 2025-08-26T20:46:32.5976731Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_shard\sharded_tensor\api.py::ShardedTensor._init_from_local_tensor:0 2025-08-26T20:46:32.5977938Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_shard\sharded_tensor\api.py::ShardedTensor.reshard:0, line 1094 <- wrt source file 2025-08-26T20:46:32.5979225Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_shard\sharded_tensor\api.py::ShardedTensor.reshard:0 2025-08-26T20:46:32.5980402Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_shard\sharded_tensor\_ops\_common.py::_sharded_op_common:0, line 18 <- wrt source file 2025-08-26T20:46:32.5981575Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_shard\sharded_tensor\_ops\_common.py::_sharded_op_common:0 2025-08-26T20:46:32.5982713Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_shard\sharding_plan\api.py::ShardingPlan:0, line 36 <- wrt source file 2025-08-26T20:46:32.5983786Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_shard\sharding_plan\api.py::ShardingPlan:0 2025-08-26T20:46:32.5984927Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::put:0, line 142 <- wrt source file 2025-08-26T20:46:32.5986006Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::put:0 2025-08-26T20:46:32.5987120Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::get:0, line 195 <- wrt source file 2025-08-26T20:46:32.5988898Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::get:0 2025-08-26T20:46:32.5990056Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::putmem_signal_block:0, line 268 <- wrt source file 2025-08-26T20:46:32.5991260Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::putmem_signal_block:0 2025-08-26T20:46:32.5992458Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::wait_until:0, line 323 <- wrt source file 2025-08-26T20:46:32.5993683Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::wait_until:0 2025-08-26T20:46:32.5994833Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::signal_wait_until:0, line 386 <- wrt source file 2025-08-26T20:46:32.5996028Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::signal_wait_until:0 2025-08-26T20:46:32.5997187Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::signal_op:0, line 437 <- wrt source file 2025-08-26T20:46:32.5998315Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::signal_op:0 2025-08-26T20:46:32.5999432Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::fence:0, line 490 <- wrt source file 2025-08-26T20:46:32.6000511Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::fence:0 2025-08-26T20:46:32.6001680Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::quiet:0, line 536 <- wrt source file 2025-08-26T20:46:32.6002780Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::quiet:0 2025-08-26T20:46:32.6003862Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::my_pe:0, line 580 <- wrt source file 2025-08-26T20:46:32.6005047Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::my_pe:0 2025-08-26T20:46:32.6006139Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::n_pes:0, line 623 <- wrt source file 2025-08-26T20:46:32.6007221Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::n_pes:0 2025-08-26T20:46:32.6008337Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::barrier_all:0, line 674 <- wrt source file 2025-08-26T20:46:32.6009485Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::barrier_all:0 2025-08-26T20:46:32.6010604Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::sync_all:0, line 720 <- wrt source file 2025-08-26T20:46:32.6011774Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::sync_all:0 2025-08-26T20:46:32.6012882Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::alltoall:0, line 759 <- wrt source file 2025-08-26T20:46:32.6013989Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::alltoall:0 2025-08-26T20:46:32.6015112Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::broadcast:0, line 814 <- wrt source file 2025-08-26T20:46:32.6016229Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::broadcast:0 2025-08-26T20:46:32.6017360Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::reduce:0, line 875 <- wrt source file 2025-08-26T20:46:32.6018504Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::reduce:0 2025-08-26T20:46:32.6019645Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::reduce_extern_wrapper:0, line 921 <- wrt source file 2025-08-26T20:46:32.6020865Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::reduce_extern_wrapper:0 2025-08-26T20:46:32.6022100Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_tools\memory_tracker.py::MemoryTracker:0, line 55 <- wrt source file 2025-08-26T20:46:32.6134864Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_tools\memory_tracker.py::MemoryTracker:0 2025-08-26T20:46:32.6136682Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\bernoulli.py::Bernoulli:0, line 30 <- wrt source file 2025-08-26T20:46:32.6138381Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\bernoulli.py::Bernoulli:0 2025-08-26T20:46:32.6139993Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\beta.py::Beta:0, line 21 <- wrt source file 2025-08-26T20:46:32.6141506Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\beta.py::Beta:0 2025-08-26T20:46:32.6143073Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\binomial.py::Binomial:0, line 31 <- wrt source file 2025-08-26T20:46:32.6144755Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\binomial.py::Binomial:0 2025-08-26T20:46:32.6146588Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\categorical.py::Categorical:0, line 42 <- wrt source file 2025-08-26T20:46:32.6148303Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\categorical.py::Categorical:0 2025-08-26T20:46:32.6149981Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\cauchy.py::Cauchy:0, line 23 <- wrt source file 2025-08-26T20:46:32.6151572Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\cauchy.py::Cauchy:0 2025-08-26T20:46:32.6153109Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\chi2.py::Chi2:0, line 18 <- wrt source file 2025-08-26T20:46:32.6154619Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\chi2.py::Chi2:0 2025-08-26T20:46:32.6156301Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\constraints.py::is_dependent:0, line 166 <- wrt source file 2025-08-26T20:46:32.6158094Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\constraints.py::is_dependent:0 2025-08-26T20:46:32.6159865Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\constraints.py::_DependentProperty:0, line 187 <- wrt source file 2025-08-26T20:46:32.6161789Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\constraints.py::_DependentProperty:0 2025-08-26T20:46:32.6163730Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\continuous_bernoulli.py::ContinuousBernoulli:0, line 35 <- wrt source file 2025-08-26T20:46:32.6165715Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\continuous_bernoulli.py::ContinuousBernoulli:0 2025-08-26T20:46:32.6167542Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\dirichlet.py::Dirichlet:0, line 42 <- wrt source file 2025-08-26T20:46:32.6169354Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\dirichlet.py::Dirichlet:0 2025-08-26T20:46:32.6171034Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\exponential.py::Exponential:0, line 20 <- wrt source file 2025-08-26T20:46:32.6172766Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\exponential.py::Exponential:0 2025-08-26T20:46:32.6174585Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\fishersnedecor.py::FisherSnedecor:0, line 21 <- wrt source file 2025-08-26T20:46:32.6176415Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\fishersnedecor.py::FisherSnedecor:0 2025-08-26T20:46:32.6178088Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\gamma.py::Gamma:0, line 24 <- wrt source file 2025-08-26T20:46:32.6179660Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\gamma.py::Gamma:0 2025-08-26T20:46:32.6181423Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\generalized_pareto.py::GeneralizedPareto:0, line 26 <- wrt source file 2025-08-26T20:46:32.6183359Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\generalized_pareto.py::GeneralizedPareto:0 2025-08-26T20:46:32.6185141Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\geometric.py::Geometric:0, line 36 <- wrt source file 2025-08-26T20:46:32.6186854Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\geometric.py::Geometric:0 2025-08-26T20:46:32.6188464Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\gumbel.py::Gumbel:0, line 23 <- wrt source file 2025-08-26T20:46:32.6190134Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\gumbel.py::Gumbel:0 2025-08-26T20:46:32.6191827Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\half_cauchy.py::HalfCauchy:0, line 24 <- wrt source file 2025-08-26T20:46:32.6193509Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\half_cauchy.py::HalfCauchy:0 2025-08-26T20:46:32.6195195Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\half_normal.py::HalfNormal:0, line 24 <- wrt source file 2025-08-26T20:46:32.6196881Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\half_normal.py::HalfNormal:0 2025-08-26T20:46:32.6198627Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\independent.py::Independent:0, line 27 <- wrt source file 2025-08-26T20:46:32.6200407Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\independent.py::Independent:0 2025-08-26T20:46:32.6202174Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\inverse_gamma.py::InverseGamma:0, line 24 <- wrt source file 2025-08-26T20:46:32.6203974Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\inverse_gamma.py::InverseGamma:0 2025-08-26T20:46:32.6205704Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\kumaraswamy.py::Kumaraswamy:0, line 30 <- wrt source file 2025-08-26T20:46:32.6207406Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\kumaraswamy.py::Kumaraswamy:0 2025-08-26T20:46:32.6209097Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\laplace.py::Laplace:0, line 20 <- wrt source file 2025-08-26T20:46:32.6210763Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\laplace.py::Laplace:0 2025-08-26T20:46:32.6212470Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\lkj_cholesky.py::LKJCholesky:0, line 43 <- wrt source file 2025-08-26T20:46:32.6214181Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\lkj_cholesky.py::LKJCholesky:0 2025-08-26T20:46:32.6216025Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\logistic_normal.py::LogisticNormal:0, line 28 <- wrt source file 2025-08-26T20:46:32.6217953Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\logistic_normal.py::LogisticNormal:0 2025-08-26T20:46:32.6219793Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\log_normal.py::LogNormal:0, line 23 <- wrt source file 2025-08-26T20:46:32.6221555Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\log_normal.py::LogNormal:0 2025-08-26T20:46:32.6223626Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\lowrank_multivariate_normal.py::LowRankMultivariateNormal:0, line 63 <- wrt source file 2025-08-26T20:46:32.6225943Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\lowrank_multivariate_normal.py::LowRankMultivariateNormal:0 2025-08-26T20:46:32.6228103Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\mixture_same_family.py::MixtureSameFamily:0, line 24 <- wrt source file 2025-08-26T20:46:32.6230156Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\mixture_same_family.py::MixtureSameFamily:0 2025-08-26T20:46:32.6232090Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\multinomial.py::Multinomial:0, line 38 <- wrt source file 2025-08-26T20:46:32.6233899Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\multinomial.py::Multinomial:0 2025-08-26T20:46:32.6235911Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\multivariate_normal.py::MultivariateNormal:0, line 103 <- wrt source file 2025-08-26T20:46:32.6237878Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\multivariate_normal.py::MultivariateNormal:0 2025-08-26T20:46:32.6363855Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\normal.py::Normal:0, line 22 <- wrt source file 2025-08-26T20:46:32.6365494Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\normal.py::Normal:0 2025-08-26T20:46:32.6367240Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\one_hot_categorical.py::OneHotCategorical:0, line 34 <- wrt source file 2025-08-26T20:46:32.6369329Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\one_hot_categorical.py::OneHotCategorical:0 2025-08-26T20:46:32.6371100Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\pareto.py::Pareto:0, line 20 <- wrt source file 2025-08-26T20:46:32.6372675Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\pareto.py::Pareto:0 2025-08-26T20:46:32.6374275Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\poisson.py::Poisson:0, line 25 <- wrt source file 2025-08-26T20:46:32.6375885Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\poisson.py::Poisson:0 2025-08-26T20:46:32.6377629Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\relaxed_bernoulli.py::RelaxedBernoulli:0, line 127 <- wrt source file 2025-08-26T20:46:32.6379519Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\relaxed_bernoulli.py::RelaxedBernoulli:0 2025-08-26T20:46:32.6381546Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\relaxed_categorical.py::RelaxedOneHotCategorical:0, line 116 <- wrt source file 2025-08-26T20:46:32.6383613Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\relaxed_categorical.py::RelaxedOneHotCategorical:0 2025-08-26T20:46:32.6385452Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\studentT.py::StudentT:0, line 22 <- wrt source file 2025-08-26T20:46:32.6387060Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\studentT.py::StudentT:0 2025-08-26T20:46:32.6388749Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\transforms.py::CatTransform:0, line 1065 <- wrt source file 2025-08-26T20:46:32.6390486Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\transforms.py::CatTransform:0 2025-08-26T20:46:32.6392230Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\transforms.py::StackTransform:0, line 1177 <- wrt source file 2025-08-26T20:46:32.6393994Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\transforms.py::StackTransform:0 2025-08-26T20:46:32.6395901Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\transforms.py::CumulativeDistributionTransform:0, line 1253 <- wrt source file 2025-08-26T20:46:32.6398009Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\transforms.py::CumulativeDistributionTransform:0 2025-08-26T20:46:32.6399867Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\uniform.py::Uniform:0, line 21 <- wrt source file 2025-08-26T20:46:32.6401523Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\uniform.py::Uniform:0 2025-08-26T20:46:32.6403242Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\utils.py::clamp_probs:0, line 114 <- wrt source file 2025-08-26T20:46:32.6404869Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\utils.py::clamp_probs:0 2025-08-26T20:46:32.6406485Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\von_mises.py::VonMises:0, line 117 <- wrt source file 2025-08-26T20:46:32.6408108Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\von_mises.py::VonMises:0 2025-08-26T20:46:32.6409711Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\weibull.py::Weibull:0, line 22 <- wrt source file 2025-08-26T20:46:32.6411319Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\weibull.py::Weibull:0 2025-08-26T20:46:32.6412959Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\wishart.py::Wishart:0, line 39 <- wrt source file 2025-08-26T20:46:32.6414543Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\wishart.py::Wishart:0 2025-08-26T20:46:32.6416100Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\export\dynamic_shapes.py::Dim:0, line 103 <- wrt source file 2025-08-26T20:46:32.6417632Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\export\dynamic_shapes.py::Dim:0 2025-08-26T20:46:32.6419263Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\export\dynamic_shapes.py::ShapesCollection:0, line 715 <- wrt source file 2025-08-26T20:46:32.6420984Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\export\dynamic_shapes.py::ShapesCollection:0 2025-08-26T20:46:32.6422698Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\export\dynamic_shapes.py::ShapesCollection:1, line 731 <- wrt source file 2025-08-26T20:46:32.6424462Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\export\dynamic_shapes.py::ShapesCollection:1 2025-08-26T20:46:32.6426174Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\export\dynamic_shapes.py::AdditionalInputs:0, line 815 <- wrt source file 2025-08-26T20:46:32.6427883Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\export\dynamic_shapes.py::AdditionalInputs:0 2025-08-26T20:46:32.6429453Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\graph.py::_snake_case:0, line 102 <- wrt source file 2025-08-26T20:46:32.6430898Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\graph.py::_snake_case:0 2025-08-26T20:46:32.6432441Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\graph.py::Graph.eliminate_dead_code:0, line 1873 <- wrt source file 2025-08-26T20:46:32.6434090Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\graph.py::Graph.eliminate_dead_code:0 2025-08-26T20:46:32.6435695Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\graph.py::Graph.on_generate_code:0, line 1967 <- wrt source file 2025-08-26T20:46:32.6437287Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\graph.py::Graph.on_generate_code:0 2025-08-26T20:46:32.6438857Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\interpreter.py::Interpreter:0, line 49 <- wrt source file 2025-08-26T20:46:32.6440389Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\interpreter.py::Interpreter:0 2025-08-26T20:46:32.6442011Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\interpreter.py::Transformer:0, line 480 <- wrt source file 2025-08-26T20:46:32.6443644Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\interpreter.py::Transformer:0 2025-08-26T20:46:32.6445258Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\subgraph_rewriter.py::replace_pattern:0, line 125 <- wrt source file 2025-08-26T20:46:32.6446946Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\subgraph_rewriter.py::replace_pattern:0 2025-08-26T20:46:32.6448530Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\tensor_type.py::TensorType:0, line 12 <- wrt source file 2025-08-26T20:46:32.6450040Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\tensor_type.py::TensorType:0 2025-08-26T20:46:32.6451554Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\tensor_type.py::is_consistent:0, line 65 <- wrt source file 2025-08-26T20:46:32.6453141Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\tensor_type.py::is_consistent:0 2025-08-26T20:46:32.6454694Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\tensor_type.py::is_more_precise:0, line 93 <- wrt source file 2025-08-26T20:46:32.6456256Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\tensor_type.py::is_more_precise:0 2025-08-26T20:46:32.6458006Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\rewriter.py::AST_Rewriter.visit_AnnAssign:0, line 96 <- wrt source file 2025-08-26T20:46:32.6459909Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\rewriter.py::AST_Rewriter.visit_AnnAssign:0 2025-08-26T20:46:32.6461710Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\core.py::reify:0, line 58 <- wrt source file 2025-08-26T20:46:32.6463418Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\core.py::reify:0 2025-08-26T20:46:32.8388073Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\match.py::VarDispatcher:0, line 48 <- wrt source file 2025-08-26T20:46:32.8390146Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\match.py::VarDispatcher:0 2025-08-26T20:46:32.8392286Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\more.py::unifiable:0, line 11 <- wrt source file 2025-08-26T20:46:32.8394243Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\more.py::unifiable:0 2025-08-26T20:46:32.8396160Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\more.py::reify_object:0, line 37 <- wrt source file 2025-08-26T20:46:32.8398121Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\more.py::reify_object:0 2025-08-26T20:46:32.8400053Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\more.py::unify_object:0, line 93 <- wrt source file 2025-08-26T20:46:32.8402075Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\more.py::unify_object:0 2025-08-26T20:46:32.8404093Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::merge:0, line 37 <- wrt source file 2025-08-26T20:46:32.8406179Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::merge:0 2025-08-26T20:46:32.8408284Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::merge_with:0, line 64 <- wrt source file 2025-08-26T20:46:32.8410413Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::merge_with:0 2025-08-26T20:46:32.8412882Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::valmap:0, line 90 <- wrt source file 2025-08-26T20:46:32.8415002Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::valmap:0 2025-08-26T20:46:32.8417137Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::keymap:0, line 106 <- wrt source file 2025-08-26T20:46:32.8419243Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::keymap:0 2025-08-26T20:46:32.8421345Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::itemmap:0, line 122 <- wrt source file 2025-08-26T20:46:32.8423741Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::itemmap:0 2025-08-26T20:46:32.8425877Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::valfilter:0, line 138 <- wrt source file 2025-08-26T20:46:32.8428069Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::valfilter:0 2025-08-26T20:46:32.8430196Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::keyfilter:0, line 158 <- wrt source file 2025-08-26T20:46:32.8432398Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::keyfilter:0 2025-08-26T20:46:32.8434611Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::itemfilter:0, line 178 <- wrt source file 2025-08-26T20:46:32.8436896Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::itemfilter:0 2025-08-26T20:46:32.8439010Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::assoc:0, line 204 <- wrt source file 2025-08-26T20:46:32.8441065Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::assoc:0 2025-08-26T20:46:32.8443260Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::dissoc:0, line 221 <- wrt source file 2025-08-26T20:46:32.8445367Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::dissoc:0 2025-08-26T20:46:32.8447529Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::assoc_in:0, line 247 <- wrt source file 2025-08-26T20:46:32.8449688Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::assoc_in:0 2025-08-26T20:46:32.8451834Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::update_in:0, line 275 <- wrt source file 2025-08-26T20:46:32.8453980Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::update_in:0 2025-08-26T20:46:32.8456174Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::get_in:0, line 328 <- wrt source file 2025-08-26T20:46:32.8458142Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::get_in:0 2025-08-26T20:46:32.8460486Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::groupby:0, line 375 <- wrt source file 2025-08-26T20:46:32.8462676Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::groupby:0 2025-08-26T20:46:32.8464800Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::first:0, line 416 <- wrt source file 2025-08-26T20:46:32.8466834Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::first:0 2025-08-26T20:46:32.8468912Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\utils.py::transitive_get:0, line 15 <- wrt source file 2025-08-26T20:46:32.8471041Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\utils.py::transitive_get:0 2025-08-26T20:46:32.8473050Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\utils.py::_toposort:0, line 42 <- wrt source file 2025-08-26T20:46:32.8475047Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\utils.py::_toposort:0 2025-08-26T20:46:32.8476983Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\utils.py::reverse_dict:0, line 70 <- wrt source file 2025-08-26T20:46:32.8479048Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\utils.py::reverse_dict:0 2025-08-26T20:46:32.8481064Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\utils.py::freeze:0, line 95 <- wrt source file 2025-08-26T20:46:32.8483000Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\utils.py::freeze:0 2025-08-26T20:46:32.8485128Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\variable.py::variables:0, line 67 <- wrt source file 2025-08-26T20:46:32.8487176Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\variable.py::variables:0 2025-08-26T20:46:32.8489322Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\core.py::dispatch:0, line 20 <- wrt source file 2025-08-26T20:46:32.8491471Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\core.py::dispatch:0 2025-08-26T20:46:32.8493794Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\dispatcher.py::Dispatcher:0, line 113 <- wrt source file 2025-08-26T20:46:32.8496309Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\dispatcher.py::Dispatcher:0 2025-08-26T20:46:32.8498819Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\dispatcher.py::Dispatcher.register:0, line 138 <- wrt source file 2025-08-26T20:46:32.8501303Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\dispatcher.py::Dispatcher.register:0 2025-08-26T20:46:32.8853108Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\dispatcher.py::Dispatcher.add:0, line 191 <- wrt source file 2025-08-26T20:46:32.8855564Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\dispatcher.py::Dispatcher.add:0 2025-08-26T20:46:32.8858223Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\dispatcher.py::Dispatcher.dispatch:0, line 304 <- wrt source file 2025-08-26T20:46:32.8860788Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\dispatcher.py::Dispatcher.dispatch:0 2025-08-26T20:46:32.8863227Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\dispatcher.py::str_signature:0, line 434 <- wrt source file 2025-08-26T20:46:32.8865713Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\dispatcher.py::str_signature:0 2025-08-26T20:46:32.8868047Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\utils.py::expand_tuples:0, line 18 <- wrt source file 2025-08-26T20:46:32.8870454Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\utils.py::expand_tuples:0 2025-08-26T20:46:32.8872812Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\utils.py::_toposort:0, line 41 <- wrt source file 2025-08-26T20:46:32.8875033Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\utils.py::_toposort:0 2025-08-26T20:46:32.8877268Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\utils.py::reverse_dict:0, line 68 <- wrt source file 2025-08-26T20:46:32.8879532Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\utils.py::reverse_dict:0 2025-08-26T20:46:32.8881930Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\utils.py::groupby:0, line 87 <- wrt source file 2025-08-26T20:46:32.8884295Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\utils.py::groupby:0 2025-08-26T20:46:32.8886576Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\utils.py::typename:0, line 117 <- wrt source file 2025-08-26T20:46:32.8888780Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\utils.py::typename:0 2025-08-26T20:46:32.8891075Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\variadic.py::isvariadic:0, line 47 <- wrt source file 2025-08-26T20:46:32.8893409Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\variadic.py::isvariadic:0 2025-08-26T20:46:32.8895768Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\variadic.py::Variadic:0, line 83 <- wrt source file 2025-08-26T20:46:32.8898153Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\variadic.py::Variadic:0 2025-08-26T20:46:32.8900279Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\passes\graph_drawer.py::FxGraphDrawer.get_dot_graph:0, line 129 <- wrt source file 2025-08-26T20:46:32.8902335Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\passes\graph_drawer.py::FxGraphDrawer.get_dot_graph:0 2025-08-26T20:46:32.8904194Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\passes\shape_prop.py::ShapeProp:0, line 99 <- wrt source file 2025-08-26T20:46:32.8905965Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\passes\shape_prop.py::ShapeProp:0 2025-08-26T20:46:32.8908047Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\passes\split_module.py::split_module:0, line 89 <- wrt source file 2025-08-26T20:46:32.8909934Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\passes\split_module.py::split_module:0 2025-08-26T20:46:32.8912035Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\passes\utils\matcher_with_name_node_map_utils.py::SubgraphMatcherWithNameNodeMap:0, line 51 <- wrt source file 2025-08-26T20:46:32.8914605Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\passes\utils\matcher_with_name_node_map_utils.py::SubgraphMatcherWithNameNodeMap:0 2025-08-26T20:46:32.8916821Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\jit\_check.py::AttributeTypeIsSupportedChecker:0, line 36 <- wrt source file 2025-08-26T20:46:32.8919546Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\jit\_check.py::AttributeTypeIsSupportedChecker:0 2025-08-26T20:46:32.8921555Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\jit\mobile\__init__.py::_load_for_lite_interpreter:0, line 22 <- wrt source file 2025-08-26T20:46:32.8923464Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\jit\mobile\__init__.py::_load_for_lite_interpreter:0 2025-08-26T20:46:32.8925516Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\jit\mobile\__init__.py::_get_mobile_model_contained_types:0, line 122 <- wrt source file 2025-08-26T20:46:32.8927584Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\jit\mobile\__init__.py::_get_mobile_model_contained_types:0 2025-08-26T20:46:32.8929560Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\jit\mobile\__init__.py::_get_model_ops_and_info:0, line 214 <- wrt source file 2025-08-26T20:46:32.8931452Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\jit\mobile\__init__.py::_get_model_ops_and_info:0 2025-08-26T20:46:32.8933328Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\masked\_ops.py::logaddexp:0, line 1530 <- wrt source file 2025-08-26T20:46:32.8934952Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\masked\_ops.py::logaddexp:0 2025-08-26T20:46:32.8936739Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\masked\maskedtensor\core.py::is_masked_tensor:0, line 25 <- wrt source file 2025-08-26T20:46:32.8938628Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\masked\maskedtensor\core.py::is_masked_tensor:0 2025-08-26T20:46:32.8940504Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::fractional_max_pool2d_with_indices:0, line 460 <- wrt source file 2025-08-26T20:46:32.8942549Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::fractional_max_pool2d_with_indices:0 2025-08-26T20:46:32.8944588Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::fractional_max_pool3d_with_indices:0, line 579 <- wrt source file 2025-08-26T20:46:32.8946552Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::fractional_max_pool3d_with_indices:0 2025-08-26T20:46:32.8948450Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::gumbel_softmax:0, line 2174 <- wrt source file 2025-08-26T20:46:32.8950208Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::gumbel_softmax:0 2025-08-26T20:46:32.8951881Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::embedding:0, line 2478 <- wrt source file 2025-08-26T20:46:32.8953538Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::embedding:0 2025-08-26T20:46:32.8955425Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::embedding_bag:0, line 2618 <- wrt source file 2025-08-26T20:46:32.8957182Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::embedding_bag:0 2025-08-26T20:46:32.8958885Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::ctc_loss:0, line 3051 <- wrt source file 2025-08-26T20:46:32.8960625Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::ctc_loss:0 2025-08-26T20:46:32.8962336Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::nll_loss:0, line 3121 <- wrt source file 2025-08-26T20:46:32.8963944Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::nll_loss:0 2025-08-26T20:46:32.8965828Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::cross_entropy:0, line 3430 <- wrt source file 2025-08-26T20:46:33.2969006Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::cross_entropy:0 2025-08-26T20:46:33.2970673Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::binary_cross_entropy:0, line 3495 <- wrt source file 2025-08-26T20:46:33.2972381Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::binary_cross_entropy:0 2025-08-26T20:46:33.2974129Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::binary_cross_entropy_with_logits:0, line 3565 <- wrt source file 2025-08-26T20:46:33.2975940Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::binary_cross_entropy_with_logits:0 2025-08-26T20:46:33.2977549Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::pad:0, line 5263 <- wrt source file 2025-08-26T20:46:33.2979050Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::pad:0 2025-08-26T20:46:33.2980650Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\grad.py::conv1d_input:0, line 32 <- wrt source file 2025-08-26T20:46:33.2982081Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\grad.py::conv1d_input:0 2025-08-26T20:46:33.2983518Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\grad.py::conv1d_weight:0, line 79 <- wrt source file 2025-08-26T20:46:33.2985009Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\grad.py::conv1d_weight:0 2025-08-26T20:46:33.2986427Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\grad.py::conv2d_input:0, line 130 <- wrt source file 2025-08-26T20:46:33.2987871Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\grad.py::conv2d_input:0 2025-08-26T20:46:33.2989300Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\grad.py::conv2d_weight:0, line 177 <- wrt source file 2025-08-26T20:46:33.2990812Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\grad.py::conv2d_weight:0 2025-08-26T20:46:33.2992255Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\grad.py::conv3d_input:0, line 228 <- wrt source file 2025-08-26T20:46:33.2993678Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\grad.py::conv3d_input:0 2025-08-26T20:46:33.2995113Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\grad.py::conv3d_weight:0, line 275 <- wrt source file 2025-08-26T20:46:33.2996596Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\grad.py::conv3d_weight:0 2025-08-26T20:46:33.2998045Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::calculate_gain:0, line 171 <- wrt source file 2025-08-26T20:46:33.2999655Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::calculate_gain:0 2025-08-26T20:46:33.3001074Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::uniform_:0, line 230 <- wrt source file 2025-08-26T20:46:33.3002564Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::uniform_:0 2025-08-26T20:46:33.3003945Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::normal_:0, line 257 <- wrt source file 2025-08-26T20:46:33.3005329Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::normal_:0 2025-08-26T20:46:33.3006744Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::trunc_normal_:0, line 292 <- wrt source file 2025-08-26T20:46:33.3008299Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::trunc_normal_:0 2025-08-26T20:46:33.3009772Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::constant_:0, line 306 <- wrt source file 2025-08-26T20:46:33.3011171Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::constant_:0 2025-08-26T20:46:33.3012547Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::ones_:0, line 323 <- wrt source file 2025-08-26T20:46:33.3013896Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::ones_:0 2025-08-26T20:46:33.3015302Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::zeros_:0, line 336 <- wrt source file 2025-08-26T20:46:33.3016669Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::zeros_:0 2025-08-26T20:46:33.3018023Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::eye_:0, line 352 <- wrt source file 2025-08-26T20:46:33.3019424Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::eye_:0 2025-08-26T20:46:33.3020808Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::dirac_:0, line 374 <- wrt source file 2025-08-26T20:46:33.3022195Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::dirac_:0 2025-08-26T20:46:33.3023616Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::xavier_uniform_:0, line 460 <- wrt source file 2025-08-26T20:46:33.3025094Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::xavier_uniform_:0 2025-08-26T20:46:33.3026569Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::xavier_normal_:0, line 492 <- wrt source file 2025-08-26T20:46:33.3028062Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::xavier_normal_:0 2025-08-26T20:46:33.3029529Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::kaiming_uniform_:0, line 543 <- wrt source file 2025-08-26T20:46:33.3031022Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::kaiming_uniform_:0 2025-08-26T20:46:33.3032497Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::kaiming_normal_:0, line 608 <- wrt source file 2025-08-26T20:46:33.3034019Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::kaiming_normal_:0 2025-08-26T20:46:33.3035460Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::orthogonal_:0, line 647 <- wrt source file 2025-08-26T20:46:33.3036880Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::orthogonal_:0 2025-08-26T20:46:33.3038290Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::sparse_:0, line 700 <- wrt source file 2025-08-26T20:46:33.3040723Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::sparse_:0 2025-08-26T20:46:33.3042287Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\attention\__init__.py::sdpa_kernel:0, line 120 <- wrt source file 2025-08-26T20:46:33.3043899Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\attention\__init__.py::sdpa_kernel:0 2025-08-26T20:46:33.3045525Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\attention\bias.py::CausalBias:0, line 95 <- wrt source file 2025-08-26T20:46:33.3047085Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\attention\bias.py::CausalBias:0 2025-08-26T20:46:33.3048666Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Threshold:0, line 72 <- wrt source file 2025-08-26T20:46:33.3050335Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Threshold:0 2025-08-26T20:46:33.3051966Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::ReLU:0, line 120 <- wrt source file 2025-08-26T20:46:33.3053505Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::ReLU:0 2025-08-26T20:46:33.3055028Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::RReLU:0, line 185 <- wrt source file 2025-08-26T20:46:33.3056574Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::RReLU:0 2025-08-26T20:46:33.3058182Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Hardtanh:0, line 247 <- wrt source file 2025-08-26T20:46:33.3059775Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Hardtanh:0 2025-08-26T20:46:33.3061411Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::ReLU6:0, line 318 <- wrt source file 2025-08-26T20:46:33.3062949Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::ReLU6:0 2025-08-26T20:46:33.3064557Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Sigmoid:0, line 349 <- wrt source file 2025-08-26T20:46:33.3066123Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Sigmoid:0 2025-08-26T20:46:33.3067723Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Hardsigmoid:0, line 384 <- wrt source file 2025-08-26T20:46:33.7072031Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Hardsigmoid:0 2025-08-26T20:46:33.7073715Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Tanh:0, line 420 <- wrt source file 2025-08-26T20:46:33.7075274Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Tanh:0 2025-08-26T20:46:33.7076811Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::SiLU:0, line 456 <- wrt source file 2025-08-26T20:46:33.7078348Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::SiLU:0 2025-08-26T20:46:33.7079874Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Mish:0, line 501 <- wrt source file 2025-08-26T20:46:33.7081463Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Mish:0 2025-08-26T20:46:33.7083253Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Hardswish:0, line 552 <- wrt source file 2025-08-26T20:46:33.7085504Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Hardswish:0 2025-08-26T20:46:33.7087454Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::ELU:0, line 598 <- wrt source file 2025-08-26T20:46:33.7089302Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::ELU:0 2025-08-26T20:46:33.7090840Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::CELU:0, line 646 <- wrt source file 2025-08-26T20:46:33.7092455Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::CELU:0 2025-08-26T20:46:33.7094047Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::SELU:0, line 705 <- wrt source file 2025-08-26T20:46:33.7095771Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::SELU:0 2025-08-26T20:46:33.7097367Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::GLU:0, line 751 <- wrt source file 2025-08-26T20:46:33.7098967Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::GLU:0 2025-08-26T20:46:33.7100567Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::GELU:0, line 799 <- wrt source file 2025-08-26T20:46:33.7102166Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::GELU:0 2025-08-26T20:46:33.7103815Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Hardshrink:0, line 848 <- wrt source file 2025-08-26T20:46:33.7105532Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Hardshrink:0 2025-08-26T20:46:33.7107250Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::LeakyReLU:0, line 903 <- wrt source file 2025-08-26T20:46:33.7109042Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::LeakyReLU:0 2025-08-26T20:46:33.7110723Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::LogSigmoid:0, line 945 <- wrt source file 2025-08-26T20:46:33.7112419Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::LogSigmoid:0 2025-08-26T20:46:33.7114130Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Softplus:0, line 981 <- wrt source file 2025-08-26T20:46:33.7115786Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Softplus:0 2025-08-26T20:46:33.7117484Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Softshrink:0, line 1030 <- wrt source file 2025-08-26T20:46:33.7119211Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Softshrink:0 2025-08-26T20:46:33.7120961Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::MultiheadAttention:0, line 1144 <- wrt source file 2025-08-26T20:46:33.7122863Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::MultiheadAttention:0 2025-08-26T20:46:33.7124581Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::PReLU:0, line 1609 <- wrt source file 2025-08-26T20:46:33.7126229Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::PReLU:0 2025-08-26T20:46:33.7127891Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Softsign:0, line 1660 <- wrt source file 2025-08-26T20:46:33.7129605Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Softsign:0 2025-08-26T20:46:33.7131223Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Tanhshrink:0, line 1686 <- wrt source file 2025-08-26T20:46:33.7132857Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Tanhshrink:0 2025-08-26T20:46:33.7134523Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Softmin:0, line 1724 <- wrt source file 2025-08-26T20:46:33.7136187Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Softmin:0 2025-08-26T20:46:33.7137759Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Softmax:0, line 1788 <- wrt source file 2025-08-26T20:46:33.7139399Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Softmax:0 2025-08-26T20:46:33.7140993Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Softmax2d:0, line 1835 <- wrt source file 2025-08-26T20:46:33.7142691Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Softmax2d:0 2025-08-26T20:46:33.7144372Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::LogSoftmax:0, line 1874 <- wrt source file 2025-08-26T20:46:33.7146058Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::LogSoftmax:0 2025-08-26T20:46:33.7147773Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\batchnorm.py::BatchNorm1d:0, line 332 <- wrt source file 2025-08-26T20:46:33.7149448Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\batchnorm.py::BatchNorm1d:0 2025-08-26T20:46:33.7151111Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\batchnorm.py::BatchNorm2d:0, line 443 <- wrt source file 2025-08-26T20:46:33.7152724Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\batchnorm.py::BatchNorm2d:0 2025-08-26T20:46:33.7154355Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\batchnorm.py::BatchNorm3d:0, line 554 <- wrt source file 2025-08-26T20:46:33.7156048Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\batchnorm.py::BatchNorm3d:0 2025-08-26T20:46:33.7157762Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\batchnorm.py::SyncBatchNorm:0, line 678 <- wrt source file 2025-08-26T20:46:33.7159537Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\batchnorm.py::SyncBatchNorm:0 2025-08-26T20:46:33.7161466Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\batchnorm.py::SyncBatchNorm.convert_sync_batchnorm:0, line 844 <- wrt source file 2025-08-26T20:46:33.7163455Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\batchnorm.py::SyncBatchNorm.convert_sync_batchnorm:0 2025-08-26T20:46:33.7165308Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\channelshuffle.py::ChannelShuffle:0, line 21 <- wrt source file 2025-08-26T20:46:33.7167123Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\channelshuffle.py::ChannelShuffle:0 2025-08-26T20:46:33.7168880Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\container.py::Sequential:0, line 81 <- wrt source file 2025-08-26T20:46:33.7170566Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\container.py::Sequential:0 2025-08-26T20:46:33.7172408Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\container.py::Sequential.append:0, line 260 <- wrt source file 2025-08-26T20:46:33.7174212Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\container.py::Sequential.append:0 2025-08-26T20:46:33.7175998Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\container.py::Sequential.insert:0, line 283 <- wrt source file 2025-08-26T20:46:34.5322181Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\container.py::Sequential.insert:0 2025-08-26T20:46:34.5323801Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\container.py::Sequential.extend:0, line 314 <- wrt source file 2025-08-26T20:46:34.5325670Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\container.py::Sequential.extend:0 2025-08-26T20:46:34.5327236Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\container.py::ModuleList:0, line 343 <- wrt source file 2025-08-26T20:46:34.5328728Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\container.py::ModuleList:0 2025-08-26T20:46:34.5330200Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\container.py::ModuleDict:0, line 523 <- wrt source file 2025-08-26T20:46:34.5331741Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\container.py::ModuleDict:0 2025-08-26T20:46:34.5333234Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\container.py::ParameterList:0, line 653 <- wrt source file 2025-08-26T20:46:34.5334748Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\container.py::ParameterList:0 2025-08-26T20:46:34.5336278Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\container.py::ParameterDict:0, line 808 <- wrt source file 2025-08-26T20:46:34.5337958Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\container.py::ParameterDict:0 2025-08-26T20:46:34.5339490Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\distance.py::PairwiseDistance:0, line 38 <- wrt source file 2025-08-26T20:46:34.5341066Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\distance.py::PairwiseDistance:0 2025-08-26T20:46:34.5342567Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\distance.py::CosineSimilarity:0, line 81 <- wrt source file 2025-08-26T20:46:34.5344106Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\distance.py::CosineSimilarity:0 2025-08-26T20:46:34.5345597Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\dropout.py::Dropout:0, line 60 <- wrt source file 2025-08-26T20:46:34.5347035Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\dropout.py::Dropout:0 2025-08-26T20:46:34.5348502Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\dropout.py::Dropout1d:0, line 108 <- wrt source file 2025-08-26T20:46:34.5349921Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\dropout.py::Dropout1d:0 2025-08-26T20:46:34.5351386Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\dropout.py::Dropout2d:0, line 163 <- wrt source file 2025-08-26T20:46:34.5352826Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\dropout.py::Dropout2d:0 2025-08-26T20:46:34.5354248Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\dropout.py::Dropout3d:0, line 211 <- wrt source file 2025-08-26T20:46:34.5355916Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\dropout.py::Dropout3d:0 2025-08-26T20:46:34.5357385Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\dropout.py::AlphaDropout:0, line 257 <- wrt source file 2025-08-26T20:46:34.5358778Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\dropout.py::AlphaDropout:0 2025-08-26T20:46:34.5360191Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\dropout.py::FeatureAlphaDropout:0, line 309 <- wrt source file 2025-08-26T20:46:34.5361676Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\dropout.py::FeatureAlphaDropout:0 2025-08-26T20:46:34.5363117Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\flatten.py::Flatten:0, line 30 <- wrt source file 2025-08-26T20:46:34.5364660Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\flatten.py::Flatten:0 2025-08-26T20:46:34.5366123Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\flatten.py::Unflatten:0, line 87 <- wrt source file 2025-08-26T20:46:34.5367556Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\flatten.py::Unflatten:0 2025-08-26T20:46:34.5368997Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\fold.py::Fold:0, line 224 <- wrt source file 2025-08-26T20:46:34.5370363Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\fold.py::Fold:0 2025-08-26T20:46:34.5371768Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\fold.py::Unfold:0, line 395 <- wrt source file 2025-08-26T20:46:34.5373157Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\fold.py::Unfold:0 2025-08-26T20:46:34.5374681Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\instancenorm.py::InstanceNorm1d:0, line 187 <- wrt source file 2025-08-26T20:46:34.5377103Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\instancenorm.py::InstanceNorm1d:0 2025-08-26T20:46:34.5378540Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\instancenorm.py::InstanceNorm2d:0, line 303 <- wrt source file 2025-08-26T20:46:34.5380012Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\instancenorm.py::InstanceNorm2d:0 2025-08-26T20:46:34.5381600Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\instancenorm.py::InstanceNorm3d:0, line 419 <- wrt source file 2025-08-26T20:46:34.5383062Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\instancenorm.py::InstanceNorm3d:0 2025-08-26T20:46:34.5384507Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\lazy.py::LazyModuleMixin:0, line 77 <- wrt source file 2025-08-26T20:46:34.5385863Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\lazy.py::LazyModuleMixin:0 2025-08-26T20:46:34.5399399Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\linear.py::Identity:0, line 34 <- wrt source file 2025-08-26T20:46:34.5400775Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\linear.py::Identity:0 2025-08-26T20:46:34.5402174Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\linear.py::Linear:0, line 83 <- wrt source file 2025-08-26T20:46:34.5403485Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\linear.py::Linear:0 2025-08-26T20:46:34.5404860Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\linear.py::Bilinear:0, line 191 <- wrt source file 2025-08-26T20:46:34.5406558Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\linear.py::Bilinear:0 2025-08-26T20:46:34.5407883Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::L1Loss:0, line 115 <- wrt source file 2025-08-26T20:46:34.5409156Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::L1Loss:0 2025-08-26T20:46:34.5410451Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::NLLLoss:0, line 215 <- wrt source file 2025-08-26T20:46:34.5411729Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::NLLLoss:0 2025-08-26T20:46:34.5413086Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::PoissonNLLLoss:0, line 329 <- wrt source file 2025-08-26T20:46:34.5414579Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::PoissonNLLLoss:0 2025-08-26T20:46:34.5415986Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::GaussianNLLLoss:0, line 418 <- wrt source file 2025-08-26T20:46:34.5417381Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::GaussianNLLLoss:0 2025-08-26T20:46:34.5418720Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::KLDivLoss:0, line 535 <- wrt source file 2025-08-26T20:46:34.5420030Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::KLDivLoss:0 2025-08-26T20:46:34.5421390Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::MSELoss:0, line 617 <- wrt source file 2025-08-26T20:46:34.5422734Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::MSELoss:0 2025-08-26T20:46:34.5424079Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::BCELoss:0, line 703 <- wrt source file 2025-08-26T20:46:34.5425489Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::BCELoss:0 2025-08-26T20:46:36.2076564Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::BCEWithLogitsLoss:0, line 778 <- wrt source file 2025-08-26T20:46:36.2078257Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::BCEWithLogitsLoss:0 2025-08-26T20:46:36.2079896Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::BCEWithLogitsLoss:1, line 826 <- wrt source file 2025-08-26T20:46:36.2081599Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::BCEWithLogitsLoss:1 2025-08-26T20:46:36.2083280Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::MultiLabelMarginLoss:0, line 974 <- wrt source file 2025-08-26T20:46:36.2084996Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::MultiLabelMarginLoss:0 2025-08-26T20:46:36.2086684Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::CrossEntropyLoss:0, line 1306 <- wrt source file 2025-08-26T20:46:36.2088332Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::CrossEntropyLoss:0 2025-08-26T20:46:36.2089958Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::CrossEntropyLoss:1, line 1333 <- wrt source file 2025-08-26T20:46:36.2091589Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::CrossEntropyLoss:1 2025-08-26T20:46:36.2093254Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::CosineEmbeddingLoss:0, line 1495 <- wrt source file 2025-08-26T20:46:36.2095207Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::CosineEmbeddingLoss:0 2025-08-26T20:46:36.2096853Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::MarginRankingLoss:0, line 1562 <- wrt source file 2025-08-26T20:46:36.2098491Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::MarginRankingLoss:0 2025-08-26T20:46:36.2100114Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::MultiMarginLoss:0, line 1643 <- wrt source file 2025-08-26T20:46:36.2101713Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::MultiMarginLoss:0 2025-08-26T20:46:36.2103335Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::TripletMarginLoss:0, line 1745 <- wrt source file 2025-08-26T20:46:36.2105053Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::TripletMarginLoss:0 2025-08-26T20:46:36.2106806Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::TripletMarginWithDistanceLoss:0, line 1858 <- wrt source file 2025-08-26T20:46:36.2108659Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::TripletMarginWithDistanceLoss:0 2025-08-26T20:46:36.2110322Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::CTCLoss:0, line 1990 <- wrt source file 2025-08-26T20:46:36.2111834Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::CTCLoss:0 2025-08-26T20:46:36.2113451Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.register_buffer:0, line 551 <- wrt source file 2025-08-26T20:46:36.2115177Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.register_buffer:0 2025-08-26T20:46:36.2116915Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.apply:0, line 1039 <- wrt source file 2025-08-26T20:46:36.2118183Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.apply:0 2025-08-26T20:46:36.2119093Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.to:0, line 1290 <- wrt source file 2025-08-26T20:46:36.2120012Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.to:0 2025-08-26T20:46:36.2120944Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.state_dict:0, line 2229 <- wrt source file 2025-08-26T20:46:36.2121980Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.state_dict:0 2025-08-26T20:46:36.2122970Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.parameters:0, line 2670 <- wrt source file 2025-08-26T20:46:36.2123945Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.parameters:0 2025-08-26T20:46:36.2125320Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.named_parameters:0, line 2698 <- wrt source file 2025-08-26T20:46:36.2126442Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.named_parameters:0 2025-08-26T20:46:36.2127428Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.buffers:0, line 2725 <- wrt source file 2025-08-26T20:46:36.2128389Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.buffers:0 2025-08-26T20:46:36.2129448Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.named_buffers:0, line 2752 <- wrt source file 2025-08-26T20:46:36.2130439Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.named_buffers:0 2025-08-26T20:46:36.2131429Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.named_children:0, line 2783 <- wrt source file 2025-08-26T20:46:36.2132414Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.named_children:0 2025-08-26T20:46:36.2133368Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.modules:0, line 2807 <- wrt source file 2025-08-26T20:46:36.2134301Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.modules:0 2025-08-26T20:46:36.2135318Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.named_modules:0, line 2845 <- wrt source file 2025-08-26T20:46:36.2136304Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.named_modules:0 2025-08-26T20:46:36.2137292Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\normalization.py::LocalResponseNorm:0, line 38 <- wrt source file 2025-08-26T20:46:36.2138323Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\normalization.py::LocalResponseNorm:0 2025-08-26T20:46:36.2139313Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\normalization.py::LayerNorm:0, line 163 <- wrt source file 2025-08-26T20:46:36.2140267Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\normalization.py::LayerNorm:0 2025-08-26T20:46:36.2141224Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\normalization.py::GroupNorm:0, line 274 <- wrt source file 2025-08-26T20:46:36.2142219Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\normalization.py::GroupNorm:0 2025-08-26T20:46:36.2143178Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\normalization.py::RMSNorm:0, line 367 <- wrt source file 2025-08-26T20:46:36.2144121Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\normalization.py::RMSNorm:0 2025-08-26T20:46:36.2145050Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::CircularPad1d:0, line 70 <- wrt source file 2025-08-26T20:46:36.2145981Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::CircularPad1d:0 2025-08-26T20:46:36.2146919Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::CircularPad2d:0, line 122 <- wrt source file 2025-08-26T20:46:36.2147849Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::CircularPad2d:0 2025-08-26T20:46:36.2148786Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::CircularPad3d:0, line 187 <- wrt source file 2025-08-26T20:46:36.2149708Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::CircularPad3d:0 2025-08-26T20:46:36.2150656Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ConstantPad1d:0, line 241 <- wrt source file 2025-08-26T20:46:36.2151584Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ConstantPad1d:0 2025-08-26T20:46:38.2730671Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ConstantPad2d:0, line 294 <- wrt source file 2025-08-26T20:46:38.2732645Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ConstantPad2d:0 2025-08-26T20:46:38.2734278Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ConstantPad3d:0, line 350 <- wrt source file 2025-08-26T20:46:38.2735891Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ConstantPad3d:0 2025-08-26T20:46:38.2737521Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ReflectionPad1d:0, line 395 <- wrt source file 2025-08-26T20:46:38.2739156Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ReflectionPad1d:0 2025-08-26T20:46:38.2740815Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ReflectionPad2d:0, line 439 <- wrt source file 2025-08-26T20:46:38.2742545Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ReflectionPad2d:0 2025-08-26T20:46:38.2744180Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ReflectionPad3d:0, line 497 <- wrt source file 2025-08-26T20:46:38.2745829Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ReflectionPad3d:0 2025-08-26T20:46:38.2747486Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ReplicationPad1d:0, line 556 <- wrt source file 2025-08-26T20:46:38.2749148Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ReplicationPad1d:0 2025-08-26T20:46:38.2750810Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ReplicationPad2d:0, line 600 <- wrt source file 2025-08-26T20:46:38.2752456Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ReplicationPad2d:0 2025-08-26T20:46:38.2754182Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ReplicationPad3d:0, line 658 <- wrt source file 2025-08-26T20:46:38.2755846Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ReplicationPad3d:0 2025-08-26T20:46:38.2757450Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ZeroPad1d:0, line 692 <- wrt source file 2025-08-26T20:46:38.2759017Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ZeroPad1d:0 2025-08-26T20:46:38.2760569Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ZeroPad2d:0, line 750 <- wrt source file 2025-08-26T20:46:38.2762196Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ZeroPad2d:0 2025-08-26T20:46:38.2763762Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ZeroPad3d:0, line 812 <- wrt source file 2025-08-26T20:46:38.2765327Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ZeroPad3d:0 2025-08-26T20:46:38.2766967Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pixelshuffle.py::PixelShuffle:0, line 40 <- wrt source file 2025-08-26T20:46:38.2768647Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pixelshuffle.py::PixelShuffle:0 2025-08-26T20:46:38.2770332Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pixelshuffle.py::PixelUnshuffle:0, line 99 <- wrt source file 2025-08-26T20:46:38.2772044Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pixelshuffle.py::PixelUnshuffle:0 2025-08-26T20:46:38.2773761Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::MaxPool1d:0, line 129 <- wrt source file 2025-08-26T20:46:38.2775332Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::MaxPool1d:0 2025-08-26T20:46:38.2776897Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::MaxPool2d:0, line 207 <- wrt source file 2025-08-26T20:46:38.2778455Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::MaxPool2d:0 2025-08-26T20:46:38.2780041Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::MaxPool3d:0, line 291 <- wrt source file 2025-08-26T20:46:38.2781597Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::MaxPool3d:0 2025-08-26T20:46:38.2783204Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::MaxUnpool1d:0, line 366 <- wrt source file 2025-08-26T20:46:38.2784799Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::MaxUnpool1d:0 2025-08-26T20:46:38.2786368Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::MaxUnpool2d:0, line 452 <- wrt source file 2025-08-26T20:46:38.2787972Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::MaxUnpool2d:0 2025-08-26T20:46:38.2789555Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::MaxUnpool3d:0, line 550 <- wrt source file 2025-08-26T20:46:38.2791130Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::MaxUnpool3d:0 2025-08-26T20:46:38.2792699Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AvgPool1d:0, line 642 <- wrt source file 2025-08-26T20:46:38.2794266Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AvgPool1d:0 2025-08-26T20:46:38.2795865Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AvgPool2d:0, line 738 <- wrt source file 2025-08-26T20:46:38.2797418Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AvgPool2d:0 2025-08-26T20:46:38.2798968Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AvgPool3d:0, line 855 <- wrt source file 2025-08-26T20:46:38.2800525Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AvgPool3d:0 2025-08-26T20:46:38.2802208Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::FractionalMaxPool2d:0, line 946 <- wrt source file 2025-08-26T20:46:38.2803926Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::FractionalMaxPool2d:0 2025-08-26T20:46:38.2805641Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::FractionalMaxPool3d:0, line 1033 <- wrt source file 2025-08-26T20:46:38.2807349Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::FractionalMaxPool3d:0 2025-08-26T20:46:38.2808961Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::LPPool1d:0, line 1152 <- wrt source file 2025-08-26T20:46:38.2810711Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::LPPool1d:0 2025-08-26T20:46:38.2812265Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::LPPool2d:0, line 1204 <- wrt source file 2025-08-26T20:46:38.2813824Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::LPPool2d:0 2025-08-26T20:46:38.2815564Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::LPPool3d:0, line 1264 <- wrt source file 2025-08-26T20:46:38.2817203Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::LPPool3d:0 2025-08-26T20:46:38.2818826Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AdaptiveMaxPool1d:0, line 1320 <- wrt source file 2025-08-26T20:46:38.2820514Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AdaptiveMaxPool1d:0 2025-08-26T20:46:38.2822318Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AdaptiveMaxPool2d:0, line 1355 <- wrt source file 2025-08-26T20:46:38.2824029Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AdaptiveMaxPool2d:0 2025-08-26T20:46:38.2825775Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AdaptiveMaxPool3d:0, line 1399 <- wrt source file 2025-08-26T20:46:38.2827511Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AdaptiveMaxPool3d:0 2025-08-26T20:46:38.2829280Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AdaptiveAvgPool1d:0, line 1447 <- wrt source file 2025-08-26T20:46:38.2830959Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AdaptiveAvgPool1d:0 2025-08-26T20:46:38.3039381Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AdaptiveAvgPool2d:0, line 1481 <- wrt source file 2025-08-26T20:46:38.3041145Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AdaptiveAvgPool2d:0 2025-08-26T20:46:38.3042879Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AdaptiveAvgPool3d:0, line 1521 <- wrt source file 2025-08-26T20:46:38.3044766Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AdaptiveAvgPool3d:0 2025-08-26T20:46:38.3046449Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\rnn.py::RNN:0, line 595 <- wrt source file 2025-08-26T20:46:38.3047991Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\rnn.py::RNN:0 2025-08-26T20:46:38.3049496Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\rnn.py::LSTM:0, line 953 <- wrt source file 2025-08-26T20:46:38.3050928Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\rnn.py::LSTM:0 2025-08-26T20:46:38.3052347Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\rnn.py::GRU:0, line 1288 <- wrt source file 2025-08-26T20:46:38.3053771Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\rnn.py::GRU:0 2025-08-26T20:46:38.3055294Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\rnn.py::RNNCell:0, line 1537 <- wrt source file 2025-08-26T20:46:38.3056868Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\rnn.py::RNNCell:0 2025-08-26T20:46:38.3058449Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\rnn.py::LSTMCell:0, line 1659 <- wrt source file 2025-08-26T20:46:38.3059996Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\rnn.py::LSTMCell:0 2025-08-26T20:46:38.3061457Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\rnn.py::GRUCell:0, line 1773 <- wrt source file 2025-08-26T20:46:38.3062935Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\rnn.py::GRUCell:0 2025-08-26T20:46:38.3064618Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\sparse.py::Embedding:0, line 71 <- wrt source file 2025-08-26T20:46:38.3066196Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\sparse.py::Embedding:0 2025-08-26T20:46:38.3067867Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\sparse.py::Embedding.from_pretrained:0, line 243 <- wrt source file 2025-08-26T20:46:38.3069650Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\sparse.py::Embedding.from_pretrained:0 2025-08-26T20:46:38.3071401Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\sparse.py::EmbeddingBag:0, line 322 <- wrt source file 2025-08-26T20:46:38.3072998Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\sparse.py::EmbeddingBag:0 2025-08-26T20:46:38.3074762Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\sparse.py::EmbeddingBag.from_pretrained:0, line 521 <- wrt source file 2025-08-26T20:46:38.3076640Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\sparse.py::EmbeddingBag.from_pretrained:0 2025-08-26T20:46:38.3078404Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\transformer.py::Transformer:0, line 90 <- wrt source file 2025-08-26T20:46:38.3080049Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\transformer.py::Transformer:0 2025-08-26T20:46:38.3081794Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\transformer.py::Transformer.forward:0, line 258 <- wrt source file 2025-08-26T20:46:38.3083653Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\transformer.py::Transformer.forward:0 2025-08-26T20:46:38.3085420Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\transformer.py::TransformerEncoder:0, line 336 <- wrt source file 2025-08-26T20:46:38.3087231Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\transformer.py::TransformerEncoder:0 2025-08-26T20:46:38.3088971Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\transformer.py::TransformerDecoder:0, line 562 <- wrt source file 2025-08-26T20:46:38.3090743Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\transformer.py::TransformerDecoder:0 2025-08-26T20:46:38.3092538Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\transformer.py::TransformerEncoderLayer:0, line 686 <- wrt source file 2025-08-26T20:46:38.3094472Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\transformer.py::TransformerEncoderLayer:0 2025-08-26T20:46:38.3096299Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\transformer.py::TransformerDecoderLayer:0, line 995 <- wrt source file 2025-08-26T20:46:38.3098143Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\transformer.py::TransformerDecoderLayer:0 2025-08-26T20:46:38.3099848Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\upsampling.py::Upsample:0, line 77 <- wrt source file 2025-08-26T20:46:38.3101459Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\upsampling.py::Upsample:0 2025-08-26T20:46:38.3103145Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\upsampling.py::UpsamplingNearest2d:0, line 229 <- wrt source file 2025-08-26T20:46:38.3104906Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\upsampling.py::UpsamplingNearest2d:0 2025-08-26T20:46:38.3106768Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\upsampling.py::UpsamplingBilinear2d:0, line 279 <- wrt source file 2025-08-26T20:46:38.3108555Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\upsampling.py::UpsamplingBilinear2d:0 2025-08-26T20:46:38.3110388Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\parallel\data_parallel.py::DataParallel:0, line 127 <- wrt source file 2025-08-26T20:46:38.3112084Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\parallel\data_parallel.py::DataParallel:0 2025-08-26T20:46:38.3113861Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\parallel\distributed.py::DistributedDataParallel:0, line 642 <- wrt source file 2025-08-26T20:46:38.3115729Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\parallel\distributed.py::DistributedDataParallel:0 2025-08-26T20:46:38.3117762Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\parallel\distributed.py::DistributedDataParallel.no_sync:0, line 1446 <- wrt source file 2025-08-26T20:46:38.3119819Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\parallel\distributed.py::DistributedDataParallel.no_sync:0 2025-08-26T20:46:38.3121868Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\parallel\distributed.py::DistributedDataParallel.join:0, line 1833 <- wrt source file 2025-08-26T20:46:38.3123846Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\parallel\distributed.py::DistributedDataParallel.join:0 2025-08-26T20:46:38.3125921Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\parallel\distributed.py::DistributedDataParallel.register_comm_hook:0, line 1999 <- wrt source file 2025-08-26T20:46:38.3128116Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\parallel\distributed.py::DistributedDataParallel.register_comm_hook:0 2025-08-26T20:46:38.3130366Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\parallel\distributed.py::DistributedDataParallel.register_comm_hook:1, line 2009 <- wrt source file 2025-08-26T20:46:38.3132540Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\parallel\distributed.py::DistributedDataParallel.register_comm_hook:1 2025-08-26T20:46:38.3134792Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\parallel\distributed.py::DistributedDataParallel._register_builtin_comm_hook:0, line 2044 <- wrt source file 2025-08-26T20:46:38.3137078Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\parallel\distributed.py::DistributedDataParallel._register_builtin_comm_hook:0 2025-08-26T20:46:38.3139313Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\parallel\distributed.py::DistributedDataParallel._register_fused_optim:0, line 2102 <- wrt source file 2025-08-26T20:46:38.3141605Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\parallel\distributed.py::DistributedDataParallel._register_fused_optim:0 2025-08-26T20:46:38.3181041Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\init.py::skip_init:0, line 33 <- wrt source file 2025-08-26T20:46:38.3181921Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\init.py::skip_init:0 2025-08-26T20:46:38.3182920Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\memory_format.py::convert_conv2d_weight_memory_format:0, line 64 <- wrt source file 2025-08-26T20:46:38.3184043Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\memory_format.py::convert_conv2d_weight_memory_format:0 2025-08-26T20:46:38.3185169Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\memory_format.py::convert_conv3d_weight_memory_format:0, line 142 <- wrt source file 2025-08-26T20:46:38.3186401Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\memory_format.py::convert_conv3d_weight_memory_format:0 2025-08-26T20:46:38.3187464Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\parametrizations.py::orthogonal:0, line 265 <- wrt source file 2025-08-26T20:46:38.3188449Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\parametrizations.py::orthogonal:0 2025-08-26T20:46:38.3189426Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\parametrizations.py::weight_norm:0, line 360 <- wrt source file 2025-08-26T20:46:38.3190416Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\parametrizations.py::weight_norm:0 2025-08-26T20:46:38.3191949Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\parametrizations.py::spectral_norm:0, line 591 <- wrt source file 2025-08-26T20:46:38.3192953Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\parametrizations.py::spectral_norm:0 2025-08-26T20:46:38.3193896Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::identity:0, line 849 <- wrt source file 2025-08-26T20:46:38.3194779Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::identity:0 2025-08-26T20:46:38.3195692Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::random_unstructured:0, line 885 <- wrt source file 2025-08-26T20:46:38.3196705Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::random_unstructured:0 2025-08-26T20:46:38.3197677Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::l1_unstructured:0, line 928 <- wrt source file 2025-08-26T20:46:38.3198589Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::l1_unstructured:0 2025-08-26T20:46:38.3199584Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::random_structured:0, line 968 <- wrt source file 2025-08-26T20:46:38.3200513Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::random_structured:0 2025-08-26T20:46:38.3201490Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::ln_structured:0, line 1014 <- wrt source file 2025-08-26T20:46:38.3202449Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::ln_structured:0 2025-08-26T20:46:38.3203524Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::global_unstructured:0, line 1067 <- wrt source file 2025-08-26T20:46:38.3204484Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::global_unstructured:0 2025-08-26T20:46:38.3205427Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::custom_from_mask:0, line 1169 <- wrt source file 2025-08-26T20:46:38.3206349Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::custom_from_mask:0 2025-08-26T20:46:38.3207227Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::remove:0, line 1197 <- wrt source file 2025-08-26T20:46:38.3208077Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::remove:0 2025-08-26T20:46:38.3208928Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::is_pruned:0, line 1225 <- wrt source file 2025-08-26T20:46:38.3209801Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::is_pruned:0 2025-08-26T20:46:38.3210781Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\rnn.py::pad_packed_sequence:0, line 359 <- wrt source file 2025-08-26T20:46:38.3211719Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\rnn.py::pad_packed_sequence:0 2025-08-26T20:46:38.3212611Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\rnn.py::pad_sequence:0, line 439 <- wrt source file 2025-08-26T20:46:38.3213493Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\rnn.py::pad_sequence:0 2025-08-26T20:46:38.3214388Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\rnn.py::unpad_sequence:0, line 500 <- wrt source file 2025-08-26T20:46:38.3215271Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\rnn.py::unpad_sequence:0 2025-08-26T20:46:38.3216202Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\rnn.py::pack_sequence:0, line 556 <- wrt source file 2025-08-26T20:46:38.3217101Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\rnn.py::pack_sequence:0 2025-08-26T20:46:38.3217985Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\rnn.py::unpack_sequence:0, line 584 <- wrt source file 2025-08-26T20:46:38.3218903Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\rnn.py::unpack_sequence:0 2025-08-26T20:46:38.3219829Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\spectral_norm.py::spectral_norm:0, line 314 <- wrt source file 2025-08-26T20:46:38.3220801Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\spectral_norm.py::spectral_norm:0 2025-08-26T20:46:38.3221793Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\spectral_norm.py::remove_spectral_norm:0, line 346 <- wrt source file 2025-08-26T20:46:38.3222808Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\spectral_norm.py::remove_spectral_norm:0 2025-08-26T20:46:38.3223842Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\stateless.py::functional_call:0, line 196 <- wrt source file 2025-08-26T20:46:38.3224790Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\stateless.py::functional_call:0 2025-08-26T20:46:38.3225730Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\weight_norm.py::weight_norm:0, line 134 <- wrt source file 2025-08-26T20:46:38.3226663Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\weight_norm.py::weight_norm:0 2025-08-26T20:46:38.3227616Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\weight_norm.py::remove_weight_norm:0, line 156 <- wrt source file 2025-08-26T20:46:38.3228612Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\weight_norm.py::remove_weight_norm:0 2025-08-26T20:46:38.3229641Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\_per_sample_grad.py::call_for_per_sample_grads:0, line 35 <- wrt source file 2025-08-26T20:46:38.3230700Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\_per_sample_grad.py::call_for_per_sample_grads:0 2025-08-26T20:46:38.3231750Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\_expanded_weights\conv_utils.py::unfold3d:0, line 315 <- wrt source file 2025-08-26T20:46:38.3232780Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\_expanded_weights\conv_utils.py::unfold3d:0 2025-08-26T20:46:38.3233955Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\_expanded_weights\expanded_weights_utils.py::sum_over_all_but_batch_and_last_n:0, line 178 <- wrt source file 2025-08-26T20:46:38.3235344Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\_expanded_weights\expanded_weights_utils.py::sum_over_all_but_batch_and_last_n:0 2025-08-26T20:46:38.3236446Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::LambdaLR:0, line 280 <- wrt source file 2025-08-26T20:46:38.3237359Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::LambdaLR:0 2025-08-26T20:46:38.3238309Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::MultiplicativeLR:0, line 388 <- wrt source file 2025-08-26T20:46:38.3239273Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::MultiplicativeLR:0 2025-08-26T20:46:38.3394206Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::StepLR:0, line 491 <- wrt source file 2025-08-26T20:46:38.3395232Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::StepLR:0 2025-08-26T20:46:38.3396142Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::MultiStepLR:0, line 547 <- wrt source file 2025-08-26T20:46:38.3397078Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::MultiStepLR:0 2025-08-26T20:46:38.3397997Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::ConstantLR:0, line 608 <- wrt source file 2025-08-26T20:46:38.3398914Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::ConstantLR:0 2025-08-26T20:46:38.3399952Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::LinearLR:0, line 683 <- wrt source file 2025-08-26T20:46:38.3400852Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::LinearLR:0 2025-08-26T20:46:38.3401913Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::ExponentialLR:0, line 773 <- wrt source file 2025-08-26T20:46:38.3402847Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::ExponentialLR:0 2025-08-26T20:46:38.3403782Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::SequentialLR:0, line 820 <- wrt source file 2025-08-26T20:46:38.3404720Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::SequentialLR:0 2025-08-26T20:46:38.3405641Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::PolynomialLR:0, line 971 <- wrt source file 2025-08-26T20:46:38.3406571Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::PolynomialLR:0 2025-08-26T20:46:38.3407537Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::CosineAnnealingLR:0, line 1062 <- wrt source file 2025-08-26T20:46:38.3408508Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::CosineAnnealingLR:0 2025-08-26T20:46:38.3409483Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::ChainedScheduler:0, line 1134 <- wrt source file 2025-08-26T20:46:38.3410437Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::ChainedScheduler:0 2025-08-26T20:46:38.3411364Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::CyclicLR:0, line 1508 <- wrt source file 2025-08-26T20:46:38.3412264Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::CyclicLR:0 2025-08-26T20:46:38.3414014Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::CosineAnnealingWarmRestarts:0, line 1749 <- wrt source file 2025-08-26T20:46:38.3415129Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::CosineAnnealingWarmRestarts:0 2025-08-26T20:46:38.3416253Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::CosineAnnealingWarmRestarts.step:0, line 1803 <- wrt source file 2025-08-26T20:46:38.3417378Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::CosineAnnealingWarmRestarts.step:0 2025-08-26T20:46:38.3418506Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::CosineAnnealingWarmRestarts.step:1, line 1819 <- wrt source file 2025-08-26T20:46:38.3419629Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::CosineAnnealingWarmRestarts.step:1 2025-08-26T20:46:38.3420677Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::OneCycleLR:0, line 1957 <- wrt source file 2025-08-26T20:46:38.3421600Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::OneCycleLR:0 2025-08-26T20:46:38.3422563Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\optimizer.py::Optimizer.load_state_dict:0, line 889 <- wrt source file 2025-08-26T20:46:38.3423569Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\optimizer.py::Optimizer.load_state_dict:0 2025-08-26T20:46:38.3424525Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\swa_utils.py::AveragedModel:0, line 152 <- wrt source file 2025-08-26T20:46:38.3425431Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\swa_utils.py::AveragedModel:0 2025-08-26T20:46:38.3426346Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\swa_utils.py::AveragedModel:1, line 178 <- wrt source file 2025-08-26T20:46:38.3427305Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\swa_utils.py::AveragedModel:1 2025-08-26T20:46:38.3428190Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\swa_utils.py::update_bn:0, line 337 <- wrt source file 2025-08-26T20:46:38.3429076Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\swa_utils.py::update_bn:0 2025-08-26T20:46:38.3429937Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\swa_utils.py::SWALR:0, line 396 <- wrt source file 2025-08-26T20:46:38.3430793Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\swa_utils.py::SWALR:0 2025-08-26T20:46:38.3431688Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\package\glob_group.py::GlobGroup:0, line 22 <- wrt source file 2025-08-26T20:46:38.3432604Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\package\glob_group.py::GlobGroup:0 2025-08-26T20:46:38.3433644Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\profiler\profiler.py::_KinetoProfile.toggle_collection_dynamic:0, line 295 <- wrt source file 2025-08-26T20:46:38.3434806Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\profiler\profiler.py::_KinetoProfile.toggle_collection_dynamic:0 2025-08-26T20:46:38.3435834Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\profiler\profiler.py::profile:0, line 617 <- wrt source file 2025-08-26T20:46:38.3436737Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\profiler\profiler.py::profile:0 2025-08-26T20:46:38.3437705Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\sparse\semi_structured.py::to_sparse_semi_structured:0, line 339 <- wrt source file 2025-08-26T20:46:38.3438834Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\sparse\semi_structured.py::to_sparse_semi_structured:0 2025-08-26T20:46:38.3439856Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_comparison.py::assert_close:0, line 1466 <- wrt source file 2025-08-26T20:46:38.3440792Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_comparison.py::assert_close:0 2025-08-26T20:46:38.3441795Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_creation.py::make_tensor:0, line 114 <- wrt source file 2025-08-26T20:46:38.3442703Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_creation.py::make_tensor:0 2025-08-26T20:46:38.3443669Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\common_utils.py::parametrize:0, line 615 <- wrt source file 2025-08-26T20:46:38.3444739Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\common_utils.py::parametrize:0 2025-08-26T20:46:38.3445756Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\common_utils.py::reparametrize:0, line 736 <- wrt source file 2025-08-26T20:46:38.3446794Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\common_utils.py::reparametrize:0 2025-08-26T20:46:38.3447830Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\common_utils.py::decorateIf:0, line 825 <- wrt source file 2025-08-26T20:46:38.3448829Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\common_utils.py::decorateIf:0 2025-08-26T20:46:38.3449904Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\common_utils.py::random_symmetric_psd_matrix:0, line 4734 <- wrt source file 2025-08-26T20:46:38.3451089Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\common_utils.py::random_symmetric_psd_matrix:0 2025-08-26T20:46:38.3452214Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\common_utils.py::random_hermitian_psd_matrix:0, line 4748 <- wrt source file 2025-08-26T20:46:38.3453363Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\common_utils.py::random_hermitian_psd_matrix:0 2025-08-26T20:46:38.3653807Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\common_utils.py::random_hermitian_pd_matrix:0, line 4778 <- wrt source file 2025-08-26T20:46:38.3656056Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\common_utils.py::random_hermitian_pd_matrix:0 2025-08-26T20:46:38.3658227Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\logging_utils.py::logs_to_string:0, line 194 <- wrt source file 2025-08-26T20:46:38.3660246Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\logging_utils.py::logs_to_string:0 2025-08-26T20:46:38.3662350Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\logging_utils.py::multiple_logs_to_string:0, line 220 <- wrt source file 2025-08-26T20:46:38.3664500Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\logging_utils.py::multiple_logs_to_string:0 2025-08-26T20:46:38.3666793Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\distributed\_tensor\common_dtensor.py::skip_unless_torch_gpu:0, line 331 <- wrt source file 2025-08-26T20:46:38.3669283Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\distributed\_tensor\common_dtensor.py::skip_unless_torch_gpu:0 2025-08-26T20:46:38.3671963Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\optests\autograd_registration.py::autograd_registration_check:0, line 29 <- wrt source file 2025-08-26T20:46:38.3674356Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\optests\autograd_registration.py::autograd_registration_check:0 2025-08-26T20:46:38.3676627Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\backend_registration.py::rename_privateuse1_backend:0, line 69 <- wrt source file 2025-08-26T20:46:38.3678667Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\backend_registration.py::rename_privateuse1_backend:0 2025-08-26T20:46:38.3680811Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\backend_registration.py::generate_methods_for_privateuse1_backend:0, line 375 <- wrt source file 2025-08-26T20:46:38.3683327Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\backend_registration.py::generate_methods_for_privateuse1_backend:0 2025-08-26T20:46:38.3685464Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\backend_registration.py::_get_custom_mod_func:0, line 410 <- wrt source file 2025-08-26T20:46:38.3687501Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\backend_registration.py::_get_custom_mod_func:0 2025-08-26T20:46:38.3689520Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\checkpoint.py::checkpoint_sequential:0, line 547 <- wrt source file 2025-08-26T20:46:38.3691463Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\checkpoint.py::checkpoint_sequential:0 2025-08-26T20:46:38.3693398Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\checkpoint.py::set_checkpoint_early_stop:0, line 749 <- wrt source file 2025-08-26T20:46:38.3695421Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\checkpoint.py::set_checkpoint_early_stop:0 2025-08-26T20:46:38.3697617Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\checkpoint.py::SelectiveCheckpointContext:0, line 1226 <- wrt source file 2025-08-26T20:46:38.3699472Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\checkpoint.py::SelectiveCheckpointContext:0 2025-08-26T20:46:38.3701440Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\checkpoint.py::create_selective_checkpoint_contexts:0, line 1382 <- wrt source file 2025-08-26T20:46:38.3703514Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\checkpoint.py::create_selective_checkpoint_contexts:0 2025-08-26T20:46:38.3705351Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\cpp_extension.py::CppExtension:0, line 1187 <- wrt source file 2025-08-26T20:46:38.3707254Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\cpp_extension.py::CppExtension:0 2025-08-26T20:46:38.3709038Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\cpp_extension.py::CUDAExtension:0, line 1259 <- wrt source file 2025-08-26T20:46:38.3710913Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\cpp_extension.py::CUDAExtension:0 2025-08-26T20:46:38.3712771Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\cpp_extension.py::CUDAExtension:1, line 1337 <- wrt source file 2025-08-26T20:46:38.3714652Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\cpp_extension.py::CUDAExtension:1 2025-08-26T20:46:38.3716518Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\cpp_extension.py::SyclExtension:0, line 1448 <- wrt source file 2025-08-26T20:46:38.3718564Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\cpp_extension.py::SyclExtension:0 2025-08-26T20:46:38.3720385Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\cpp_extension.py::load:0, line 1684 <- wrt source file 2025-08-26T20:46:38.3722159Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\cpp_extension.py::load:0 2025-08-26T20:46:38.3723902Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\cpp_extension.py::load_inline:0, line 1957 <- wrt source file 2025-08-26T20:46:38.3725527Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\cpp_extension.py::load_inline:0 2025-08-26T20:46:38.3727138Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\dlpack.py::from_dlpack:0, line 93 <- wrt source file 2025-08-26T20:46:38.3728883Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\dlpack.py::from_dlpack:0 2025-08-26T20:46:38.3730639Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\throughput_benchmark.py::ThroughputBenchmark:0, line 77 <- wrt source file 2025-08-26T20:46:38.3732580Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\throughput_benchmark.py::ThroughputBenchmark:0 2025-08-26T20:46:38.3734548Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::register_pytree_node:0, line 156 <- wrt source file 2025-08-26T20:46:38.3736414Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::register_pytree_node:0 2025-08-26T20:46:38.3738244Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::tree_is_leaf:0, line 277 <- wrt source file 2025-08-26T20:46:38.3740040Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::tree_is_leaf:0 2025-08-26T20:46:38.3741834Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::tree_flatten:0, line 320 <- wrt source file 2025-08-26T20:46:38.3743779Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::tree_flatten:0 2025-08-26T20:46:38.3745586Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::tree_unflatten:0, line 357 <- wrt source file 2025-08-26T20:46:38.3747397Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::tree_unflatten:0 2025-08-26T20:46:38.3749163Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::tree_iter:0, line 387 <- wrt source file 2025-08-26T20:46:38.3750898Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::tree_iter:0 2025-08-26T20:46:38.3752650Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::tree_leaves:0, line 422 <- wrt source file 2025-08-26T20:46:38.3754341Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::tree_leaves:0 2025-08-26T20:46:38.3756108Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::tree_structure:0, line 457 <- wrt source file 2025-08-26T20:46:38.3757936Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::tree_structure:0 2025-08-26T20:46:38.3759677Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::tree_map:0, line 494 <- wrt source file 2025-08-26T20:46:38.3761454Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::tree_map:0 2025-08-26T20:46:38.3763042Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::broadcast_prefix:0, line 893 <- wrt source file 2025-08-26T20:46:38.3764887Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::broadcast_prefix:0 2025-08-26T20:46:38.3766678Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_pytree.py::register_dataclass:0, line 303 <- wrt source file 2025-08-26T20:46:38.3768315Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_pytree.py::register_dataclass:0 2025-08-26T20:46:38.3769944Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_pytree.py::register_constant:0, line 419 <- wrt source file 2025-08-26T20:46:38.3771529Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_pytree.py::register_constant:0 2025-08-26T20:46:38.3773084Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_pytree.py::tree_is_leaf:0, line 1026 <- wrt source file 2025-08-26T20:46:38.3774725Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_pytree.py::tree_is_leaf:0 2025-08-26T20:46:38.3776439Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_pytree.py::tree_map:0, line 1345 <- wrt source file 2025-08-26T20:46:38.3778107Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_pytree.py::tree_map:0 2025-08-26T20:46:38.3779873Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\dataset.py::IterableDataset:0, line 94 <- wrt source file 2025-08-26T20:46:38.3781514Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\dataset.py::IterableDataset:0 2025-08-26T20:46:38.3783037Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\dataset.py::StackDataset:0, line 219 <- wrt source file 2025-08-26T20:46:38.3784562Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\dataset.py::StackDataset:0 2025-08-26T20:46:38.3786828Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\dataset.py::random_split:0, line 441 <- wrt source file 2025-08-26T20:46:38.3788612Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\dataset.py::random_split:0 2025-08-26T20:46:38.3790562Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\distributed.py::DistributedSampler:0, line 55 <- wrt source file 2025-08-26T20:46:38.3792601Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\distributed.py::DistributedSampler:0 2025-08-26T20:46:38.3794512Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\sampler.py::Sampler:0, line 40 <- wrt source file 2025-08-26T20:46:38.3796284Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\sampler.py::Sampler:0 2025-08-26T20:46:38.3798189Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\sampler.py::WeightedRandomSampler:0, line 238 <- wrt source file 2025-08-26T20:46:38.3800204Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\sampler.py::WeightedRandomSampler:0 2025-08-26T20:46:38.3802206Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\sampler.py::BatchSampler:0, line 309 <- wrt source file 2025-08-26T20:46:38.3804057Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\sampler.py::BatchSampler:0 2025-08-26T20:46:38.3805998Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\datapipe.py::IterDataPipe:0, line 97 <- wrt source file 2025-08-26T20:46:38.3808029Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\datapipe.py::IterDataPipe:0 2025-08-26T20:46:38.3810198Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\datapipe.py::MapDataPipe:0, line 268 <- wrt source file 2025-08-26T20:46:38.3812076Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\datapipe.py::MapDataPipe:0 2025-08-26T20:46:38.3814083Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\callable.py::MapperIterDataPipe:0, line 53 <- wrt source file 2025-08-26T20:46:38.3816070Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\callable.py::MapperIterDataPipe:0 2025-08-26T20:46:38.3818013Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\callable.py::CollatorIterDataPipe:0, line 201 <- wrt source file 2025-08-26T20:46:38.3819978Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\callable.py::CollatorIterDataPipe:0 2025-08-26T20:46:38.3822170Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\combinatorics.py::ShufflerIterDataPipe:0, line 90 <- wrt source file 2025-08-26T20:46:38.3824237Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\combinatorics.py::ShufflerIterDataPipe:0 2025-08-26T20:46:38.3826321Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\combining.py::ConcaterIterDataPipe:0, line 38 <- wrt source file 2025-08-26T20:46:38.3828313Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\combining.py::ConcaterIterDataPipe:0 2025-08-26T20:46:38.3830276Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\combining.py::ForkerIterDataPipe:0, line 88 <- wrt source file 2025-08-26T20:46:38.3832256Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\combining.py::ForkerIterDataPipe:0 2025-08-26T20:46:38.3834317Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\combining.py::_ChildDataPipe:0, line 304 <- wrt source file 2025-08-26T20:46:38.3836162Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\combining.py::_ChildDataPipe:0 2025-08-26T20:46:38.3838203Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\combining.py::DemultiplexerIterDataPipe:0, line 390 <- wrt source file 2025-08-26T20:46:38.3840270Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\combining.py::DemultiplexerIterDataPipe:0 2025-08-26T20:46:38.3842446Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\combining.py::MultiplexerIterDataPipe:0, line 604 <- wrt source file 2025-08-26T20:46:38.3844630Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\combining.py::MultiplexerIterDataPipe:0 2025-08-26T20:46:38.3846639Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\combining.py::ZipperIterDataPipe:0, line 674 <- wrt source file 2025-08-26T20:46:38.3848627Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\combining.py::ZipperIterDataPipe:0 2025-08-26T20:46:38.3850595Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\filelister.py::FileListerIterDataPipe:0, line 30 <- wrt source file 2025-08-26T20:46:38.3852746Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\filelister.py::FileListerIterDataPipe:0 2025-08-26T20:46:38.3855089Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\fileopener.py::FileOpenerIterDataPipe:0, line 35 <- wrt source file 2025-08-26T20:46:38.3857412Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\fileopener.py::FileOpenerIterDataPipe:0 2025-08-26T20:46:38.3859672Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\grouping.py::BatcherIterDataPipe:0, line 53 <- wrt source file 2025-08-26T20:46:38.3861867Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\grouping.py::BatcherIterDataPipe:0 2025-08-26T20:46:38.3864151Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\grouping.py::UnBatcherIterDataPipe:0, line 113 <- wrt source file 2025-08-26T20:46:38.3866420Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\grouping.py::UnBatcherIterDataPipe:0 2025-08-26T20:46:38.3868786Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\grouping.py::GrouperIterDataPipe:0, line 180 <- wrt source file 2025-08-26T20:46:38.3870965Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\grouping.py::GrouperIterDataPipe:0 2025-08-26T20:46:38.3872938Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\selecting.py::FilterIterDataPipe:0, line 37 <- wrt source file 2025-08-26T20:46:38.3875010Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\selecting.py::FilterIterDataPipe:0 2025-08-26T20:46:38.7206392Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\streamreader.py::StreamReaderIterDataPipe:0, line 25 <- wrt source file 2025-08-26T20:46:38.7207692Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\streamreader.py::StreamReaderIterDataPipe:0 2025-08-26T20:46:38.7209065Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\utils.py::IterableWrapperIterDataPipe:0, line 29 <- wrt source file 2025-08-26T20:46:38.7210249Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\utils.py::IterableWrapperIterDataPipe:0 2025-08-26T20:46:38.7211397Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\map\callable.py::MapperMapDataPipe:0, line 35 <- wrt source file 2025-08-26T20:46:38.7212496Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\map\callable.py::MapperMapDataPipe:0 2025-08-26T20:46:38.7213630Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\map\combinatorics.py::ShufflerIterDataPipe:0, line 34 <- wrt source file 2025-08-26T20:46:38.7214862Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\map\combinatorics.py::ShufflerIterDataPipe:0 2025-08-26T20:46:38.7216081Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\map\combining.py::ConcaterMapDataPipe:0, line 29 <- wrt source file 2025-08-26T20:46:38.7217210Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\map\combining.py::ConcaterMapDataPipe:0 2025-08-26T20:46:38.7218330Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\map\combining.py::ZipperMapDataPipe:0, line 73 <- wrt source file 2025-08-26T20:46:38.7219427Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\map\combining.py::ZipperMapDataPipe:0 2025-08-26T20:46:38.7220530Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\map\grouping.py::BatcherMapDataPipe:0, line 29 <- wrt source file 2025-08-26T20:46:38.7221761Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\map\grouping.py::BatcherMapDataPipe:0 2025-08-26T20:46:38.7222887Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\map\utils.py::SequenceWrapperMapDataPipe:0, line 29 <- wrt source file 2025-08-26T20:46:38.7224057Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\map\utils.py::SequenceWrapperMapDataPipe:0 2025-08-26T20:46:38.7225183Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\utils\common.py::validate_input_col:0, line 37 <- wrt source file 2025-08-26T20:46:38.7226318Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\utils\common.py::validate_input_col:0 2025-08-26T20:46:38.7227482Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\utils\decoder.py::basichandlers:0, line 47 <- wrt source file 2025-08-26T20:46:38.7228551Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\utils\decoder.py::basichandlers:0 2025-08-26T20:46:38.7229579Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\_utils\collate.py::default_convert:0, line 39 <- wrt source file 2025-08-26T20:46:38.7230594Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\_utils\collate.py::default_convert:0 2025-08-26T20:46:38.7231571Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\_utils\collate.py::collate:0, line 137 <- wrt source file 2025-08-26T20:46:38.7232520Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\_utils\collate.py::collate:0 2025-08-26T20:46:38.7233513Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\_utils\collate.py::default_collate:0, line 364 <- wrt source file 2025-08-26T20:46:38.7234559Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\_utils\collate.py::default_collate:0 2025-08-26T20:46:38.7235576Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\hipify\hipify_python.py::find_closure_group:0, line 439 <- wrt source file 2025-08-26T20:46:38.7236612Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\hipify\hipify_python.py::find_closure_group:0 2025-08-26T20:46:38.7237663Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\hipify\hipify_python.py::replace_extern_shared:0, line 535 <- wrt source file 2025-08-26T20:46:38.7238731Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\hipify\hipify_python.py::replace_extern_shared:0 2025-08-26T20:46:38.7239793Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.__init__:0, line 216 <- wrt source file 2025-08-26T20:46:38.7240862Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.__init__:0 2025-08-26T20:46:38.7241995Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_hparams:0, line 314 <- wrt source file 2025-08-26T20:46:38.7243089Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_hparams:0 2025-08-26T20:46:38.7244174Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_scalar:0, line 362 <- wrt source file 2025-08-26T20:46:38.7245242Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_scalar:0 2025-08-26T20:46:38.7246421Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_scalars:0, line 394 <- wrt source file 2025-08-26T20:46:38.7247531Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_scalars:0 2025-08-26T20:46:38.7248607Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_tensor:0, line 441 <- wrt source file 2025-08-26T20:46:38.7249695Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_tensor:0 2025-08-26T20:46:38.7250787Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_histogram:0, line 480 <- wrt source file 2025-08-26T20:46:38.7251943Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_histogram:0 2025-08-26T20:46:38.7253071Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_histogram_raw:0, line 533 <- wrt source file 2025-08-26T20:46:38.7254209Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_histogram_raw:0 2025-08-26T20:46:38.7255310Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_image:0, line 599 <- wrt source file 2025-08-26T20:46:38.7256385Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_image:0 2025-08-26T20:46:38.7257457Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_images:0, line 648 <- wrt source file 2025-08-26T20:46:38.7258535Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_images:0 2025-08-26T20:46:38.7259654Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_text:0, line 811 <- wrt source file 2025-08-26T20:46:38.7260708Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_text:0 2025-08-26T20:46:38.7261792Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_embedding:0, line 878 <- wrt source file 2025-08-26T20:46:38.7262898Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_embedding:0 2025-08-26T20:46:38.7263989Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_pr_curve:0, line 989 <- wrt source file 2025-08-26T20:46:38.7265102Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_pr_curve:0 2025-08-26T20:46:39.0327855Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_custom_scalars_multilinechart:0, line 1063 <- wrt source file 2025-08-26T20:46:39.0329180Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_custom_scalars_multilinechart:0 2025-08-26T20:46:39.0330449Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_custom_scalars_marginchart:0, line 1084 <- wrt source file 2025-08-26T20:46:39.0331682Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_custom_scalars_marginchart:0 2025-08-26T20:46:39.0333138Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_custom_scalars:0, line 1108 <- wrt source file 2025-08-26T20:46:39.0334321Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_custom_scalars:0 2025-08-26T20:46:39.0335432Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_mesh:0, line 1154 <- wrt source file 2025-08-26T20:46:39.0336511Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_mesh:0 2025-08-26T20:46:39.0337598Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_sympy\functions.py::MinMaxBase._collapse_arguments:0, line 724 <- wrt source file 2025-08-26T20:46:39.0338687Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_sympy\functions.py::MinMaxBase._collapse_arguments:0 2025-08-26T20:46:39.0339795Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_dynamo\decorators.py::substitute_in_graph:0, line 349 <- wrt source file 2025-08-26T20:46:39.0340806Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_dynamo\decorators.py::substitute_in_graph:0 2025-08-26T20:46:39.0341838Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_dynamo\variables\base.py::VariableTracker.python_type:0, line 322 <- wrt source file 2025-08-26T20:46:39.0342938Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_dynamo\variables\base.py::VariableTracker.python_type:0 2025-08-26T20:46:39.0344007Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_export\utils.py::register_module_as_pytree_input_node:0, line 1410 <- wrt source file 2025-08-26T20:46:39.0345065Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_export\utils.py::register_module_as_pytree_input_node:0 2025-08-26T20:46:39.0346224Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_export\wrappers.py::mark_subclass_constructor_exportable_experimental:0, line 158 <- wrt source file 2025-08-26T20:46:39.0347499Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_export\wrappers.py::mark_subclass_constructor_exportable_experimental:0 2025-08-26T20:46:39.0348580Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\aot_autograd.py::aot_function:0, line 768 <- wrt source file 2025-08-26T20:46:39.0349541Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\aot_autograd.py::aot_function:0 2025-08-26T20:46:39.0350556Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\benchmark_utils.py::benchmark_utilization:0, line 184 <- wrt source file 2025-08-26T20:46:39.0351633Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\benchmark_utils.py::benchmark_utilization:0 2025-08-26T20:46:39.0352649Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\eager_transforms.py::vjp:0, line 233 <- wrt source file 2025-08-26T20:46:39.0353572Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\eager_transforms.py::vjp:0 2025-08-26T20:46:39.0354526Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\eager_transforms.py::jacrev:0, line 475 <- wrt source file 2025-08-26T20:46:39.0355473Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\eager_transforms.py::jacrev:0 2025-08-26T20:46:39.0356425Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\eager_transforms.py::jvp:0, line 1023 <- wrt source file 2025-08-26T20:46:39.0358063Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\eager_transforms.py::jvp:0 2025-08-26T20:46:39.0359160Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\eager_transforms.py::jacfwd:0, line 1181 <- wrt source file 2025-08-26T20:46:39.0360140Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\eager_transforms.py::jacfwd:0 2025-08-26T20:46:39.0361149Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\eager_transforms.py::hessian:0, line 1341 <- wrt source file 2025-08-26T20:46:39.0362112Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\eager_transforms.py::hessian:0 2025-08-26T20:46:39.0363563Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\eager_transforms.py::functionalize:0, line 1505 <- wrt source file 2025-08-26T20:46:39.0364745Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\eager_transforms.py::functionalize:0 2025-08-26T20:46:39.0365821Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\eager_transforms.py::linearize:0, line 1704 <- wrt source file 2025-08-26T20:46:39.0366820Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\eager_transforms.py::linearize:0 2025-08-26T20:46:39.0367803Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\functional_call.py::functional_call:0, line 36 <- wrt source file 2025-08-26T20:46:39.0369131Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\functional_call.py::functional_call:0 2025-08-26T20:46:39.0370432Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\fx_minifier.py::minifier:0, line 194 <- wrt source file 2025-08-26T20:46:39.0371490Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\fx_minifier.py::minifier:0 2025-08-26T20:46:39.0372584Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\_aot_autograd\schemas.py::CompilerWrapper.post_compile:0, line 1131 <- wrt source file 2025-08-26T20:46:39.0373829Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\_aot_autograd\schemas.py::CompilerWrapper.post_compile:0 2025-08-26T20:46:39.0375379Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\_aot_autograd\schemas.py::InductorWrapper.post_compile:0, line 1186 <- wrt source file 2025-08-26T20:46:39.0376833Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\_aot_autograd\schemas.py::InductorWrapper.post_compile:0 2025-08-26T20:46:39.0377954Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\associative_scan.py::associative_scan:0, line 186 <- wrt source file 2025-08-26T20:46:39.0379050Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\associative_scan.py::associative_scan:0 2025-08-26T20:46:39.0380263Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\associative_scan.py::generic_associative_scan:0, line 322 <- wrt source file 2025-08-26T20:46:39.0382011Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\associative_scan.py::generic_associative_scan:0 2025-08-26T20:46:39.0383041Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\cond.py::cond:0, line 155 <- wrt source file 2025-08-26T20:46:39.0383948Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\cond.py::cond:0 2025-08-26T20:46:39.0384914Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\flat_apply.py::FlatApply.__call__:0, line 80 <- wrt source file 2025-08-26T20:46:39.0385962Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\flat_apply.py::FlatApply.__call__:0 2025-08-26T20:46:39.0387456Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\map.py::map:0, line 79 <- wrt source file 2025-08-26T20:46:39.0388544Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\map.py::map:0 2025-08-26T20:46:39.0389454Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\scan.py::scan:0, line 156 <- wrt source file 2025-08-26T20:46:39.0390358Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\scan.py::scan:0 2025-08-26T20:46:39.0391470Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\scan.py::ScanAutogradOp:0, line 474 <- wrt source file 2025-08-26T20:46:39.0392468Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\scan.py::ScanAutogradOp:0 2025-08-26T20:46:39.0394095Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_inductor\codecache.py::WritableTempFile:0, line 372 <- wrt source file 2025-08-26T20:46:39.0395136Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_inductor\codecache.py::WritableTempFile:0 2025-08-26T20:46:39.0396283Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_inductor\cpp_builder.py::get_name_and_dir_from_output_file_path:0, line 1721 <- wrt source file 2025-08-26T20:46:39.0397426Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_inductor\cpp_builder.py::get_name_and_dir_from_output_file_path:0 2025-08-26T20:46:39.0398624Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_inductor\select_algorithm.py::add_preprocessing_fn:0, line 3418 <- wrt source file 2025-08-26T20:46:39.0400201Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_inductor\select_algorithm.py::add_preprocessing_fn:0 2025-08-26T20:46:39.0401431Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_inductor\template_registry.py::register_template_heuristic:0, line 45 <- wrt source file 2025-08-26T20:46:39.0402568Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_inductor\template_registry.py::register_template_heuristic:0 2025-08-26T20:46:39.0403571Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\custom_ops.py::custom_op:0, line 98 <- wrt source file 2025-08-26T20:46:39.0404566Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\custom_ops.py::custom_op:0 2025-08-26T20:46:39.0406080Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\custom_ops.py::CustomOpDef.set_kernel_enabled:0, line 238 <- wrt source file 2025-08-26T20:46:39.0407169Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\custom_ops.py::CustomOpDef.set_kernel_enabled:0 2025-08-26T20:46:39.0408254Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\custom_ops.py::CustomOpDef.register_kernel:0, line 307 <- wrt source file 2025-08-26T20:46:39.0409309Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\custom_ops.py::CustomOpDef.register_kernel:0 2025-08-26T20:46:39.0410424Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\custom_ops.py::CustomOpDef.register_autograd:0, line 541 <- wrt source file 2025-08-26T20:46:39.0412060Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\custom_ops.py::CustomOpDef.register_autograd:0 2025-08-26T20:46:39.0413116Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\custom_ops.py::CustomOpDef.register_vmap:0, line 709 <- wrt source file 2025-08-26T20:46:39.0414161Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\custom_ops.py::CustomOpDef.register_vmap:0 2025-08-26T20:46:39.0415335Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\custom_ops.py::CustomOpDef.register_autocast:0, line 795 <- wrt source file 2025-08-26T20:46:39.0416622Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\custom_ops.py::CustomOpDef.register_autocast:0 2025-08-26T20:46:39.0418087Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\fake_class_registry.py::register_fake_class:0, line 230 <- wrt source file 2025-08-26T20:46:39.0419135Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\fake_class_registry.py::register_fake_class:0 2025-08-26T20:46:39.0420185Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\fake_impl.py::FakeImplCtx.new_dynamic_size:0, line 175 <- wrt source file 2025-08-26T20:46:39.0421285Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\fake_impl.py::FakeImplCtx.new_dynamic_size:0 2025-08-26T20:46:39.0422451Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\infer_schema.py::infer_schema:0, line 51 <- wrt source file 2025-08-26T20:46:39.0423843Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\infer_schema.py::infer_schema:0 2025-08-26T20:46:39.0424767Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\triton.py::triton_op:0, line 136 <- wrt source file 2025-08-26T20:46:39.0425645Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\triton.py::triton_op:0 2025-08-26T20:46:39.0426541Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\triton.py::wrap_triton:0, line 307 <- wrt source file 2025-08-26T20:46:39.0427435Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\triton.py::wrap_triton:0 2025-08-26T20:46:39.0428741Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_logging\_internal.py::set_logs:0, line 459 <- wrt source file 2025-08-26T20:46:39.0429924Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_logging\_internal.py::set_logs:0 2025-08-26T20:46:39.0430842Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_equal:0, line 171 <- wrt source file 2025-08-26T20:46:39.0431781Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_equal:0 2025-08-26T20:46:39.0432738Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::print_assert_equal:0, line 302 <- wrt source file 2025-08-26T20:46:39.0433716Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::print_assert_equal:0 2025-08-26T20:46:39.0435285Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_almost_equal:0, line 375 <- wrt source file 2025-08-26T20:46:39.0436284Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_almost_equal:0 2025-08-26T20:46:39.0437270Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_approx_equal:0, line 496 <- wrt source file 2025-08-26T20:46:39.0438247Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_approx_equal:0 2025-08-26T20:46:39.0439221Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_array_equal:0, line 793 <- wrt source file 2025-08-26T20:46:39.0440450Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_array_equal:0 2025-08-26T20:46:39.0441943Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_array_almost_equal:0, line 899 <- wrt source file 2025-08-26T20:46:39.0442991Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_array_almost_equal:0 2025-08-26T20:46:39.0444006Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_array_less:0, line 1008 <- wrt source file 2025-08-26T20:46:39.0444976Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_array_less:0 2025-08-26T20:46:39.0446059Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_string_equal:0, line 1073 <- wrt source file 2025-08-26T20:46:39.0447563Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_string_equal:0 2025-08-26T20:46:39.0449033Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_allclose:0, line 1294 <- wrt source file 2025-08-26T20:46:39.0450018Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_allclose:0 2025-08-26T20:46:39.0451035Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_array_almost_equal_nulp:0, line 1360 <- wrt source file 2025-08-26T20:46:39.0452462Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_array_almost_equal_nulp:0 2025-08-26T20:46:39.0453805Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_array_max_ulp:0, line 1423 <- wrt source file 2025-08-26T20:46:39.0454807Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_array_max_ulp:0 2025-08-26T20:46:39.0455786Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::nulp_diff:0, line 1468 <- wrt source file 2025-08-26T20:46:39.0456788Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::nulp_diff:0 2025-08-26T20:46:39.0457713Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_warns:0, line 1578 <- wrt source file 2025-08-26T20:46:39.0459268Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_warns:0 2025-08-26T20:46:39.0460252Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::clear_and_catch_warnings:0, line 1881 <- wrt source file 2025-08-26T20:46:39.0461294Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::clear_and_catch_warnings:0 2025-08-26T20:46:39.0462273Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_prims\context.py::TorchRefsMode:0, line 95 <- wrt source file 2025-08-26T20:46:39.0463184Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_prims\context.py::TorchRefsMode:0 2025-08-26T20:46:39.0464296Z ============ 2025-08-26T20:46:39.0464689Z Finished doctests 2025-08-26T20:46:39.0464990Z 373 / 862 passed 2025-08-26T20:46:39.0465211Z  2025-08-26T20:46:39.0465512Z === Found 17 parse-time warnings === 2025-08-26T20:46:39.0465920Z --- Parse Warning: 1 / 17 --- 2025-08-26T20:46:39.0466888Z C:\Jenkins\Miniconda3\lib\site-packages\xdoctest\core.py:417: UserWarning: Cannot scrape callname=Library.fallback in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py line=375. 2025-08-26T20:46:39.0467992Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-26T20:46:39.0468553Z Registers the function implementation as the fallback for the given key. 2025-08-26T20:46:39.0468965Z 2025-08-26T20:46:39.0469391Z This function only works for a library with global namespace ("_"). 2025-08-26T20:46:39.0469980Z 2025-08-26T20:46:39.0470265Z Args: 2025-08-26T20:46:39.0470908Z fn: function used as fallback for the given dispatch key or :func:`~fallthrough_kernel` 2025-08-26T20:46:39.0471389Z to register a fallthrough. 2025-08-26T20:46:39.0471890Z dispatch_key: dispatch key that the input function should be registered for. By default, it uses 2025-08-26T20:46:39.0472453Z the dispatch key that the library was created with. 2025-08-26T20:46:39.0473059Z with_keyset: flag controlling if the current dispatcher call keyset should be passed as the first argument 2025-08-26T20:46:39.0473830Z to :attr:`fn` when calling. This should be used to create the appropriate keyset for redispatch calls. 2025-08-26T20:46:39.0474376Z 2025-08-26T20:46:39.0474567Z Example:: 2025-08-26T20:46:39.0474784Z 2025-08-26T20:46:39.0474970Z >>> my_lib = Library("_", "IMPL") 2025-08-26T20:46:39.0475305Z >>> def fallback_kernel(op, *args, **kwargs): 2025-08-26T20:46:39.0475735Z >>> # Handle all autocast ops generically 2025-08-26T20:46:39.0476295Z >>> # ... 2025-08-26T20:46:39.0476790Z >>> my_lib.fallback(fallback_kernel, "Autocast") 2025-08-26T20:46:39.0477132Z 2025-08-26T20:46:39.0477695Z Original Error: IndentationError('expected an indented block', ('', 5, 1, 'my_lib.fallback(fallback_kernel, "Autocast")\n')) 2025-08-26T20:46:39.0478303Z 2025-08-26T20:46:39.0478517Z my_lib.fallback(fallback_kernel, "Autocast") 2025-08-26T20:46:39.0478802Z ^ 2025-08-26T20:46:39.0478986Z warnings.warn(msg) 2025-08-26T20:46:39.0479189Z 2025-08-26T20:46:39.0479539Z --- Parse Warning: 2 / 17 --- 2025-08-26T20:46:39.0480565Z C:\Jenkins\Miniconda3\lib\site-packages\xdoctest\core.py:417: UserWarning: Cannot scrape callname=register_fake in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py line=948. 2025-08-26T20:46:39.0481910Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-26T20:46:39.0482855Z Register a FakeTensor implementation ("fake impl") for this operator. 2025-08-26T20:46:39.0483244Z 2025-08-26T20:46:39.0483509Z Also sometimes known as a "meta kernel", "abstract impl". 2025-08-26T20:46:39.0483842Z 2025-08-26T20:46:39.0484162Z An "FakeTensor implementation" specifies the behavior of this operator on 2025-08-26T20:46:39.0484695Z Tensors that carry no data ("FakeTensor"). Given some input Tensors with 2025-08-26T20:46:39.0485230Z certain properties (sizes/strides/storage_offset/device), it specifies 2025-08-26T20:46:39.0485683Z what the properties of the output Tensors are. 2025-08-26T20:46:39.0485983Z 2025-08-26T20:46:39.0486296Z The FakeTensor implementation has the same signature as the operator. 2025-08-26T20:46:39.0486798Z It is run for both FakeTensors and meta tensors. To write a FakeTensor 2025-08-26T20:46:39.0487287Z implementation, assume that all Tensor inputs to the operator are 2025-08-26T20:46:39.0488111Z regular CPU/CUDA/Meta tensors, but they do not have storage, and 2025-08-26T20:46:39.0488854Z you are trying to return regular CPU/CUDA/Meta tensor(s) as output. 2025-08-26T20:46:39.0489364Z The FakeTensor implementation must consist of only PyTorch operations 2025-08-26T20:46:39.0489852Z (and may not directly access the storage or data of any input or 2025-08-26T20:46:39.0490222Z intermediate Tensors). 2025-08-26T20:46:39.0490454Z 2025-08-26T20:46:39.0490685Z This API may be used as a decorator (see examples). 2025-08-26T20:46:39.0490987Z 2025-08-26T20:46:39.0491311Z For a detailed guide on custom ops, please see 2025-08-26T20:46:39.0491778Z https://pytorch.org/tutorials/advanced/custom_ops_landing_page.html 2025-08-26T20:46:39.0492164Z 2025-08-26T20:46:39.0492329Z Args: 2025-08-26T20:46:39.0492638Z op_name: Operator name (along with the overload) or OpOverload object. 2025-08-26T20:46:39.0493058Z func: Fake tensor implementation. 2025-08-26T20:46:39.0493513Z lib (Optional[Library]): Library to register the fake tensor to. 2025-08-26T20:46:39.0494341Z allow_override: Flag controlling if we want to override an 2025-08-26T20:46:39.0494925Z existing registered fake impl. This is by default off, 2025-08-26T20:46:39.0495356Z and will error you're trying to register a fake impl to 2025-08-26T20:46:39.0495850Z an operator that already has a fake impl. This also only 2025-08-26T20:46:39.0496266Z applies if the custom operator was not created via 2025-08-26T20:46:39.0496709Z torch.library.custom_op, as overriding and existing fake 2025-08-26T20:46:39.0497095Z impl is already allowed. 2025-08-26T20:46:39.0497365Z 2025-08-26T20:46:39.0497557Z Examples: 2025-08-26T20:46:39.0497797Z >>> import torch 2025-08-26T20:46:39.0498050Z >>> import numpy as np 2025-08-26T20:46:39.0498310Z >>> from torch import Tensor 2025-08-26T20:46:39.0498575Z >>> 2025-08-26T20:46:39.0498852Z >>> # Example 1: an operator without data-dependent output shape 2025-08-26T20:46:39.0499374Z >>> @torch.library.custom_op("mylib::custom_linear", mutates_args=()) 2025-08-26T20:46:39.0500292Z >>> def custom_linear(x: Tensor, weight: Tensor, bias: Tensor) -> Tensor: 2025-08-26T20:46:39.0500913Z >>> raise NotImplementedError("Implementation goes here") 2025-08-26T20:46:39.0501331Z >>> 2025-08-26T20:46:39.0501607Z >>> @torch.library.register_fake("mylib::custom_linear") 2025-08-26T20:46:39.0501959Z >>> def _(x, weight, bias): 2025-08-26T20:46:39.0502237Z >>> assert x.dim() == 2 2025-08-26T20:46:39.0502528Z >>> assert weight.dim() == 2 2025-08-26T20:46:39.0502814Z >>> assert bias.dim() == 1 2025-08-26T20:46:39.0503123Z >>> assert x.shape[1] == weight.shape[1] 2025-08-26T20:46:39.0503449Z >>> assert weight.shape[0] == bias.shape[0] 2025-08-26T20:46:39.0503777Z >>> assert x.device == weight.device 2025-08-26T20:46:39.0504053Z >>> 2025-08-26T20:46:39.0504258Z >>> return (x @ weight.t()) + bias 2025-08-26T20:46:39.0504537Z >>> 2025-08-26T20:46:39.0504796Z >>> with torch._subclasses.fake_tensor.FakeTensorMode(): 2025-08-26T20:46:39.0505157Z >>> x = torch.randn(2, 3) 2025-08-26T20:46:39.0505638Z >>> w = torch.randn(3, 3) 2025-08-26T20:46:39.0506070Z >>> b = torch.randn(3) 2025-08-26T20:46:39.0506485Z >>> y = torch.ops.mylib.custom_linear(x, w, b) 2025-08-26T20:46:39.0506924Z >>> 2025-08-26T20:46:39.0507132Z >>> assert y.shape == (2, 3) 2025-08-26T20:46:39.0507389Z >>> 2025-08-26T20:46:39.0507663Z >>> # Example 2: an operator with data-dependent output shape 2025-08-26T20:46:39.0508138Z >>> @torch.library.custom_op("mylib::custom_nonzero", mutates_args=()) 2025-08-26T20:46:39.0508575Z >>> def custom_nonzero(x: Tensor) -> Tensor: 2025-08-26T20:46:39.0508885Z >>> x_np = x.numpy(force=True) 2025-08-26T20:46:39.0509210Z >>> res = np.stack(np.nonzero(x_np), axis=1) 2025-08-26T20:46:39.0509548Z >>> return torch.tensor(res, device=x.device) 2025-08-26T20:46:39.0509853Z >>> 2025-08-26T20:46:39.0511106Z >>> @torch.library.register_fake("mylib::custom_nonzero") 2025-08-26T20:46:39.0511524Z >>> def _(x): 2025-08-26T20:46:39.0512028Z >>> # Number of nonzero-elements is data-dependent. 2025-08-26T20:46:39.0512676Z >>> # Since we cannot peek at the data in an fake impl, 2025-08-26T20:46:39.0513137Z >>> # we use the ctx object to construct a new symint that 2025-08-26T20:46:39.0513525Z >>> # represents the data-dependent size. 2025-08-26T20:46:39.0513861Z >>> ctx = torch.library.get_ctx() 2025-08-26T20:46:39.0514170Z >>> nnz = ctx.new_dynamic_size() 2025-08-26T20:46:39.0514456Z >>> shape = [nnz, x.dim()] 2025-08-26T20:46:39.0514781Z >>> result = x.new_empty(shape, dtype=torch.int64) 2025-08-26T20:46:39.0515170Z >>> return result 2025-08-26T20:46:39.0515414Z >>> 2025-08-26T20:46:39.0515694Z >>> from torch.fx.experimental.proxy_tensor import make_fx 2025-08-26T20:46:39.0516040Z >>> 2025-08-26T20:46:39.0516241Z >>> x = torch.tensor([0, 1, 2, 3, 4, 0]) 2025-08-26T20:46:39.0516679Z >>> trace = make_fx(torch.ops.mylib.custom_nonzero, tracing_mode="symbolic")(x) 2025-08-26T20:46:39.0517107Z >>> trace.print_readable() 2025-08-26T20:46:39.0517357Z >>> 2025-08-26T20:46:39.0517892Z >>> assert torch.allclose(trace(x), torch.ops.mylib.custom_nonzero(x)) 2025-08-26T20:46:39.0518570Z 2025-08-26T20:46:39.0518822Z 2025-08-26T20:46:39.0519247Z Original Error: IndentationError('expected an indented block', ('', 38, 1, '_._ = None\n')) 2025-08-26T20:46:39.0519764Z 2025-08-26T20:46:39.0519920Z _._ = None 2025-08-26T20:46:39.0520106Z ^ 2025-08-26T20:46:39.0520274Z warnings.warn(msg) 2025-08-26T20:46:39.0520485Z 2025-08-26T20:46:39.0520856Z --- Parse Warning: 3 / 17 --- 2025-08-26T20:46:39.0521938Z C:\Jenkins\Miniconda3\lib\site-packages\xdoctest\core.py:417: UserWarning: Cannot scrape callname=get_kernel in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py line=1482. 2025-08-26T20:46:39.0523013Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-26T20:46:39.0523652Z Returns the computed kernel for a given operator and dispatch key. 2025-08-26T20:46:39.0524287Z 2025-08-26T20:46:39.0524808Z This function retrieves the kernel that would be executed for a given 2025-08-26T20:46:39.0525338Z operator and dispatch key combination. The returned SafeKernelFunction 2025-08-26T20:46:39.0525831Z can be used to call the kernel in a boxed fashion. The intended use 2025-08-26T20:46:39.0526299Z case for this function is to retrieve the original kernel for a given 2025-08-26T20:46:39.0526805Z dispatch key and then register another kernel to the same dispatch key 2025-08-26T20:46:39.0527264Z that calls into the original kernel for certain cases. 2025-08-26T20:46:39.0527591Z 2025-08-26T20:46:39.0527751Z Args: 2025-08-26T20:46:39.0528044Z op: Operator name (along with the overload) or OpOverload object 2025-08-26T20:46:39.0528554Z Can be a string (e.g., "aten::add.Tensor"), an OpOverload, or a CustomOpDef. 2025-08-26T20:46:39.0529104Z dispatch_key (str | torch.DispatchKey): The dispatch key to get the kernel for. 2025-08-26T20:46:39.0529818Z Can be a string (e.g., "CPU", "CUDA") or a DispatchKey enum value. 2025-08-26T20:46:39.0530431Z 2025-08-26T20:46:39.0530726Z Returns: 2025-08-26T20:46:39.0531067Z torch._C._SafeKernelFunction: A safe kernel function that can be used to 2025-08-26T20:46:39.0531493Z call the kernel. 2025-08-26T20:46:39.0531724Z 2025-08-26T20:46:39.0531886Z Raises: 2025-08-26T20:46:39.0532248Z RuntimeError: If the operator does not exist. 2025-08-26T20:46:39.0532546Z 2025-08-26T20:46:39.0532715Z Example: 2025-08-26T20:46:39.0532936Z >>> # Get the CPU kernel for torch.add 2025-08-26T20:46:39.0533336Z >>> kernel = torch.library.get_kernel("aten::add.Tensor", "CPU") 2025-08-26T20:46:39.0533692Z >>> 2025-08-26T20:46:39.0533920Z >>> # You can also use DispatchKey enum 2025-08-26T20:46:39.0534364Z >>> kernel = torch.library.get_kernel("aten::add.Tensor", torch.DispatchKey.CPU) 2025-08-26T20:46:39.0534789Z >>> 2025-08-26T20:46:39.0535002Z >>> # Or use an OpOverload directly 2025-08-26T20:46:39.0535463Z >>> kernel = torch.library.get_kernel(torch.ops.aten.add.Tensor, "CPU") 2025-08-26T20:46:39.0536258Z >>> 2025-08-26T20:46:39.0536744Z >>> # Example: Using get_kernel in a custom op with conditional dispatch 2025-08-26T20:46:39.0537174Z >>> # Get the original kernel for torch.sin 2025-08-26T20:46:39.0537586Z >>> original_sin_kernel = torch.library.get_kernel("aten::sin", "CPU") 2025-08-26T20:46:39.0537964Z >>> 2025-08-26T20:46:39.0538285Z >>> # If input has negative values, use original sin, otherwise return zeros 2025-08-26T20:46:39.0538724Z >>> def conditional_sin_impl(dispatch_keys, x): 2025-08-26T20:46:39.0539042Z >>> if (x < 0).any(): 2025-08-26T20:46:39.0539374Z >>> return original_sin_kernel.call_boxed(dispatch_keys, x) 2025-08-26T20:46:39.0539729Z >>> else: 2025-08-26T20:46:39.0539968Z >>> return torch.zeros_like(x) 2025-08-26T20:46:39.0540256Z >>> 2025-08-26T20:46:39.0540482Z >>> lib = torch.library.Library("aten", "IMPL") 2025-08-26T20:46:39.0540957Z >>> # with_keyset=True so the first argument to the impl is the current DispatchKeySet 2025-08-26T20:46:39.0541746Z >>> which needs to be the first argument to ``kernel.call_boxed`` 2025-08-26T20:46:39.0542535Z >>> lib.impl("sin", conditional_sin_impl, "CPU", with_keyset=True) 2025-08-26T20:46:39.0542929Z >>> 2025-08-26T20:46:39.0543138Z >>> # Test the conditional behavior 2025-08-26T20:46:39.0543453Z >>> x_positive = torch.tensor([1.0, 2.0]) 2025-08-26T20:46:39.0543759Z >>> x_mixed = torch.tensor([-1.0, 2.0]) 2025-08-26T20:46:39.0544064Z >>> torch.sin(x_positive) 2025-08-26T20:46:39.0544333Z tensor([0., 0.]) 2025-08-26T20:46:39.0544566Z >>> torch.sin(x_mixed) 2025-08-26T20:46:39.0544827Z tensor([-0.8415, 0.9093]) 2025-08-26T20:46:39.0545073Z 2025-08-26T20:46:39.0545601Z Original Error: SyntaxError('invalid syntax', ('', 23, 7, 'which needs to be the first argument to ``kernel.call_boxed``\n')) 2025-08-26T20:46:39.0546208Z 2025-08-26T20:46:39.0546475Z which needs to be the first argument to ``kernel.call_boxed`` 2025-08-26T20:46:39.0546816Z ^ 2025-08-26T20:46:39.0547003Z warnings.warn(msg) 2025-08-26T20:46:39.0547212Z 2025-08-26T20:46:39.0547793Z --- Parse Warning: 4 / 17 --- 2025-08-26T20:46:39.0549142Z C:\Jenkins\Miniconda3\lib\site-packages\xdoctest\core.py:417: UserWarning: Cannot scrape callname=is_available in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\accelerator\__init__.py line=66. 2025-08-26T20:46:39.0550253Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-26T20:46:39.0550832Z Check if the current accelerator is available at runtime: it was build, all the 2025-08-26T20:46:39.0551372Z required drivers are available and at least one device is visible. 2025-08-26T20:46:39.0551825Z See :ref:`accelerator` for details. 2025-08-26T20:46:39.0552139Z 2025-08-26T20:46:39.0552306Z Returns: 2025-08-26T20:46:39.0552811Z bool: A boolean indicating if there is an available :ref:`accelerator`. 2025-08-26T20:46:39.0553302Z 2025-08-26T20:46:39.0553898Z .. note:: This API delegates to the device-specific version of `is_available`. 2025-08-26T20:46:39.0554754Z On CUDA, when the environment variable ``PYTORCH_NVML_BASED_CUDA_CHECK=1`` is set, 2025-08-26T20:46:39.0555349Z this function will NOT poison fork. Otherwise, it will. For more details, see 2025-08-26T20:46:39.0555827Z :ref:`multiprocessing-poison-fork-note`. 2025-08-26T20:46:39.0573726Z 2025-08-26T20:46:39.0574037Z Example:: 2025-08-26T20:46:39.0574238Z 2025-08-26T20:46:39.0574593Z >>> assert torch.accelerator.is_available() "No available accelerators detected." 2025-08-26T20:46:39.0575139Z 2025-08-26T20:46:39.0575770Z Original Error: SyntaxError('invalid syntax', ('', 1, 41, 'assert torch.accelerator.is_available() "No available accelerators detected."\n')) 2025-08-26T20:46:39.0576457Z 2025-08-26T20:46:39.0576788Z assert torch.accelerator.is_available() "No available accelerators detected." 2025-08-26T20:46:39.0577237Z ^ 2025-08-26T20:46:39.0577603Z warnings.warn(msg) 2025-08-26T20:46:39.0577999Z 2025-08-26T20:46:39.0578586Z --- Parse Warning: 5 / 17 --- 2025-08-26T20:46:39.0579699Z C:\Jenkins\Miniconda3\lib\site-packages\xdoctest\core.py:417: UserWarning: Cannot scrape callname=synchronize in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\accelerator\__init__.py line=212. 2025-08-26T20:46:39.0580817Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-26T20:46:39.0581343Z Wait for all kernels in all streams on the given device to complete. 2025-08-26T20:46:39.0581712Z 2025-08-26T20:46:39.0581870Z Args: 2025-08-26T20:46:39.0582381Z device (:class:`torch.device`, str, int, optional): device for which to synchronize. It must match 2025-08-26T20:46:39.0583002Z the current :ref:`accelerator` device type. If not given, 2025-08-26T20:46:39.0583575Z use :func:`torch.accelerator.current_device_index` by default. 2025-08-26T20:46:39.0584244Z 2025-08-26T20:46:39.0584877Z .. note:: This function is a no-op if the current :ref:`accelerator` is not initialized. 2025-08-26T20:46:39.0585350Z 2025-08-26T20:46:39.0585521Z Example:: 2025-08-26T20:46:39.0585714Z 2025-08-26T20:46:39.0585924Z >>> # xdoctest: +REQUIRES(env:TORCH_DOCTEST_CUDA) 2025-08-26T20:46:39.0586401Z >>> assert torch.accelerator.is_available() "No available accelerators detected." 2025-08-26T20:46:39.0586900Z >>> start_event = torch.Event(enable_timing=True) 2025-08-26T20:46:39.0587247Z >>> end_event = torch.Event(enable_timing=True) 2025-08-26T20:46:39.0587585Z >>> start_event.record() 2025-08-26T20:46:39.0587985Z >>> tensor = torch.randn(100, device=torch.accelerator.current_accelerator()) 2025-08-26T20:46:39.0588423Z >>> sum = torch.sum(tensor) 2025-08-26T20:46:39.0588692Z >>> end_event.record() 2025-08-26T20:46:39.0588990Z >>> torch.accelerator.synchronize() 2025-08-26T20:46:39.0589360Z >>> elapsed_time_ms = start_event.elapsed_time(end_event) 2025-08-26T20:46:39.0589962Z 2025-08-26T20:46:39.0591119Z Original Error: SyntaxError('invalid syntax', ('', 2, 41, 'assert torch.accelerator.is_available() "No available accelerators detected."\n')) 2025-08-26T20:46:39.0592429Z 2025-08-26T20:46:39.0593071Z assert torch.accelerator.is_available() "No available accelerators detected." 2025-08-26T20:46:39.0593911Z ^ 2025-08-26T20:46:39.0594424Z warnings.warn(msg) 2025-08-26T20:46:39.0594832Z 2025-08-26T20:46:39.0595545Z --- Parse Warning: 6 / 17 --- 2025-08-26T20:46:39.0597387Z C:\Jenkins\Miniconda3\lib\site-packages\xdoctest\core.py:417: UserWarning: Cannot scrape callname=cudart in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\__init__.py line=434. 2025-08-26T20:46:39.0599445Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-26T20:46:39.0600287Z Retrieves the CUDA runtime API module. 2025-08-26T20:46:39.0600788Z 2025-08-26T20:46:39.0601149Z 2025-08-26T20:46:39.0601741Z This function initializes the CUDA runtime environment if it is not already 2025-08-26T20:46:39.0602812Z initialized and returns the CUDA runtime API module (_cudart). The CUDA 2025-08-26T20:46:39.0603819Z runtime API module provides access to various CUDA runtime functions. 2025-08-26T20:46:39.0604622Z 2025-08-26T20:46:39.0604909Z Args: 2025-08-26T20:46:39.0605250Z ``None`` 2025-08-26T20:46:39.0605613Z 2025-08-26T20:46:39.0605886Z Returns: 2025-08-26T20:46:39.0606339Z module: The CUDA runtime API module (_cudart). 2025-08-26T20:46:39.0606709Z 2025-08-26T20:46:39.0606873Z Raises: 2025-08-26T20:46:39.0607194Z RuntimeError: If CUDA cannot be re-initialized in a forked subprocess. 2025-08-26T20:46:39.0607852Z AssertionError: If PyTorch is not compiled with CUDA support or if libcudart functions are unavailable. 2025-08-26T20:46:39.0608377Z 2025-08-26T20:46:39.0608581Z Example of CUDA operations with profiling: 2025-08-26T20:46:39.0608889Z >>> import torch 2025-08-26T20:46:39.0609157Z >>> from torch.cuda import cudart, check_error 2025-08-26T20:46:39.0609481Z >>> import os 2025-08-26T20:46:39.0609689Z >>> 2025-08-26T20:46:39.0609907Z >>> os.environ["CUDA_PROFILE"] = "1" 2025-08-26T20:46:39.0610233Z >>> 2025-08-26T20:46:39.0610478Z >>> def perform_cuda_operations_with_streams(): 2025-08-26T20:46:39.0610823Z >>> stream = torch.cuda.Stream() 2025-08-26T20:46:39.0611164Z >>> with torch.cuda.stream(stream): 2025-08-26T20:46:39.0611750Z >>> x = torch.randn(100, 100, device='cuda') 2025-08-26T20:46:39.0612352Z >>> y = torch.randn(100, 100, device='cuda') 2025-08-26T20:46:39.0612918Z >>> z = torch.mul(x, y) 2025-08-26T20:46:39.0613185Z >>> return z 2025-08-26T20:46:39.0613403Z >>> 2025-08-26T20:46:39.0613611Z >>> torch.cuda.synchronize() 2025-08-26T20:46:39.0613919Z >>> print("====== Start nsys profiling ======") 2025-08-26T20:46:39.0614264Z >>> check_error(cudart().cudaProfilerStart()) 2025-08-26T20:46:39.0614611Z >>> with torch.autograd.profiler.emit_nvtx(): 2025-08-26T20:46:39.0614983Z >>> result = perform_cuda_operations_with_streams() 2025-08-26T20:46:39.0615341Z >>> print("CUDA operations completed.") 2025-08-26T20:46:39.0615705Z >>> check_error(torch.cuda.cudart().cudaProfilerStop()) 2025-08-26T20:46:39.0616061Z >>> print("====== End nsys profiling ======") 2025-08-26T20:46:39.0616361Z 2025-08-26T20:46:39.0616636Z To run this example and save the profiling information, execute: 2025-08-26T20:46:39.0617257Z >>> $ nvprof --profile-from-start off --csv --print-summary -o trace_name.prof -f -- python cudart_test.py 2025-08-26T20:46:39.0617990Z 2025-08-26T20:46:39.0618569Z This command profiles the CUDA operations in the provided script and saves 2025-08-26T20:46:39.0619425Z the profiling information to a file named `trace_name.prof`. 2025-08-26T20:46:39.0619924Z The `--profile-from-start off` option ensures that profiling starts only 2025-08-26T20:46:39.0620387Z after the `cudaProfilerStart` call in the script. 2025-08-26T20:46:39.0620938Z The `--csv` and `--print-summary` options format the profiling output as a 2025-08-26T20:46:39.0621372Z CSV file and print a summary, respectively. 2025-08-26T20:46:39.0621827Z The `-o` option specifies the output file name, and the `-f` option forces the 2025-08-26T20:46:39.0622300Z overwrite of the output file if it already exists. 2025-08-26T20:46:39.0622615Z 2025-08-26T20:46:39.0623306Z Original Error: SyntaxError('invalid syntax', ('', 1, 1, '$ nvprof --profile-from-start off --csv --print-summary -o trace_name.prof -f -- python cudart_test.py\n')) 2025-08-26T20:46:39.0624210Z 2025-08-26T20:46:39.0624980Z $ nvprof --profile-from-start off --csv --print-summary -o trace_name.prof -f -- python cudart_test.py 2025-08-26T20:46:39.0625857Z ^ 2025-08-26T20:46:39.0626044Z warnings.warn(msg) 2025-08-26T20:46:39.0626250Z 2025-08-26T20:46:39.0626590Z --- Parse Warning: 7 / 17 --- 2025-08-26T20:46:39.0627836Z C:\Jenkins\Miniconda3\lib\site-packages\xdoctest\core.py:417: UserWarning: Cannot scrape callname=ActivationSparsifier in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\pruning\_experimental\activation_sparsifier\activation_sparsifier.py line=16. 2025-08-26T20:46:39.0629217Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-26T20:46:39.0629623Z 2025-08-26T20:46:39.0629950Z The Activation sparsifier class aims to sparsify/prune activations in a neural 2025-08-26T20:46:39.0630509Z network. The idea is to attach the sparsifier to a layer (or layers) and it 2025-08-26T20:46:39.0631042Z zeroes out the activations based on the mask_fn (or sparsification function) 2025-08-26T20:46:39.0631462Z input by the user. 2025-08-26T20:46:39.0631798Z The mask_fn is applied once all the inputs are aggregated and reduced i.e. 2025-08-26T20:46:39.0632259Z mask = mask_fn(reduce_fn(aggregate_fn(activations))) 2025-08-26T20:46:39.0633071Z 2025-08-26T20:46:39.0633243Z Note:: 2025-08-26T20:46:39.0633659Z The sparsification mask is computed on the input **before it goes through the attached layer**. 2025-08-26T20:46:39.0634140Z 2025-08-26T20:46:39.0634307Z Args: 2025-08-26T20:46:39.0634482Z model (nn.Module): 2025-08-26T20:46:39.0634846Z The model whose layers will be sparsified. The layers that needs to be 2025-08-26T20:46:39.0635436Z sparsified should be added separately using the register_layer() function 2025-08-26T20:46:39.0636258Z aggregate_fn (Optional, Callable): 2025-08-26T20:46:39.0637072Z default aggregate_fn that is used if not specified while registering the layer. 2025-08-26T20:46:39.0637619Z specifies how inputs should be aggregated over time. 2025-08-26T20:46:39.0638152Z The aggregate_fn should usually take 2 torch tensors and return the aggregated tensor. 2025-08-26T20:46:39.0638595Z Example 2025-08-26T20:46:39.0638877Z def add_agg_fn(tensor1, tensor2): return tensor1 + tensor2 2025-08-26T20:46:39.0639239Z reduce_fn (Optional, Callable): 2025-08-26T20:46:39.0639666Z default reduce_fn that is used if not specified while registering the layer. 2025-08-26T20:46:39.0640236Z reduce_fn will be called on the aggregated tensor i.e. the tensor obtained after 2025-08-26T20:46:39.0640678Z calling agg_fn() on all inputs. 2025-08-26T20:46:39.0641054Z Example 2025-08-26T20:46:39.0641376Z def mean_reduce_fn(agg_tensor): return agg_tensor.mean(dim=0) 2025-08-26T20:46:39.0641786Z mask_fn (Optional, Callable): 2025-08-26T20:46:39.0642273Z default mask_fn that is used to create the sparsification mask using the tensor obtained after 2025-08-26T20:46:39.0643026Z calling the reduce_fn(). This is used by default if a custom one is passed in the 2025-08-26T20:46:39.0643479Z register_layer(). 2025-08-26T20:46:39.0643983Z Note that the mask_fn() definition should contain the sparse arguments that is passed in sparse_config 2025-08-26T20:46:39.0644520Z arguments. 2025-08-26T20:46:39.0644764Z features (Optional, list): 2025-08-26T20:46:39.0645079Z default selected features to sparsify. 2025-08-26T20:46:39.0645538Z If this is non-empty, then the mask_fn will be applied for each feature of the input. 2025-08-26T20:46:39.0645980Z For example, 2025-08-26T20:46:39.0646384Z mask = [mask_fn(reduce_fn(aggregated_fn(input[feature])) for feature in features] 2025-08-26T20:46:39.0646866Z feature_dim (Optional, int): 2025-08-26T20:46:39.0647320Z default dimension of input features. Again, features along this dim will be chosen 2025-08-26T20:46:39.0647782Z for sparsification. 2025-08-26T20:46:39.0648076Z sparse_config (Dict): 2025-08-26T20:46:39.0648455Z Default configuration for the mask_fn. This config will be passed 2025-08-26T20:46:39.0648865Z with the mask_fn() 2025-08-26T20:46:39.0649119Z 2025-08-26T20:46:39.0649276Z Example: 2025-08-26T20:46:39.0649470Z >>> # xdoctest: +SKIP 2025-08-26T20:46:39.0649707Z >>> model = SomeModel() 2025-08-26T20:46:39.0650096Z >>> act_sparsifier = ActivationSparsifier(...) # init activation sparsifier 2025-08-26T20:46:39.0650522Z >>> # Initialize aggregate_fn 2025-08-26T20:46:39.0650797Z >>> def agg_fn(x, y): 2025-08-26T20:46:39.0651025Z >>> return x + y 2025-08-26T20:46:39.0651254Z >>> 2025-08-26T20:46:39.0651445Z >>> # Initialize reduce_fn 2025-08-26T20:46:39.0651701Z >>> def reduce_fn(x): 2025-08-26T20:46:39.0652117Z >>> return torch.mean(x, dim=0) 2025-08-26T20:46:39.0652622Z >>> 2025-08-26T20:46:39.0652967Z >>> # Initialize mask_fn 2025-08-26T20:46:39.0653424Z >>> def mask_fn(data): 2025-08-26T20:46:39.0653832Z >>> return torch.eye(data.shape).to(data.device) 2025-08-26T20:46:39.0654137Z >>> 2025-08-26T20:46:39.0654311Z >>> 2025-08-26T20:46:39.0654509Z >>> act_sparsifier.register_layer( 2025-08-26T20:46:39.0654798Z ... model.some_layer, 2025-08-26T20:46:39.0655046Z ... aggregate_fn=agg_fn, 2025-08-26T20:46:39.0655309Z ... reduce_fn=reduce_fn, 2025-08-26T20:46:39.0655572Z ... mask_fn=mask_fn, 2025-08-26T20:46:39.0655805Z ... ) 2025-08-26T20:46:39.0655974Z >>> 2025-08-26T20:46:39.0656168Z >>> # start training process 2025-08-26T20:46:39.0656428Z >>> for _ in [...]: 2025-08-26T20:46:39.0656644Z >>> # epoch starts 2025-08-26T20:46:39.0656944Z >>> # model.forward(), compute_loss() and model.backwards() 2025-08-26T20:46:39.0657275Z >>> # epoch ends 2025-08-26T20:46:39.0657502Z >>> act_sparsifier.step() 2025-08-26T20:46:39.0657767Z >>> # end training process 2025-08-26T20:46:39.0658031Z >>> sparsifier.squash_mask() 2025-08-26T20:46:39.0658276Z 2025-08-26T20:46:39.0658714Z Original Error: IndentationError('expected an indented block', ('', 26, 1, '_._ = None\n')) 2025-08-26T20:46:39.0659233Z 2025-08-26T20:46:39.0659393Z _._ = None 2025-08-26T20:46:39.0659574Z ^ 2025-08-26T20:46:39.0659741Z warnings.warn(msg) 2025-08-26T20:46:39.0659949Z 2025-08-26T20:46:39.0660278Z --- Parse Warning: 8 / 17 --- 2025-08-26T20:46:39.0661448Z C:\Jenkins\Miniconda3\lib\site-packages\xdoctest\core.py:417: UserWarning: Cannot scrape callname=DeviceMesh.__getitem__ in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\device_mesh.py line=721. 2025-08-26T20:46:39.0662630Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-26T20:46:39.0663047Z 2025-08-26T20:46:39.0663393Z Slice the current DeviceMesh based on the mesh_dim_names given to create a submesh. 2025-08-26T20:46:39.0663990Z The submesh created consists of the dimensions and the communicators indicated by 2025-08-26T20:46:39.0664427Z ``mesh_dim_names`` 2025-08-26T20:46:39.0664619Z 2025-08-26T20:46:39.0664780Z Args: 2025-08-26T20:46:39.0665089Z mesh_dim_names (Union[str, Tuple[str]]): the name or the tuple of names of the 2025-08-26T20:46:39.0665590Z mesh dimension of the DeviceMesh to create the submesh for. 2025-08-26T20:46:39.0665927Z Returns: 2025-08-26T20:46:39.0666127Z A :class:`DeviceMesh` object 2025-08-26T20:46:39.0666422Z 2025-08-26T20:46:39.0666772Z The following program runs on each process/rank in an SPMD manner in a world size of 8. 2025-08-26T20:46:39.0667262Z In the first example: 2025-08-26T20:46:39.0667642Z Calling mesh_2d["tp"] on rank 0, 1, 2, 3 returns a 1D submesh of DeviceMesh:([0, 1, 2, 3]). 2025-08-26T20:46:39.0668216Z Calling mesh_2d["tp"] on rank 4, 5, 6, 7 returns a 1D submesh of DeviceMesh:([4, 5, 6, 7]). 2025-08-26T20:46:39.0668758Z Calling mesh_2d["dp"] on rank 0, 4 returns a 1D submesh of DeviceMesh:([0, 4]). 2025-08-26T20:46:39.0669278Z Calling mesh_2d["dp"] on rank 1, 5 returns a 1D submesh of DeviceMesh:([1, 5]). 2025-08-26T20:46:39.0669785Z Calling mesh_2d["dp"] on rank 2, 6 returns a 1D submesh of DeviceMesh:([2, 6]). 2025-08-26T20:46:39.0670285Z Calling mesh_2d["dp"] on rank 3, 7 returns a 1D submesh of DeviceMesh:([3, 7]). 2025-08-26T20:46:39.0670673Z 2025-08-26T20:46:39.0670845Z In the second example: 2025-08-26T20:46:39.0671247Z Calling mesh_3d["dp", "cp"] on rank 0, 1, 4, 5 returns a 2D submesh of DeviceMesh:([[0, 1], [4, 5]]). 2025-08-26T20:46:39.0671883Z Calling mesh_3d["dp", "cp"] on rank 2, 3, 6, 7 returns a 2D submesh of DeviceMesh:([[2, 3], [6, 7]]). 2025-08-26T20:46:39.0672472Z Calling mesh_3d["cp", "dp"] on rank 0, 1, 4, 5 returns a 2D submesh of DeviceMesh:([[0, 4], [1, 5]]). 2025-08-26T20:46:39.0673065Z Calling mesh_3d["cp", "dp"] on rank 2, 3, 6, 7 returns a 2D submesh of DeviceMesh:([[2, 6], [3, 7]]). 2025-08-26T20:46:39.0673473Z 2025-08-26T20:46:39.0673650Z Example:: 2025-08-26T20:46:39.0673829Z 2025-08-26T20:46:39.0674016Z >>> # xdoctest: +SKIP("no rank") 2025-08-26T20:46:39.0674353Z >>> from torch.distributed.device_mesh import DeviceMesh 2025-08-26T20:46:39.0674686Z >>> 2025-08-26T20:46:39.0674965Z >>> # Initialize a 2D device mesh as (2, 4) to represent the topology 2025-08-26T20:46:39.0675385Z >>> # of cross-host(dim 0), and within-host (dim 1). 2025-08-26T20:46:39.0675844Z >>> mesh_2d = init_device_mesh(device_type="cuda", (2,4), mesh_dim_names=("dp", "tp")) 2025-08-26T20:46:39.0676268Z >>> tp_mesh = mesh_2d["tp"] 2025-08-26T20:46:39.0676533Z >>> dp_mesh = mesh_2d["dp"] 2025-08-26T20:46:39.0676772Z >>> 2025-08-26T20:46:39.0676961Z >>> # Initialize a 3D mesh. 2025-08-26T20:46:39.0677379Z >>> mesh_3d = init_device_mesh(device_type="cuda", (2,2,2), mesh_dim_names=("dp", "pp", "cp")) 2025-08-26T20:46:39.0678026Z >>> # The order of the mesh_dim_names provided deteremines the order of dimensions in the submesh. 2025-08-26T20:46:39.0678511Z >>> dp_cp_mesh = mesh_3d["dp", "cp"] 2025-08-26T20:46:39.0678798Z >>> cp_dp_mesh = mesh_3d["cp", "dp"] 2025-08-26T20:46:39.0679056Z 2025-08-26T20:46:39.0679774Z Original Error: SyntaxError('positional argument follows keyword argument', ('', 6, 82, 'mesh_2d = init_device_mesh(device_type="cuda", (2,4), mesh_dim_names=("dp", "tp"))\n')) 2025-08-26T20:46:39.0680562Z 2025-08-26T20:46:39.0681032Z mesh_2d = init_device_mesh(device_type="cuda", (2,4), mesh_dim_names=("dp", "tp")) 2025-08-26T20:46:39.0681493Z ^ 2025-08-26T20:46:39.0681819Z warnings.warn(msg) 2025-08-26T20:46:39.0682033Z 2025-08-26T20:46:39.0682349Z --- Parse Warning: 9 / 17 --- 2025-08-26T20:46:39.0683427Z C:\Jenkins\Miniconda3\lib\site-packages\xdoctest\core.py:417: UserWarning: Cannot scrape callname=SavePlanner in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\planner.py line=122. 2025-08-26T20:46:39.0685454Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-26T20:46:39.0685854Z 2025-08-26T20:46:39.0686217Z Abstract class defining the protocol used by save_state_dict to plan the save process. 2025-08-26T20:46:39.0686738Z 2025-08-26T20:46:39.0687103Z SavePlanners are stateful objects that can be used to customize the whole save process. 2025-08-26T20:46:39.0687563Z 2025-08-26T20:46:39.0687914Z SavePlanner acts as an access proxy to the state_dict, so any transformation done to it 2025-08-26T20:46:39.0688389Z will be visible to the whole process. 2025-08-26T20:46:39.0688654Z 2025-08-26T20:46:39.0689002Z A planner subclass can expect the following sequence of calls during save_state_dict: 2025-08-26T20:46:39.0689424Z 2025-08-26T20:46:39.0689623Z 1) set_up_planner - called on all ranks. 2025-08-26T20:46:39.0689947Z Signals the start of a checkpoint save. 2025-08-26T20:46:39.0690225Z 2025-08-26T20:46:39.0690427Z 2) create_local_plan - called on all ranks. 2025-08-26T20:46:39.0690897Z Process the state_dict and produces a `SavePlan` that will be sent for global planning. 2025-08-26T20:46:39.0691345Z 2025-08-26T20:46:39.0691599Z 3) create_global_plan - called on the coordinator rank only. 2025-08-26T20:46:39.0692112Z Takes the SavePlan from all ranks and make any global decision. 2025-08-26T20:46:39.0692474Z 2025-08-26T20:46:39.0692673Z 4) finish_plan - called on all ranks. 2025-08-26T20:46:39.0693075Z This gives each rank a chance to adjust to global planning decisions. 2025-08-26T20:46:39.0693455Z 2025-08-26T20:46:39.0693692Z 5) resolve_data - called multiple times on each rank 2025-08-26T20:46:39.0694113Z Lookups a value on the `state_dict` for the storage layer to write. 2025-08-26T20:46:39.0694479Z 2025-08-26T20:46:39.0698889Z Users are recommended to extend DefaultSavePlanner instead of this interface directly as 2025-08-26T20:46:39.0699514Z most changes can be expressed by changes in a single method. 2025-08-26T20:46:39.0699855Z 2025-08-26T20:46:39.0700079Z There are 3 usual patterns of extension: 2025-08-26T20:46:39.0700367Z 2025-08-26T20:46:39.0700703Z Rewriting state_dict. This is the simplest way to extend the save process as it 2025-08-26T20:46:39.0701271Z doesn't requite understanding the intrincacies of how SavePlan works: 2025-08-26T20:46:39.0701664Z 2025-08-26T20:46:39.0701855Z >>> # xdoctest: +SKIP("undefined vars") 2025-08-26T20:46:39.0702173Z >>> class RenamePlanner(DefaultSavePlanner): 2025-08-26T20:46:39.0702486Z >>> def set_up_planner( 2025-08-26T20:46:39.0702721Z >>> self, 2025-08-26T20:46:39.0702945Z >>> state_dict: STATE_DICT_TYPE, 2025-08-26T20:46:39.0703251Z >>> storage_meta: Optional[StorageMeta], 2025-08-26T20:46:39.0703562Z >>> is_coordinator: bool, 2025-08-26T20:46:39.0703861Z >>> ) -> None: 2025-08-26T20:46:39.0704078Z >>> # prefix all keys with `foo_`` 2025-08-26T20:46:39.0704540Z >>> super().set_up_planner({"foo_" + k: v for k, v in state_dict.items()}, storage_meta, is_coordinator) 2025-08-26T20:46:39.0704988Z 2025-08-26T20:46:39.0705456Z Modifying local plan and lookup in tandem. This is useful when fine control of how data is persisted 2025-08-26T20:46:39.0705949Z 2025-08-26T20:46:39.0706138Z >>> # xdoctest: +SKIP("undefined vars") 2025-08-26T20:46:39.0706462Z >>> class FP16Planner(DefaultSavePlanner): 2025-08-26T20:46:39.0706760Z >>> def create_local_plan(self): 2025-08-26T20:46:39.0707068Z >>> plan = super().create_local_plan() 2025-08-26T20:46:39.0707359Z >>> for p in plan: 2025-08-26T20:46:39.0707619Z >>> if p.tensor_data is not None: 2025-08-26T20:46:39.0707967Z >>> p.tensor_data.properties.dtype = torch.float16 2025-08-26T20:46:39.0708296Z >>> return plan 2025-08-26T20:46:39.0708514Z >>> 2025-08-26T20:46:39.0708706Z >>> def resolve_data(self, write_item): 2025-08-26T20:46:39.0709029Z >>> item = super().resolve_data(write_item) 2025-08-26T20:46:39.0709527Z >>> return item if write_item.type == WriteItemType.BYTE_IO else item.to(torch.float16) 2025-08-26T20:46:39.0709966Z 2025-08-26T20:46:39.0710380Z Using the global planning step to make central decisions that can't be made individually by each rank 2025-08-26T20:46:39.0710876Z 2025-08-26T20:46:39.0711070Z >>> # xdoctest: +SKIP("undefined vars") 2025-08-26T20:46:39.0711372Z >>> from itertools import zip_longest 2025-08-26T20:46:39.0711669Z >>> from dataclasses import replace 2025-08-26T20:46:39.0712006Z >>> class DDPLoadBalancingPlanner(DefaultSavePlanner): 2025-08-26T20:46:39.0712513Z >>> # This uses the default local plan behavior of having all non-sharded writes in rank 0 2025-08-26T20:46:39.0712992Z >>> # This sample doesn't handle ShardedTensors 2025-08-26T20:46:39.0713325Z >>> def create_global_plan(self, all_plans): 2025-08-26T20:46:39.0713676Z >>> iters = [iter(all_plans[0].items)] * len(all_plans) 2025-08-26T20:46:39.0714002Z >>> items_per_rank = [ 2025-08-26T20:46:39.0714293Z >>> [item for item in items if item is not None] 2025-08-26T20:46:39.0714695Z >>> for items in zip(*zip_longest(*iters), strict=True) 2025-08-26T20:46:39.0715019Z >>> ] 2025-08-26T20:46:39.0715213Z >>> all_plans = [ 2025-08-26T20:46:39.0715474Z >>> replace(plan, items=items) 2025-08-26T20:46:39.0715852Z >>> for plan, items in zip(all_plans, items_per_rank, strict=True) 2025-08-26T20:46:39.0716208Z >>> ] 2025-08-26T20:46:39.0716457Z >>> return super().create_global_plan(all_plans) 2025-08-26T20:46:39.0716750Z 2025-08-26T20:46:39.0717990Z Finally, some planners need to save additional metadata in the checkpoint, this is 2025-08-26T20:46:39.0718618Z accomplished by having each rank contribute their data items in the local plan and 2025-08-26T20:46:39.0719088Z the global planner aggregate them: 2025-08-26T20:46:39.0719342Z 2025-08-26T20:46:39.0719537Z >>> # xdoctest: +SKIP("undefined vars") 2025-08-26T20:46:39.0719874Z >>> class SaveExtraDataPlanner(DefaultSavePlanner): 2025-08-26T20:46:39.0720240Z >>> def create_local_plan(self) -> SavePlan: 2025-08-26T20:46:39.0720567Z >>> plan = super().create_local_plan() 2025-08-26T20:46:39.0720987Z >>> return replace(plan, planner_data="per-rank-data") 2025-08-26T20:46:39.0721318Z >>> 2025-08-26T20:46:39.0721687Z >>> def create_global_plan(self, all_plans: List[SavePlan]) -> Tuple[List[SavePlan], Metadata]: 2025-08-26T20:46:39.0722257Z >>> global_plan, metadata = super().create_global_plan(all_plans) 2025-08-26T20:46:39.0722687Z >>> merged_data = [p.planner_data for p in global_plan] 2025-08-26T20:46:39.0723094Z >>> metadata = replace(metadata, planner_data=merged_data) 2025-08-26T20:46:39.0723461Z >>> return global_plan, metadata 2025-08-26T20:46:39.0723725Z 2025-08-26T20:46:39.0724210Z Original Error: IndentationError('expected an indented block', ('', 9, 0, '_._ = None\n')) 2025-08-26T20:46:39.0724726Z 2025-08-26T20:46:39.0724891Z _._ = None 2025-08-26T20:46:39.0725071Z ^ 2025-08-26T20:46:39.0725255Z warnings.warn(msg) 2025-08-26T20:46:39.0725465Z 2025-08-26T20:46:39.0725825Z --- Parse Warning: 10 / 17 --- 2025-08-26T20:46:39.0726423Z Running inductor/test_max_autotune 1/1 ... [2025-08-26 20:46:39.041701] 2025-08-26T20:46:39.0726831Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:46:39.0727850Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_max_autotune.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:46:39.042292] 2025-08-26T20:46:39.0729599Z C:\Jenkins\Miniconda3\lib\site-packages\xdoctest\core.py:417: UserWarning: Cannot scrape callname=LoadPlanner in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\planner.py line=305. 2025-08-26T20:46:39.0730821Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-26T20:46:39.0731232Z 2025-08-26T20:46:39.0731590Z Abstract class defining the protocol used by load_state_dict to plan the load process. 2025-08-26T20:46:39.0732045Z 2025-08-26T20:46:39.0732397Z LoadPlanner are stateful objects that can be used to customize the whole load process. 2025-08-26T20:46:39.0732854Z 2025-08-26T20:46:39.0733199Z LoadPlanner acts as an access proxy to the state_dict, so any transformation done to it 2025-08-26T20:46:39.0733665Z will be visible to the whole process. 2025-08-26T20:46:39.0733922Z 2025-08-26T20:46:39.0734273Z A planner subclass can expect the following sequence of calls during load_state_dict: 2025-08-26T20:46:39.0734707Z 2025-08-26T20:46:39.0734893Z 1) set_up_planner - called on all ranks. 2025-08-26T20:46:39.0735212Z Signals the start of loading a checkpoint. 2025-08-26T20:46:39.0735533Z 2025-08-26T20:46:39.0735734Z 2) create_local_plan - called on all ranks. 2025-08-26T20:46:39.0736208Z Process the state_dict and produces a `LoadPlan` that will be sent for global planning. 2025-08-26T20:46:39.0736651Z 2025-08-26T20:46:39.0736904Z 3) create_global_plan - called on the coordinator rank only. 2025-08-26T20:46:39.0737361Z Takes the LoadPlan from all ranks and make any global decision. 2025-08-26T20:46:39.0737721Z 2025-08-26T20:46:39.0737945Z 4) load_bytes - called multiple times on each rank 2025-08-26T20:46:39.0738621Z This is called once per non-tensor value in state_dict. 2025-08-26T20:46:39.0738951Z 2025-08-26T20:46:39.0739242Z 5) resolve_tensor and commit_tensor - called multiple times on each rank 2025-08-26T20:46:39.0739715Z They are called in pair for each Tensor value in state_dict. 2025-08-26T20:46:39.0740173Z 2025-08-26T20:46:39.0740872Z Users are recommended to extend DefaultLoadPlanner instead of this interface directly as 2025-08-26T20:46:39.0741672Z most changes can be expressed by changes in a single method. 2025-08-26T20:46:39.0742008Z 2025-08-26T20:46:39.0742214Z There are two usual patterns of extension: 2025-08-26T20:46:39.0742495Z 2025-08-26T20:46:39.0742823Z Rewriting state_dict. This is the simplest way to extend the load process as it 2025-08-26T20:46:39.0743387Z doesn't requite understanding the intrincacies of how LoadPlan works. We need 2025-08-26T20:46:39.0743935Z to keep a reference to the original state_dict as load happens in place so 2025-08-26T20:46:39.0744355Z we need to be able to perform it in place 2025-08-26T20:46:39.0744631Z 2025-08-26T20:46:39.0744811Z >>> # xdoctest: +SKIP("undefined vars") 2025-08-26T20:46:39.0745128Z >>> class RenamePlanner(DefaultLoadPlanner): 2025-08-26T20:46:39.0745425Z >>> def set_up_planner( 2025-08-26T20:46:39.0745660Z >>> self, 2025-08-26T20:46:39.0745954Z >>> state_dict: STATE_DICT_TYPE, 2025-08-26T20:46:39.0746468Z >>> metadata: Metadata, 2025-08-26T20:46:39.0746939Z >>> is_coordinator: bool, 2025-08-26T20:46:39.0747371Z >>> ) -> None: 2025-08-26T20:46:39.0747614Z >>> self.original_state_dict = state_dict 2025-08-26T20:46:39.0747975Z >>> state_dict = {"foo_" + k: v for k, v in state_dict.items()} 2025-08-26T20:46:39.0748311Z >>> 2025-08-26T20:46:39.0748497Z >>> if self.flatten_sharded_tensors: 2025-08-26T20:46:39.0748842Z >>> state_dict = _flatten_sharded_tensors(state_dict) 2025-08-26T20:46:39.0749156Z >>> 2025-08-26T20:46:39.0749340Z >>> if self.flatten_state_dict: 2025-08-26T20:46:39.0749699Z >>> state_dict, self.mappings = flatten_state_dict(state_dict) 2025-08-26T20:46:39.0750109Z >>> 2025-08-26T20:46:39.0750304Z >>> self.state_dict = state_dict 2025-08-26T20:46:39.0750588Z >>> self.metadata = metadata 2025-08-26T20:46:39.0750897Z >>> self.is_coordinator = is_coordinator 2025-08-26T20:46:39.0751174Z >>> 2025-08-26T20:46:39.0751374Z >>> def load_bytes(self, read_item, value): 2025-08-26T20:46:39.0751671Z >>> # Remove the "foo_" prefix 2025-08-26T20:46:39.0752301Z >>> self.original_state_dict[read_item.dest_index.fqn[4:]] = torch.load(value, weights_only=False) 2025-08-26T20:46:39.0753157Z 2025-08-26T20:46:39.0753387Z 2025-08-26T20:46:39.0753725Z Modifying resolve_tensor and commit_tensor to handle load time transformation. 2025-08-26T20:46:39.0754144Z 2025-08-26T20:46:39.0754334Z >>> # xdoctest: +SKIP("undefined vars") 2025-08-26T20:46:39.0754667Z >>> class MetaModelMaterialize(DefaultSavePlanner): 2025-08-26T20:46:39.0755022Z >>> def resolve_tensor(self, read_item): 2025-08-26T20:46:39.0755340Z >>> tensor = super().resolve_tensor(read_item) 2025-08-26T20:46:39.0755768Z >>> return torch.empty_like(tensor, device="cpu") 2025-08-26T20:46:39.0756074Z >>> 2025-08-26T20:46:39.0756278Z >>> def commit_tensor(self, read_item, tensor): 2025-08-26T20:46:39.0756651Z >>> self.state_dict[read_item.dest_index.fqn] = tensor 2025-08-26T20:46:39.0756961Z 2025-08-26T20:46:39.0757384Z Original Error: IndentationError('expected an indented block', ('', 23, 0, '_._ = None\n')) 2025-08-26T20:46:39.0757889Z 2025-08-26T20:46:39.0758139Z _._ = None 2025-08-26T20:46:39.0758471Z ^ 2025-08-26T20:46:39.0758762Z warnings.warn(msg) 2025-08-26T20:46:39.0759218Z 2025-08-26T20:46:39.0759582Z --- Parse Warning: 11 / 17 --- 2025-08-26T20:46:39.0760647Z C:\Jenkins\Miniconda3\lib\site-packages\xdoctest\core.py:417: UserWarning: Cannot scrape callname=FullStateDictConfig in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\api.py line=295. 2025-08-26T20:46:39.0761872Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-26T20:46:39.0762284Z 2025-08-26T20:46:39.0762559Z ``FullStateDictConfig`` is a config class meant to be used with 2025-08-26T20:46:39.0763035Z ``StateDictType.FULL_STATE_DICT``. We recommend enabling both 2025-08-26T20:46:39.0763509Z ``offload_to_cpu=True`` and ``rank0_only=True`` when saving full state 2025-08-26T20:46:39.0764052Z dicts to save GPU memory and CPU memory, respectively. This config class 2025-08-26T20:46:39.0764944Z is meant to be used via the :func:`state_dict_type` context manager as 2025-08-26T20:46:39.0765460Z follows: 2025-08-26T20:46:39.0765636Z 2025-08-26T20:46:39.0765838Z >>> # xdoctest: +SKIP("undefined variables") 2025-08-26T20:46:39.0766275Z >>> from torch.distributed.fsdp import FullyShardedDataParallel as FSDP 2025-08-26T20:46:39.0766708Z >>> fsdp = FSDP(model, auto_wrap_policy=...) 2025-08-26T20:46:39.0767180Z >>> cfg = FullStateDictConfig(offload_to_cpu=True, rank0_only=True) 2025-08-26T20:46:39.0767680Z >>> with FSDP.state_dict_type(fsdp, StateDictType.FULL_STATE_DICT, cfg): 2025-08-26T20:46:39.0768079Z >>> state = fsdp.state_dict() 2025-08-26T20:46:39.0768470Z >>> # `state` will be empty on non rank 0 and contain CPU tensors on rank 0. 2025-08-26T20:46:39.0768984Z >>> # To reload checkpoint for inference, finetuning, transfer learning, etc: 2025-08-26T20:46:39.0769528Z >>> model = model_fn() # Initialize model in preparation for wrapping with FSDP 2025-08-26T20:46:39.0769969Z >>> if dist.get_rank() == 0: 2025-08-26T20:46:39.0770609Z >>> # Load checkpoint only on rank 0 to avoid memory redundancy 2025-08-26T20:46:39.0771138Z >>> state_dict = torch.load("my_checkpoint.pt") 2025-08-26T20:46:39.0771663Z >>> model.load_state_dict(state_dict) 2025-08-26T20:46:39.0772095Z >>> # All ranks initialize FSDP module as usual. `sync_module_states` argument 2025-08-26T20:46:39.0772644Z >>> # communicates loaded checkpoint states from rank 0 to rest of the world. 2025-08-26T20:46:39.0773067Z >>> fsdp = FSDP( 2025-08-26T20:46:39.0773285Z ... model, 2025-08-26T20:46:39.0773528Z ... device_id=torch.cuda.current_device(), 2025-08-26T20:46:39.0773842Z ... auto_wrap_policy=..., 2025-08-26T20:46:39.0774111Z ... sync_module_states=True, 2025-08-26T20:46:39.0774376Z ... ) 2025-08-26T20:46:39.0774675Z >>> # After this point, all ranks have FSDP model with loaded checkpoint. 2025-08-26T20:46:39.0775059Z 2025-08-26T20:46:39.0775217Z Attributes: 2025-08-26T20:46:39.0775516Z rank0_only (bool): If ``True``, then only rank 0 saves the full state 2025-08-26T20:46:39.0775989Z dict, and nonzero ranks save an empty dict. If ``False``, then all 2025-08-26T20:46:39.0776734Z ranks save the full state dict. (Default: ``False``) 2025-08-26T20:46:39.0777360Z 2025-08-26T20:46:39.0777804Z Original Error: IndentationError('expected an indented block', ('', 11, 1, '_._ = None\n')) 2025-08-26T20:46:39.0778330Z 2025-08-26T20:46:39.0778492Z _._ = None 2025-08-26T20:46:39.0778676Z ^ 2025-08-26T20:46:39.0778852Z warnings.warn(msg) 2025-08-26T20:46:39.0779063Z 2025-08-26T20:46:39.0779390Z --- Parse Warning: 12 / 17 --- 2025-08-26T20:46:39.0780515Z C:\Jenkins\Miniconda3\lib\site-packages\xdoctest\core.py:417: UserWarning: Cannot scrape callname=register_parametrization in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\parametrize.py line=424. 2025-08-26T20:46:39.0781703Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-26T20:46:39.0782338Z Register a parametrization to a tensor in a module. 2025-08-26T20:46:39.0782865Z 2025-08-26T20:46:39.0783443Z Assume that ``tensor_name="weight"`` for simplicity. When accessing ``module.weight``, 2025-08-26T20:46:39.0784081Z the module will return the parametrized version ``parametrization(module.weight)``. 2025-08-26T20:46:39.0784686Z If the original tensor requires a gradient, the backward pass will differentiate 2025-08-26T20:46:39.0785299Z through :attr:`parametrization`, and the optimizer will update the tensor accordingly. 2025-08-26T20:46:39.0785743Z 2025-08-26T20:46:39.0786116Z The first time that a module registers a parametrization, this function will add an attribute 2025-08-26T20:46:39.0786750Z ``parametrizations`` to the module of type :class:`~ParametrizationList`. 2025-08-26T20:46:39.0787140Z 2025-08-26T20:46:39.0787464Z The list of parametrizations on the tensor ``weight`` will be accessible under 2025-08-26T20:46:39.0787918Z ``module.parametrizations.weight``. 2025-08-26T20:46:39.0788422Z 2025-08-26T20:46:39.0788865Z The original tensor will be accessible under 2025-08-26T20:46:39.0789408Z ``module.parametrizations.weight.original``. 2025-08-26T20:46:39.0789725Z 2025-08-26T20:46:39.0790061Z Parametrizations may be concatenated by registering several parametrizations 2025-08-26T20:46:39.0790522Z on the same attribute. 2025-08-26T20:46:39.0790751Z 2025-08-26T20:46:39.0791078Z The training mode of a registered parametrization is updated on registration 2025-08-26T20:46:39.0791530Z to match the training mode of the host module 2025-08-26T20:46:39.0791815Z 2025-08-26T20:46:39.0792195Z Parametrized parameters and buffers have an inbuilt caching system that can be activated 2025-08-26T20:46:39.0792690Z using the context manager :func:`cached`. 2025-08-26T20:46:39.0792976Z 2025-08-26T20:46:39.0793339Z A :attr:`parametrization` may optionally implement a method with signature 2025-08-26T20:46:39.0793744Z 2025-08-26T20:46:39.0793989Z .. code-block:: python 2025-08-26T20:46:39.0794427Z 2025-08-26T20:46:39.0794909Z def right_inverse(self, X: Tensor) -> Union[Tensor, Sequence[Tensor]] 2025-08-26T20:46:39.0795436Z 2025-08-26T20:46:39.0795767Z This method is called on the unparametrized tensor when the first parametrization 2025-08-26T20:46:39.0796312Z is registered to compute the initial value of the original tensor. 2025-08-26T20:46:39.0796899Z If this method is not implemented, the original tensor will be just the unparametrized tensor. 2025-08-26T20:46:39.0797359Z 2025-08-26T20:46:39.0797737Z If all the parametrizations registered on a tensor implement `right_inverse` it is possible 2025-08-26T20:46:39.0798396Z to initialize a parametrized tensor by assigning to it, as shown in the example below. 2025-08-26T20:46:39.0798847Z 2025-08-26T20:46:39.0799147Z It is possible for the first parametrization to depend on several inputs. 2025-08-26T20:46:39.0799758Z This may be implemented returning a tuple of tensors from ``right_inverse`` 2025-08-26T20:46:39.0800669Z (see the example implementation of a ``RankOne`` parametrization below). 2025-08-26T20:46:39.0801336Z 2025-08-26T20:46:39.0801746Z In this case, the unconstrained tensors are also located under ``module.parametrizations.weight`` 2025-08-26T20:46:39.0802286Z with names ``original0``, ``original1``,... 2025-08-26T20:46:39.0802581Z 2025-08-26T20:46:39.0802751Z .. note:: 2025-08-26T20:46:39.0802945Z 2025-08-26T20:46:39.0803576Z If unsafe=False (default) both the forward and right_inverse methods will be called 2025-08-26T20:46:39.0804080Z once to perform a number of consistency checks. 2025-08-26T20:46:39.0804569Z If unsafe=True, then right_inverse will be called if the tensor is not parametrized, 2025-08-26T20:46:39.0805038Z and nothing will be called otherwise. 2025-08-26T20:46:39.0805319Z 2025-08-26T20:46:39.0805481Z .. note:: 2025-08-26T20:46:39.0805671Z 2025-08-26T20:46:39.0806056Z In most situations, ``right_inverse`` will be a function such that 2025-08-26T20:46:39.0806815Z ``forward(right_inverse(X)) == X`` (see 2025-08-26T20:46:39.0807466Z `right inverse `_). 2025-08-26T20:46:39.0808065Z Sometimes, when the parametrization is not surjective, it may be reasonable 2025-08-26T20:46:39.0808493Z to relax this. 2025-08-26T20:46:39.0808703Z 2025-08-26T20:46:39.0808876Z .. warning:: 2025-08-26T20:46:39.0809062Z 2025-08-26T20:46:39.0809405Z If a parametrization depends on several inputs, :func:`~register_parametrization` 2025-08-26T20:46:39.0810003Z will register a number of new parameters. If such parametrization is registered 2025-08-26T20:46:39.0810669Z after the optimizer is created, these new parameters will need to be added manually 2025-08-26T20:46:39.0811218Z to the optimizer. See :meth:`torch.Optimizer.add_param_group`. 2025-08-26T20:46:39.0811575Z 2025-08-26T20:46:39.0811745Z Args: 2025-08-26T20:46:39.0812277Z module (nn.Module): module on which to register the parametrization 2025-08-26T20:46:39.0813136Z tensor_name (str): name of the parameter or buffer on which to register 2025-08-26T20:46:39.0813532Z the parametrization 2025-08-26T20:46:39.0813899Z parametrization (nn.Module): the parametrization to register 2025-08-26T20:46:39.0814286Z Keyword args: 2025-08-26T20:46:39.0814608Z unsafe (bool): a boolean flag that denotes whether the parametrization 2025-08-26T20:46:39.0815088Z may change the dtype and shape of the tensor. Default: `False` 2025-08-26T20:46:39.0815977Z Warning: the parametrization is not checked for consistency upon registration. 2025-08-26T20:46:39.0816455Z Enable this flag at your own risk. 2025-08-26T20:46:39.0816736Z 2025-08-26T20:46:39.0816905Z Raises: 2025-08-26T20:46:39.0817289Z ValueError: if the module does not have a parameter or a buffer named :attr:`tensor_name` 2025-08-26T20:46:39.0817764Z 2025-08-26T20:46:39.0818071Z Examples: 2025-08-26T20:46:39.0818498Z >>> # xdoctest: +REQUIRES(env:TORCH_DOCTEST_LAPACK) 2025-08-26T20:46:39.0819061Z >>> import torch 2025-08-26T20:46:39.0819329Z >>> import torch.nn as nn 2025-08-26T20:46:39.0819649Z >>> import torch.nn.utils.parametrize as P 2025-08-26T20:46:39.0819942Z >>> 2025-08-26T20:46:39.0820158Z >>> class Symmetric(nn.Module): 2025-08-26T20:46:39.0820440Z >>> def forward(self, X): 2025-08-26T20:46:39.0820790Z >>> return X.triu() + X.triu(1).T # Return a symmetric matrix 2025-08-26T20:46:39.0821204Z >>> 2025-08-26T20:46:39.0821409Z >>> def right_inverse(self, A): 2025-08-26T20:46:39.0821706Z >>> return A.triu() 2025-08-26T20:46:39.0821952Z >>> 2025-08-26T20:46:39.0822148Z >>> m = nn.Linear(5, 5) 2025-08-26T20:46:39.0822463Z >>> P.register_parametrization(m, "weight", Symmetric()) 2025-08-26T20:46:39.0822944Z >>> print(torch.allclose(m.weight, m.weight.T)) # m.weight is now symmetric 2025-08-26T20:46:39.0823341Z True 2025-08-26T20:46:39.0823538Z >>> A = torch.rand(5, 5) 2025-08-26T20:46:39.0824261Z >>> A = A + A.T # A is now symmetric 2025-08-26T20:46:39.0824937Z >>> m.weight = A # Initialize the weight to be the symmetric matrix A 2025-08-26T20:46:39.0825391Z >>> print(torch.allclose(m.weight, A)) 2025-08-26T20:46:39.0825671Z True 2025-08-26T20:46:39.0825847Z 2025-08-26T20:46:39.0826026Z >>> class RankOne(nn.Module): 2025-08-26T20:46:39.0826324Z >>> def forward(self, x, y): 2025-08-26T20:46:39.0826639Z >>> # Form a rank 1 matrix multiplying two vectors 2025-08-26T20:46:39.0826993Z >>> return x.unsqueeze(-1) @ y.unsqueeze(-2) 2025-08-26T20:46:39.0827288Z >>> 2025-08-26T20:46:39.0827494Z >>> def right_inverse(self, Z): 2025-08-26T20:46:39.0827801Z >>> # Project Z onto the rank 1 matrices 2025-08-26T20:46:39.0828144Z >>> U, S, Vh = torch.linalg.svd(Z, full_matrices=False) 2025-08-26T20:46:39.0828496Z >>> # Return rescaled singular vectors 2025-08-26T20:46:39.0828800Z >>> s0_sqrt = S[0].sqrt().unsqueeze(-1) 2025-08-26T20:46:39.0829153Z >>> return U[..., :, 0] * s0_sqrt, Vh[..., 0, :] * s0_sqrt 2025-08-26T20:46:39.0829462Z >>> 2025-08-26T20:46:39.0829750Z >>> linear_rank_one = P.register_parametrization( 2025-08-26T20:46:39.0830472Z ... nn.Linear(4, 4), "weight", RankOne() 2025-08-26T20:46:39.0830994Z ... ) 2025-08-26T20:46:39.0831308Z >>> print(torch.linalg.matrix_rank(linear_rank_one.weight).item()) 2025-08-26T20:46:39.0831670Z 1 2025-08-26T20:46:39.0831850Z 2025-08-26T20:46:39.0832005Z 2025-08-26T20:46:39.0832446Z Original Error: IndentationError('expected an indented block', ('', 3, 0, '_._ = None\n')) 2025-08-26T20:46:39.0832947Z 2025-08-26T20:46:39.0833112Z _._ = None 2025-08-26T20:46:39.0833283Z ^ 2025-08-26T20:46:39.0833459Z warnings.warn(msg) 2025-08-26T20:46:39.0833674Z 2025-08-26T20:46:39.0834009Z --- Parse Warning: 13 / 17 --- 2025-08-26T20:46:39.0835049Z C:\Jenkins\Miniconda3\lib\site-packages\xdoctest\core.py:417: UserWarning: Cannot scrape callname=ReduceLROnPlateau in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py line=1233. 2025-08-26T20:46:39.0836830Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-26T20:46:39.0837388Z Reduce learning rate when a metric has stopped improving. 2025-08-26T20:46:39.0837727Z 2025-08-26T20:46:39.0838012Z Models often benefit from reducing the learning rate by a factor 2025-08-26T20:46:39.0838477Z of 2-10 once learning stagnates. This scheduler reads a metrics 2025-08-26T20:46:39.0838926Z quantity and if no improvement is seen for a 'patience' number 2025-08-26T20:46:39.0839322Z of epochs, the learning rate is reduced. 2025-08-26T20:46:39.0839595Z 2025-08-26T20:46:39.0839758Z Args: 2025-08-26T20:46:39.0839978Z optimizer (Optimizer): Wrapped optimizer. 2025-08-26T20:46:39.0840352Z mode (str): One of `min`, `max`. In `min` mode, lr will 2025-08-26T20:46:39.0840732Z be reduced when the quantity monitored has stopped 2025-08-26T20:46:39.0841246Z decreasing; in `max` mode it will be reduced when the 2025-08-26T20:46:39.0841766Z quantity monitored has stopped increasing. Default: 'min'. 2025-08-26T20:46:39.0842557Z factor (float): Factor by which the learning rate will be 2025-08-26T20:46:39.0843102Z reduced. new_lr = lr * factor. Default: 0.1. 2025-08-26T20:46:39.0843520Z patience (int): The number of allowed epochs with no improvement after 2025-08-26T20:46:39.0843948Z which the learning rate will be reduced. 2025-08-26T20:46:39.0844425Z For example, consider the case of having no patience (`patience = 0`). 2025-08-26T20:46:39.0845094Z In the first epoch, a baseline is established and is always considered good as there's no previous baseline. 2025-08-26T20:46:39.0845741Z In the second epoch, if the performance is worse than the baseline, 2025-08-26T20:46:39.0846168Z we have what is considered an intolerable epoch. 2025-08-26T20:46:39.0846659Z Since the count of intolerable epochs (1) is greater than the patience level (0), 2025-08-26T20:46:39.0847161Z the learning rate is reduced at the end of this epoch. 2025-08-26T20:46:39.0847907Z From the third epoch onwards, the learning rate continues to be reduced at the end of each epoch 2025-08-26T20:46:39.0849019Z if the performance is worse than the baseline. If the performance improves or remains the same, 2025-08-26T20:46:39.0849529Z the learning rate is not adjusted. 2025-08-26T20:46:39.0849614Z Default: 10. 2025-08-26T20:46:39.0849805Z threshold (float): Threshold for measuring the new optimum, 2025-08-26T20:46:39.0849948Z to only focus on significant changes. Default: 1e-4. 2025-08-26T20:46:39.0850113Z threshold_mode (str): One of `rel`, `abs`. In `rel` mode, 2025-08-26T20:46:39.0850317Z dynamic_threshold = best * ( 1 + threshold ) in 'max' 2025-08-26T20:46:39.0850450Z mode or best * ( 1 - threshold ) in `min` mode. 2025-08-26T20:46:39.0850587Z In `abs` mode, dynamic_threshold = best + threshold in 2025-08-26T20:46:39.0850762Z `max` mode or best - threshold in `min` mode. Default: 'rel'. 2025-08-26T20:46:39.0850915Z cooldown (int): Number of epochs to wait before resuming 2025-08-26T20:46:39.0851075Z normal operation after lr has been reduced. Default: 0. 2025-08-26T20:46:39.0851224Z min_lr (float or list): A scalar or a list of scalars. A 2025-08-26T20:46:39.0851365Z lower bound on the learning rate of all param groups 2025-08-26T20:46:39.0851481Z or each group respectively. Default: 0. 2025-08-26T20:46:39.0851675Z eps (float): Minimal decay applied to lr. If the difference 2025-08-26T20:46:39.0851838Z between new and old lr is smaller than eps, the update is 2025-08-26T20:46:39.0851930Z ignored. Default: 1e-8. 2025-08-26T20:46:39.0852000Z 2025-08-26T20:46:39.0852083Z Example: 2025-08-26T20:46:39.0852172Z >>> # xdoctest: +SKIP 2025-08-26T20:46:39.0852381Z >>> optimizer = torch.optim.SGD(model.parameters(), lr=0.1, momentum=0.9) 2025-08-26T20:46:39.0852528Z >>> scheduler = ReduceLROnPlateau(optimizer, "min") 2025-08-26T20:46:39.0852623Z >>> for epoch in range(10): 2025-08-26T20:46:39.0852700Z >>> train(...) 2025-08-26T20:46:39.0852795Z >>> val_loss = validate(...) 2025-08-26T20:46:39.0852942Z >>> # Note that step should be called after validate() 2025-08-26T20:46:39.0853037Z >>> scheduler.step(val_loss) 2025-08-26T20:46:39.0853107Z 2025-08-26T20:46:39.0853297Z .. image:: ../scripts/lr_scheduler_images/ReduceLROnPlateau.png 2025-08-26T20:46:39.0853365Z 2025-08-26T20:46:39.0854050Z Original Error: IndentationError('unexpected indent', ('', 8, 4, ' scheduler.step(val_loss)\n')) 2025-08-26T20:46:39.0854171Z 2025-08-26T20:46:39.0854304Z scheduler.step(val_loss) 2025-08-26T20:46:39.0854446Z ^ 2025-08-26T20:46:39.0854589Z warnings.warn(msg) 2025-08-26T20:46:39.0854714Z 2025-08-26T20:46:39.0854972Z --- Parse Warning: 14 / 17 --- 2025-08-26T20:46:39.0855761Z C:\Jenkins\Miniconda3\lib\site-packages\xdoctest\core.py:417: UserWarning: Cannot scrape callname=vmap in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\apis.py line=39. 2025-08-26T20:46:39.0856008Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-26T20:46:39.0856080Z 2025-08-26T20:46:39.0856277Z vmap is the vectorizing map; ``vmap(func)`` returns a new function that 2025-08-26T20:46:39.0856453Z maps ``func`` over some dimension of the inputs. Semantically, vmap 2025-08-26T20:46:39.0856661Z pushes the map into PyTorch operations called by ``func``, effectively 2025-08-26T20:46:39.0856757Z vectorizing those operations. 2025-08-26T20:46:39.0856822Z 2025-08-26T20:46:39.0857023Z vmap is useful for handling batch dimensions: one can write a function 2025-08-26T20:46:39.0857203Z ``func`` that runs on examples and then lift it to a function that can 2025-08-26T20:46:39.0857390Z take batches of examples with ``vmap(func)``. vmap can also be used to 2025-08-26T20:46:39.0857551Z compute batched gradients when composed with autograd. 2025-08-26T20:46:39.0857617Z 2025-08-26T20:46:39.0857694Z .. note:: 2025-08-26T20:46:39.0857861Z :func:`torch.vmap` is aliased to :func:`torch.func.vmap` for 2025-08-26T20:46:39.0857981Z convenience. Use whichever one you'd like. 2025-08-26T20:46:39.0858049Z 2025-08-26T20:46:39.0858119Z Args: 2025-08-26T20:46:39.0858317Z func (function): A Python function that takes one or more arguments. 2025-08-26T20:46:39.0858785Z Must return one or more Tensors. 2025-08-26T20:46:39.0858968Z in_dims (int or nested structure): Specifies which dimension of the 2025-08-26T20:46:39.0859123Z inputs should be mapped over. ``in_dims`` should have a 2025-08-26T20:46:39.0859308Z structure like the inputs. If the ``in_dim`` for a particular 2025-08-26T20:46:39.0859503Z input is None, then that indicates there is no map dimension. 2025-08-26T20:46:39.0859626Z Default: 0. 2025-08-26T20:46:39.0859970Z out_dims (int or Tuple[int]): Specifies where the mapped dimension 2025-08-26T20:46:39.0860273Z should appear in the outputs. If ``out_dims`` is a Tuple, then 2025-08-26T20:46:39.0860504Z it should have one element per output. Default: 0. 2025-08-26T20:46:39.0860883Z randomness (str): Specifies whether the randomness in this 2025-08-26T20:46:39.0861078Z vmap should be the same or different across batches. If 'different', 2025-08-26T20:46:39.0861264Z the randomness for each batch will be different. If 'same', the 2025-08-26T20:46:39.0861476Z randomness will be the same across batches. If 'error', any calls to 2025-08-26T20:46:39.0861666Z random functions will error. Default: 'error'. WARNING: this flag 2025-08-26T20:46:39.0861851Z only applies to random PyTorch operations and does not apply to 2025-08-26T20:46:39.0861977Z Python's random module or numpy randomness. 2025-08-26T20:46:39.0862203Z chunk_size (None or int): If None (default), apply a single vmap over inputs. 2025-08-26T20:46:39.0862401Z If not None, then compute the vmap :attr:`chunk_size` samples at a time. 2025-08-26T20:46:39.0862637Z Note that :attr:`chunk_size=1` is equivalent to computing the vmap with a for-loop. 2025-08-26T20:46:39.0862888Z If you run into memory issues computing the vmap, please try a non-None chunk_size. 2025-08-26T20:46:39.0863006Z 2025-08-26T20:46:39.0863078Z Returns: 2025-08-26T20:46:39.0863257Z Returns a new "batched" function. It takes the same inputs as 2025-08-26T20:46:39.0863423Z ``func``, except each input has an extra dimension at the index 2025-08-26T20:46:39.0863597Z specified by ``in_dims``. It takes returns the same outputs as 2025-08-26T20:46:39.0863764Z ``func``, except each output has an extra dimension at the index 2025-08-26T20:46:39.0863870Z specified by ``out_dims``. 2025-08-26T20:46:39.0863942Z 2025-08-26T20:46:39.0864013Z .. warning: 2025-08-26T20:46:39.0864241Z :func:`vmap` works best with functional-style code. Please do not 2025-08-26T20:46:39.0864408Z perform any side-effects in ``func``, with the exception of 2025-08-26T20:46:39.0864621Z in-place PyTorch operations. Examples of side-effects include mutating 2025-08-26T20:46:39.0864832Z Python data structures and assigning values to variables not captured 2025-08-26T20:46:39.0864910Z in ``func``. 2025-08-26T20:46:39.0864979Z 2025-08-26T20:46:39.0865191Z One example of using :func:`vmap` is to compute batched dot products. PyTorch 2025-08-26T20:46:39.0865398Z doesn't provide a batched ``torch.dot`` API; instead of unsuccessfully 2025-08-26T20:46:39.0865696Z rummaging through docs, use :func:`vmap` to construct a new function. 2025-08-26T20:46:39.0865844Z 2025-08-26T20:46:39.0866014Z >>> torch.dot # [D], [D] -> [] 2025-08-26T20:46:39.0866299Z >>> batched_dot = torch.func.vmap(torch.dot) # [N, D], [N, D] -> [N] 2025-08-26T20:46:39.0866518Z >>> x, y = torch.randn(2, 5), torch.randn(2, 5) 2025-08-26T20:46:39.0866659Z >>> batched_dot(x, y) 2025-08-26T20:46:39.0866786Z 2025-08-26T20:46:39.0867008Z :func:`vmap` can be helpful in hiding batch dimensions, leading to a simpler 2025-08-26T20:46:39.0867102Z model authoring experience. 2025-08-26T20:46:39.0867224Z 2025-08-26T20:46:39.0867319Z >>> batch_size, feature_size = 3, 5 2025-08-26T20:46:39.0867470Z >>> weights = torch.randn(feature_size, requires_grad=True) 2025-08-26T20:46:39.0867549Z >>> 2025-08-26T20:46:39.0867633Z >>> def model(feature_vec): 2025-08-26T20:46:39.0867747Z >>> # Very simple linear model with activation 2025-08-26T20:46:39.0867852Z >>> return feature_vec.dot(weights).relu() 2025-08-26T20:46:39.0867936Z >>> 2025-08-26T20:46:39.0868069Z >>> examples = torch.randn(batch_size, feature_size) 2025-08-26T20:46:39.0868176Z >>> result = torch.vmap(model)(examples) 2025-08-26T20:46:39.0868247Z 2025-08-26T20:46:39.0868473Z :func:`vmap` can also help vectorize computations that were previously difficult 2025-08-26T20:46:39.0868719Z or impossible to batch. One example is higher-order gradient computation. 2025-08-26T20:46:39.0868924Z The PyTorch autograd engine computes vjps (vector-Jacobian products). 2025-08-26T20:46:39.0869141Z Computing a full Jacobian matrix for some function f: R^N -> R^N usually 2025-08-26T20:46:39.0869361Z requires N calls to ``autograd.grad``, one per Jacobian row. Using :func:`vmap`, 2025-08-26T20:46:39.0869569Z we can vectorize the whole computation, computing the Jacobian in a single 2025-08-26T20:46:39.0869669Z call to ``autograd.grad``. 2025-08-26T20:46:39.0869737Z 2025-08-26T20:46:39.0869807Z >>> # Setup 2025-08-26T20:46:39.0869885Z >>> N = 5 2025-08-26T20:46:39.0869961Z >>> f = lambda x: x**2 2025-08-26T20:46:39.0870074Z >>> x = torch.randn(N, requires_grad=True) 2025-08-26T20:46:39.0870142Z >>> y = f(x) 2025-08-26T20:46:39.0870229Z >>> I_N = torch.eye(N) 2025-08-26T20:46:39.0870295Z >>> 2025-08-26T20:46:39.0870383Z >>> # Sequential approach 2025-08-26T20:46:39.0870583Z >>> jacobian_rows = [torch.autograd.grad(y, x, v, retain_graph=True)[0] 2025-08-26T20:46:39.0870721Z >>> for v in I_N.unbind()] 2025-08-26T20:46:39.0870821Z >>> jacobian = torch.stack(jacobian_rows) 2025-08-26T20:46:39.0870887Z >>> 2025-08-26T20:46:39.0870998Z >>> # vectorized gradient computation 2025-08-26T20:46:39.0871074Z >>> def get_vjp(v): 2025-08-26T20:46:39.0871178Z >>> return torch.autograd.grad(y, x, v) 2025-08-26T20:46:39.0871288Z >>> jacobian = torch.vmap(get_vjp)(I_N) 2025-08-26T20:46:39.0871352Z 2025-08-26T20:46:39.0871711Z :func:`vmap` can also be nested, producing an output with multiple batched dimensions 2025-08-26T20:46:39.0871920Z 2025-08-26T20:46:39.0872083Z >>> torch.dot # [D], [D] -> [] 2025-08-26T20:46:39.0872234Z >>> batched_dot = torch.vmap( 2025-08-26T20:46:39.0872382Z ... torch.vmap(torch.dot) 2025-08-26T20:46:39.0872558Z ... ) # [N1, N0, D], [N1, N0, D] -> [N1, N0] 2025-08-26T20:46:39.0872770Z >>> x, y = torch.randn(2, 3, 5), torch.randn(2, 3, 5) 2025-08-26T20:46:39.0872892Z >>> batched_dot(x, y) # tensor of size [2, 3] 2025-08-26T20:46:39.0872963Z 2025-08-26T20:46:39.0873185Z If the inputs are not batched along the first dimension, ``in_dims`` specifies 2025-08-26T20:46:39.0873314Z the dimension that each inputs are batched along as 2025-08-26T20:46:39.0873379Z 2025-08-26T20:46:39.0873485Z >>> torch.dot # [N], [N] -> [] 2025-08-26T20:46:39.0873683Z >>> batched_dot = torch.vmap(torch.dot, in_dims=1) # [N, D], [N, D] -> [D] 2025-08-26T20:46:39.0873789Z >>> x, y = torch.randn(2, 5), torch.randn(2, 5) 2025-08-26T20:46:39.0873876Z >>> batched_dot( 2025-08-26T20:46:39.0873944Z ... x, y 2025-08-26T20:46:39.0874111Z ... ) # output is [5] instead of [2] if batched along the 0th dimension 2025-08-26T20:46:39.0874181Z 2025-08-26T20:46:39.0874430Z If there are multiple inputs each of which is batched along different dimensions, 2025-08-26T20:46:39.0874646Z ``in_dims`` must be a tuple with the batch dimension for each input as 2025-08-26T20:46:39.0874710Z 2025-08-26T20:46:39.0874810Z >>> torch.dot # [D], [D] -> [] 2025-08-26T20:46:39.0875020Z >>> batched_dot = torch.vmap(torch.dot, in_dims=(0, None)) # [N, D], [D] -> [N] 2025-08-26T20:46:39.0875132Z >>> x, y = torch.randn(2, 5), torch.randn(5) 2025-08-26T20:46:39.0875219Z >>> batched_dot( 2025-08-26T20:46:39.0875288Z ... x, y 2025-08-26T20:46:39.0875462Z ... ) # second arg doesn't have a batch dim because in_dim[1] was None 2025-08-26T20:46:39.0875528Z 2025-08-26T20:46:39.0875754Z If the input is a Python struct, ``in_dims`` must be a tuple containing a struct 2025-08-26T20:46:39.0875848Z matching the shape of the input: 2025-08-26T20:46:39.0875955Z 2025-08-26T20:46:39.0876084Z >>> f = lambda dict: torch.dot(dict["x"], dict["y"]) 2025-08-26T20:46:39.0876193Z >>> x, y = torch.randn(2, 5), torch.randn(5) 2025-08-26T20:46:39.0876277Z >>> input = {"x": x, "y": y} 2025-08-26T20:46:39.0876435Z >>> batched_dot = torch.vmap(f, in_dims=({"x": 0, "y": None},)) 2025-08-26T20:46:39.0876528Z >>> batched_dot(input) 2025-08-26T20:46:39.0876600Z 2025-08-26T20:46:39.0876850Z By default, the output is batched along the first dimension. However, it can be batched 2025-08-26T20:46:39.0876968Z along any dimension by using ``out_dims`` 2025-08-26T20:46:39.0877035Z 2025-08-26T20:46:39.0877117Z >>> f = lambda x: x**2 2025-08-26T20:46:39.0877200Z >>> x = torch.randn(2, 5) 2025-08-26T20:46:39.0877321Z >>> batched_pow = torch.vmap(f, out_dims=1) 2025-08-26T20:46:39.0877404Z >>> batched_pow(x) # [5, 2] 2025-08-26T20:46:39.0877510Z 2025-08-26T20:46:39.0878026Z For any function that uses kwargs, the returned function will not batch the kwargs but will 2025-08-26T20:46:39.0878203Z accept kwargs 2025-08-26T20:46:39.0878271Z 2025-08-26T20:46:39.0878358Z >>> x = torch.randn([2, 5]) 2025-08-26T20:46:39.0878450Z >>> def fn(x, scale=4.): 2025-08-26T20:46:39.0878615Z >>> return x * scale 2025-08-26T20:46:39.0878729Z >>> 2025-08-26T20:46:39.0878907Z >>> batched_pow = torch.vmap(fn) 2025-08-26T20:46:39.0879064Z >>> assert torch.allclose(batched_pow(x), x * 4) 2025-08-26T20:46:39.0879267Z >>> batched_pow(x, scale=x) # scale is not batched, output has shape [2, 2, 5] 2025-08-26T20:46:39.0879340Z 2025-08-26T20:46:39.0879421Z .. note:: 2025-08-26T20:46:39.0879665Z vmap does not provide general autobatching or handle variable-length 2025-08-26T20:46:39.0879758Z sequences out of the box. 2025-08-26T20:46:39.0879832Z 2025-08-26T20:46:39.0880163Z Original Error: IndentationError('expected an indented block', ('', 5, 1, '_._ = None\n')) 2025-08-26T20:46:39.0880230Z 2025-08-26T20:46:39.0880313Z _._ = None 2025-08-26T20:46:39.0880378Z ^ 2025-08-26T20:46:39.0880467Z warnings.warn(msg) 2025-08-26T20:46:39.0880531Z 2025-08-26T20:46:39.0880780Z --- Parse Warning: 15 / 17 --- 2025-08-26T20:46:39.0881569Z C:\Jenkins\Miniconda3\lib\site-packages\xdoctest\core.py:417: UserWarning: Cannot scrape callname=grad in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\apis.py line=306. 2025-08-26T20:46:39.0881797Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-26T20:46:39.0882022Z ``grad`` operator helps computing gradients of ``func`` with respect to the 2025-08-26T20:46:39.0882201Z input(s) specified by ``argnums``. This operator can be nested to 2025-08-26T20:46:39.0882298Z compute higher-order gradients. 2025-08-26T20:46:39.0882373Z 2025-08-26T20:46:39.0882441Z Args: 2025-08-26T20:46:39.0882670Z func (Callable): A Python function that takes one or more arguments. 2025-08-26T20:46:39.0882917Z Must return a single-element Tensor. If specified ``has_aux`` equals ``True``, 2025-08-26T20:46:39.0883164Z function can return a tuple of single-element Tensor and other auxiliary objects: 2025-08-26T20:46:39.0883248Z ``(output, aux)``. 2025-08-26T20:46:39.0883494Z argnums (int or Tuple[int]): Specifies arguments to compute gradients with respect to. 2025-08-26T20:46:39.0883747Z ``argnums`` can be single integer or tuple of integers. Default: 0. 2025-08-26T20:46:39.0884121Z has_aux (bool): Flag indicating that ``func`` returns a tensor and other 2025-08-26T20:46:39.0884370Z auxiliary objects: ``(output, aux)``. Default: False. 2025-08-26T20:46:39.0884456Z 2025-08-26T20:46:39.0884705Z Returns: 2025-08-26T20:46:39.0885078Z Function to compute gradients with respect to its inputs. By default, the output of 2025-08-26T20:46:39.0885296Z the function is the gradient tensor(s) with respect to the first argument. 2025-08-26T20:46:39.0885557Z If specified ``has_aux`` equals ``True``, tuple of gradients and output auxiliary objects 2025-08-26T20:46:39.0885784Z is returned. If ``argnums`` is a tuple of integers, a tuple of output gradients with 2025-08-26T20:46:39.0885912Z respect to each ``argnums`` value is returned. 2025-08-26T20:46:39.0885994Z 2025-08-26T20:46:39.0886083Z Example of using ``grad``: 2025-08-26T20:46:39.0886149Z 2025-08-26T20:46:39.0886242Z >>> # xdoctest: +SKIP 2025-08-26T20:46:39.0886341Z >>> from torch.func import grad 2025-08-26T20:46:39.0886427Z >>> x = torch.randn([]) 2025-08-26T20:46:39.0886535Z >>> cos_x = grad(lambda x: torch.sin(x))(x) 2025-08-26T20:46:39.0886656Z >>> assert torch.allclose(cos_x, x.cos()) 2025-08-26T20:46:39.0886725Z >>> 2025-08-26T20:46:39.0886865Z >>> # Second-order gradients 2025-08-26T20:46:39.0887007Z >>> neg_sin_x = grad(grad(lambda x: torch.sin(x)))(x) 2025-08-26T20:46:39.0887124Z >>> assert torch.allclose(neg_sin_x, -x.sin()) 2025-08-26T20:46:39.0887192Z 2025-08-26T20:46:39.0887425Z When composed with ``vmap``, ``grad`` can be used to compute per-sample-gradients: 2025-08-26T20:46:39.0887503Z 2025-08-26T20:46:39.0887590Z >>> # xdoctest: +SKIP 2025-08-26T20:46:39.0887696Z >>> from torch.func import grad, vmap 2025-08-26T20:46:39.0887808Z >>> batch_size, feature_size = 3, 5 2025-08-26T20:46:39.0887912Z >>> 2025-08-26T20:46:39.0888010Z >>> def model(weights, feature_vec): 2025-08-26T20:46:39.0888129Z >>> # Very simple linear model with activation 2025-08-26T20:46:39.0888225Z >>> assert feature_vec.dim() == 1 2025-08-26T20:46:39.0888331Z >>> return feature_vec.dot(weights).relu() 2025-08-26T20:46:39.0888405Z >>> 2025-08-26T20:46:39.0888535Z >>> def compute_loss(weights, example, target): 2025-08-26T20:46:39.0888634Z >>> y = model(weights, example) 2025-08-26T20:46:39.0888754Z >>> return ((y - target) ** 2).mean() # MSELoss 2025-08-26T20:46:39.0888834Z >>> 2025-08-26T20:46:39.0888988Z >>> weights = torch.randn(feature_size, requires_grad=True) 2025-08-26T20:46:39.0889118Z >>> examples = torch.randn(batch_size, feature_size) 2025-08-26T20:46:39.0889218Z >>> targets = torch.randn(batch_size) 2025-08-26T20:46:39.0889334Z >>> inputs = (weights, examples, targets) 2025-08-26T20:46:39.0889546Z >>> grad_weight_per_example = vmap(grad(compute_loss), in_dims=(None, 0, 0))( 2025-08-26T20:46:39.0889670Z ... *inputs 2025-08-26T20:46:39.0889788Z ... ) 2025-08-26T20:46:39.0889932Z 2025-08-26T20:46:39.0890268Z Example of using ``grad`` with ``has_aux`` and ``argnums``: 2025-08-26T20:46:39.0890390Z 2025-08-26T20:46:39.0890552Z >>> # xdoctest: +SKIP 2025-08-26T20:46:39.0890723Z >>> from torch.func import grad 2025-08-26T20:46:39.0890883Z >>> def my_loss_func(y, y_pred): 2025-08-26T20:46:39.0891028Z >>> loss_per_sample = (0.5 * y_pred - y) ** 2 2025-08-26T20:46:39.0891127Z >>> loss = loss_per_sample.mean() 2025-08-26T20:46:39.0891237Z >>> return loss, (y_pred, loss_per_sample) 2025-08-26T20:46:39.0891310Z >>> 2025-08-26T20:46:39.0891444Z >>> fn = grad(my_loss_func, argnums=(0, 1), has_aux=True) 2025-08-26T20:46:39.0891530Z >>> y_true = torch.rand(4) 2025-08-26T20:46:39.0891640Z >>> y_preds = torch.rand(4, requires_grad=True) 2025-08-26T20:46:39.0891782Z >>> out = fn(y_true, y_preds) 2025-08-26T20:46:39.0892005Z >>> # > output is ((grads w.r.t y_true, grads w.r.t y_preds), (y_pred, loss_per_sample)) 2025-08-26T20:46:39.0892070Z 2025-08-26T20:46:39.0892156Z .. note:: 2025-08-26T20:46:39.0892306Z Using PyTorch ``torch.no_grad`` together with ``grad``. 2025-08-26T20:46:39.0892367Z 2025-08-26T20:46:39.0892513Z Case 1: Using ``torch.no_grad`` inside a function: 2025-08-26T20:46:39.0892578Z 2025-08-26T20:46:39.0892660Z >>> # xdoctest: +SKIP 2025-08-26T20:46:39.0892737Z >>> def f(x): 2025-08-26T20:46:39.0892838Z >>> with torch.no_grad(): 2025-08-26T20:46:39.0892916Z >>> c = x ** 2 2025-08-26T20:46:39.0892999Z >>> return x - c 2025-08-26T20:46:39.0893068Z 2025-08-26T20:46:39.0893245Z In this case, ``grad(f)(x)`` will respect the inner ``torch.no_grad``. 2025-08-26T20:46:39.0893315Z 2025-08-26T20:46:39.0893474Z Case 2: Using ``grad`` inside ``torch.no_grad`` context manager: 2025-08-26T20:46:39.0893954Z 2025-08-26T20:46:39.0894043Z >>> # xdoctest: +SKIP 2025-08-26T20:46:39.0894130Z >>> with torch.no_grad(): 2025-08-26T20:46:39.0894219Z >>> grad(f)(x) 2025-08-26T20:46:39.0894283Z 2025-08-26T20:46:39.0894486Z In this case, ``grad`` will respect the inner ``torch.no_grad``, but not the 2025-08-26T20:46:39.0894682Z outer one. This is because ``grad`` is a "function transform": its result 2025-08-26T20:46:39.0894887Z should not depend on the result of a context manager outside of ``f``. 2025-08-26T20:46:39.0894991Z 2025-08-26T20:46:39.0895059Z 2025-08-26T20:46:39.0895393Z Original Error: IndentationError('expected an indented block', ('', 6, 1, '_._ = None\n')) 2025-08-26T20:46:39.0895464Z 2025-08-26T20:46:39.0895532Z _._ = None 2025-08-26T20:46:39.0895637Z ^ 2025-08-26T20:46:39.0895774Z warnings.warn(msg) 2025-08-26T20:46:39.0895883Z 2025-08-26T20:46:39.0896290Z --- Parse Warning: 16 / 17 --- 2025-08-26T20:46:39.0897483Z C:\Jenkins\Miniconda3\lib\site-packages\xdoctest\core.py:417: UserWarning: Cannot scrape callname=CustomOpDef.register_fake in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\custom_ops.py line=397. 2025-08-26T20:46:39.0897753Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-26T20:46:39.0897917Z Register a FakeTensor implementation for this custom op. 2025-08-26T20:46:39.0897987Z 2025-08-26T20:46:39.0898217Z This is necessary to get the operator to work efficiently with torch.compile. 2025-08-26T20:46:39.0898280Z 2025-08-26T20:46:39.0898476Z The Fake impl (sometimes also known as a meta kernel or abstract impl) 2025-08-26T20:46:39.0898689Z specifies the behavior of this operator on Tensors that carry no data. 2025-08-26T20:46:39.0898878Z Given some input Tensors with certain properties 2025-08-26T20:46:39.0899121Z (sizes/strides/storage_offset/device), it specifies what the properties of 2025-08-26T20:46:39.0899225Z the output Tensors are. 2025-08-26T20:46:39.0899326Z 2025-08-26T20:46:39.0899518Z Please see :func:`torch.library.register_fake` for more details. 2025-08-26T20:46:39.0899599Z 2025-08-26T20:46:39.0899671Z Args: 2025-08-26T20:46:39.0899900Z fn (Callable): The function to register as the FakeTensor 2025-08-26T20:46:39.0900000Z implementation. 2025-08-26T20:46:39.0900064Z 2025-08-26T20:46:39.0900139Z Examples: 2025-08-26T20:46:39.0900230Z >>> import torch 2025-08-26T20:46:39.0900325Z >>> import numpy as np 2025-08-26T20:46:39.0900461Z >>> from torch import Tensor 2025-08-26T20:46:39.0900537Z >>> 2025-08-26T20:46:39.0900709Z >>> # Example 1: an operator without data-dependent output shape 2025-08-26T20:46:39.0900892Z >>> @torch.library.custom_op("mylib::linear", mutates_args=()) 2025-08-26T20:46:39.0901077Z >>> def linear(x: Tensor, weight: Tensor, bias: Tensor) -> Tensor: 2025-08-26T20:46:39.0901179Z >>> return (x @ weight.t()) + bias 2025-08-26T20:46:39.0901253Z >>> 2025-08-26T20:46:39.0901347Z >>> @linear.register_fake 2025-08-26T20:46:39.0901442Z >>> def _(x, weight, bias): 2025-08-26T20:46:39.0901529Z >>> assert x.dim() == 2 2025-08-26T20:46:39.0901633Z >>> assert weight.dim() == 2 2025-08-26T20:46:39.0901791Z >>> assert bias.dim() == 1 2025-08-26T20:46:39.0902003Z >>> assert x.shape[1] == weight.shape[1] 2025-08-26T20:46:39.0902205Z >>> assert weight.shape[0] == bias.shape[0] 2025-08-26T20:46:39.0902450Z >>> assert x.device == weight.device 2025-08-26T20:46:39.0902643Z >>> return x.new_empty(x.size(0), weight.size(0)) 2025-08-26T20:46:39.0902763Z >>> 2025-08-26T20:46:39.0902916Z >>> x = torch.randn(2, 2) 2025-08-26T20:46:39.0903085Z >>> weight = torch.randn(2, 2) 2025-08-26T20:46:39.0903174Z >>> bias = torch.randn(2) 2025-08-26T20:46:39.0903294Z >>> # xdoctest: +SKIP("Requires Python <= 3.11") 2025-08-26T20:46:39.0903472Z >>> out = torch.compile(linear, fullgraph=True)(x, weight, bias) 2025-08-26T20:46:39.0903635Z >>> # xdoctest: +SKIP("Requires Python <= 3.11") 2025-08-26T20:46:39.0903867Z >>> assert torch.allclose(out, torch.nn.functional.linear(x, weight, bias)) 2025-08-26T20:46:39.0903946Z >>> 2025-08-26T20:46:39.0904107Z >>> # Example 2: an operator with data-dependent output shape 2025-08-26T20:46:39.0904294Z >>> @torch.library.custom_op("mylib::nonzero", mutates_args=()) 2025-08-26T20:46:39.0904400Z >>> def nonzero(x: Tensor) -> Tensor: 2025-08-26T20:46:39.0904503Z >>> x_np = x.cpu().numpy() 2025-08-26T20:46:39.0904614Z >>> res = np.stack(np.nonzero(x_np), axis=1) 2025-08-26T20:46:39.0904736Z >>> return torch.tensor(res, device=x.device) 2025-08-26T20:46:39.0904811Z >>> 2025-08-26T20:46:39.0904901Z >>> @nonzero.register_fake 2025-08-26T20:46:39.0904976Z >>> def _(x): 2025-08-26T20:46:39.0905115Z >>> # Number of nonzero-elements is data-dependent. 2025-08-26T20:46:39.0905266Z >>> # Since we cannot peek at the data in an abstract impl, 2025-08-26T20:46:39.0905403Z >>> # we use the ctx object to construct a new symint that 2025-08-26T20:46:39.0905513Z >>> # represents the data-dependent size. 2025-08-26T20:46:39.0905666Z >>> ctx = torch.library.get_ctx() 2025-08-26T20:46:39.0905767Z >>> nnz = ctx.new_dynamic_size() 2025-08-26T20:46:39.0905857Z >>> shape = [nnz, x.dim()] 2025-08-26T20:46:39.0905998Z >>> result = x.new_empty(shape, dtype=torch.int64) 2025-08-26T20:46:39.0906081Z >>> return result 2025-08-26T20:46:39.0906150Z >>> 2025-08-26T20:46:39.0906263Z >>> x = torch.tensor([0, 1, 2, 0, 0, 1]) 2025-08-26T20:46:39.0906382Z >>> # xdoctest: +SKIP("Requires Python <= 3.11") 2025-08-26T20:46:39.0906511Z >>> out = torch.compile(nonzero, fullgraph=True)(x) 2025-08-26T20:46:39.0906626Z >>> # xdoctest: +SKIP("Requires Python <= 3.11") 2025-08-26T20:46:39.0906784Z >>> assert torch.allclose(out, x.nonzero()) 2025-08-26T20:46:39.0906850Z 2025-08-26T20:46:39.0906917Z 2025-08-26T20:46:39.0907267Z Original Error: IndentationError('expected an indented block', ('', 37, 1, '_._ = None\n')) 2025-08-26T20:46:39.0907331Z 2025-08-26T20:46:39.0907402Z _._ = None 2025-08-26T20:46:39.0907469Z ^ 2025-08-26T20:46:39.0907561Z warnings.warn(msg) 2025-08-26T20:46:39.0907631Z 2025-08-26T20:46:39.0907966Z --- Parse Warning: 17 / 17 --- 2025-08-26T20:46:39.0909352Z C:\Jenkins\Miniconda3\lib\site-packages\xdoctest\core.py:417: UserWarning: Cannot scrape callname=unsafe_generate_fake_kernels in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\fake_profile.py line=94. 2025-08-26T20:46:39.0909599Z Caused by: DoctestParseError('Failed to parse doctest in _label_docsrc_lines') 2025-08-26T20:46:39.0909669Z 2025-08-26T20:46:39.0909885Z Registers a fake kernel based on the given operator profiles. This fake 2025-08-26T20:46:39.0910112Z kernel registration will override any existing fake kernel registrations. 2025-08-26T20:46:39.0910234Z 2025-08-26T20:46:39.0910424Z The input is a dictionary mapping operator names to a set of operator 2025-08-26T20:46:39.0910645Z profiles, which we will use to generate fake kernels. The operator profiles 2025-08-26T20:46:39.0910825Z are a record of the input and output tensor metadata. Based on this 2025-08-26T20:46:39.0911042Z information we will match a given input to the recorded profile, and return 2025-08-26T20:46:39.0911259Z an output with the same metadata as in the recorded profile. If a profile 2025-08-26T20:46:39.0911383Z doesn't exist then an exception will be thrown. 2025-08-26T20:46:39.0911493Z 2025-08-26T20:46:39.0911707Z The fake kernel generation is considered unsafe because it relies on the 2025-08-26T20:46:39.0911913Z rigid, pre-defined operator profiles that do not account for potential 2025-08-26T20:46:39.0912143Z variations in output behavior. Specifically, the generated kernels assume a 2025-08-26T20:46:39.0912374Z fixed relationship between input and output ranks. However, in reality, it's 2025-08-26T20:46:39.0912598Z possible that data-dependent operations may produce outputs of different 2025-08-26T20:46:39.0912797Z ranks even when given inputs of the same rank. The generated fake kernels 2025-08-26T20:46:39.0912985Z are inflexible and unable to accommodate these nuances, making them 2025-08-26T20:46:39.0913075Z potentially unsafe. 2025-08-26T20:46:39.0913142Z 2025-08-26T20:46:39.0913209Z Args: 2025-08-26T20:46:39.0913420Z op_profiles (dict[str, set[OpProfile]]): A dictionary mapping operator 2025-08-26T20:46:39.0913599Z name to a set of operator profiles from which we will generate fake 2025-08-26T20:46:39.0913670Z kernels. 2025-08-26T20:46:39.0913776Z 2025-08-26T20:46:39.0913908Z Examples: 2025-08-26T20:46:39.0914049Z 2025-08-26T20:46:39.0914315Z >>> # Example: Registering an op-profile from draft-export 2025-08-26T20:46:39.0914509Z >>> import torch 2025-08-26T20:46:39.0914750Z >>> from torch.export._draft_export import draft_export 2025-08-26T20:46:39.0914869Z >>> 2025-08-26T20:46:39.0915123Z >>> @torch.library.custom_op("mylib::foo", mutates_args=()) 2025-08-26T20:46:39.0915249Z >>> def foo(x: Tensor, y: Tensor) -> Tensor: 2025-08-26T20:46:39.0915329Z >>> return x + y 2025-08-26T20:46:39.0915399Z >>> 2025-08-26T20:46:39.0915502Z >>> class M(torch.nn.Module): 2025-08-26T20:46:39.0915589Z >>> def forward(self, a, b): 2025-08-26T20:46:39.0915721Z >>> res = torch.ops.mylib.foo(a, b) # no fake impl 2025-08-26T20:46:39.0915805Z >>> return res 2025-08-26T20:46:39.0915871Z >>> 2025-08-26T20:46:39.0916022Z >>> ep = draft_export(M(), (torch.ones(3, 4), torch.ones(3, 4)) 2025-08-26T20:46:39.0916133Z >>> 2025-08-26T20:46:39.0916424Z >>> with torch._library.fake_profile.unsafe_generate_fake_kernels(ep._report.op_profiles): 2025-08-26T20:46:39.0916542Z >>> decomp = ep.run_decompositions() 2025-08-26T20:46:39.0916609Z 2025-08-26T20:46:39.0916684Z 2025-08-26T20:46:39.0917129Z Original Error: IncompleteParseError('ill-formed doctest: all parts have been processed but the doctest source is not balanced') 2025-08-26T20:46:39.0917197Z 2025-08-26T20:46:39.0917279Z warnings.warn(msg) 2025-08-26T20:46:39.0917356Z 2025-08-26T20:46:39.0917488Z  2025-08-26T20:46:39.0917664Z === Found 9 run-time warnings === 2025-08-26T20:46:39.0917864Z --- Runtime Warning: 1 / 9 --- 2025-08-26T20:46:39.0918144Z example = 2025-08-26T20:46:39.0918732Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py:282: UserWarning: Warning only once for all operators, other operators may also be overridden. 2025-08-26T20:46:39.0919080Z Overriding a previously registered kernel for the same operator and the same dispatch key 2025-08-26T20:46:39.0919269Z operator: aten::div.Tensor(Tensor self, Tensor other) -> Tensor 2025-08-26T20:46:39.0919579Z registered at C:\actions-runner\_work\pytorch\pytorch\build\aten\src\ATen\RegisterSchema.cpp:6 2025-08-26T20:46:39.0919672Z dispatch key: CPU 2025-08-26T20:46:39.0920451Z previous kernel: registered at C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen\LegacyBatchingRegistrations.cpp:1079 2025-08-26T20:46:39.0921371Z new kernel: registered at /dev/null:868 (Triggered internally at C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen\core\dispatch\OperatorEntry.cpp:225.) 2025-08-26T20:46:39.0921528Z impl_fn(self.ns, name.split("::")[-1], dispatch_key) 2025-08-26T20:46:39.0921621Z 2025-08-26T20:46:39.0921827Z --- Runtime Warning: 2 / 9 --- 2025-08-26T20:46:39.0922076Z example = 2025-08-26T20:46:39.0923615Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor.py:1351: UserWarning: Named tensors and all their associated APIs are an experimental feature and subject to change. Please do not use them for anything important until they are released as stable. (Triggered internally at C:\actions-runner\_work\pytorch\pytorch\c10/core/TensorImpl.h:1974.) 2025-08-26T20:46:39.0923727Z return super().refine_names(names) 2025-08-26T20:46:39.0923806Z 2025-08-26T20:46:39.0924020Z --- Runtime Warning: 3 / 9 --- 2025-08-26T20:46:39.0924245Z example = 2025-08-26T20:46:39.0926399Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nested\__init__.py:117: UserWarning: The PyTorch API of nested tensors is in prototype stage and will change in the near future. We recommend specifying layout=torch.jagged when constructing a nested tensor, as this layout receives active development, has better operator coverage, and works with torch.compile. (Triggered internally at C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen\NestedTensorImpl.cpp:182.) 2025-08-26T20:46:39.0926783Z return torch._nested_tensor_from_tensor_list(ts, dtype, None, device, None) 2025-08-26T20:46:39.0926902Z 2025-08-26T20:46:39.0927169Z --- Runtime Warning: 4 / 9 --- 2025-08-26T20:46:39.0927516Z example = 2025-08-26T20:46:39.0929068Z :1: UserWarning: Sparse CSR tensor support is in beta state. If you miss a functionality in the sparse tensor support, please submit a feature request to https://github.com/pytorch/pytorch/issues. (Triggered internally at C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen\SparseCsrTensorImpl.cpp:55.) 2025-08-26T20:46:39.0929202Z 2025-08-26T20:46:39.0929391Z --- Runtime Warning: 5 / 9 --- 2025-08-26T20:46:39.0929661Z example = 2025-08-26T20:46:39.0930652Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\transformer.py:392: UserWarning: enable_nested_tensor is True, but self.use_nested_tensor is False because encoder_layer.self_attn.batch_first was not True(use batch_first for better inference performance) 2025-08-26T20:46:39.0930746Z warnings.warn( 2025-08-26T20:46:39.0930809Z 2025-08-26T20:46:39.0930987Z --- Runtime Warning: 6 / 9 --- 2025-08-26T20:46:39.0931299Z example = 2025-08-26T20:46:39.0932871Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\transformer.py:392: UserWarning: enable_nested_tensor is True, but self.use_nested_tensor is False because encoder_layer.self_attn.batch_first was not True(use batch_first for better inference performance) 2025-08-26T20:46:39.0933077Z warnings.warn( 2025-08-26T20:46:39.0933151Z 2025-08-26T20:46:39.0933357Z --- Runtime Warning: 7 / 9 --- 2025-08-26T20:46:39.0933604Z example = 2025-08-26T20:46:39.0934446Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\weight_norm.py:144: FutureWarning: `torch.nn.utils.weight_norm` is deprecated in favor of `torch.nn.utils.parametrizations.weight_norm`. 2025-08-26T20:46:39.0934858Z WeightNorm.apply(module, name, dim) 2025-08-26T20:46:39.0934933Z 2025-08-26T20:46:39.0935135Z --- Runtime Warning: 8 / 9 --- 2025-08-26T20:46:39.0935421Z example = 2025-08-26T20:46:39.0936161Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\weight_norm.py:144: FutureWarning: `torch.nn.utils.weight_norm` is deprecated in favor of `torch.nn.utils.parametrizations.weight_norm`. 2025-08-26T20:46:39.0936277Z WeightNorm.apply(module, name, dim) 2025-08-26T20:46:39.0936347Z 2025-08-26T20:46:39.0936594Z --- Runtime Warning: 9 / 9 --- 2025-08-26T20:46:39.0951288Z example = 2025-08-26T20:46:39.0952827Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\const_fold.py:271: UserWarning: Attempted to insert a get_attr Node with no underlying reference in the owning GraphModule! Call GraphModule.add_submodule to add the necessary submodule, GraphModule.add_parameter to add the necessary Parameter, or nn.Module.register_buffer to add the necessary buffer 2025-08-26T20:46:39.0952992Z new_node = root_const_gm.graph.get_attr(in_node.target) 2025-08-26T20:46:39.0953061Z 2025-08-26T20:46:39.0953553Z === 373 passed, 489 skipped, 26 warnings in 22.42 seconds === 2025-08-26T20:46:57.1335366Z 2025-08-26T20:46:57.1336538Z inductor/test_max_autotune 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_max_autotune_1.1_ae6814a4e74ed33f_.log 2025-08-26T20:46:57.1337242Z 2025-08-26T20:46:57.1342937Z Running inductor/test_benchmark_fusion 1/1 ... [2025-08-26 20:46:57.132707] 2025-08-26T20:46:57.1343368Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:46:57.1349360Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_benchmark_fusion.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:46:57.132707] 2025-08-26T20:47:07.3804486Z 2025-08-26T20:47:07.3805442Z inductor/test_benchmark_fusion 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_benchmark_fusion_1.1_ac7ba58075941e23_.log 2025-08-26T20:47:07.3806181Z 2025-08-26T20:47:07.3811484Z Running inductor/test_cutlass_backend 1/1 ... [2025-08-26 20:47:07.380724] 2025-08-26T20:47:07.3811908Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:47:07.3818967Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cutlass_backend.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:47:07.381306] 2025-08-26T20:47:17.1885218Z 2025-08-26T20:47:17.1886243Z inductor/test_cutlass_backend 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cutlass_backend_1.1_8526bfb1707f7eca_.log 2025-08-26T20:47:17.1886977Z 2025-08-26T20:47:17.1891270Z Running inductor/test_distributed_patterns 1/1 ... [2025-08-26 20:47:17.188538] 2025-08-26T20:47:17.1891721Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:47:17.1897909Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_distributed_patterns.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:47:17.189637] 2025-08-26T20:47:27.2412260Z 2025-08-26T20:47:27.2413278Z inductor/test_distributed_patterns 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_distributed_patterns_1.1_dd84e1d1f988c4e6_.log 2025-08-26T20:47:27.2414049Z 2025-08-26T20:47:27.2417992Z Running dynamo/test_fake_distributed 1/1 ... [2025-08-26 20:47:27.231195] 2025-08-26T20:47:27.2418440Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:47:27.2424320Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_fake_distributed.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:47:27.231195] 2025-08-26T20:47:31.8186588Z 2025-08-26T20:47:31.8187641Z dynamo/test_fake_distributed 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_fake_distributed_1.1_f5658beb2929c2a4_.log 2025-08-26T20:47:31.8188353Z 2025-08-26T20:47:31.8192105Z Running test_utils 1/1 ... [2025-08-26 20:47:31.810745] 2025-08-26T20:47:31.8192458Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:47:31.8198416Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_utils.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:47:31.810745] 2025-08-26T20:53:03.6690795Z 2025-08-26T20:53:03.6691647Z test_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_utils_1.1_1da4e07253455af2_.log 2025-08-26T20:53:03.8771671Z Running 6049 items in this shard: test/test_utils.py::TestCheckpoint::test_checkpoint, test/test_utils.py::TestCheckpoint::test_checkpoint_module_list, test/test_utils.py::TestCheckpoint::test_checkpoint_no_tensors, test/test_utils.py::TestCheckpoint::test_checkpoint_non_tensor, test/test_utils.py::TestCheckpoint::test_checkpoint_non_tensor_inputs_outputs, test/test_utils.py::TestCheckpoint::test_checkpoint_not_preserve_rng_state_and_without_reentrant, test/test_utils.py::TestCheckpoint::test_checkpoint_partial_grad, test/test_utils.py::TestCheckpoint::test_checkpoint_rng_cpu, test/test_utils.py::TestCheckpoint::test_checkpoint_rng_cuda, test/test_utils.py::TestCheckpoint::test_checkpoint_sequential_deprecated_multiple_args, test/test_utils.py::TestCheckpoint::test_checkpoint_sequential_deprecated_no_args, test/test_utils.py::TestCheckpoint::test_checkpoint_trigger, test/test_utils.py::TestCheckpoint::test_checkpoint_valid, test/test_utils.py::TestCheckpoint::test_checkpointing_without_reentrant_early_free, test/test_utils.py::TestCheckpoint::test_get_device_states_recursive, test/test_utils.py::TestCheckpoint::test_infer_device_state_recursive_meta, test/test_utils.py::TestCheckpoint::test_infer_device_state_recursive_multi_cuda, test/test_utils.py::TestDataLoaderUtils::test_multi_drop, test/test_utils.py::TestDataLoaderUtils::test_multi_keep, test/test_utils.py::TestDataLoaderUtils::test_random_seed, test/test_utils.py::TestDataLoaderUtils::test_single_drop, test/test_utils.py::TestDataLoaderUtils::test_single_keep, test/test_utils.py::TestBottleneck::test_bottleneck_cpu_only, test/test_utils.py::TestBottleneck::test_bottleneck_cuda, test/test_utils.py::TestCollectEnv::test_smoke, test/test_utils.py::TestONNXUtils::test_check_onnx_broadcast, test/test_utils.py::TestONNXUtils::test_prepare_onnx_paddings, test/test_utils.py::TestHipify::test_import_hipify, test/test_utils.py::TestHipifyTrie::test_add_and_search_trie, test/test_utils.py::TestHipifyTrie::test_add_multiple_and_search_trie, test/test_utils.py::TestHipifyTrie::test_char_export_trie_to_regex, test/test_utils.py::TestHipifyTrie::test_export_trie_to_regex, test/test_utils.py::TestHipifyTrie::test_prefix_words_export_trie_to_regex, test/test_utils.py::TestHipifyTrie::test_quote_escape, test/test_utils.py::TestHipifyTrie::test_single_export_trie_to_regex, test/test_utils.py::TestHipifyTrie::test_special_char_export_trie_to_regex, test/test_utils.py::TestAssert::test_assert_scriptable, test/test_utils.py::TestAssert::test_assert_true, test/test_utils.py::TestStandaloneCPPJIT::test_load_standalone, test/test_utils.py::TestRenderUtils::test_basic, test/test_utils.py::TestDeviceUtilsCPU::test_basic_cpu, test/test_utils.py::TestDeviceUtilsCPU::test_decorator_cpu, test/test_utils.py::TestDeviceUtilsCPU::test_decorator_generator_cpu, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_H_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_H_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_H_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_H_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_H_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_H_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_H_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_H_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_H_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_H_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_H_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_H_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_H_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_T_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_T_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_T_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_T_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_T_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_T_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_T_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_T_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_T_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_T_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_T_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_T_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_T_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___getitem___cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___getitem___cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___getitem___cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___getitem___cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___getitem___cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___getitem___cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___getitem___cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___getitem___cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___getitem___cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___getitem___cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___getitem___cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___getitem___cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___getitem___cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___radd___cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___radd___cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___radd___cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___radd___cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___radd___cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___radd___cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___radd___cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___radd___cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___radd___cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___radd___cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___radd___cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___radd___cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rand___cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rand___cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rand___cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rand___cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rand___cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rand___cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rdiv___cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rdiv___cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rdiv___cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rdiv___cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rdiv___cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rdiv___cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rdiv___cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rdiv___cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rdiv___cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rdiv___cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rdiv___cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rdiv___cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmatmul___cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmatmul___cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmatmul___cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmatmul___cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmatmul___cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmatmul___cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmatmul___cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmatmul___cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmatmul___cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmatmul___cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmatmul___cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmod___cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmod___cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmod___cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmod___cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmul___cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmul___cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmul___cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmul___cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmul___cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmul___cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmul___cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmul___cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmul___cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmul___cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmul___cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmul___cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___ror___cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___ror___cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___ror___cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___ror___cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___ror___cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___ror___cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rpow___cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rpow___cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rpow___cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rpow___cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rpow___cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rpow___cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rpow___cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rpow___cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rpow___cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rpow___cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rpow___cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rsub___cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rsub___cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rsub___cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rsub___cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rsub___cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rsub___cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rsub___cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rsub___cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rsub___cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rsub___cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rsub___cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rxor___cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rxor___cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rxor___cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rxor___cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rxor___cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rxor___cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__batch_norm_with_update_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__batch_norm_with_update_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__batch_norm_with_update_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__batch_norm_with_update_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__chunk_cat_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__chunk_cat_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__chunk_cat_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__chunk_cat_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__chunk_cat_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__chunk_cat_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__chunk_cat_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__chunk_cat_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__chunk_cat_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__chunk_cat_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__chunk_cat_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__chunk_cat_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__chunk_cat_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__native_batch_norm_legit_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__native_batch_norm_legit_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__native_batch_norm_legit_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__native_batch_norm_legit_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__segment_reduce_lengths_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__segment_reduce_lengths_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__segment_reduce_lengths_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__segment_reduce_lengths_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__segment_reduce_offsets_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__segment_reduce_offsets_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__segment_reduce_offsets_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__segment_reduce_offsets_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__softmax_backward_data_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__softmax_backward_data_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__softmax_backward_data_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__softmax_backward_data_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_put_accumulate_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_put_accumulate_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_put_accumulate_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_put_accumulate_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_put_accumulate_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_put_accumulate_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_put_accumulate_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_put_accumulate_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_put_accumulate_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_put_accumulate_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_put_accumulate_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__upsample_bilinear2d_aa_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__upsample_bilinear2d_aa_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__upsample_bilinear2d_aa_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_abs_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_abs_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_abs_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_abs_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_abs_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_abs_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_abs_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_abs_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_abs_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_abs_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_abs_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_abs_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acos_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acos_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acos_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acos_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acos_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acos_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acos_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acos_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acos_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acos_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acos_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acos_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acosh_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acosh_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acosh_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acosh_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acosh_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acosh_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acosh_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acosh_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acosh_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acosh_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acosh_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acosh_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_add_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_add_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_add_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_add_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_add_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_add_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_add_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_add_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_add_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_add_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_add_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_add_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_add_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addbmm_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addbmm_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addbmm_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addbmm_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addbmm_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addbmm_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addbmm_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addbmm_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addbmm_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addbmm_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addbmm_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addcdiv_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addcdiv_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addcdiv_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addcdiv_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addcdiv_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addcdiv_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addcmul_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addcmul_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addcmul_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addcmul_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addcmul_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addcmul_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addcmul_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addcmul_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addcmul_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addcmul_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addcmul_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_decomposed_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_decomposed_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_decomposed_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_decomposed_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_decomposed_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_decomposed_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_decomposed_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_decomposed_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_decomposed_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_decomposed_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_decomposed_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmv_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmv_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmv_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmv_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmv_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmv_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmv_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmv_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmv_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmv_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmv_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addr_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addr_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addr_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addr_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addr_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addr_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addr_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addr_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addr_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addr_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addr_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addr_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_alias_copy_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_alias_copy_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_alias_copy_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_alias_copy_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_alias_copy_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_alias_copy_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_alias_copy_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_alias_copy_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_alias_copy_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_alias_copy_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_alias_copy_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_alias_copy_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_alias_copy_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_all_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_all_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_all_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_all_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_all_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_all_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_all_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_all_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_all_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_all_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_all_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_all_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_allclose_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_allclose_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_allclose_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_allclose_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_allclose_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_allclose_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_amax_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_amax_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_amax_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_amax_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_amax_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_amax_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_amax_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_amax_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_amax_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_amax_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_amin_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_amin_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_amin_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_amin_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_amin_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_amin_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_amin_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_amin_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_amin_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_amin_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_aminmax_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_aminmax_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_aminmax_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_aminmax_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_aminmax_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_aminmax_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_aminmax_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_aminmax_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_aminmax_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_aminmax_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_angle_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_angle_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_angle_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_angle_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_angle_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_angle_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_angle_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_angle_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_angle_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_angle_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_angle_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_angle_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_any_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_any_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_any_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_any_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_any_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_any_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_any_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_any_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_any_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_any_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_any_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_any_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_arange_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_arange_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_arange_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_arange_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_arange_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_arange_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_arange_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_arange_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_arange_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argmax_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argmax_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argmax_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argmax_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argmax_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argmax_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argmax_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argmax_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argmax_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argmin_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argmin_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argmin_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argmin_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argmin_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argmin_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argmin_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argmin_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argmin_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argsort_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argsort_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argsort_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argsort_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argsort_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argsort_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argsort_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argsort_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argsort_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argsort_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argwhere_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argwhere_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argwhere_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argwhere_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argwhere_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argwhere_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argwhere_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argwhere_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argwhere_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argwhere_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argwhere_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argwhere_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_copy_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_copy_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_copy_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_copy_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_copy_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_copy_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_copy_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_copy_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_copy_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_copy_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_copy_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_copy_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_copy_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_partial_views_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_partial_views_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_partial_views_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_partial_views_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_partial_views_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_partial_views_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_partial_views_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_partial_views_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_partial_views_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_partial_views_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_partial_views_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_partial_views_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_partial_views_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_scatter_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_scatter_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_scatter_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_scatter_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_scatter_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_scatter_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_scatter_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_scatter_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_scatter_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_scatter_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_scatter_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_scatter_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_scatter_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asin_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asin_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asin_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asin_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asin_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asin_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asin_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asin_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asin_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asin_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asin_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asin_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asinh_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asinh_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asinh_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asinh_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asinh_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asinh_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asinh_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asinh_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asinh_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asinh_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asinh_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asinh_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan2_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan2_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan2_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan2_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan2_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan2_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan2_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan2_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan2_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan2_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atanh_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atanh_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atanh_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atanh_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atanh_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atanh_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atanh_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atanh_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atanh_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atanh_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atanh_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atanh_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_1d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_1d_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_1d_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_1d_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_1d_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_1d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_1d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_1d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_1d_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_1d_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_1d_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_1d_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_1d_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_2d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_2d_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_2d_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_2d_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_2d_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_2d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_2d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_2d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_2d_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_2d_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_2d_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_2d_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_2d_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_3d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_3d_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_3d_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_3d_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_3d_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_3d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_3d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_3d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_3d_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_3d_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_3d_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_3d_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_3d_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_baddbmm_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_baddbmm_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_baddbmm_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_baddbmm_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_baddbmm_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_baddbmm_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_baddbmm_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_baddbmm_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_baddbmm_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_baddbmm_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_baddbmm_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bernoulli_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bernoulli_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bernoulli_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bernoulli_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bfloat16_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bfloat16_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bfloat16_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bfloat16_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bfloat16_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bfloat16_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bfloat16_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bfloat16_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bfloat16_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bfloat16_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bfloat16_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bfloat16_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bfloat16_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bincount_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bincount_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bincount_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bincount_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bincount_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_and_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_and_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_and_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_and_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_and_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_and_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_left_shift_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_left_shift_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_left_shift_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_left_shift_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_left_shift_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_not_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_not_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_not_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_not_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_not_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_not_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_or_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_or_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_or_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_or_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_or_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_or_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_right_shift_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_right_shift_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_right_shift_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_right_shift_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_right_shift_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_xor_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_xor_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_xor_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_xor_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_xor_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_xor_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_block_diag_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_block_diag_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_block_diag_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_block_diag_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_block_diag_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_block_diag_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_block_diag_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_block_diag_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_block_diag_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_block_diag_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_block_diag_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_block_diag_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_block_diag_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bmm_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bmm_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bmm_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bmm_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bmm_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bmm_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bmm_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bmm_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bmm_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bmm_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bmm_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bool_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bool_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bool_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bool_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bool_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bool_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bool_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bool_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bool_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bool_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bool_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bool_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bool_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_shapes_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_tensors_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_tensors_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_tensors_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_tensors_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_tensors_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_tensors_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_tensors_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_tensors_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_tensors_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_tensors_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_tensors_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_tensors_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_to_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_to_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_to_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_to_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_to_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_to_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_to_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_to_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_to_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_to_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_to_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_to_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bucketize_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bucketize_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bucketize_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bucketize_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bucketize_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bucketize_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bucketize_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bucketize_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bucketize_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_byte_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_byte_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_byte_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_byte_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_byte_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_byte_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_byte_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_byte_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_byte_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_byte_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_byte_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_byte_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cartesian_prod_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cartesian_prod_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cartesian_prod_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cartesian_prod_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cartesian_prod_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cartesian_prod_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cartesian_prod_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cartesian_prod_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cartesian_prod_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cartesian_prod_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cartesian_prod_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cartesian_prod_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cat_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cat_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cat_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cat_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cat_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cat_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cat_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cat_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cat_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cat_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cat_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cat_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cat_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cauchy_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cauchy_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cauchy_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cauchy_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cdist_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cdist_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cdouble_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cdouble_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cdouble_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cdouble_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cdouble_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cdouble_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cdouble_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cdouble_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cdouble_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cdouble_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cdouble_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cdouble_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cdouble_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ceil_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ceil_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ceil_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ceil_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ceil_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ceil_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ceil_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ceil_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ceil_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cfloat_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cfloat_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cfloat_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cfloat_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cfloat_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cfloat_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cfloat_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cfloat_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cfloat_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cfloat_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cfloat_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cfloat_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cfloat_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chalf_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chalf_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chalf_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chalf_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chalf_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chalf_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chalf_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chalf_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chalf_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chalf_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chalf_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chalf_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chalf_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_char_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_char_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_char_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_char_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_char_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_char_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_char_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_char_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_char_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_char_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_char_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_char_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_char_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cholesky_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cholesky_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cholesky_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cholesky_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cholesky_inverse_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cholesky_inverse_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cholesky_inverse_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cholesky_inverse_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cholesky_solve_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cholesky_solve_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cholesky_solve_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cholesky_solve_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chunk_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chunk_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chunk_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chunk_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chunk_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chunk_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chunk_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chunk_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chunk_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chunk_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chunk_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chunk_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chunk_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_max_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_max_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_max_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_max_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_max_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_max_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_max_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_max_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_max_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_max_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_min_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_min_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_min_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_min_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_min_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_min_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_min_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_min_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_min_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_min_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clone_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clone_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clone_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clone_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clone_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clone_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clone_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clone_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clone_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clone_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clone_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clone_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clone_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_column_stack_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_column_stack_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_column_stack_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_column_stack_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_column_stack_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_column_stack_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_column_stack_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_column_stack_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_column_stack_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_column_stack_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_column_stack_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_column_stack_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_column_stack_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_combinations_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_combinations_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_combinations_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_combinations_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_combinations_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_combinations_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_combinations_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_combinations_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_combinations_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_combinations_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_combinations_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_combinations_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_complex_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_complex_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_complex_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_physical_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_physical_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_physical_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_physical_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_physical_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_physical_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_physical_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_physical_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_physical_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_physical_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_physical_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_physical_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_physical_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_constant_pad_nd_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_constant_pad_nd_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_constant_pad_nd_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_constant_pad_nd_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_constant_pad_nd_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_constant_pad_nd_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_constant_pad_nd_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_constant_pad_nd_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_constant_pad_nd_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_constant_pad_nd_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_constant_pad_nd_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_constant_pad_nd_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_contiguous_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_contiguous_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_contiguous_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_contiguous_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_contiguous_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_contiguous_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_contiguous_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_contiguous_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_contiguous_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_contiguous_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_contiguous_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_contiguous_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_contiguous_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_copysign_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_copysign_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_copysign_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_copysign_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_copysign_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_copysign_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_copysign_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_copysign_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_copysign_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_copysign_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_corrcoef_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_corrcoef_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_corrcoef_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_corrcoef_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_corrcoef_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_corrcoef_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_corrcoef_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_corrcoef_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_corrcoef_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_corrcoef_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_corrcoef_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cos_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cos_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cos_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cos_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cos_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cos_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cos_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cos_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cos_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cos_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cos_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cos_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cosh_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cosh_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cosh_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cosh_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cosh_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cosh_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cosh_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cosh_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cosh_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cosh_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cosh_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cosh_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_count_nonzero_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_count_nonzero_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_count_nonzero_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_count_nonzero_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_count_nonzero_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_count_nonzero_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_count_nonzero_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_count_nonzero_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_count_nonzero_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_count_nonzero_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_count_nonzero_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_count_nonzero_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cov_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cov_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cov_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cov_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cov_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cov_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cov_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cov_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cov_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cov_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cov_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cross_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cross_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cross_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cross_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cross_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cross_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cross_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cross_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cross_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cross_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cross_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cummax_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cummax_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cummax_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cummax_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cummax_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cummax_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cummax_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cummax_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cummax_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cummax_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cummin_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cummin_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cummin_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cummin_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cummin_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cummin_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cummin_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cummin_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cummin_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cummin_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumprod_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumprod_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumprod_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumprod_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumprod_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumprod_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumprod_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumprod_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumprod_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumprod_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumprod_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumsum_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumsum_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumsum_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumsum_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumsum_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumsum_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumsum_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumsum_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumsum_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumsum_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumsum_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumulative_trapezoid_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumulative_trapezoid_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumulative_trapezoid_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumulative_trapezoid_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumulative_trapezoid_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumulative_trapezoid_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumulative_trapezoid_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumulative_trapezoid_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumulative_trapezoid_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumulative_trapezoid_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumulative_trapezoid_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_deg2rad_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_deg2rad_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_deg2rad_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_deg2rad_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_deg2rad_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_deg2rad_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_deg2rad_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_deg2rad_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_deg2rad_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_deg2rad_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_embed_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_embed_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_embed_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_embed_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_embed_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_embed_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_embed_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_embed_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_embed_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_embed_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_embed_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_embed_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_embed_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagflat_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagflat_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagflat_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagflat_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagflat_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagflat_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagflat_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagflat_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagflat_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagflat_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagflat_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagflat_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_copy_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_copy_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_copy_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_copy_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_copy_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_copy_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_copy_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_copy_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_copy_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_copy_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_copy_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_copy_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_copy_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_scatter_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_scatter_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_scatter_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_scatter_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_scatter_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_scatter_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_scatter_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_scatter_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_scatter_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_scatter_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_scatter_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_scatter_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diff_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diff_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diff_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diff_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diff_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diff_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diff_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diff_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diff_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diff_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diff_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diff_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_digamma_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_digamma_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_digamma_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_digamma_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_digamma_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_digamma_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_digamma_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_digamma_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_digamma_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_digamma_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dist_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dist_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dist_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dist_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dist_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dist_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_floor_rounding_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_floor_rounding_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_floor_rounding_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_floor_rounding_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_floor_rounding_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_floor_rounding_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_floor_rounding_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_floor_rounding_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_floor_rounding_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_no_rounding_mode_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_no_rounding_mode_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_no_rounding_mode_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_no_rounding_mode_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_no_rounding_mode_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_no_rounding_mode_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_no_rounding_mode_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_no_rounding_mode_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_no_rounding_mode_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_no_rounding_mode_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_no_rounding_mode_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_no_rounding_mode_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_trunc_rounding_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_trunc_rounding_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_trunc_rounding_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_trunc_rounding_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_trunc_rounding_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_trunc_rounding_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_trunc_rounding_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_trunc_rounding_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_trunc_rounding_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dot_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dot_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dot_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dot_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dot_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dot_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dot_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dot_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dot_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dot_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dot_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_double_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_double_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_double_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_double_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_double_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_double_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_double_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_double_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_double_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_double_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_double_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_double_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_double_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dsplit_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dsplit_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dsplit_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dsplit_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dsplit_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dsplit_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dsplit_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dsplit_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dsplit_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dsplit_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dsplit_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dsplit_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dsplit_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dstack_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dstack_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dstack_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dstack_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dstack_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dstack_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dstack_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dstack_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dstack_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dstack_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dstack_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dstack_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dstack_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_einsum_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_einsum_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_einsum_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_einsum_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_einsum_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_einsum_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_einsum_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_einsum_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_einsum_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_einsum_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_einsum_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_like_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_like_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_like_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_like_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_like_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_like_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_like_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_like_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_like_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_like_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_like_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_like_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_like_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_permuted_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_permuted_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_permuted_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_permuted_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_permuted_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_permuted_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_permuted_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_permuted_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_permuted_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_permuted_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_permuted_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_permuted_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_permuted_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_strided_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_strided_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_strided_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_strided_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_strided_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_strided_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_strided_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_strided_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_strided_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_strided_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_strided_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_strided_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eq_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eq_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eq_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eq_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eq_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eq_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eq_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eq_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eq_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eq_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eq_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eq_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eq_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_equal_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_equal_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_equal_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_equal_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_equal_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_equal_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_equal_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_equal_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_equal_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_equal_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_equal_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_equal_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erf_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erf_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erf_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erf_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erf_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erf_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erf_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erf_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erf_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erf_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erfc_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erfc_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erfc_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erfc_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erfc_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erfc_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erfc_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erfc_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erfc_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erfc_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erfinv_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erfinv_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erfinv_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erfinv_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erfinv_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erfinv_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erfinv_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erfinv_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erfinv_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erfinv_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp2_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp2_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp2_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp2_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp2_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp2_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp2_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp2_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp2_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp2_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp2_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp2_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_as_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_as_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_as_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_as_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_as_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_as_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_as_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_as_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_as_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_as_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_as_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_as_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_copy_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_copy_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_copy_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_copy_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_copy_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_copy_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_copy_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_copy_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_copy_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_copy_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_copy_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_copy_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expm1_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expm1_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expm1_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expm1_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expm1_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expm1_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expm1_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expm1_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expm1_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expm1_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expm1_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expm1_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exponential_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exponential_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exponential_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exponential_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eye_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eye_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eye_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eye_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eye_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eye_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eye_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eye_cpu_float8_e4m3fn, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eye_cpu_float8_e4m3fnuz, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eye_cpu_float8_e5m2, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eye_cpu_float8_e5m2fnuz, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eye_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eye_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eye_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eye_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eye_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fft2_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fft2_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fft2_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fft2_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fft2_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fft2_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fft2_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fft2_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fft2_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fft2_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fft_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fft_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fft_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fft_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fft_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fft_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fft_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fft_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fft_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fft_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftn_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftn_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftn_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftn_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftn_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftn_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftn_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftn_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftn_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftn_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftshift_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftshift_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftshift_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftshift_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftshift_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftshift_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftshift_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftshift_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftshift_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftshift_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftshift_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftshift_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftshift_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfft2_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfft2_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfft2_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfft2_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfft2_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfft2_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfft2_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfft2_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfft2_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfft2_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfft_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfft_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfft_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfft_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfft_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfft_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfft_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfft_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfft_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfft_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfftn_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfftn_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfftn_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfftn_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfftn_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfftn_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfftn_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfftn_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfftn_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfftn_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifft2_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifft2_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifft2_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifft2_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifft2_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifft2_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifft2_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifft2_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifft2_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifft2_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifft_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifft_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifft_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifft_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifft_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifft_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifft_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifft_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifft_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifft_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftn_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftn_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftn_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftn_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftn_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftn_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftn_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftn_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftn_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftn_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftshift_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftshift_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftshift_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftshift_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftshift_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftshift_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftshift_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftshift_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftshift_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftshift_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftshift_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftshift_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftshift_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfft2_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfft2_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfft2_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfft2_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfft2_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfft2_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfft2_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfft2_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfft_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfft_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfft_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfft_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfft_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfft_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfft_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfft_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfftn_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfftn_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfftn_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfftn_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfftn_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfftn_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfftn_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfftn_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfft2_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfft2_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfft2_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfft2_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfft2_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfft2_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfft2_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfft2_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfft2_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfft2_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfft_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfft_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfft_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfft_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfft_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfft_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfft_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfft_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfft_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfft_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfftn_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfftn_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfftn_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfftn_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfftn_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfftn_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfftn_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfftn_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfftn_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfftn_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfft2_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfft2_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfft2_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfft2_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfft2_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfft2_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfft2_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfft2_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfft_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfft_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfft_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfft_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfft_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfft_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfft_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfft_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfftn_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfftn_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfftn_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfftn_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfftn_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfftn_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfftn_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfftn_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fill_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fill_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fill_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fill_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fill_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fill_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fill_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fill_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fill_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fill_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fill_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fill_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fill_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flatten_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flatten_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flatten_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flatten_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flatten_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flatten_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flatten_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flatten_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flatten_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flatten_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flatten_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flatten_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flatten_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flip_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flip_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flip_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flip_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flip_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flip_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flip_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flip_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flip_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flip_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flip_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flip_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fliplr_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fliplr_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fliplr_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fliplr_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fliplr_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fliplr_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fliplr_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fliplr_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fliplr_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fliplr_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fliplr_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fliplr_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flipud_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flipud_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flipud_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flipud_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flipud_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flipud_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flipud_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flipud_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flipud_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flipud_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flipud_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flipud_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_power_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_power_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_power_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_power_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_power_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_power_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_power_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_power_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_power_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_power_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_power_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_power_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_floor_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_floor_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_floor_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_floor_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_floor_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_floor_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_floor_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_floor_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_floor_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_floor_divide_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_floor_divide_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_floor_divide_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_floor_divide_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_floor_divide_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_floor_divide_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_floor_divide_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_floor_divide_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_floor_divide_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmax_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmax_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmax_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmax_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmax_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmax_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmax_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmax_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmax_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmax_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmin_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmin_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmin_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmin_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmin_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmin_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmin_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmin_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmin_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmin_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmod_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmod_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmod_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmod_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmod_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmod_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmod_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmod_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmod_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_frac_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_frac_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_frac_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_frac_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_frexp_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_frexp_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_frexp_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_frexp_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_like_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_like_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_like_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_like_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_like_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_like_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_like_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_like_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_like_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_like_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_like_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_like_cpu_uint16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_like_cpu_uint32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_like_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gather_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gather_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gather_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gather_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gather_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gather_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gather_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gather_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gather_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gather_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gather_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gather_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gcd_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gcd_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gcd_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gcd_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gcd_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ge_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ge_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ge_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ge_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ge_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ge_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ge_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ge_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ge_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ge_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_geometric_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_geometric_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_geometric_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_geometric_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_geometric_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_geometric_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_geometric_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_geometric_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_geometric_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_geqrf_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_geqrf_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_geqrf_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_geqrf_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gradient_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gradient_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gradient_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gradient_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gradient_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gradient_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gradient_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gradient_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gradient_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gradient_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_grid_sampler_2d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_grid_sampler_2d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_grid_sampler_2d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_grid_sampler_2d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_grid_sampler_3d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_grid_sampler_3d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_grid_sampler_3d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_grid_sampler_3d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gt_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gt_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gt_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gt_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gt_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gt_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gt_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gt_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gt_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gt_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_half_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_half_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_half_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_half_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_half_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_half_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_half_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_half_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_half_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_half_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_half_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_half_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hash_tensor_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hash_tensor_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hash_tensor_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hash_tensor_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hash_tensor_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hash_tensor_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hash_tensor_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hash_tensor_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hash_tensor_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hash_tensor_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_heaviside_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_heaviside_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_heaviside_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_heaviside_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_heaviside_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_heaviside_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_heaviside_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_heaviside_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_heaviside_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_heaviside_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_histc_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_histc_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_histc_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_histc_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_histogram_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_histogram_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_histogramdd_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_histogramdd_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hsplit_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hsplit_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hsplit_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hsplit_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hsplit_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hsplit_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hsplit_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hsplit_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hsplit_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hsplit_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hsplit_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hsplit_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hsplit_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hstack_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hstack_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hstack_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hstack_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hstack_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hstack_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hstack_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hstack_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hstack_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hstack_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hstack_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hstack_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hstack_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hypot_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hypot_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hypot_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hypot_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_i0_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_i0_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_i0_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_i0_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_i0_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_i0_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_i0_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_i0_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_i0_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_i0_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_igamma_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_igamma_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_igamma_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_igamma_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_igammac_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_igammac_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_igammac_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_igammac_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_imag_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_imag_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_imag_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_add_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_add_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_add_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_add_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_add_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_add_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_add_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_add_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_add_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_add_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_add_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_add_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_add_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_copy_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_copy_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_copy_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_copy_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_copy_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_copy_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_copy_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_copy_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_copy_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_copy_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_copy_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_copy_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_copy_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_fill_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_fill_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_fill_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_fill_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_fill_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_fill_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_fill_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_fill_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_fill_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_fill_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_fill_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_fill_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_fill_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_put_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_put_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_put_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_put_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_put_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_put_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_put_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_put_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_put_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_put_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_put_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_put_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_put_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_amax_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_amax_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_amax_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_amax_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_amax_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_amax_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_amax_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_amax_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_amax_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_amin_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_amin_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_amin_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_amin_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_amin_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_amin_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_amin_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_amin_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_amin_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_mean_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_mean_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_mean_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_mean_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_mean_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_mean_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_mean_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_mean_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_mean_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_prod_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_prod_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_prod_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_prod_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_prod_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_prod_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_prod_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_prod_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_prod_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_select_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_select_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_select_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_select_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_select_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_select_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_select_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_select_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_select_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_select_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_select_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_select_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_select_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_inner_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_inner_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_inner_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_inner_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_inner_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_inner_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_inner_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_inner_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_inner_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_inner_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_inner_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_int_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_int_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_int_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_int_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_int_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_int_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_int_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_int_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_int_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_int_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_int_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_int_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isclose_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isclose_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isclose_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isclose_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isclose_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isclose_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isclose_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isclose_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isclose_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isclose_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isclose_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isclose_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isfinite_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isfinite_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isfinite_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isfinite_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isfinite_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isfinite_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isfinite_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isfinite_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isfinite_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isfinite_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isfinite_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isfinite_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isfinite_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isin_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isin_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isin_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isin_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isin_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isin_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isin_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isin_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isin_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isinf_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isinf_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isinf_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isinf_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isinf_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isinf_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isinf_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isinf_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isinf_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isinf_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isinf_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isinf_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isinf_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isnan_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isnan_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isnan_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isnan_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isnan_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isnan_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isnan_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isnan_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isnan_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isnan_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isnan_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isnan_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isneginf_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isneginf_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isneginf_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isneginf_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isneginf_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isneginf_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isneginf_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isneginf_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isneginf_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isneginf_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isposinf_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isposinf_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isposinf_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isposinf_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isposinf_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isposinf_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isposinf_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isposinf_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isposinf_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isposinf_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isreal_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isreal_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isreal_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isreal_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isreal_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isreal_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isreal_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isreal_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isreal_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isreal_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isreal_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isreal_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isreal_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_istft_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_istft_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_item_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_item_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_item_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_item_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_item_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_item_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_item_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_item_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_item_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_item_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_item_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_item_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_item_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_2inputs_2outputs_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_2inputs_2outputs_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_2inputs_2outputs_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_2inputs_2outputs_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_2inputs_2outputs_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_2inputs_2outputs_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_2inputs_2outputs_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_2inputs_2outputs_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_2inputs_2outputs_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_2inputs_2outputs_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_2inputs_2outputs_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_2inputs_2outputs_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_4inputs_with_extra_args_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_4inputs_with_extra_args_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_4inputs_with_extra_args_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_4inputs_with_extra_args_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_4inputs_with_extra_args_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_4inputs_with_extra_args_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_4inputs_with_extra_args_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_4inputs_with_extra_args_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_4inputs_with_extra_args_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_4inputs_with_extra_args_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_4inputs_with_extra_args_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_return_by_ref_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_return_by_ref_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_return_by_ref_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_return_by_ref_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_return_by_ref_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_return_by_ref_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_return_by_ref_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_return_by_ref_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_return_by_ref_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_return_by_ref_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_return_by_ref_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_return_by_ref_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_unary_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_unary_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_unary_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_unary_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_unary_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_unary_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_unary_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_unary_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_unary_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_unary_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_unary_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_unary_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kron_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kron_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kron_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kron_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kron_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kron_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kron_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kron_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kron_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kron_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kron_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kron_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kthvalue_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kthvalue_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kthvalue_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kthvalue_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kthvalue_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kthvalue_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kthvalue_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kthvalue_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kthvalue_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lcm_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lcm_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lcm_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lcm_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lcm_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ldexp_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ldexp_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ldexp_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ldexp_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ldexp_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ldexp_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ldexp_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ldexp_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ldexp_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ldexp_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ldexp_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ldexp_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_le_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_le_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_le_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_le_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_le_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_le_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_le_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_le_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_le_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_le_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lerp_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lerp_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lerp_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lerp_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lerp_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lerp_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lgamma_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lgamma_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lgamma_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lgamma_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lgamma_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lgamma_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lgamma_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lgamma_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lgamma_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lgamma_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cholesky_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cholesky_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cholesky_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cholesky_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cholesky_ex_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cholesky_ex_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cholesky_ex_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cholesky_ex_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cond_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cond_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cond_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cond_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cross_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cross_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cross_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cross_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cross_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cross_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cross_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cross_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cross_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cross_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cross_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_det_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_det_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_det_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_det_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_diagonal_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_diagonal_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_diagonal_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_diagonal_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_diagonal_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_diagonal_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_diagonal_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_diagonal_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_diagonal_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_diagonal_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_diagonal_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_diagonal_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_diagonal_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_eig_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_eig_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_eig_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_eig_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_eigh_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_eigh_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_eigh_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_eigh_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_eigvals_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_eigvals_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_eigvals_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_eigvals_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_eigvalsh_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_eigvalsh_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_eigvalsh_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_eigvalsh_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_householder_product_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_householder_product_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_householder_product_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_householder_product_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_inv_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_inv_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_inv_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_inv_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_inv_ex_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_inv_ex_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_inv_ex_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_inv_ex_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_ldl_factor_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_ldl_factor_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_ldl_factor_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_ldl_factor_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_ldl_factor_ex_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_ldl_factor_ex_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_ldl_factor_ex_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_ldl_factor_ex_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_ldl_solve_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_ldl_solve_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_ldl_solve_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_ldl_solve_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lstsq_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lstsq_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lstsq_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lstsq_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lstsq_grad_oriented_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lstsq_grad_oriented_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lstsq_grad_oriented_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lstsq_grad_oriented_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lu_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lu_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lu_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lu_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lu_factor_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lu_factor_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lu_factor_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lu_factor_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lu_factor_ex_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lu_factor_ex_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lu_factor_ex_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lu_factor_ex_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lu_solve_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lu_solve_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lu_solve_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lu_solve_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_matrix_norm_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_matrix_norm_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_matrix_norm_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_matrix_norm_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_matrix_norm_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_matrix_norm_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_matrix_power_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_matrix_power_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_matrix_power_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_matrix_power_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_matrix_rank_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_matrix_rank_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_matrix_rank_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_matrix_rank_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_matrix_rank_hermitian_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_matrix_rank_hermitian_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_matrix_rank_hermitian_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_matrix_rank_hermitian_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_multi_dot_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_multi_dot_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_multi_dot_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_multi_dot_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_multi_dot_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_multi_dot_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_multi_dot_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_multi_dot_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_multi_dot_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_multi_dot_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_multi_dot_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_norm_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_norm_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_norm_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_norm_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_norm_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_norm_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_norm_subgradients_at_zero_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_norm_subgradients_at_zero_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_norm_subgradients_at_zero_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_norm_subgradients_at_zero_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_norm_subgradients_at_zero_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_norm_subgradients_at_zero_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_pinv_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_pinv_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_pinv_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_pinv_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_pinv_hermitian_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_pinv_hermitian_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_pinv_hermitian_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_pinv_hermitian_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_pinv_singular_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_pinv_singular_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_pinv_singular_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_pinv_singular_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_qr_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_qr_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_qr_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_qr_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_slogdet_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_slogdet_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_slogdet_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_slogdet_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_solve_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_solve_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_solve_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_solve_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_solve_ex_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_solve_ex_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_solve_ex_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_solve_ex_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_solve_triangular_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_solve_triangular_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_solve_triangular_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_solve_triangular_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_svd_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_svd_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_svd_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_svd_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_svdvals_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_svdvals_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_svdvals_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_svdvals_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_tensorinv_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_tensorinv_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_tensorinv_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_tensorinv_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_tensorsolve_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_tensorsolve_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_tensorsolve_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_tensorsolve_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vander_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vander_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vander_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vander_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vander_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vander_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vander_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vander_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vander_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vecdot_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vecdot_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vecdot_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vecdot_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vecdot_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vecdot_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vector_norm_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vector_norm_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vector_norm_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vector_norm_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vector_norm_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vector_norm_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_tensor_overload_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_tensor_overload_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_tensor_overload_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_tensor_overload_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_tensor_overload_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_tensor_overload_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_tensor_overload_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_tensor_overload_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_tensor_overload_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_tensor_overload_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_tensor_overload_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log10_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log10_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log10_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log10_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log10_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log10_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log10_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log10_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log10_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log10_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log10_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log10_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log1p_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log1p_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log1p_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log1p_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log1p_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log1p_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log1p_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log1p_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log1p_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log1p_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log1p_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log1p_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log2_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log2_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log2_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log2_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log2_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log2_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log2_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log2_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log2_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log2_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log2_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log2_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_normal_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_normal_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_normal_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_normal_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_softmax_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_softmax_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_softmax_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_softmax_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_softmax_with_dtype_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_softmax_with_dtype_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_softmax_with_dtype_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_softmax_with_dtype_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_softmax_with_dtype_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_softmax_with_dtype_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_softmax_with_dtype_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_softmax_with_dtype_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_softmax_with_dtype_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_softmax_with_dtype_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_softmax_with_dtype_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_softmax_with_dtype_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_softmax_with_dtype_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logaddexp2_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logaddexp2_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logaddexp2_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logaddexp2_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logaddexp_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logaddexp_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logaddexp_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logaddexp_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logaddexp_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logaddexp_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logcumsumexp_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logcumsumexp_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logcumsumexp_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logcumsumexp_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logcumsumexp_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logcumsumexp_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logdet_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logdet_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logdet_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logdet_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_and_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_and_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_and_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_and_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_and_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_and_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_and_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_and_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_and_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_and_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_and_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_and_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_not_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_not_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_not_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_not_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_not_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_not_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_not_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_not_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_not_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_not_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_not_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_not_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_or_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_or_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_or_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_or_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_or_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_or_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_or_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_or_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_or_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_or_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_or_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_or_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_xor_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_xor_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_xor_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_xor_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_xor_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_xor_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_xor_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_xor_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_xor_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_xor_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_xor_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_xor_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logit_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logit_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logit_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logit_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logit_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logit_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logit_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logit_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logit_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logit_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_tensor_overload_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_tensor_overload_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_tensor_overload_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_tensor_overload_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_tensor_overload_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_tensor_overload_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_tensor_overload_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_tensor_overload_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_tensor_overload_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_tensor_overload_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_tensor_overload_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logsumexp_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logsumexp_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logsumexp_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logsumexp_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logsumexp_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logsumexp_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logsumexp_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logsumexp_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logsumexp_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logsumexp_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logsumexp_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logsumexp_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_long_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_long_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_long_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_long_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_long_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_long_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_long_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_long_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_long_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_long_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_long_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_long_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_long_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lt_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lt_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lt_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lt_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lt_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lt_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lt_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lt_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lt_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lt_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lu_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lu_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lu_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lu_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lu_solve_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lu_solve_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lu_solve_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lu_solve_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lu_unpack_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lu_unpack_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lu_unpack_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lu_unpack_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mH_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mH_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mH_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mH_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mH_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mH_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mH_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mH_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mH_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mH_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mH_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mH_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mH_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mT_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mT_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mT_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mT_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mT_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mT_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mT_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mT_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mT_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mT_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mT_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mT_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mT_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_amax_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_amax_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_amax_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_amax_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_amax_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_amax_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_amax_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_amax_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_amax_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_amin_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_amin_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_amin_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_amin_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_amin_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_amin_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_amin_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_amin_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_amin_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_argmax_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_argmax_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_argmax_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_argmax_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_argmax_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_argmax_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_argmax_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_argmax_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_argmax_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_argmin_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_argmin_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_argmin_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_argmin_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_argmin_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_argmin_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_argmin_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_argmin_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_argmin_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumprod_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumprod_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumprod_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumprod_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumprod_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumprod_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumprod_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumprod_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumprod_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumprod_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumprod_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumsum_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumsum_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumsum_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumsum_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumsum_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumsum_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumsum_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumsum_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumsum_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumsum_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumsum_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_fill_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_fill_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_fill_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_fill_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_fill_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_fill_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_fill_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_fill_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_fill_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_fill_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_fill_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_fill_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_fill_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_log_softmax_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_log_softmax_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_log_softmax_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_log_softmax_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_logaddexp_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_logaddexp_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_logaddexp_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_logaddexp_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_logsumexp_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_logsumexp_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_logsumexp_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_logsumexp_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_logsumexp_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_logsumexp_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_logsumexp_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_logsumexp_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_logsumexp_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_logsumexp_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_logsumexp_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_mean_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_mean_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_mean_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_mean_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_mean_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_mean_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_median_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_median_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_median_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_median_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_norm_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_norm_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_norm_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_norm_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_normalize_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_normalize_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_normalize_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_normalize_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_normalize_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_normalize_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_prod_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_prod_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_prod_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_prod_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_prod_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_prod_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_prod_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_prod_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_prod_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_prod_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_prod_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_prod_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_scatter_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_scatter_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_scatter_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_scatter_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_scatter_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_scatter_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_scatter_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_scatter_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_scatter_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_scatter_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_scatter_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_scatter_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_select_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_select_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_select_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_select_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_select_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_select_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_select_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_select_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_select_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_select_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_select_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_select_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_softmax_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_softmax_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_softmax_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_softmax_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_softmin_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_softmin_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_softmin_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_softmin_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_std_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_std_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_std_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_std_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_std_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_std_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_std_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_std_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_std_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_std_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_std_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_sum_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_sum_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_sum_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_sum_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_sum_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_sum_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_sum_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_sum_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_sum_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_sum_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_sum_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_sum_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_var_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_var_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_var_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_var_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_var_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_var_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_var_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_var_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_var_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_var_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_var_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_matmul_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_matmul_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_matmul_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_matmul_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_matmul_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_matmul_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_matmul_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_matmul_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_matmul_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_matmul_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_matmul_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_matrix_exp_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_matrix_exp_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_matrix_exp_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_matrix_exp_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_matrix_exp_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_matrix_exp_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_binary_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_binary_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_binary_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_binary_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_binary_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_binary_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_binary_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_binary_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_binary_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_binary_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_pool2d_with_indices_backward_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_pool2d_with_indices_backward_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_pool2d_with_indices_backward_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_pool2d_with_indices_backward_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_reduction_no_dim_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_reduction_no_dim_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_reduction_no_dim_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_reduction_no_dim_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_reduction_no_dim_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_reduction_no_dim_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_reduction_no_dim_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_reduction_no_dim_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_reduction_no_dim_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_reduction_no_dim_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_reduction_with_dim_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_reduction_with_dim_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_reduction_with_dim_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_reduction_with_dim_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_reduction_with_dim_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_reduction_with_dim_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_reduction_with_dim_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_reduction_with_dim_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_reduction_with_dim_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_reduction_with_dim_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_maximum_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_maximum_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_maximum_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_maximum_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_maximum_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_maximum_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_maximum_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_maximum_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_maximum_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_maximum_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mean_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mean_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mean_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mean_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mean_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mean_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_median_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_median_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_median_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_median_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_median_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_median_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_median_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_median_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_median_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_list_of_tensors_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_list_of_tensors_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_list_of_tensors_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_list_of_tensors_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_list_of_tensors_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_list_of_tensors_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_list_of_tensors_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_list_of_tensors_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_list_of_tensors_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_list_of_tensors_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_list_of_tensors_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_list_of_tensors_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_variadic_tensors_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_variadic_tensors_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_variadic_tensors_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_variadic_tensors_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_variadic_tensors_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_variadic_tensors_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_variadic_tensors_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_variadic_tensors_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_variadic_tensors_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_variadic_tensors_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_variadic_tensors_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_variadic_tensors_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_binary_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_binary_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_binary_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_binary_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_binary_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_binary_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_binary_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_binary_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_binary_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_binary_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_reduction_no_dim_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_reduction_no_dim_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_reduction_no_dim_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_reduction_no_dim_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_reduction_no_dim_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_reduction_no_dim_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_reduction_no_dim_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_reduction_no_dim_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_reduction_no_dim_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_reduction_no_dim_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_reduction_with_dim_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_reduction_with_dim_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_reduction_with_dim_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_reduction_with_dim_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_reduction_with_dim_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_reduction_with_dim_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_reduction_with_dim_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_reduction_with_dim_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_reduction_with_dim_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_reduction_with_dim_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_minimum_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_minimum_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_minimum_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_minimum_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_minimum_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_minimum_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_minimum_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_minimum_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_minimum_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_minimum_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mm_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mm_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mm_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mm_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mm_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mm_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mm_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mm_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mm_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mm_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mm_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mode_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mode_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mode_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mode_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mode_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mode_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mode_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mode_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mode_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mode_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_movedim_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_movedim_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_movedim_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_movedim_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_movedim_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_movedim_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_movedim_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_movedim_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_movedim_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_movedim_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_movedim_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_movedim_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_movedim_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_msort_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_msort_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_msort_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_msort_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_msort_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_msort_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_msort_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_msort_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_msort_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_msort_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mul_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mul_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mul_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mul_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mul_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mul_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mul_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mul_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mul_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mul_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mul_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mul_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mul_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_multinomial_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_multinomial_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_multinomial_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_multinomial_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mv_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mv_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mv_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mv_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mv_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mv_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mv_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mv_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mv_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mv_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mv_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_1_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_1_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_1_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_1_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_1_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_1_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_1_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_3_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_3_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_3_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_3_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_3_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_3_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_3_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_5_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_5_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_5_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_5_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_5_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_5_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_5_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nan_to_num_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nan_to_num_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nan_to_num_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nan_to_num_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nan_to_num_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nan_to_num_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nan_to_num_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nan_to_num_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nan_to_num_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nan_to_num_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nanmean_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nanmean_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nanmean_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nanmean_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nanmedian_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nanmedian_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nanmedian_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nanmedian_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nanmedian_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nanmedian_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nanmedian_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nanmedian_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nanmedian_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nanquantile_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nanquantile_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nansum_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nansum_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nansum_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nansum_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nansum_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nansum_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nansum_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nansum_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nansum_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nansum_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_copy_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_copy_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_copy_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_copy_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_copy_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_copy_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_copy_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_copy_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_copy_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_copy_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_copy_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_copy_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_copy_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_native_batch_norm_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_native_batch_norm_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_native_batch_norm_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_native_batch_norm_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_native_dropout_backward_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_native_dropout_backward_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_native_dropout_backward_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_native_dropout_backward_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_native_dropout_backward_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_native_dropout_backward_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_native_dropout_backward_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_native_dropout_backward_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_native_dropout_backward_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_native_dropout_backward_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_native_layer_norm_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_native_layer_norm_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_native_layer_norm_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_native_layer_norm_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ne_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ne_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ne_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ne_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ne_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ne_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ne_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ne_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ne_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ne_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ne_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ne_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_neg_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_neg_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_neg_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_neg_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_neg_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_neg_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_neg_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_neg_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_neg_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_neg_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_neg_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_neg_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_strided_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_strided_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_strided_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_strided_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_strided_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_strided_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_strided_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_strided_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_strided_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_strided_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_strided_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_strided_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_strided_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_full_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_full_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_full_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_full_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_full_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_full_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_full_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_full_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_full_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_full_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_full_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_full_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_full_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_ones_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_ones_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_ones_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_ones_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_ones_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_ones_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_ones_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_ones_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_ones_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_ones_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_ones_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_ones_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_ones_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_zeros_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_zeros_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_zeros_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_zeros_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_zeros_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_zeros_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_zeros_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_zeros_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_zeros_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_zeros_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_zeros_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_zeros_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_zeros_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nextafter_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nextafter_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nextafter_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nextafter_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_avg_pool1d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_avg_pool1d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_avg_pool2d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_avg_pool2d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_avg_pool3d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_avg_pool3d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_max_pool1d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_max_pool1d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_max_pool2d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_max_pool2d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_max_pool3d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_max_pool3d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_alpha_dropout_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_alpha_dropout_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_alpha_dropout_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_alpha_dropout_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_avg_pool1d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_avg_pool1d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_avg_pool1d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_avg_pool1d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_avg_pool1d_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_avg_pool2d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_avg_pool2d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_avg_pool2d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_avg_pool2d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_avg_pool2d_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_avg_pool3d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_avg_pool3d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_avg_pool3d_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_batch_norm_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_batch_norm_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_batch_norm_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_batch_norm_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_bilinear_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_bilinear_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_bilinear_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_bilinear_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_bilinear_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_bilinear_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_bilinear_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_bilinear_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_bilinear_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_binary_cross_entropy_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_binary_cross_entropy_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_binary_cross_entropy_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_binary_cross_entropy_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_binary_cross_entropy_with_logits_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_binary_cross_entropy_with_logits_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_celu_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_celu_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_celu_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_celu_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_channel_shuffle_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_channel_shuffle_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_channel_shuffle_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_channel_shuffle_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_channel_shuffle_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_channel_shuffle_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_channel_shuffle_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_channel_shuffle_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_channel_shuffle_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_channel_shuffle_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_channel_shuffle_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_channel_shuffle_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv1d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv1d_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv1d_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv1d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv1d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv1d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv1d_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv2d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv2d_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv2d_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv2d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv2d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv2d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv2d_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv3d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv3d_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv3d_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv3d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv3d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv3d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv3d_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose1d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose1d_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose1d_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose1d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose1d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose1d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose1d_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose2d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose2d_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose2d_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose2d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose2d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose2d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose2d_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose3d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose3d_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose3d_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose3d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose3d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose3d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose3d_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_cosine_embedding_loss_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_cosine_embedding_loss_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_cosine_embedding_loss_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_cosine_embedding_loss_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_cosine_embedding_loss_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_cosine_embedding_loss_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_cosine_embedding_loss_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_cosine_embedding_loss_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_cosine_embedding_loss_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_cosine_embedding_loss_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_cosine_similarity_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_cosine_similarity_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_cosine_similarity_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_cosine_similarity_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_cross_entropy_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_cross_entropy_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_cross_entropy_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_cross_entropy_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_ctc_loss_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_ctc_loss_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_dropout2d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_dropout2d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_dropout2d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_dropout2d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_dropout3d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_dropout3d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_dropout3d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_dropout3d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_dropout_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_dropout_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_dropout_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_dropout_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_elu_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_elu_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_elu_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_elu_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_embedding_bag_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_embedding_bag_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_embedding_bag_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_embedding_bag_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_embedding_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_embedding_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_embedding_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_embedding_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_feature_alpha_dropout_with_train_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_feature_alpha_dropout_with_train_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_feature_alpha_dropout_with_train_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_feature_alpha_dropout_without_train_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_feature_alpha_dropout_without_train_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_feature_alpha_dropout_without_train_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_feature_alpha_dropout_without_train_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_feature_alpha_dropout_without_train_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_feature_alpha_dropout_without_train_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_feature_alpha_dropout_without_train_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_feature_alpha_dropout_without_train_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_feature_alpha_dropout_without_train_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_feature_alpha_dropout_without_train_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_fractional_max_pool2d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_fractional_max_pool2d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_fractional_max_pool2d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_fractional_max_pool2d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_fractional_max_pool3d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_fractional_max_pool3d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_fractional_max_pool3d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_fractional_max_pool3d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_gaussian_nll_loss_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_gaussian_nll_loss_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_gaussian_nll_loss_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_gaussian_nll_loss_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_gelu_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_gelu_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_gelu_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_gelu_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_glu_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_glu_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_glu_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_glu_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_grid_sample_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_grid_sample_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_grid_sample_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_grid_sample_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_group_norm_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_group_norm_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_group_norm_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_group_norm_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hardshrink_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hardshrink_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hardshrink_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hardshrink_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hardsigmoid_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hardsigmoid_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hardsigmoid_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hardsigmoid_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hardswish_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hardswish_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hardswish_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hardswish_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hardtanh_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hardtanh_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hardtanh_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hardtanh_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hardtanh_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hardtanh_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hardtanh_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hardtanh_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hinge_embedding_loss_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hinge_embedding_loss_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hinge_embedding_loss_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hinge_embedding_loss_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_huber_loss_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_huber_loss_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_huber_loss_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_huber_loss_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_instance_norm_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_instance_norm_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_instance_norm_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_instance_norm_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_area_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_area_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_area_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_area_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_bicubic_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_bicubic_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_bicubic_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_bicubic_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_bicubic_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_bilinear_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_bilinear_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_bilinear_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_bilinear_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_bilinear_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_linear_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_linear_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_linear_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_linear_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_nearest-exact_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_nearest-exact_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_nearest-exact_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_nearest_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_nearest_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_nearest_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_nearest_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_nearest_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_trilinear_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_trilinear_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_trilinear_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_trilinear_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_kl_div_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_kl_div_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_kl_div_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_kl_div_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_l1_loss_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_l1_loss_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_l1_loss_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_l1_loss_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_l1_loss_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_l1_loss_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_layer_norm_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_layer_norm_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_layer_norm_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_layer_norm_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_leaky_relu_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_leaky_relu_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_leaky_relu_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_leaky_relu_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_linear_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_linear_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_linear_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_linear_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_linear_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_linear_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_linear_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_linear_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_linear_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_linear_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_linear_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_local_response_norm_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_local_response_norm_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_local_response_norm_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_local_response_norm_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_local_response_norm_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_logsigmoid_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_logsigmoid_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_logsigmoid_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_logsigmoid_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_margin_ranking_loss_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_margin_ranking_loss_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_margin_ranking_loss_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_margin_ranking_loss_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_margin_ranking_loss_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_margin_ranking_loss_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_margin_ranking_loss_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_margin_ranking_loss_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_margin_ranking_loss_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool1d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool1d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool1d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool1d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool2d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool2d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool2d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool2d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool2d_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool2d_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool2d_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool2d_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool2d_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool3d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool3d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool3d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool3d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool3d_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool3d_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool3d_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool3d_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool3d_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool1d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool1d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool1d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool1d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool1d_grad_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool1d_grad_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool1d_grad_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool1d_grad_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool2d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool2d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool2d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool2d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool2d_grad_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool2d_grad_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool2d_grad_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool2d_grad_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool3d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool3d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool3d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool3d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool3d_grad_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool3d_grad_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool3d_grad_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool3d_grad_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_mish_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_mish_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_mish_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_mish_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_mse_loss_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_mse_loss_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_mse_loss_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_mse_loss_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_multi_head_attention_forward_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_multi_head_attention_forward_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_multi_head_attention_forward_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_multi_head_attention_forward_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_multi_margin_loss_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_multi_margin_loss_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_multilabel_margin_loss_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_multilabel_margin_loss_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_multilabel_soft_margin_loss_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_multilabel_soft_margin_loss_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_nll_loss_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_nll_loss_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_nll_loss_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_nll_loss_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_normalize_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_normalize_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_normalize_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_normalize_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_normalize_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_normalize_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_one_hot_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_circular_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_circular_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_circular_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_circular_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_circular_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_circular_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_circular_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_circular_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_circular_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_circular_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_circular_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_circular_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_constant_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_constant_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_constant_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_constant_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_constant_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_constant_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_constant_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_constant_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_constant_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_constant_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_constant_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_constant_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_reflect_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_reflect_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_reflect_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_reflect_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_reflect_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_reflect_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_reflect_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_reflect_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_reflect_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_reflect_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_reflect_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_negative_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_negative_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_negative_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_negative_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_negative_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_negative_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_negative_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_negative_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_negative_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_negative_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_negative_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pairwise_distance_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pairwise_distance_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pairwise_distance_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pairwise_distance_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pairwise_distance_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pairwise_distance_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pairwise_distance_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pairwise_distance_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pairwise_distance_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pairwise_distance_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pairwise_distance_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pdist_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pdist_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_shuffle_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_shuffle_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_shuffle_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_shuffle_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_shuffle_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_shuffle_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_shuffle_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_shuffle_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_shuffle_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_shuffle_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_shuffle_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_shuffle_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_unshuffle_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_unshuffle_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_unshuffle_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_unshuffle_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_unshuffle_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_unshuffle_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_unshuffle_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_unshuffle_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_unshuffle_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_unshuffle_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_unshuffle_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_unshuffle_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_poisson_nll_loss_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_poisson_nll_loss_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_poisson_nll_loss_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_poisson_nll_loss_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_poisson_nll_loss_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_poisson_nll_loss_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_poisson_nll_loss_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_poisson_nll_loss_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_poisson_nll_loss_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_prelu_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_prelu_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_prelu_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_prelu_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_relu6_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_relu6_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_relu6_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_relu6_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_relu6_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_relu6_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_relu6_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_relu6_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_relu6_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_relu_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_relu_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_relu_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_relu_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_relu_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_relu_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_relu_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_relu_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_relu_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_rms_norm_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_rms_norm_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_rms_norm_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_rms_norm_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_rms_norm_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_rms_norm_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_rrelu_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_rrelu_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_rrelu_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_scaled_dot_product_attention_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_scaled_dot_product_attention_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_selu_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_selu_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_selu_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_selu_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_silu_complex_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_silu_complex_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_silu_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_silu_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_silu_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_silu_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_smooth_l1_loss_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_smooth_l1_loss_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_smooth_l1_loss_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_smooth_l1_loss_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_soft_margin_loss_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_soft_margin_loss_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_soft_margin_loss_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_soft_margin_loss_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softmin_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softmin_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softmin_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softmin_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softmin_with_dtype_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softmin_with_dtype_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softmin_with_dtype_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softmin_with_dtype_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softmin_with_dtype_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softmin_with_dtype_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softmin_with_dtype_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softmin_with_dtype_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softmin_with_dtype_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softmin_with_dtype_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softmin_with_dtype_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softplus_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softplus_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softplus_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softplus_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softshrink_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softshrink_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softshrink_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softshrink_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softsign_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softsign_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softsign_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softsign_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softsign_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softsign_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softsign_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softsign_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softsign_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softsign_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softsign_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_tanhshrink_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_tanhshrink_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_tanhshrink_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_tanhshrink_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_tanhshrink_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_tanhshrink_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_tanhshrink_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_tanhshrink_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_tanhshrink_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_tanhshrink_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_tanhshrink_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_threshold_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_threshold_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_threshold_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_threshold_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_threshold_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_threshold_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_threshold_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_threshold_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_threshold_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_loss_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_loss_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_loss_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_loss_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_loss_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_loss_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_loss_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_loss_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_loss_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_loss_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_loss_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_with_distance_loss_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_with_distance_loss_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_with_distance_loss_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_with_distance_loss_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_with_distance_loss_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_with_distance_loss_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_with_distance_loss_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_with_distance_loss_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_with_distance_loss_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_unfold_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_unfold_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_unfold_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_unfold_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_unfold_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_unfold_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_unfold_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_upsample_bilinear_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_upsample_bilinear_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_upsample_bilinear_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_upsample_bilinear_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_upsample_bilinear_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_upsample_nearest_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_upsample_nearest_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_upsample_nearest_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_upsample_nearest_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_upsample_nearest_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_static_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_static_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_static_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_static_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_static_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_static_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_static_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_static_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_static_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_static_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_static_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_static_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_static_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_fro_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_fro_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_fro_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_fro_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_fro_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_fro_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_inf_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_inf_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_inf_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_inf_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_inf_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_inf_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_inf_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_nuc_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_nuc_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_nuc_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_nuc_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_normal_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_normal_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_normal_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_normal_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_normal_in_place_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_normal_in_place_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_normal_in_place_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_normal_in_place_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_normal_in_place_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_normal_in_place_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_normal_number_mean_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_normal_number_mean_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_normal_number_mean_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_normal_number_mean_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_like_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_like_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_like_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_like_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_like_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_like_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_like_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_like_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_like_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_like_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_like_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_like_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_like_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ormqr_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ormqr_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ormqr_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ormqr_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_outer_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_outer_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_outer_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_outer_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_outer_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_outer_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_outer_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_outer_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_outer_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_outer_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_outer_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_outer_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_pca_lowrank_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_pca_lowrank_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_pca_lowrank_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_pca_lowrank_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_copy_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_copy_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_copy_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_copy_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_copy_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_copy_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_copy_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_copy_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_copy_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_copy_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_copy_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_copy_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_copy_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_pinverse_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_pinverse_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_pinverse_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_pinverse_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polar_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polar_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_0_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_0_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_0_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_0_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_0_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_0_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_0_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_0_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_0_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_0_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_1_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_1_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_1_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_1_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_1_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_1_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_1_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_1_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_1_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_2_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_2_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_2_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_2_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_2_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_2_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_2_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_2_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_2_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_3_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_3_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_3_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_3_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_3_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_3_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_3_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_3_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_3_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_4_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_4_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_4_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_4_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_4_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_4_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_4_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_4_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_4_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_positive_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_positive_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_positive_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_positive_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_positive_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_positive_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_positive_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_positive_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_positive_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_positive_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_positive_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_positive_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_pow_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_pow_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_pow_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_pow_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_pow_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_pow_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_pow_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_pow_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_pow_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_pow_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_pow_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_prod_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_prod_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_prod_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_prod_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_prod_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_prod_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_prod_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_prod_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_prod_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_prod_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_prod_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_prod_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_put_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_put_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_put_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_put_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_put_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_put_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_put_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_put_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_put_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_put_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_put_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_put_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_qr_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_qr_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_qr_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_qr_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_quantile_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_quantile_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rad2deg_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rad2deg_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rad2deg_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rad2deg_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rad2deg_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rad2deg_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rad2deg_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rad2deg_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rad2deg_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rad2deg_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rand_like_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rand_like_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rand_like_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rand_like_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rand_like_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rand_like_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rand_like_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randint_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randint_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randint_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randint_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randint_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randint_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randint_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randint_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randint_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randint_like_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randint_like_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randint_like_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randint_like_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randint_like_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randint_like_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randint_like_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randint_like_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randint_like_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randn_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randn_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randn_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randn_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randn_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randn_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randn_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randn_like_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randn_like_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randn_like_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randn_like_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randn_like_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randn_like_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randn_like_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ravel_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ravel_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ravel_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ravel_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ravel_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ravel_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ravel_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ravel_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ravel_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ravel_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ravel_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ravel_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ravel_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_real_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_real_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_real_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_real_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_real_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_real_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_real_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_real_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_real_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_real_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_real_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_real_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_real_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reciprocal_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reciprocal_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reciprocal_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reciprocal_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reciprocal_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reciprocal_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reciprocal_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reciprocal_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reciprocal_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reciprocal_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reciprocal_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reciprocal_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_remainder_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_remainder_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_remainder_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_remainder_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_remainder_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_remainder_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_remainder_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_remainder_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_remainder_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_renorm_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_renorm_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_renorm_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_renorm_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_renorm_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_renorm_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_interleave_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_interleave_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_interleave_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_interleave_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_interleave_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_interleave_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_interleave_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_interleave_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_interleave_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_interleave_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_interleave_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_interleave_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_interleave_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_as_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_as_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_as_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_as_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_as_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_as_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_as_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_as_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_as_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_as_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_as_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_as_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_as_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize__cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize__cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize__cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize__cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize__cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize__cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize__cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize__cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize__cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize__cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize__cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize__cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize_as__cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize_as__cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize_as__cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize_as__cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize_as__cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize_as__cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize_as__cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize_as__cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize_as__cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize_as__cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize_as__cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize_as__cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_conj_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_conj_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_conj_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_conj_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_conj_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_conj_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_conj_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_conj_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_conj_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_conj_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_conj_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_conj_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_neg_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_neg_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_neg_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_neg_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_neg_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_neg_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_neg_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_neg_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_neg_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_neg_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_neg_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_neg_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_neg_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_roll_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_roll_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_roll_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_roll_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_roll_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_roll_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_roll_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_roll_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_roll_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_roll_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_roll_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_roll_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_roll_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rot90_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rot90_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rot90_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rot90_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rot90_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rot90_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rot90_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rot90_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rot90_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rot90_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rot90_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rot90_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_round_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_round_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_round_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_round_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_round_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_round_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_round_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_round_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_round_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_round_decimals_0_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_round_decimals_0_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_round_decimals_0_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_round_decimals_0_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_round_decimals_3_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_round_decimals_3_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_round_decimals_3_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_round_decimals_neg_3_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_round_decimals_neg_3_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_round_decimals_neg_3_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsqrt_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsqrt_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsqrt_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsqrt_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsqrt_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsqrt_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsqrt_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsqrt_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsqrt_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsqrt_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsqrt_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsqrt_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsub_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsub_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsub_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsub_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsub_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsub_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsub_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsub_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsub_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsub_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsub_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scalar_tensor_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scalar_tensor_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scalar_tensor_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scalar_tensor_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scalar_tensor_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scalar_tensor_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scalar_tensor_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scalar_tensor_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scalar_tensor_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scalar_tensor_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scalar_tensor_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scalar_tensor_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scalar_tensor_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_add_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_add_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_add_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_add_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_add_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_add_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_add_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_add_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_add_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_add_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_add_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_add_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_amax_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_amax_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_amax_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_amax_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_amax_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_amax_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_amax_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_amax_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_amax_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_amax_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_amin_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_amin_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_amin_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_amin_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_amin_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_amin_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_amin_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_amin_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_amin_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_amin_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_mean_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_mean_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_mean_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_mean_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_mean_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_mean_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_mean_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_mean_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_mean_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_prod_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_prod_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_prod_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_prod_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_prod_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_prod_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_prod_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_prod_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_prod_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_prod_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_sum_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_sum_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_sum_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_sum_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_sum_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_sum_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_sum_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_sum_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_sum_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_sum_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_searchsorted_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_searchsorted_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_searchsorted_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_searchsorted_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_searchsorted_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_searchsorted_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_searchsorted_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_searchsorted_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_searchsorted_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_scatter_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_scatter_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_scatter_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_scatter_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_scatter_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_scatter_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_scatter_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_scatter_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_scatter_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_scatter_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sgn_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sgn_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sgn_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sgn_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sgn_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sgn_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sgn_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sgn_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sgn_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sgn_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sgn_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sgn_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sgn_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_short_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_short_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_short_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_short_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_short_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_short_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_short_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_short_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_short_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_short_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_short_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_short_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sigmoid_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sigmoid_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sigmoid_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sigmoid_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sigmoid_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sigmoid_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sigmoid_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sigmoid_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sigmoid_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sigmoid_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sigmoid_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sigmoid_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sign_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sign_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sign_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sign_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sign_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sign_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sign_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sign_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sign_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sign_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_bartlett_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_bartlett_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_blackman_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_blackman_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_cosine_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_cosine_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_exponential_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_exponential_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_gaussian_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_gaussian_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_general_cosine_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_general_cosine_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_general_hamming_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_general_hamming_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_hamming_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_hamming_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_hann_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_hann_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_kaiser_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_kaiser_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_nuttall_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_nuttall_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signbit_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signbit_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signbit_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signbit_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signbit_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signbit_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signbit_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signbit_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signbit_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signbit_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sin_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sin_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sin_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sin_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sin_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sin_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sin_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sin_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sin_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sin_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sin_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sin_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinc_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinc_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinc_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinc_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinc_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinc_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinc_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinc_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinc_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinc_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinc_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinc_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinh_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinh_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinh_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinh_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinh_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinh_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinh_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinh_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinh_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinh_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinh_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinh_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_scatter_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_scatter_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_scatter_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_scatter_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_scatter_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_scatter_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_scatter_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_scatter_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_scatter_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_scatter_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_softmax_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_softmax_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_softmax_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_softmax_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_softmax_with_dtype_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_softmax_with_dtype_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_softmax_with_dtype_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_softmax_with_dtype_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_softmax_with_dtype_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_softmax_with_dtype_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_softmax_with_dtype_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_softmax_with_dtype_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_softmax_with_dtype_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_softmax_with_dtype_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_softmax_with_dtype_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_softmax_with_dtype_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sort_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sort_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sort_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sort_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sort_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sort_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sort_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sort_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sort_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sort_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sparse_mm_reduce_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sparse_mm_reduce_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sparse_mm_reduce_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sparse_mm_reduce_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sparse_sampled_addmm_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sparse_sampled_addmm_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sparse_sampled_addmm_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sparse_sampled_addmm_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_airy_ai_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_airy_ai_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_airy_ai_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_airy_ai_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_airy_ai_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_airy_ai_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_airy_ai_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_airy_ai_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_j0_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_j0_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_j0_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_j0_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_j0_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_j0_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_j0_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_j0_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_j1_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_j1_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_j1_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_j1_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_j1_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_j1_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_j1_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_j1_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_y0_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_y0_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_y0_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_y0_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_y0_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_y0_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_y0_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_y0_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_y1_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_y1_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_y1_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_y1_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_y1_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_y1_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_y1_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_y1_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_t_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_t_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_t_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_t_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_t_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_t_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_t_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_t_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_u_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_u_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_u_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_u_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_u_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_u_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_u_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_u_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_v_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_v_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_v_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_v_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_v_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_v_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_v_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_v_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_w_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_w_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_w_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_w_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_w_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_w_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_w_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_w_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_entr_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_entr_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_entr_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_entr_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_entr_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_entr_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_entr_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_entr_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_entr_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_entr_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_erfcx_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_erfcx_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_erfcx_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_erfcx_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_erfcx_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_erfcx_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_erfcx_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_erfcx_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_hermite_polynomial_h_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_hermite_polynomial_h_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_hermite_polynomial_h_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_hermite_polynomial_h_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_hermite_polynomial_h_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_hermite_polynomial_h_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_hermite_polynomial_h_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_hermite_polynomial_h_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_hermite_polynomial_he_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_hermite_polynomial_he_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_hermite_polynomial_he_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_hermite_polynomial_he_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_hermite_polynomial_he_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_hermite_polynomial_he_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_hermite_polynomial_he_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_hermite_polynomial_he_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i0e_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i0e_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i0e_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i0e_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i0e_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i0e_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i0e_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i0e_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i0e_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i0e_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i1_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i1_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i1_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i1_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i1_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i1_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i1_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i1_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i1_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i1_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i1e_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i1e_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i1e_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i1e_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i1e_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i1e_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i1e_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i1e_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i1e_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i1e_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_laguerre_polynomial_l_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_laguerre_polynomial_l_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_laguerre_polynomial_l_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_laguerre_polynomial_l_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_laguerre_polynomial_l_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_laguerre_polynomial_l_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_laguerre_polynomial_l_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_laguerre_polynomial_l_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_legendre_polynomial_p_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_legendre_polynomial_p_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_legendre_polynomial_p_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_legendre_polynomial_p_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_legendre_polynomial_p_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_legendre_polynomial_p_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_legendre_polynomial_p_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_legendre_polynomial_p_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_log_ndtr_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_log_ndtr_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_log_ndtr_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_log_ndtr_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_log_ndtr_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_log_ndtr_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_log_ndtr_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_log_ndtr_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_i0_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_i0_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_i0_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_i0_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_i0_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_i0_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_i0_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_i0_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_i1_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_i1_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_i1_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_i1_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_i1_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_i1_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_i1_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_i1_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_k0_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_k0_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_k0_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_k0_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_k0_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_k0_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_k0_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_k0_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_k1_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_k1_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_k1_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_k1_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_k1_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_k1_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_k1_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_k1_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_ndtr_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_ndtr_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_ndtr_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_ndtr_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_ndtr_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_ndtr_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_ndtr_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_ndtr_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_ndtr_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_ndtr_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_ndtri_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_ndtri_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_ndtri_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_ndtri_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_ndtri_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_ndtri_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_ndtri_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_ndtri_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_polygamma_special_polygamma_n_0_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_polygamma_special_polygamma_n_0_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_polygamma_special_polygamma_n_0_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_polygamma_special_polygamma_n_0_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_polygamma_special_polygamma_n_0_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_polygamma_special_polygamma_n_0_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_polygamma_special_polygamma_n_0_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_polygamma_special_polygamma_n_0_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_scaled_modified_bessel_k0_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_scaled_modified_bessel_k0_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_scaled_modified_bessel_k0_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_scaled_modified_bessel_k0_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_scaled_modified_bessel_k0_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_scaled_modified_bessel_k0_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_scaled_modified_bessel_k0_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_scaled_modified_bessel_k0_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_scaled_modified_bessel_k1_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_scaled_modified_bessel_k1_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_scaled_modified_bessel_k1_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_scaled_modified_bessel_k1_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_scaled_modified_bessel_k1_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_scaled_modified_bessel_k1_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_scaled_modified_bessel_k1_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_scaled_modified_bessel_k1_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_t_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_t_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_t_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_t_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_t_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_t_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_u_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_u_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_u_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_u_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_u_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_u_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_v_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_v_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_v_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_v_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_v_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_v_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_w_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_w_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_w_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_w_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_w_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_w_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_spherical_bessel_j0_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_spherical_bessel_j0_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_spherical_bessel_j0_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_spherical_bessel_j0_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_spherical_bessel_j0_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_spherical_bessel_j0_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_spherical_bessel_j0_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_spherical_bessel_j0_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_xlog1py_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_xlog1py_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_xlog1py_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_xlog1py_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_xlog1py_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_xlog1py_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_xlog1py_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_xlog1py_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_xlog1py_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_xlog1py_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_zeta_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_zeta_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_zeta_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_zeta_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_zeta_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_zeta_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_zeta_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_zeta_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_list_args_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_list_args_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_list_args_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_list_args_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_list_args_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_list_args_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_list_args_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_list_args_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_list_args_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_list_args_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_list_args_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_list_args_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_copy_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_copy_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_copy_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_copy_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_copy_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_copy_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_copy_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_copy_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_copy_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_copy_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_copy_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_copy_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_copy_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sqrt_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sqrt_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sqrt_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sqrt_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sqrt_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sqrt_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sqrt_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sqrt_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sqrt_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sqrt_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sqrt_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sqrt_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_square_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_square_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_square_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_square_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_square_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_square_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_square_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_square_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_square_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_square_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_square_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_square_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_copy_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_copy_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_copy_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_copy_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_copy_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_copy_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_copy_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_copy_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_copy_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_copy_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_copy_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_copy_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_copy_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_multiple_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_multiple_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_multiple_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_multiple_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_multiple_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_multiple_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_multiple_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_multiple_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_multiple_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_multiple_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_multiple_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_multiple_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_multiple_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_stack_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_stack_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_stack_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_stack_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_stack_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_stack_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_stack_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_stack_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_stack_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_stack_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_stack_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_stack_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_stack_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_mean_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_mean_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_mean_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_mean_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_mean_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_mean_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_mean_unbiased_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_mean_unbiased_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_mean_unbiased_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_mean_unbiased_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_mean_unbiased_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_mean_unbiased_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_unbiased_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_unbiased_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_unbiased_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_unbiased_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_unbiased_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_unbiased_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_stft_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_stft_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_stft_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_stft_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sub_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sub_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sub_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sub_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sub_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sub_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sub_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sub_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sub_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sub_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sub_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sub_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_to_size_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_to_size_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_to_size_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_to_size_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_to_size_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_to_size_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_to_size_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_to_size_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_to_size_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_to_size_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_to_size_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_to_size_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_svd_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_svd_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_svd_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_svd_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_svd_lowrank_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_svd_lowrank_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_svd_lowrank_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_svd_lowrank_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_copy_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_copy_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_copy_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_copy_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_copy_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_copy_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_copy_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_copy_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_copy_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_copy_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_copy_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_copy_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_along_dim_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_along_dim_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_along_dim_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_along_dim_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_along_dim_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_along_dim_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_along_dim_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_along_dim_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_along_dim_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_along_dim_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_along_dim_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_along_dim_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tan_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tan_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tan_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tan_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tan_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tan_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tan_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tan_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tan_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tan_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tan_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tan_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tanh_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tanh_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tanh_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tanh_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tanh_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tanh_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tanh_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tanh_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tanh_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tanh_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tanh_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tanh_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensor_split_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensor_split_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensor_split_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensor_split_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensor_split_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensor_split_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensor_split_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensor_split_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensor_split_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensor_split_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensor_split_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensor_split_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensordot_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensordot_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensordot_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensordot_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensordot_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensordot_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensordot_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensordot_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensordot_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensordot_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensordot_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tile_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tile_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tile_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tile_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tile_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tile_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tile_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tile_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tile_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tile_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tile_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tile_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_sparse_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_sparse_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_sparse_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_sparse_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_sparse_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_sparse_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_sparse_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_sparse_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_sparse_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_sparse_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_sparse_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_sparse_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_topk_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_topk_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_topk_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_topk_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_topk_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_topk_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_topk_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_topk_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_topk_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_torch__scaled_mm_cpu_float8_e4m3fn, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_torch__scaled_mm_cpu_float8_e4m3fnuz, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_torch__scaled_mm_cpu_float8_e5m2, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_torch__scaled_mm_cpu_float8_e5m2fnuz, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_torch_ops_aten__safe_softmax_default_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_torch_ops_aten__safe_softmax_default_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_torch_ops_aten__safe_softmax_default_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_torch_ops_aten__safe_softmax_default_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_torch_ops_aten__safe_softmax_default_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_torch_ops_aten__safe_softmax_default_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_torch_ops_aten__safe_softmax_default_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_torch_ops_aten__safe_softmax_default_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trace_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trace_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trace_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trace_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trace_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trace_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trace_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trace_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trace_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_copy_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_copy_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_copy_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_copy_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_copy_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_copy_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_copy_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_copy_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_copy_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_copy_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_copy_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_copy_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_copy_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapezoid_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapezoid_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapezoid_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapezoid_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapezoid_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapezoid_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapezoid_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapezoid_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapezoid_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapezoid_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapezoid_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapz_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapz_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapz_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapz_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapz_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapz_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapz_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapz_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapz_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapz_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapz_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_triangular_solve_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_triangular_solve_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_triangular_solve_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_triangular_solve_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tril_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tril_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tril_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tril_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tril_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tril_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tril_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tril_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tril_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tril_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tril_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tril_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tril_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tril_indices_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tril_indices_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_triu_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_triu_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_triu_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_triu_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_triu_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_triu_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_triu_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_triu_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_triu_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_triu_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_triu_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_triu_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_triu_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_triu_indices_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_triu_indices_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_true_divide_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_true_divide_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_true_divide_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_true_divide_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_true_divide_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_true_divide_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_true_divide_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_true_divide_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_true_divide_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_true_divide_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_true_divide_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_true_divide_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trunc_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trunc_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trunc_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trunc_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trunc_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trunc_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trunc_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trunc_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trunc_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_copy_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_copy_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_copy_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_copy_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_copy_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_copy_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_copy_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_copy_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_copy_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_copy_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_copy_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_copy_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_copy_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unflatten_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unflatten_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unflatten_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unflatten_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unflatten_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unflatten_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unflatten_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unflatten_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unflatten_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unflatten_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unflatten_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unflatten_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unflatten_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_copy_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_copy_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_copy_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_copy_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_copy_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_copy_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_copy_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_copy_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_copy_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_copy_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_copy_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_copy_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_copy_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_uniform_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_uniform_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_uniform_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_uniform_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_uniform_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_uniform_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_consecutive_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_consecutive_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_consecutive_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_consecutive_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_consecutive_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_consecutive_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_consecutive_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_consecutive_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_consecutive_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_consecutive_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_cpu_uint16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_cpu_uint32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_cpu_uint64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unravel_index_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unravel_index_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unravel_index_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unravel_index_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unravel_index_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_chunk_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_chunk_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_chunk_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_chunk_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_chunk_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_chunk_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_chunk_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_chunk_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_chunk_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_chunk_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_chunk_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_chunk_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_chunk_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_split_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_split_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_split_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_split_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_split_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_split_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_split_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_split_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_split_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_split_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_split_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_split_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_split_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_copy_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_copy_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_copy_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_copy_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_copy_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_copy_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_copy_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_copy_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_copy_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_copy_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_copy_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_copy_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_copy_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_mean_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_mean_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_mean_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_mean_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_mean_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_mean_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_mean_unbiased_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_mean_unbiased_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_mean_unbiased_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_mean_unbiased_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_mean_unbiased_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_mean_unbiased_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_unbiased_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_unbiased_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_unbiased_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_unbiased_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_unbiased_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_unbiased_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vdot_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vdot_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vdot_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vdot_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vdot_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vdot_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vdot_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vdot_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vdot_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vdot_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vdot_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_as_complex_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_as_complex_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_as_complex_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_as_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_as_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_as_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_as_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_as_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_as_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_as_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_as_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_as_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_as_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_as_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_as_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_as_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_as_real_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_as_real_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_copy_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_copy_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_copy_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_copy_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_copy_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_copy_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_copy_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_copy_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_copy_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_copy_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_copy_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_copy_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vsplit_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vsplit_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vsplit_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vsplit_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vsplit_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vsplit_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vsplit_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vsplit_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vsplit_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vsplit_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vsplit_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vsplit_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vsplit_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vstack_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vstack_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vstack_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vstack_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vstack_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vstack_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vstack_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vstack_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vstack_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vstack_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vstack_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vstack_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vstack_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_where_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_where_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_where_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_where_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_where_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_where_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_where_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_where_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_where_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_where_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_where_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_where_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_where_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_xlogy_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_xlogy_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_xlogy_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_xlogy_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_xlogy_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_xlogy_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_xlogy_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_xlogy_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_xlogy_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_xlogy_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zero__cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zero__cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zero__cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zero__cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zero__cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zero__cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zero__cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zero__cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zero__cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zero__cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zero__cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zero__cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_like_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_like_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_like_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_like_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_like_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_like_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_like_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_like_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_like_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_like_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_like_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_like_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_like_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_get_default_device_cpu, test/test_utils.py::TestDeviceUtilsCPU::test_get_default_device_more_cpu, test/test_utils.py::TestDeviceUtilsCPU::test_nn_module_cpu, test/test_utils.py::TestDeviceUtilsCPU::test_set_default_device_cpu, test/test_utils.py::TestCppExtensionUtils::test_cc_compiler_is_ok, test/test_utils.py::TestCppExtensionUtils::test_cpp_compiler_is_ok, test/test_utils.py::TestTraceback::test_basic, test/test_utils.py::TestTraceback::test_captured_traceback, test/test_utils.py::TestTraceback::test_captured_traceback_format_all, test/test_utils.py::TestTraceback::test_captured_traceback_format_all_cached, test/test_utils.py::TestTraceback::test_format_traceback_short, test/test_utils.py::TestTryImport::test_import_existing, test/test_utils.py::TestTryImport::test_import_imported, test/test_utils.py::TestTryImport::test_import_missing, test/test_utils.py::TestDeprecate::test_deprecated 2025-08-26T20:53:04.0765014Z 2025-08-26T20:53:04.0765228Z Running test_fx 1/1 ... [2025-08-26 20:53:03.677703] 2025-08-26T20:53:04.0765839Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:53:04.0766821Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_fx.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:53:03.677703] 2025-08-26T20:53:57.6013512Z 2025-08-26T20:53:57.6014579Z test_fx 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_fx_1.1_198291683e8381a7_.log 2025-08-26T20:53:57.6447090Z Running 1154 items in this shard: test/test_fx.py::TestCommonPass::test_correctness_CSEPass_MutationInput_cpu, test/test_fx.py::TestCommonPass::test_correctness_CSEPass_MutationMetadata_cpu, test/test_fx.py::TestCommonPass::test_correctness_CSEPass_MutationTorchTensorCall_cpu, test/test_fx.py::TestCommonPass::test_correctness_CSEPass_Mutation_cpu, test/test_fx.py::TestCommonPass::test_correctness_CSEPass_ReturnList_cpu, test/test_fx.py::TestCommonPass::test_correctness_CSEPass_TakeList_cpu, test/test_fx.py::TestCommonPass::test_correctness_factory_CSEPass_FactoryFunctionCall_cpu, test/test_fx.py::TestCommonPass::test_correctness_factory_CSEPass_MutationFactory_cpu, test/test_fx.py::TestCSEPass::test_banned_list, test/test_fx.py::TestCSEPass::test_empty, test/test_fx.py::TestCSEPass::test_immutable_list_multiple_entries, test/test_fx.py::TestCSEPass::test_immutable_list_type, test/test_fx.py::TestCSEPass::test_kwarg, test/test_fx.py::TestCSEPass::test_nested_immutable_list_type, test/test_fx.py::TestCSEPass::test_nochange, test/test_fx.py::TestCSEPass::test_rand_like, test/test_fx.py::TestCSEPass::test_rand_n, test/test_fx.py::TestCSEPass::test_random, test/test_fx.py::TestCSEPass::test_simple, test/test_fx.py::TestCSEPass::test_simple_2, test/test_fx.py::TestCSEPass::test_simple_multiple_same_ops, test/test_fx.py::TestCSEPass::test_two_args, test/test_fx.py::TestCSEPass::test_two_args_default, test/test_fx.py::TestDCE::test_dead_chain, test/test_fx.py::TestDCE::test_dead_getattr, test/test_fx.py::TestDCE::test_dead_placeholder, test/test_fx.py::TestDCE::test_dead_placeholder_with_user, test/test_fx.py::TestDCE::test_impure_custom, test/test_fx.py::TestDCE::test_impure_kwargs, test/test_fx.py::TestDCE::test_impure_nodes_args, test/test_fx.py::TestDCE::test_impure_random, test/test_fx.py::TestDCE::test_keep_collectives, test/test_fx.py::TestDCE::test_keep_collectives_no_overload, test/test_fx.py::TestDCE::test_keep_module_with_side_effects, test/test_fx.py::TestDCE::test_keep_setitem, test/test_fx.py::TestDCE::test_keep_torch_assert, test/test_fx.py::TestDCE::test_simple, test/test_fx.py::TestConstFold::test_check_inline_non_const, test/test_fx.py::TestConstFold::test_check_inline_non_const_mult_return, test/test_fx.py::TestConstFold::test_check_skip_folding_quant_dequant_pattern, test/test_fx.py::TestConstFold::test_const_fold_basic_one_attr_name_collision, test/test_fx.py::TestConstFold::test_const_fold_basic_one_attr_no_name_collision, test/test_fx.py::TestConstFold::test_const_fold_basic_placeholder_reordered, test/test_fx.py::TestConstFold::test_const_fold_basic_two_attr, test/test_fx.py::TestConstFold::test_const_fold_basic_two_attr_three_input, test/test_fx.py::TestConstFold::test_const_fold_has_inlined_call_module_node, test/test_fx.py::TestConstFold::test_const_fold_module_attr, test/test_fx.py::TestConstFold::test_const_fold_multi_const_folded_attrs, test/test_fx.py::TestConstFold::test_const_fold_noop, test/test_fx.py::TestConstFold::test_const_fold_submod_hierarchy, test/test_fx.py::TestConstFold::test_const_fold_tensor_meta, test/test_fx.py::TestConstFold::test_const_fold_unused_placeholder, test/test_fx.py::TestConstFold::test_dict_output, test/test_fx.py::TestConstFold::test_fold_module, test/test_fx.py::TestConstFold::test_retain_node_meta, test/test_fx.py::TestConstFold::test_three_outputs, test/test_fx.py::TestConstFold::test_two_outputs, test/test_fx.py::TestConstParamShapeInControlFlow::test_param_dim_const, test/test_fx.py::TestConstParamShapeInControlFlow::test_param_ndim_const, test/test_fx.py::TestConstParamShapeInControlFlow::test_param_nelement_const, test/test_fx.py::TestConstParamShapeInControlFlow::test_param_numel_const, test/test_fx.py::TestConstParamShapeInControlFlow::test_param_shape_const, test/test_fx.py::TestConstParamShapeInControlFlow::test_param_size_const, test/test_fx.py::AnnotationsTest::test_annotate, test/test_fx.py::AnnotationsTest::test_annotations, test/test_fx.py::AnnotationsTest::test_broadcasting1, test/test_fx.py::AnnotationsTest::test_broadcasting2, test/test_fx.py::AnnotationsTest::test_broadcasting3, test/test_fx.py::AnnotationsTest::test_consistency, test/test_fx.py::AnnotationsTest::test_precision, test/test_fx.py::TypeCheckerTest::test_flatten_fully_static, test/test_fx.py::TypeCheckerTest::test_resnet50, test/test_fx.py::TypeCheckerTest::test_symbolic_add_with_broadcast, test/test_fx.py::TypeCheckerTest::test_symbolic_add_with_broadcast_2, test/test_fx.py::TypeCheckerTest::test_type_check_add_false, test/test_fx.py::TypeCheckerTest::test_type_check_add_true, test/test_fx.py::TypeCheckerTest::test_type_check_add_with_broadcast, test/test_fx.py::TypeCheckerTest::test_type_check_add_with_scalar, test/test_fx.py::TypeCheckerTest::test_type_check_batch_norm_2D, test/test_fx.py::TypeCheckerTest::test_type_check_batch_norm_2D_broadcast, test/test_fx.py::TypeCheckerTest::test_type_check_batch_norm_2D_false, test/test_fx.py::TypeCheckerTest::test_type_check_batch_norm_symbolic, test/test_fx.py::TypeCheckerTest::test_type_check_conv2D, test/test_fx.py::TypeCheckerTest::test_type_check_conv2D_2, test/test_fx.py::TypeCheckerTest::test_type_check_conv2D_2_fully_static, test/test_fx.py::TypeCheckerTest::test_type_check_conv2D_maxpool2d_flatten, test/test_fx.py::TypeCheckerTest::test_type_check_conv2D_types, test/test_fx.py::TypeCheckerTest::test_type_check_flatten, test/test_fx.py::TypeCheckerTest::test_type_check_flatten3, test/test_fx.py::TypeCheckerTest::test_type_check_flatten_2, test/test_fx.py::TypeCheckerTest::test_type_check_reshape_dyn_false, test/test_fx.py::TypeCheckerTest::test_type_check_reshape_dyn_true, test/test_fx.py::TypeCheckerTest::test_type_check_reshape_dyn_true_param_false, test/test_fx.py::TypeCheckerTest::test_type_check_reshape_false, test/test_fx.py::TypeCheckerTest::test_type_check_reshape_true, test/test_fx.py::TypeCheckerTest::test_type_check_symbolic_inferenceconv2D_maxpool2d_flatten, test/test_fx.py::TypeCheckerTest::test_type_check_transpose_False, test/test_fx.py::TypeCheckerTest::test_type_check_transpose_true, test/test_fx.py::TypeCheckerTest::test_type_maxpool2d_fully_static, test/test_fx.py::TypeCheckerTest::test_type_typechecl_maxpool2d_3dinput, test/test_fx.py::TypeCheckerTest::test_typecheck_basicblock, test/test_fx.py::TestMatcher::test_matcher_with_name_node_map_function, test/test_fx.py::TestMatcher::test_matcher_with_name_node_map_module, test/test_fx.py::TestMatcher::test_split_to_graph_and_name_node_map, test/test_fx.py::TestMatcher::test_subgraph_matcher_ignore_literals, test/test_fx.py::TestMatcher::test_subgraph_matcher_with_attributes, test/test_fx.py::TestMatcher::test_subgraph_matcher_with_list, test/test_fx.py::TestMatcher::test_subgraph_matcher_with_list_bad, test/test_fx.py::TestMatcher::test_variatic_arg_matching, test/test_fx.py::TestPassManager::test_pass_manager, test/test_fx.py::TestPassManager::test_pass_manager_bad_checks, test/test_fx.py::TestPassManager::test_pass_manager_checks, test/test_fx.py::TestPassManager::test_pass_manager_error, test/test_fx.py::TestPassManager::test_this_before_that_pass_constraint, test/test_fx.py::TestPassManager::test_topological_sort, test/test_fx.py::TestSourceMatcher::test_legalize_slice, test/test_fx.py::TestSourceMatcher::test_module_partitioner_conv_relu_maxpool, test/test_fx.py::TestSourceMatcher::test_module_partitioner_conv_relu_maxpool_torch_fn_export_strict_False, test/test_fx.py::TestSourceMatcher::test_module_partitioner_conv_relu_maxpool_torch_fn_export_strict_True, test/test_fx.py::TestSourceMatcher::test_module_partitioner_functional_conv_relu_conv, test/test_fx.py::TestSourceMatcher::test_module_partitioner_functional_conv_relu_conv_torch_fn_export_strict_False, test/test_fx.py::TestSourceMatcher::test_module_partitioner_functional_conv_relu_conv_torch_fn_export_strict_True, test/test_fx.py::TestSourceMatcher::test_module_partitioner_functional_linear_relu_linear, test/test_fx.py::TestSourceMatcher::test_module_partitioner_functional_linear_relu_linear_torch_fn_export_strict_False, test/test_fx.py::TestSourceMatcher::test_module_partitioner_functional_linear_relu_linear_torch_fn_export_strict_True, test/test_fx.py::TestSourceMatcher::test_module_partitioner_linear_relu_linear, test/test_fx.py::TestSourceMatcher::test_module_partitioner_linear_relu_linear_torch_fn_export_strict_False, test/test_fx.py::TestSourceMatcher::test_module_partitioner_linear_relu_linear_torch_fn_export_strict_True, test/test_fx.py::TestSourceMatcher::test_module_partitioner_weight_tied_strict_False, test/test_fx.py::TestSourceMatcher::test_module_partitioner_weight_tied_strict_True, test/test_fx.py::TestSubgraphRewriter::test_matching_pattern_with_list_type_arg, test/test_fx.py::TestSubgraphRewriter::test_matching_variable_arguments, test/test_fx.py::TestSubgraphRewriter::test_replace_pattern_with_callback, test/test_fx.py::TestSubgraphRewriter::test_replace_pattern_with_filters, test/test_fx.py::TestSubgraphRewriter::test_replaced_nodes, test/test_fx.py::TestSubgraphRewriter::test_replacement_with_attrs, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_annotations_int, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_call_method, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_correct_output_replacement, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_graph_argument_order, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_internal_pattern_nodes_cannot_have_users_that_are_not_matched, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_local_revert, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_multiple_pattern_match, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_nodes_with_kwargs, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_pattern_is_entire_graph, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_pattern_output_pattern_node_can_have_users_that_are_not_matched, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_placeholder_matching, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_preserves_logic, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_replace_consecutive_submodules, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_replace_with_duplicated_outputs, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_replace_with_multiple_outputs, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_replaces_referenced_submodules, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_single_pattern_match, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_traced_as_callable, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_with_oneliner_pattern, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_with_overlapping_matches, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_with_trivial_replacement, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_with_unused_args, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_with_unused_results, test/test_fx.py::TestFX::test_all_input_nodes, test/test_fx.py::TestFX::test_annotation_with_future, test/test_fx.py::TestFX::test_annotations_empty_tuple, test/test_fx.py::TestFX::test_annotations_with_forward_references, test/test_fx.py::TestFX::test_annotations_with_no_forward_references, test/test_fx.py::TestFX::test_annotations_with_non_torch_reference_and_internal_forward_references, test/test_fx.py::TestFX::test_annotations_with_non_torch_reference_and_no_internal_forward_references, test/test_fx.py::TestFX::test_args_kwargs, test/test_fx.py::TestFX::test_args_kwargs_no_self, test/test_fx.py::TestFX::test_assert, test/test_fx.py::TestFX::test_ast_rewriter_reassigns_submodules, test/test_fx.py::TestFX::test_ast_rewriter_rewrites_assert, test/test_fx.py::TestFX::test_ast_rewriter_rewrites_assert_with_message, test/test_fx.py::TestFX::test_ast_rewriter_wrap, test/test_fx.py::TestFX::test_ast_rewriter_wrap_fn_directly, test/test_fx.py::TestFX::test_ast_rewriter_wrap_with_submodule, test/test_fx.py::TestFX::test_ast_rewriter_wrapped_via_decorator, test/test_fx.py::TestFX::test_ast_rewriter_wrapped_via_decorator_and_transformed, test/test_fx.py::TestFX::test_autowrap_functions, test/test_fx.py::TestFX::test_concrete_arg_none_assert, test/test_fx.py::TestFX::test_construct_root_dict, test/test_fx.py::TestFX::test_control_flow_tracing, test/test_fx.py::TestFX::test_copy_it, test/test_fx.py::TestFX::test_copy_no_remap, test/test_fx.py::TestFX::test_ctx_mgr, test/test_fx.py::TestFX::test_custom_codegen, test/test_fx.py::TestFX::test_custom_codegen_with_transformer, test/test_fx.py::TestFX::test_custom_import, test/test_fx.py::TestFX::test_custom_proxy_dynamic_value, test/test_fx.py::TestFX::test_custom_proxy_input_dependent_control_flow, test/test_fx.py::TestFX::test_custom_proxy_type, test/test_fx.py::TestFX::test_custom_proxy_type_literal, test/test_fx.py::TestFX::test_custom_traceback_not_raised_when_exception_source_is_submodule, test/test_fx.py::TestFX::test_custom_traceback_raised_when_exception_source_is_graphmodule, test/test_fx.py::TestFX::test_deepcopy_graph_with_tracer_cls, test/test_fx.py::TestFX::test_deepcopy_graphmodule, test/test_fx.py::TestFX::test_deepcopy_graphmodule_with_transform, test/test_fx.py::TestFX::test_deepcopy_no_recursion, test/test_fx.py::TestFX::test_deepcopy_recursion_depth, test/test_fx.py::TestFX::test_deepcopy_tracer, test/test_fx.py::TestFX::test_deepcopy_with_submods_params, test/test_fx.py::TestFX::test_delete_unused_submodules_leaf, test/test_fx.py::TestFX::test_delete_unused_values, test/test_fx.py::TestFX::test_dict, test/test_fx.py::TestFX::test_direct_param_use, test/test_fx.py::TestFX::test_disallow_override, test/test_fx.py::TestFX::test_ellipsis, test/test_fx.py::TestFX::test_empty_graph_codegen, test/test_fx.py::TestFX::test_enum, test/test_fx.py::TestFX::test_erase_node_error, test/test_fx.py::TestFX::test_example_shape_prop, test/test_fx.py::TestFX::test_find_uses, test/test_fx.py::TestFX::test_fn_type_annotation_empty, test/test_fx.py::TestFX::test_fn_type_annotations, test/test_fx.py::TestFX::test_fx_and_or, test/test_fx.py::TestFX::test_fx_create_arg, test/test_fx.py::TestFX::test_fx_shifts, test/test_fx.py::TestFX::test_fx_stateless, test/test_fx.py::TestFX::test_get_torch_func_signature, test/test_fx.py::TestFX::test_getitem, test/test_fx.py::TestFX::test_getitem_subproc, test/test_fx.py::TestFX::test_graph_edit_with_proxy, test/test_fx.py::TestFX::test_graph_fns, test/test_fx.py::TestFX::test_graph_module, test/test_fx.py::TestFX::test_graph_module_init_buffer_param_copied_dict_init, test/test_fx.py::TestFX::test_graph_module_init_buffer_param_copied_mod_init, test/test_fx.py::TestFX::test_graph_module_replicate_for_dp, test/test_fx.py::TestFX::test_graph_unique_names, test/test_fx.py::TestFX::test_graph_unique_names_manual, test/test_fx.py::TestFX::test_immutable_dict_pytree_ops, test/test_fx.py::TestFX::test_immutable_list_pytree_ops, test/test_fx.py::TestFX::test_imul_code_print, test/test_fx.py::TestFX::test_inf_nan, test/test_fx.py::TestFX::test_inf_nan_kwds, test/test_fx.py::TestFX::test_informative_co_filename, test/test_fx.py::TestFX::test_inline_graph, test/test_fx.py::TestFX::test_insert_arg, test/test_fx.py::TestFX::test_insertion_point, test/test_fx.py::TestFX::test_interpreter, test/test_fx.py::TestFX::test_interpreter_default_args, test/test_fx.py::TestFX::test_interpreter_gc_values, test/test_fx.py::TestFX::test_interpreter_noop_resnet18, test/test_fx.py::TestFX::test_interpreter_not_enough_args, test/test_fx.py::TestFX::test_interpreter_onthefly_swap, test/test_fx.py::TestFX::test_interpreter_other_graph, test/test_fx.py::TestFX::test_interpreter_partial_eval, test/test_fx.py::TestFX::test_interpreter_run_node_override, test/test_fx.py::TestFX::test_interpreter_star_args, test/test_fx.py::TestFX::test_interpreter_with_codegen, test/test_fx.py::TestFX::test_layout, test/test_fx.py::TestFX::test_leaf_module, test/test_fx.py::TestFX::test_lineno_map, test/test_fx.py::TestFX::test_matmul_tracing, test/test_fx.py::TestFX::test_metadata_on_ph, test/test_fx.py::TestFX::test_module_deepcopy_edit_nodes, test/test_fx.py::TestFX::test_move_before, test/test_fx.py::TestFX::test_multi_insert_point, test/test_fx.py::TestFX::test_multiple_default_args, test/test_fx.py::TestFX::test_named_tuple_inlined, test/test_fx.py::TestFX::test_namedtuple_return_qualname, test/test_fx.py::TestFX::test_namedtuple_return_trace, test/test_fx.py::TestFX::test_native_callable, test/test_fx.py::TestFX::test_nn_module_stack, test/test_fx.py::TestFX::test_no_mutation, test/test_fx.py::TestFX::test_node_tagging, test/test_fx.py::TestFX::test_nonetype_annotation, test/test_fx.py::TestFX::test_partial_trace, test/test_fx.py::TestFX::test_pickle_custom_import, test/test_fx.py::TestFX::test_pickle_graphmodule, test/test_fx.py::TestFX::test_pickle_nonetype_annotation, test/test_fx.py::TestFX::test_pickle_torch_custom_ops, test/test_fx.py::TestFX::test_prepend_self, test/test_fx.py::TestFX::test_pretty_print, test/test_fx.py::TestFX::test_pretty_print_graph, test/test_fx.py::TestFX::test_pretty_print_node, test/test_fx.py::TestFX::test_pretty_print_targets, test/test_fx.py::TestFX::test_print_graph, test/test_fx.py::TestFX::test_profiler_ranges_side_effect, test/test_fx.py::TestFX::test_proxy_deepcopy_with_tracer, test/test_fx.py::TestFX::test_proxy_deepcopy_without_tracer, test/test_fx.py::TestFX::test_pytree, test/test_fx.py::TestFX::test_pytree_concrete, test/test_fx.py::TestFX::test_reassign_args_kwargs_uses, test/test_fx.py::TestFX::test_regular_and_default_args, test/test_fx.py::TestFX::test_remove_uses, test/test_fx.py::TestFX::test_remove_uses_with_custom_filter, test/test_fx.py::TestFX::test_replace_input, test/test_fx.py::TestFX::test_replace_uses, test/test_fx.py::TestFX::test_reserved_getattr, test/test_fx.py::TestFX::test_return_tuple, test/test_fx.py::TestFX::test_return_type_exists, test/test_fx.py::TestFX::test_return_type_exists_pre_pep585, test/test_fx.py::TestFX::test_script_method_trace, test/test_fx.py::TestFX::test_script_tensor_constant, test/test_fx.py::TestFX::test_sequential, test/test_fx.py::TestFX::test_shape_prop_aggregate, test/test_fx.py::TestFX::test_shape_prop_layout, test/test_fx.py::TestFX::test_shape_prop_layout_3d, test/test_fx.py::TestFX::test_shape_prop_unbacked_sym, test/test_fx.py::TestFX::test_single_default_arg, test/test_fx.py::TestFX::test_snake_case, test/test_fx.py::TestFX::test_sqrt, test/test_fx.py::TestFX::test_stack_traces, test/test_fx.py::TestFX::test_stack_traces_with_transformer, test/test_fx.py::TestFX::test_string_literal_return, test/test_fx.py::TestFX::test_submodule_manipulation_API, test/test_fx.py::TestFX::test_symbolic_trace_assert, test/test_fx.py::TestFX::test_symbolic_trace_sequential, test/test_fx.py::TestFX::test_tensor_attribute, test/test_fx.py::TestFX::test_tensor_attribute_coalseced, test/test_fx.py::TestFX::test_tensor_constant, test/test_fx.py::TestFX::test_throw_out_variant, test/test_fx.py::TestFX::test_torch_custom_ops, test/test_fx.py::TestFX::test_torch_fx_getattr, test/test_fx.py::TestFX::test_torch_fx_len, test/test_fx.py::TestFX::test_torch_op_overloads, test/test_fx.py::TestFX::test_torchbind_class_attribute_in_fx, test/test_fx.py::TestFX::test_torchbind_class_attribute_in_fx_tensor_arg, test/test_fx.py::TestFX::test_trace_buffer_slice, test/test_fx.py::TestFX::test_trace_dict_int_keys, test/test_fx.py::TestFX::test_trace_dict_proxy_keys, test/test_fx.py::TestFX::test_trace_fn_constant, test/test_fx.py::TestFX::test_trace_function, test/test_fx.py::TestFX::test_trace_multiple_funcs, test/test_fx.py::TestFX::test_trace_return_dataclass, test/test_fx.py::TestFX::test_trace_return_dataclass_nested, test/test_fx.py::TestFX::test_trace_return_namedtuple, test/test_fx.py::TestFX::test_tracing_graphmodules_as_leaf_submodules, test/test_fx.py::TestFX::test_transformer_multi_outputs, test/test_fx.py::TestFX::test_transformer_noop, test/test_fx.py::TestFX::test_transformer_op_swap, test/test_fx.py::TestFX::test_transformer_preserves_nn_module_stack_for_get_attr, test/test_fx.py::TestFX::test_tuple_no_subscript, test/test_fx.py::TestFX::test_typename_print, test/test_fx.py::TestFX::test_typename_print_pre_pep585, test/test_fx.py::TestFX::test_unpack, test/test_fx.py::TestFX::test_unpack_dict_better_error, test/test_fx.py::TestFX::test_unpack_list_better_error, test/test_fx.py::TestFX::test_update_args_api, test/test_fx.py::TestFX::test_update_args_kwargs_yells_at_you, test/test_fx.py::TestFX::test_update_kwargs_api, test/test_fx.py::TestFX::test_user_friendly_call_provenance_with_function, test/test_fx.py::TestFX::test_user_friendly_call_provenance_with_module, test/test_fx.py::TestFX::test_varargs_concrete, test/test_fx.py::TestFX::test_wrap, test/test_fx.py::TestFX::test_wrap_decorated_function, test/test_fx.py::TestFX::test_wrap_fn_directly, test/test_fx.py::TestFX::test_wrap_with_submodule, test/test_fx.py::TestFX::test_wrapped_method, test/test_fx.py::TestFX::test_wrapped_retrace, test/test_fx.py::TestFX::test_wrapped_via_decorator, test/test_fx.py::TestFX::test_wrapped_via_decorator_and_transformed, test/test_fx.py::TestFX::test_wrong_target_type, test/test_fx.py::TestFX::test_wrong_topo, test/test_fx.py::TestFXAPIBackwardCompatibility::test_adding_side_effect_function, test/test_fx.py::TestFXAPIBackwardCompatibility::test_class_member_back_compat, test/test_fx.py::TestFXAPIBackwardCompatibility::test_function_back_compat, test/test_fx.py::TestFXAPIBackwardCompatibility::test_preserve_unused_attr_after_unpickle, test/test_fx.py::TestFXAPIBackwardCompatibility::test_public_api_surface, test/test_fx.py::TestFunctionalTracing::test_nn_functional_adaptive_avg_pool1d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_adaptive_avg_pool2d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_adaptive_avg_pool3d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_adaptive_max_pool1d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_adaptive_max_pool1d_with_indices, test/test_fx.py::TestFunctionalTracing::test_nn_functional_adaptive_max_pool2d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_adaptive_max_pool2d_with_indices, test/test_fx.py::TestFunctionalTracing::test_nn_functional_adaptive_max_pool3d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_adaptive_max_pool3d_with_indices, test/test_fx.py::TestFunctionalTracing::test_nn_functional_affine_grid, test/test_fx.py::TestFunctionalTracing::test_nn_functional_alpha_dropout, test/test_fx.py::TestFunctionalTracing::test_nn_functional_avg_pool1d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_avg_pool2d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_avg_pool3d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_batch_norm, test/test_fx.py::TestFunctionalTracing::test_nn_functional_bilinear, test/test_fx.py::TestFunctionalTracing::test_nn_functional_binary_cross_entropy, test/test_fx.py::TestFunctionalTracing::test_nn_functional_binary_cross_entropy_with_logits, test/test_fx.py::TestFunctionalTracing::test_nn_functional_celu, test/test_fx.py::TestFunctionalTracing::test_nn_functional_celu_, test/test_fx.py::TestFunctionalTracing::test_nn_functional_channel_shuffle, test/test_fx.py::TestFunctionalTracing::test_nn_functional_conv1d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_conv2d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_conv3d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_conv_tbc, test/test_fx.py::TestFunctionalTracing::test_nn_functional_conv_transpose1d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_conv_transpose2d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_conv_transpose3d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_cosine_embedding_loss, test/test_fx.py::TestFunctionalTracing::test_nn_functional_cosine_similarity, test/test_fx.py::TestFunctionalTracing::test_nn_functional_cross_entropy, test/test_fx.py::TestFunctionalTracing::test_nn_functional_ctc_loss, test/test_fx.py::TestFunctionalTracing::test_nn_functional_dropout, test/test_fx.py::TestFunctionalTracing::test_nn_functional_dropout1d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_dropout2d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_dropout3d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_elu, test/test_fx.py::TestFunctionalTracing::test_nn_functional_elu_, test/test_fx.py::TestFunctionalTracing::test_nn_functional_embedding, test/test_fx.py::TestFunctionalTracing::test_nn_functional_embedding_bag, test/test_fx.py::TestFunctionalTracing::test_nn_functional_feature_alpha_dropout, test/test_fx.py::TestFunctionalTracing::test_nn_functional_fold, test/test_fx.py::TestFunctionalTracing::test_nn_functional_fractional_max_pool2d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_fractional_max_pool2d_with_indices, test/test_fx.py::TestFunctionalTracing::test_nn_functional_fractional_max_pool3d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_fractional_max_pool3d_with_indices, test/test_fx.py::TestFunctionalTracing::test_nn_functional_gaussian_nll_loss, test/test_fx.py::TestFunctionalTracing::test_nn_functional_gelu, test/test_fx.py::TestFunctionalTracing::test_nn_functional_glu, test/test_fx.py::TestFunctionalTracing::test_nn_functional_grid_sample, test/test_fx.py::TestFunctionalTracing::test_nn_functional_group_norm, test/test_fx.py::TestFunctionalTracing::test_nn_functional_gumbel_softmax, test/test_fx.py::TestFunctionalTracing::test_nn_functional_hardshrink, test/test_fx.py::TestFunctionalTracing::test_nn_functional_hardsigmoid, test/test_fx.py::TestFunctionalTracing::test_nn_functional_hardswish, test/test_fx.py::TestFunctionalTracing::test_nn_functional_hardtanh, test/test_fx.py::TestFunctionalTracing::test_nn_functional_hardtanh_, test/test_fx.py::TestFunctionalTracing::test_nn_functional_hinge_embedding_loss, test/test_fx.py::TestFunctionalTracing::test_nn_functional_huber_loss, test/test_fx.py::TestFunctionalTracing::test_nn_functional_instance_norm, test/test_fx.py::TestFunctionalTracing::test_nn_functional_interpolate, test/test_fx.py::TestFunctionalTracing::test_nn_functional_kl_div, test/test_fx.py::TestFunctionalTracing::test_nn_functional_l1_loss, test/test_fx.py::TestFunctionalTracing::test_nn_functional_layer_norm, test/test_fx.py::TestFunctionalTracing::test_nn_functional_leaky_relu, test/test_fx.py::TestFunctionalTracing::test_nn_functional_leaky_relu_, test/test_fx.py::TestFunctionalTracing::test_nn_functional_linear, test/test_fx.py::TestFunctionalTracing::test_nn_functional_local_response_norm, test/test_fx.py::TestFunctionalTracing::test_nn_functional_log_softmax, test/test_fx.py::TestFunctionalTracing::test_nn_functional_logsigmoid, test/test_fx.py::TestFunctionalTracing::test_nn_functional_lp_pool1d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_lp_pool2d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_lp_pool3d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_margin_ranking_loss, test/test_fx.py::TestFunctionalTracing::test_nn_functional_max_pool1d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_max_pool1d_with_indices, test/test_fx.py::TestFunctionalTracing::test_nn_functional_max_pool2d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_max_pool2d_with_indices, test/test_fx.py::TestFunctionalTracing::test_nn_functional_max_pool3d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_max_pool3d_with_indices, test/test_fx.py::TestFunctionalTracing::test_nn_functional_max_unpool1d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_max_unpool2d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_max_unpool3d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_mish, test/test_fx.py::TestFunctionalTracing::test_nn_functional_mse_loss, test/test_fx.py::TestFunctionalTracing::test_nn_functional_multi_head_attention_forward, test/test_fx.py::TestFunctionalTracing::test_nn_functional_multi_margin_loss, test/test_fx.py::TestFunctionalTracing::test_nn_functional_multilabel_margin_loss, test/test_fx.py::TestFunctionalTracing::test_nn_functional_multilabel_soft_margin_loss, test/test_fx.py::TestFunctionalTracing::test_nn_functional_native_channel_shuffle, test/test_fx.py::TestFunctionalTracing::test_nn_functional_nll_loss, test/test_fx.py::TestFunctionalTracing::test_nn_functional_normalize, test/test_fx.py::TestFunctionalTracing::test_nn_functional_one_hot, test/test_fx.py::TestFunctionalTracing::test_nn_functional_pad, test/test_fx.py::TestFunctionalTracing::test_nn_functional_pairwise_distance, test/test_fx.py::TestFunctionalTracing::test_nn_functional_pdist, test/test_fx.py::TestFunctionalTracing::test_nn_functional_pixel_shuffle, test/test_fx.py::TestFunctionalTracing::test_nn_functional_pixel_unshuffle, test/test_fx.py::TestFunctionalTracing::test_nn_functional_poisson_nll_loss, test/test_fx.py::TestFunctionalTracing::test_nn_functional_prelu, test/test_fx.py::TestFunctionalTracing::test_nn_functional_relu, test/test_fx.py::TestFunctionalTracing::test_nn_functional_relu6, test/test_fx.py::TestFunctionalTracing::test_nn_functional_relu_, test/test_fx.py::TestFunctionalTracing::test_nn_functional_rms_norm, test/test_fx.py::TestFunctionalTracing::test_nn_functional_rrelu, test/test_fx.py::TestFunctionalTracing::test_nn_functional_rrelu_, test/test_fx.py::TestFunctionalTracing::test_nn_functional_scaled_dot_product_attention, test/test_fx.py::TestFunctionalTracing::test_nn_functional_selu, test/test_fx.py::TestFunctionalTracing::test_nn_functional_selu_, test/test_fx.py::TestFunctionalTracing::test_nn_functional_silu, test/test_fx.py::TestFunctionalTracing::test_nn_functional_smooth_l1_loss, test/test_fx.py::TestFunctionalTracing::test_nn_functional_soft_margin_loss, test/test_fx.py::TestFunctionalTracing::test_nn_functional_softmax, test/test_fx.py::TestFunctionalTracing::test_nn_functional_softmin, test/test_fx.py::TestFunctionalTracing::test_nn_functional_softplus, test/test_fx.py::TestFunctionalTracing::test_nn_functional_softshrink, test/test_fx.py::TestFunctionalTracing::test_nn_functional_threshold, test/test_fx.py::TestFunctionalTracing::test_nn_functional_threshold_, test/test_fx.py::TestFunctionalTracing::test_nn_functional_triplet_margin_loss, test/test_fx.py::TestFunctionalTracing::test_nn_functional_triplet_margin_with_distance_loss, test/test_fx.py::TestFunctionalTracing::test_nn_functional_unfold, test/test_fx.py::TestFunctionalTracing::test_nn_functional_upsample, test/test_fx.py::TestFunctionalTracing::test_nn_functional_upsample_bilinear, test/test_fx.py::TestFunctionalTracing::test_nn_functional_upsample_nearest, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_H_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_T_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive___getitem___cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive___radd___cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive___rdiv___cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive___rmatmul___cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive___rmod___cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive___rmul___cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive___rpow___cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive___rsub___cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive__batch_norm_with_update_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive__chunk_cat_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive__native_batch_norm_legit_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive__segment_reduce_lengths_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive__segment_reduce_offsets_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive__softmax_backward_data_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive__unsafe_masked_index_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive__unsafe_masked_index_put_accumulate_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive__upsample_bilinear2d_aa_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_abs_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_acos_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_acosh_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_add_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_addbmm_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_addcdiv_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_addcmul_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_addmm_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_addmm_decomposed_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_addmv_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_addr_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_alias_copy_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_all_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_allclose_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_amax_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_amin_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_aminmax_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_angle_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_any_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_arange_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_argmax_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_argmin_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_argsort_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_argwhere_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_as_strided_copy_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_as_strided_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_as_strided_partial_views_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_as_strided_scatter_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_asin_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_asinh_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_atan2_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_atan_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_atanh_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_atleast_1d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_atleast_2d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_atleast_3d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_baddbmm_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_bernoulli_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_bfloat16_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_block_diag_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_bmm_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_bool_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_broadcast_shapes_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_broadcast_tensors_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_broadcast_to_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_bucketize_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_byte_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_cartesian_prod_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_cat_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_cauchy_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_cdist_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_cdouble_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_ceil_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_cfloat_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_chalf_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_char_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_cholesky_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_cholesky_inverse_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_cholesky_solve_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_chunk_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_clamp_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_clamp_max_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_clamp_min_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_clone_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_column_stack_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_combinations_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_complex_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_conj_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_conj_physical_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_constant_pad_nd_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_contiguous_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_copysign_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_corrcoef_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_cos_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_cosh_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_count_nonzero_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_cov_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_cross_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_cummax_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_cummin_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_cumprod_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_cumsum_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_cumulative_trapezoid_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_deg2rad_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_diag_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_diag_embed_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_diagflat_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_diagonal_copy_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_diagonal_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_diagonal_scatter_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_diff_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_digamma_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_dist_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_div_floor_rounding_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_div_no_rounding_mode_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_div_trunc_rounding_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_dot_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_double_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_dsplit_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_dstack_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_einsum_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_empty_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_empty_like_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_empty_permuted_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_empty_strided_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_eq_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_equal_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_erf_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_erfc_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_erfinv_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_exp2_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_exp_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_expand_as_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_expand_copy_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_expand_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_expm1_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_exponential_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_eye_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fft_fft2_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fft_fft_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fft_fftn_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fft_fftshift_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fft_hfft2_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fft_hfft_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fft_hfftn_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fft_ifft2_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fft_ifft_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fft_ifftn_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fft_ifftshift_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fft_ihfft2_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fft_ihfft_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fft_ihfftn_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fft_irfft2_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fft_irfft_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fft_irfftn_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fft_rfft2_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fft_rfft_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fft_rfftn_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fill_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_flatten_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_flip_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fliplr_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_flipud_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_float_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_float_power_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_floor_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_floor_divide_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fmax_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fmin_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fmod_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_frac_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_frexp_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_full_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_full_like_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_gather_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_ge_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_geometric_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_geqrf_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_gradient_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_grid_sampler_2d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_grid_sampler_3d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_gt_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_half_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_hash_tensor_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_heaviside_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_histc_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_histogram_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_histogramdd_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_hsplit_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_hstack_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_hypot_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_i0_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_igamma_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_igammac_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_index_add_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_index_copy_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_index_fill_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_index_put_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_index_reduce_amax_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_index_reduce_amin_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_index_reduce_mean_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_index_reduce_prod_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_index_select_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_inner_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_int_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_isclose_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_isfinite_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_isin_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_isinf_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_isnan_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_isneginf_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_isposinf_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_isreal_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_item_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_jiterator_2inputs_2outputs_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_jiterator_4inputs_with_extra_args_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_jiterator_binary_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_jiterator_binary_return_by_ref_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_jiterator_unary_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_kron_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_kthvalue_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_ldexp_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_le_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_lerp_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_lgamma_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_cholesky_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_cholesky_ex_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_cond_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_cross_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_det_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_diagonal_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_eig_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_eigh_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_eigvals_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_eigvalsh_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_householder_product_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_inv_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_inv_ex_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_ldl_factor_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_ldl_factor_ex_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_ldl_solve_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_lstsq_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_lstsq_grad_oriented_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_lu_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_lu_factor_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_lu_factor_ex_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_lu_solve_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_matrix_norm_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_matrix_power_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_matrix_rank_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_matrix_rank_hermitian_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_multi_dot_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_norm_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_norm_subgradients_at_zero_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_pinv_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_pinv_hermitian_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_pinv_singular_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_qr_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_slogdet_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_solve_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_solve_ex_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_solve_triangular_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_svd_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_svdvals_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_tensorinv_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_tensorsolve_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_vander_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_vecdot_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_vector_norm_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linspace_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linspace_tensor_overload_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_log10_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_log1p_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_log2_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_log_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_log_normal_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_log_softmax_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_log_softmax_with_dtype_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_logaddexp2_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_logaddexp_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_logcumsumexp_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_logdet_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_logical_and_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_logical_not_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_logical_or_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_logical_xor_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_logit_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_logspace_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_logspace_tensor_overload_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_logsumexp_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_long_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_lt_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_lu_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_lu_solve_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_lu_unpack_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_mH_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_mT_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_amax_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_amin_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_argmax_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_argmin_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_cumprod_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_cumsum_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_fill_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_log_softmax_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_logaddexp_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_logsumexp_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_mean_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_median_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_norm_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_normalize_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_prod_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_scatter_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_select_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_softmax_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_softmin_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_std_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_sum_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_var_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_matmul_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_matrix_exp_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_max_binary_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_max_pool2d_with_indices_backward_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_max_reduction_no_dim_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_max_reduction_with_dim_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_maximum_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_mean_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_median_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_meshgrid_list_of_tensors_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_meshgrid_variadic_tensors_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_min_binary_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_min_reduction_no_dim_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_min_reduction_with_dim_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_minimum_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_mm_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_mode_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_movedim_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_msort_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_mul_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_multinomial_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_mv_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nan_to_num_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nanmean_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nanmedian_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nanquantile_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nansum_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_narrow_copy_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_narrow_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_native_batch_norm_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_native_dropout_backward_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_native_layer_norm_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_ne_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_neg_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_new_empty_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_new_empty_strided_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_new_full_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_new_ones_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_new_zeros_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nextafter_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_alpha_dropout_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_avg_pool1d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_avg_pool2d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_avg_pool3d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_batch_norm_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_bilinear_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_binary_cross_entropy_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_celu_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_channel_shuffle_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_conv1d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_conv2d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_conv3d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_conv_transpose1d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_conv_transpose2d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_conv_transpose3d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_cosine_embedding_loss_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_cosine_similarity_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_cross_entropy_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_ctc_loss_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_dropout2d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_dropout3d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_dropout_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_elu_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_embedding_bag_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_embedding_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_fractional_max_pool2d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_fractional_max_pool3d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_gaussian_nll_loss_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_gelu_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_glu_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_grid_sample_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_group_norm_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_hardshrink_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_hardsigmoid_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_hardswish_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_hardtanh_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_hinge_embedding_loss_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_huber_loss_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_instance_norm_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_interpolate_area_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_interpolate_bicubic_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_interpolate_bilinear_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_interpolate_linear_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_interpolate_nearest_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_interpolate_trilinear_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_kl_div_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_l1_loss_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_layer_norm_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_leaky_relu_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_linear_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_local_response_norm_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_logsigmoid_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_margin_ranking_loss_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_max_pool1d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_max_pool2d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_max_pool3d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_max_unpool1d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_max_unpool1d_grad_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_max_unpool2d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_max_unpool2d_grad_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_max_unpool3d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_max_unpool3d_grad_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_mish_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_mse_loss_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_multi_head_attention_forward_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_multi_margin_loss_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_multilabel_margin_loss_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_nll_loss_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_normalize_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_pad_circular_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_pad_constant_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_pad_reflect_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_pad_replicate_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_pad_replicate_negative_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_pairwise_distance_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_pdist_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_pixel_shuffle_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_pixel_unshuffle_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_poisson_nll_loss_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_prelu_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_relu6_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_relu_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_rms_norm_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_rrelu_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_selu_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_silu_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_smooth_l1_loss_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_soft_margin_loss_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_softmin_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_softmin_with_dtype_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_softplus_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_softshrink_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_softsign_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_tanhshrink_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_threshold_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_triplet_margin_loss_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_unfold_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_upsample_bilinear_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_upsample_nearest_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nonzero_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nonzero_static_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_norm_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_norm_fro_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_norm_inf_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_norm_nuc_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_normal_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_normal_in_place_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_normal_number_mean_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_ones_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_ones_like_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_ormqr_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_outer_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_pca_lowrank_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_permute_copy_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_permute_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_pinverse_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_polar_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_polygamma_polygamma_n_0_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_polygamma_polygamma_n_1_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_polygamma_polygamma_n_2_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_polygamma_polygamma_n_3_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_polygamma_polygamma_n_4_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_positive_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_pow_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_prod_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_put_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_qr_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_quantile_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_rad2deg_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_rand_like_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_randint_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_randint_like_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_randn_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_randn_like_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_ravel_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_real_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_reciprocal_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_remainder_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_renorm_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_repeat_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_repeat_interleave_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_reshape_as_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_reshape_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_resize__cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_resize_as__cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_resolve_conj_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_resolve_neg_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_roll_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_rot90_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_round_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_round_decimals_0_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_round_decimals_3_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_round_decimals_neg_3_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_rsqrt_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_rsub_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_scalar_tensor_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_scatter_add_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_scatter_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_scatter_reduce_amax_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_scatter_reduce_amin_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_scatter_reduce_mean_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_scatter_reduce_prod_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_scatter_reduce_sum_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_searchsorted_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_select_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_select_scatter_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_sgn_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_short_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_sigmoid_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_sign_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_signal_windows_bartlett_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_signal_windows_blackman_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_signal_windows_cosine_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_signal_windows_exponential_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_signal_windows_gaussian_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_signal_windows_general_cosine_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_signal_windows_general_hamming_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_signal_windows_hamming_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_signal_windows_hann_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_signal_windows_kaiser_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_signal_windows_nuttall_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_signbit_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_sin_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_sinc_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_sinh_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_slice_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_slice_scatter_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_softmax_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_softmax_with_dtype_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_sort_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_sparse_mm_reduce_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_sparse_sampled_addmm_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_airy_ai_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_bessel_j0_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_bessel_j1_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_bessel_y0_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_bessel_y1_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_chebyshev_polynomial_t_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_chebyshev_polynomial_u_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_chebyshev_polynomial_v_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_chebyshev_polynomial_w_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_entr_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_erfcx_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_hermite_polynomial_h_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_hermite_polynomial_he_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_i0e_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_i1_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_i1e_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_laguerre_polynomial_l_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_legendre_polynomial_p_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_log_ndtr_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_modified_bessel_i0_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_modified_bessel_i1_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_modified_bessel_k0_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_modified_bessel_k1_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_ndtr_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_ndtri_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_scaled_modified_bessel_k0_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_scaled_modified_bessel_k1_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_spherical_bessel_j0_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_xlog1py_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_zeta_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_split_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_split_list_args_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_split_with_sizes_copy_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_split_with_sizes_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_sqrt_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_square_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_squeeze_copy_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_squeeze_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_squeeze_multiple_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_stack_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_std_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_std_mean_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_std_mean_unbiased_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_std_unbiased_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_stft_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_sub_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_sum_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_sum_to_size_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_svd_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_svd_lowrank_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_t_copy_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_t_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_take_along_dim_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_take_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_tan_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_tanh_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_tensor_split_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_tensordot_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_tile_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_to_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_to_sparse_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_topk_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_trace_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_transpose_copy_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_transpose_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_trapezoid_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_trapz_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_triangular_solve_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_tril_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_triu_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_true_divide_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_trunc_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_unbind_copy_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_unbind_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_unflatten_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_unfold_copy_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_unfold_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_uniform_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_unique_consecutive_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_unique_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_unsafe_chunk_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_unsafe_split_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_unsqueeze_copy_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_unsqueeze_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_var_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_var_mean_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_var_mean_unbiased_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_var_unbiased_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_vdot_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_view_as_complex_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_view_as_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_view_copy_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_view_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_vsplit_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_vstack_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_where_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_xlogy_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_zero__cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_zeros_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_zeros_like_cpu_float32 2025-08-26T20:53:57.6875064Z 2025-08-26T20:53:57.6875344Z Running test_transformers_privateuse1 1/1 ... [2025-08-26 20:53:57.604372] 2025-08-26T20:53:59.4155130Z -- Building for: Visual Studio 17 2022 2025-08-26T20:53:59.4265579Z -- Selecting Windows SDK version 10.0.19041.0 to target Windows 10.0.17763. 2025-08-26T20:54:02.3201370Z -- The CXX compiler identification is MSVC 19.42.34444.0 2025-08-26T20:54:03.5149049Z -- The C compiler identification is MSVC 19.42.34444.0 2025-08-26T20:54:03.6365114Z -- Detecting CXX compiler ABI info 2025-08-26T20:54:04.3372966Z -- Detecting CXX compiler ABI info - done 2025-08-26T20:54:04.3394860Z -- Check for working CXX compiler: C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.42.34433/bin/Hostx64/x64/cl.exe - skipped 2025-08-26T20:54:04.3412006Z -- Detecting CXX compile features 2025-08-26T20:54:04.3429449Z -- Detecting CXX compile features - done 2025-08-26T20:54:04.3519843Z -- Detecting C compiler ABI info 2025-08-26T20:54:04.9668615Z -- Detecting C compiler ABI info - done 2025-08-26T20:54:04.9692374Z -- Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.42.34433/bin/Hostx64/x64/cl.exe - skipped 2025-08-26T20:54:04.9695764Z -- Detecting C compile features 2025-08-26T20:54:04.9702296Z -- Detecting C compile features - done 2025-08-26T20:54:05.4262773Z -- Found Torch: C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/build/torch/lib/torch.lib 2025-08-26T20:54:07.2890726Z -- Found Python3: C:/Jenkins/Miniconda3/python3 (found version "3.9.19") found components: Interpreter Development Development.Module Development.Embed 2025-08-26T20:54:07.2898940Z -- Configuring done 2025-08-26T20:54:07.3534091Z -- Generating done 2025-08-26T20:54:07.3553980Z -- Build files have been written to: C:/actions-runner/_work/pytorch/pytorch/test/cpp_extensions/open_registration_extension/torch_openreg/build 2025-08-26T20:54:07.4242191Z MSBuild version 17.12.36+d1cce8d7c for .NET Framework 2025-08-26T20:54:07.4545133Z 2025-08-26T20:54:07.7131490Z Checking Build System 2025-08-26T20:54:08.0373342Z Building Custom Rule C:/actions-runner/_work/pytorch/pytorch/test/cpp_extensions/open_registration_extension/torch_openreg/third_party/openreg/CMakeLists.txt 2025-08-26T20:54:08.1886955Z device.cpp 2025-08-26T20:54:08.2125317Z memory.cpp 2025-08-26T20:54:11.7145895Z Generating Code... 2025-08-26T20:54:11.8977884Z Creating library C:/actions-runner/_work/pytorch/pytorch/test/cpp_extensions/open_registration_extension/torch_openreg/build/third_party/openreg/Release/openreg.lib and object C:/actions-runner/_work/pytorch/pytorch/test/cpp_extensions/open_registration_extension/torch_openreg/build/third_party/openreg/Release/openreg.exp 2025-08-26T20:54:11.9502497Z openreg.vcxproj -> C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\third_party\openreg\Release\openreg.dll 2025-08-26T20:54:12.0633552Z Building Custom Rule C:/actions-runner/_work/pytorch/pytorch/test/cpp_extensions/open_registration_extension/torch_openreg/csrc/CMakeLists.txt 2025-08-26T20:54:12.2909191Z OpenRegExtra.cpp 2025-08-26T20:54:19.9888205Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(82,17): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:19.9912816Z (compiling source file '../../csrc/aten/OpenRegExtra.cpp') 2025-08-26T20:54:19.9913556Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(82,17): 2025-08-26T20:54:19.9914383Z the template instantiation context (the oldest one first) is 2025-08-26T20:54:19.9915091Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen\core\function_schema.h(438,9): 2025-08-26T20:54:19.9916059Z see reference to function template instantiation 'std::optional::optional(_Ty2 &&) noexcept' being compiled 2025-08-26T20:54:19.9916719Z with 2025-08-26T20:54:19.9916962Z [ 2025-08-26T20:54:19.9917165Z I=size_t, 2025-08-26T20:54:19.9917422Z _Ty2=size_t 2025-08-26T20:54:19.9917658Z ] 2025-08-26T20:54:19.9918154Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen\core\function_schema.h(438,9): 2025-08-26T20:54:19.9918983Z see the first reference to 'std::optional::optional' in 'c10::FunctionSchema::argumentIndexWithName' 2025-08-26T20:54:19.9919839Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(248,18): 2025-08-26T20:54:19.9921007Z see reference to function template instantiation 'std::_Optional_construct_base<_Ty>::_Optional_construct_base(std::in_place_t,const unsigned __int64 &&)' being compiled 2025-08-26T20:54:19.9921866Z with 2025-08-26T20:54:19.9922175Z [ 2025-08-26T20:54:19.9922377Z _Ty=int32_t 2025-08-26T20:54:19.9922642Z ] 2025-08-26T20:54:19.9923248Z C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\csrc\aten\OpenRegExtra.cpp(196,1): 2025-08-26T20:54:19.9924584Z see reference to function template instantiation 'std::_Optional_destruct_base<_Ty,true>::_Optional_destruct_base(std::in_place_t,const unsigned __int64 &&) noexcept' being compiled 2025-08-26T20:54:19.9925511Z with 2025-08-26T20:54:19.9925717Z [ 2025-08-26T20:54:19.9925943Z _Ty=int32_t 2025-08-26T20:54:19.9926178Z ] 2025-08-26T20:54:19.9926390Z 2025-08-26T20:54:20.0944114Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406,61): warning C4267: 'initializing': conversion from 'size_t' to 'unsigned int', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:20.0945930Z (compiling source file '../../csrc/aten/OpenRegExtra.cpp') 2025-08-26T20:54:20.0946592Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406,61): 2025-08-26T20:54:20.0947329Z the template instantiation context (the oldest one first) is 2025-08-26T20:54:20.0948084Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\dynamo\compiled_autograd.h(236,23): 2025-08-26T20:54:20.0949310Z see reference to function template instantiation 'std::_Vbase &std::vector>::emplace_back(const _Ty &)' being compiled 2025-08-26T20:54:20.0950111Z with 2025-08-26T20:54:20.0950330Z [ 2025-08-26T20:54:20.0950560Z _Ty=size_t 2025-08-26T20:54:20.0950871Z ] 2025-08-26T20:54:20.0951377Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(858,24): 2025-08-26T20:54:20.0952468Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(const unsigned __int64 &)' being compiled 2025-08-26T20:54:20.0953325Z with 2025-08-26T20:54:20.0953560Z [ 2025-08-26T20:54:20.0953762Z _Ty=std::_Vbase 2025-08-26T20:54:20.0954030Z ] 2025-08-26T20:54:20.0954562Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(776,20): 2025-08-26T20:54:20.0955709Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(const unsigned __int64 &)' being compiled 2025-08-26T20:54:20.0956570Z with 2025-08-26T20:54:20.0956780Z [ 2025-08-26T20:54:20.0957010Z _Ty=std::_Vbase 2025-08-26T20:54:20.0957253Z ] 2025-08-26T20:54:20.0957753Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(791,18): 2025-08-26T20:54:20.0958815Z see reference to function template instantiation 'void std::_Construct_in_place(unsigned int &,const _Ty &) noexcept' being compiled 2025-08-26T20:54:20.0959601Z with 2025-08-26T20:54:20.0959823Z [ 2025-08-26T20:54:20.0960020Z _Ty=size_t 2025-08-26T20:54:20.0960279Z ] 2025-08-26T20:54:20.0960467Z 2025-08-26T20:54:20.0961842Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: 'initializing': conversion from 'size_t' to '_Ty', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:20.0964098Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: with [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:20.0966141Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: [ [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:20.0968172Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: _Ty=unsigned int [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:20.0970301Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: ] [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:20.0971541Z (compiling source file '../../csrc/aten/OpenRegExtra.cpp') 2025-08-26T20:54:20.0972217Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): 2025-08-26T20:54:20.0972975Z the template instantiation context (the oldest one first) is 2025-08-26T20:54:20.0973633Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(779,17): 2025-08-26T20:54:20.0974815Z see reference to function template instantiation 'unsigned int *std::vector>::_Emplace_reallocate(unsigned int *const ,const _Ty &)' being compiled 2025-08-26T20:54:20.0975800Z with 2025-08-26T20:54:20.0976014Z [ 2025-08-26T20:54:20.0976277Z _Ty=size_t 2025-08-26T20:54:20.0976514Z ] 2025-08-26T20:54:20.0977008Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(830,23): 2025-08-26T20:54:20.0978157Z see reference to function template instantiation 'void std::_Default_allocator_traits<_Alloc>::construct<_Ty,const unsigned __int64&>(_Alloc &,_Objty *const ,const unsigned __int64 &)' being compiled 2025-08-26T20:54:20.0979045Z with 2025-08-26T20:54:20.0979277Z [ 2025-08-26T20:54:20.0979558Z _Alloc=std::allocator, 2025-08-26T20:54:20.0979902Z _Ty=unsigned int, 2025-08-26T20:54:20.0980174Z _Objty=unsigned int 2025-08-26T20:54:20.0980464Z ] 2025-08-26T20:54:20.0980655Z 2025-08-26T20:54:20.0982055Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406,61): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:20.0983542Z (compiling source file '../../csrc/aten/OpenRegExtra.cpp') 2025-08-26T20:54:20.0984189Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406,61): 2025-08-26T20:54:20.0984878Z the template instantiation context (the oldest one first) is 2025-08-26T20:54:20.0985587Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\dynamo\compiled_autograd.h(681,26): 2025-08-26T20:54:20.0986626Z see reference to function template instantiation 'int32_t &std::vector>::emplace_back(size_t &)' being compiled 2025-08-26T20:54:20.0987742Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(858,24): 2025-08-26T20:54:20.0988771Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(unsigned __int64 &)' being compiled 2025-08-26T20:54:20.0989544Z with 2025-08-26T20:54:20.0989750Z [ 2025-08-26T20:54:20.0989978Z _Ty=int32_t 2025-08-26T20:54:20.0990237Z ] 2025-08-26T20:54:20.0990708Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(776,20): 2025-08-26T20:54:20.0991820Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(unsigned __int64 &)' being compiled 2025-08-26T20:54:20.0992659Z with 2025-08-26T20:54:20.0992926Z [ 2025-08-26T20:54:20.0993127Z _Ty=int32_t 2025-08-26T20:54:20.0993425Z ] 2025-08-26T20:54:20.0993932Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(791,18): 2025-08-26T20:54:20.0994842Z see reference to function template instantiation 'void std::_Construct_in_place(int &,_Ty &) noexcept' being compiled 2025-08-26T20:54:20.0995500Z with 2025-08-26T20:54:20.0995704Z [ 2025-08-26T20:54:20.0995925Z _Ty=size_t 2025-08-26T20:54:20.0996160Z ] 2025-08-26T20:54:20.0996379Z 2025-08-26T20:54:20.0997699Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: 'initializing': conversion from 'size_t' to '_Ty', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:20.1000004Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: with [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:20.1002077Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: [ [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:20.1004123Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: _Ty=int [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:20.1006177Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: ] [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:20.1007387Z (compiling source file '../../csrc/aten/OpenRegExtra.cpp') 2025-08-26T20:54:20.1008064Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): 2025-08-26T20:54:20.1008720Z the template instantiation context (the oldest one first) is 2025-08-26T20:54:20.1009407Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(779,17): 2025-08-26T20:54:20.1010511Z see reference to function template instantiation 'int *std::vector>::_Emplace_reallocate<_Ty&>(int *const ,_Ty &)' being compiled 2025-08-26T20:54:20.1011243Z with 2025-08-26T20:54:20.1011473Z [ 2025-08-26T20:54:20.1011680Z _Ty=size_t 2025-08-26T20:54:20.1011940Z ] 2025-08-26T20:54:20.1012531Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(830,23): 2025-08-26T20:54:20.1013684Z see reference to function template instantiation 'void std::_Default_allocator_traits<_Alloc>::construct<_Ty,unsigned __int64&>(_Alloc &,_Objty *const ,unsigned __int64 &)' being compiled 2025-08-26T20:54:20.1014552Z with 2025-08-26T20:54:20.1014759Z [ 2025-08-26T20:54:20.1015007Z _Alloc=std::allocator, 2025-08-26T20:54:20.1015300Z _Ty=int, 2025-08-26T20:54:20.1015595Z _Objty=int 2025-08-26T20:54:20.1015827Z ] 2025-08-26T20:54:20.1016080Z 2025-08-26T20:54:20.2705283Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): warning C4267: 'initializing': conversion from 'size_t' to '_Ty1', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:20.2707775Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): warning C4267: with [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:20.2709747Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): warning C4267: [ [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:20.2711763Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): warning C4267: _Ty1=int [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:20.2713772Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): warning C4267: ] [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:20.2715111Z (compiling source file '../../csrc/aten/OpenRegExtra.cpp') 2025-08-26T20:54:20.2715764Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): 2025-08-26T20:54:20.2716458Z the template instantiation context (the oldest one first) is 2025-08-26T20:54:20.2717698Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\dynamo\compiled_autograd.h(658,33): 2025-08-26T20:54:20.2718930Z see reference to function template instantiation 'std::pair &std::vector,std::allocator>>::emplace_back(size_t &,int &)' being compiled 2025-08-26T20:54:20.2720080Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(858,24): 2025-08-26T20:54:20.2721151Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(unsigned __int64 &,int &)' being compiled 2025-08-26T20:54:20.2721947Z with 2025-08-26T20:54:20.2722175Z [ 2025-08-26T20:54:20.2722400Z _Ty=std::pair 2025-08-26T20:54:20.2722706Z ] 2025-08-26T20:54:20.2723186Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(776,20): 2025-08-26T20:54:20.2724326Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(unsigned __int64 &,int &)' being compiled 2025-08-26T20:54:20.2725181Z with 2025-08-26T20:54:20.2725386Z [ 2025-08-26T20:54:20.2725693Z _Ty=std::pair 2025-08-26T20:54:20.2725969Z ] 2025-08-26T20:54:20.2726473Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(791,18): 2025-08-26T20:54:20.2727501Z see reference to function template instantiation 'void std::_Construct_in_place,_Ty&,int&>(std::pair &,_Ty &,int &) noexcept' being compiled 2025-08-26T20:54:20.2728260Z with 2025-08-26T20:54:20.2728494Z [ 2025-08-26T20:54:20.2728700Z _Ty=size_t 2025-08-26T20:54:20.2728960Z ] 2025-08-26T20:54:20.2729442Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406,61): 2025-08-26T20:54:20.2730399Z see reference to function template instantiation 'std::pair::pair(_Other1,_Other2) noexcept' being compiled 2025-08-26T20:54:20.2731086Z with 2025-08-26T20:54:20.2731319Z [ 2025-08-26T20:54:20.2731538Z _Other1=uint64_t &, 2025-08-26T20:54:20.2731844Z _Other2=int & 2025-08-26T20:54:20.2732109Z ] 2025-08-26T20:54:20.2732300Z 2025-08-26T20:54:20.2733764Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,54): warning C4267: 'initializing': conversion from 'size_t' to '_Ty2', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:20.2736001Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,54): warning C4267: with [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:20.2737996Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,54): warning C4267: [ [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:20.2740067Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,54): warning C4267: _Ty2=int [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:20.2742131Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,54): warning C4267: ] [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:20.2743345Z (compiling source file '../../csrc/aten/OpenRegExtra.cpp') 2025-08-26T20:54:20.2743744Z 2025-08-26T20:54:20.8702675Z OpenRegMinimal.cpp 2025-08-26T20:54:28.4872891Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(82,17): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:28.4874541Z (compiling source file '../../csrc/aten/OpenRegMinimal.cpp') 2025-08-26T20:54:28.4875242Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(82,17): 2025-08-26T20:54:28.4875968Z the template instantiation context (the oldest one first) is 2025-08-26T20:54:28.4876635Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen\core\function_schema.h(438,9): 2025-08-26T20:54:28.4877605Z see reference to function template instantiation 'std::optional::optional(_Ty2 &&) noexcept' being compiled 2025-08-26T20:54:28.4878281Z with 2025-08-26T20:54:28.4878672Z [ 2025-08-26T20:54:28.4878916Z I=size_t, 2025-08-26T20:54:28.4879163Z _Ty2=size_t 2025-08-26T20:54:28.4879439Z ] 2025-08-26T20:54:28.4879925Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen\core\function_schema.h(438,9): 2025-08-26T20:54:28.4880785Z see the first reference to 'std::optional::optional' in 'c10::FunctionSchema::argumentIndexWithName' 2025-08-26T20:54:28.4881636Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(248,18): 2025-08-26T20:54:28.4882790Z see reference to function template instantiation 'std::_Optional_construct_base<_Ty>::_Optional_construct_base(std::in_place_t,const unsigned __int64 &&)' being compiled 2025-08-26T20:54:28.4883744Z with 2025-08-26T20:54:28.4883959Z [ 2025-08-26T20:54:28.4884194Z _Ty=int32_t 2025-08-26T20:54:28.4884442Z ] 2025-08-26T20:54:28.4885085Z C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\csrc\aten\OpenRegMinimal.cpp(149,1): 2025-08-26T20:54:28.4886427Z see reference to function template instantiation 'std::_Optional_destruct_base<_Ty,true>::_Optional_destruct_base(std::in_place_t,const unsigned __int64 &&) noexcept' being compiled 2025-08-26T20:54:28.4887317Z with 2025-08-26T20:54:28.4887548Z [ 2025-08-26T20:54:28.4887748Z _Ty=int32_t 2025-08-26T20:54:28.4888009Z ] 2025-08-26T20:54:28.4888207Z 2025-08-26T20:54:28.5742735Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406,61): warning C4267: 'initializing': conversion from 'size_t' to 'unsigned int', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:28.5744758Z (compiling source file '../../csrc/aten/OpenRegMinimal.cpp') 2025-08-26T20:54:28.5745456Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406,61): 2025-08-26T20:54:28.5746127Z the template instantiation context (the oldest one first) is 2025-08-26T20:54:28.5746862Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\dynamo\compiled_autograd.h(236,23): 2025-08-26T20:54:28.5748051Z see reference to function template instantiation 'std::_Vbase &std::vector>::emplace_back(const _Ty &)' being compiled 2025-08-26T20:54:28.5748833Z with 2025-08-26T20:54:28.5749069Z [ 2025-08-26T20:54:28.5749279Z _Ty=size_t 2025-08-26T20:54:28.5749589Z ] 2025-08-26T20:54:28.5750128Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(858,24): 2025-08-26T20:54:28.5751276Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(const unsigned __int64 &)' being compiled 2025-08-26T20:54:28.5752085Z with 2025-08-26T20:54:28.5752299Z [ 2025-08-26T20:54:28.5752539Z _Ty=std::_Vbase 2025-08-26T20:54:28.5752796Z ] 2025-08-26T20:54:28.5753297Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(776,20): 2025-08-26T20:54:28.5754443Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(const unsigned __int64 &)' being compiled 2025-08-26T20:54:28.5755319Z with 2025-08-26T20:54:28.5755557Z [ 2025-08-26T20:54:28.5755773Z _Ty=std::_Vbase 2025-08-26T20:54:28.5756130Z ] 2025-08-26T20:54:28.5756614Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(791,18): 2025-08-26T20:54:28.5757650Z see reference to function template instantiation 'void std::_Construct_in_place(unsigned int &,const _Ty &) noexcept' being compiled 2025-08-26T20:54:28.5758386Z with 2025-08-26T20:54:28.5758614Z [ 2025-08-26T20:54:28.5758839Z _Ty=size_t 2025-08-26T20:54:28.5759072Z ] 2025-08-26T20:54:28.5759289Z 2025-08-26T20:54:28.5760583Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: 'initializing': conversion from 'size_t' to '_Ty', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:28.5763042Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: with [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:28.5765042Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: [ [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:28.5767065Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: _Ty=unsigned int [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:28.5769091Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: ] [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:28.5770403Z (compiling source file '../../csrc/aten/OpenRegMinimal.cpp') 2025-08-26T20:54:28.5771070Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): 2025-08-26T20:54:28.5771773Z the template instantiation context (the oldest one first) is 2025-08-26T20:54:28.5772499Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(779,17): 2025-08-26T20:54:28.5773662Z see reference to function template instantiation 'unsigned int *std::vector>::_Emplace_reallocate(unsigned int *const ,const _Ty &)' being compiled 2025-08-26T20:54:28.5774560Z with 2025-08-26T20:54:28.5774775Z [ 2025-08-26T20:54:28.5775005Z _Ty=size_t 2025-08-26T20:54:28.5775243Z ] 2025-08-26T20:54:28.5775741Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(830,23): 2025-08-26T20:54:28.5776930Z see reference to function template instantiation 'void std::_Default_allocator_traits<_Alloc>::construct<_Ty,const unsigned __int64&>(_Alloc &,_Objty *const ,const unsigned __int64 &)' being compiled 2025-08-26T20:54:28.5777917Z with 2025-08-26T20:54:28.5778155Z [ 2025-08-26T20:54:28.5778387Z _Alloc=std::allocator, 2025-08-26T20:54:28.5778742Z _Ty=unsigned int, 2025-08-26T20:54:28.5779033Z _Objty=unsigned int 2025-08-26T20:54:28.5779301Z ] 2025-08-26T20:54:28.5779520Z 2025-08-26T20:54:28.5892439Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406,61): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:28.5894058Z (compiling source file '../../csrc/aten/OpenRegMinimal.cpp') 2025-08-26T20:54:28.5894753Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406,61): 2025-08-26T20:54:28.5895420Z the template instantiation context (the oldest one first) is 2025-08-26T20:54:28.5896161Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\dynamo\compiled_autograd.h(681,26): 2025-08-26T20:54:28.5897202Z see reference to function template instantiation 'int32_t &std::vector>::emplace_back(size_t &)' being compiled 2025-08-26T20:54:28.5898315Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(858,24): 2025-08-26T20:54:28.5899415Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(unsigned __int64 &)' being compiled 2025-08-26T20:54:28.5900164Z with 2025-08-26T20:54:28.5900396Z [ 2025-08-26T20:54:28.5900601Z _Ty=int32_t 2025-08-26T20:54:28.5900870Z ] 2025-08-26T20:54:28.5901366Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(776,20): 2025-08-26T20:54:28.5902454Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(unsigned __int64 &)' being compiled 2025-08-26T20:54:28.5903345Z with 2025-08-26T20:54:28.5903553Z [ 2025-08-26T20:54:28.5903817Z _Ty=int32_t 2025-08-26T20:54:28.5904060Z ] 2025-08-26T20:54:28.5904599Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(791,18): 2025-08-26T20:54:28.5905583Z see reference to function template instantiation 'void std::_Construct_in_place(int &,_Ty &) noexcept' being compiled 2025-08-26T20:54:28.5906218Z with 2025-08-26T20:54:28.5906451Z [ 2025-08-26T20:54:28.5906662Z _Ty=size_t 2025-08-26T20:54:28.5906920Z ] 2025-08-26T20:54:28.5907119Z 2025-08-26T20:54:28.5908477Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: 'initializing': conversion from 'size_t' to '_Ty', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:28.5910821Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: with [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:28.5912801Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: [ [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:28.5914819Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: _Ty=int [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:28.5916885Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: ] [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:28.5918193Z (compiling source file '../../csrc/aten/OpenRegMinimal.cpp') 2025-08-26T20:54:28.5918856Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): 2025-08-26T20:54:28.5919554Z the template instantiation context (the oldest one first) is 2025-08-26T20:54:28.5920213Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(779,17): 2025-08-26T20:54:28.5921328Z see reference to function template instantiation 'int *std::vector>::_Emplace_reallocate<_Ty&>(int *const ,_Ty &)' being compiled 2025-08-26T20:54:28.5922082Z with 2025-08-26T20:54:28.5922296Z [ 2025-08-26T20:54:28.5922527Z _Ty=size_t 2025-08-26T20:54:28.5922819Z ] 2025-08-26T20:54:28.5923328Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(830,23): 2025-08-26T20:54:28.5924474Z see reference to function template instantiation 'void std::_Default_allocator_traits<_Alloc>::construct<_Ty,unsigned __int64&>(_Alloc &,_Objty *const ,unsigned __int64 &)' being compiled 2025-08-26T20:54:28.5925311Z with 2025-08-26T20:54:28.5925544Z [ 2025-08-26T20:54:28.5925760Z _Alloc=std::allocator, 2025-08-26T20:54:28.5926081Z _Ty=int, 2025-08-26T20:54:28.5926310Z _Objty=int 2025-08-26T20:54:28.5926608Z ] 2025-08-26T20:54:28.5926801Z 2025-08-26T20:54:28.7603308Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): warning C4267: 'initializing': conversion from 'size_t' to '_Ty1', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:28.7605638Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): warning C4267: with [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:28.7607778Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): warning C4267: [ [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:28.7609856Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): warning C4267: _Ty1=int [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:28.7611889Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): warning C4267: ] [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:28.7613155Z (compiling source file '../../csrc/aten/OpenRegMinimal.cpp') 2025-08-26T20:54:28.7613816Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): 2025-08-26T20:54:28.7614513Z the template instantiation context (the oldest one first) is 2025-08-26T20:54:28.7615220Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\dynamo\compiled_autograd.h(658,33): 2025-08-26T20:54:28.7616445Z see reference to function template instantiation 'std::pair &std::vector,std::allocator>>::emplace_back(size_t &,int &)' being compiled 2025-08-26T20:54:28.7617573Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(858,24): 2025-08-26T20:54:28.7618814Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(unsigned __int64 &,int &)' being compiled 2025-08-26T20:54:28.7619608Z with 2025-08-26T20:54:28.7619866Z [ 2025-08-26T20:54:28.7620103Z _Ty=std::pair 2025-08-26T20:54:28.7620417Z ] 2025-08-26T20:54:28.7620900Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(776,20): 2025-08-26T20:54:28.7622050Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(unsigned __int64 &,int &)' being compiled 2025-08-26T20:54:28.7622987Z with 2025-08-26T20:54:28.7623306Z [ 2025-08-26T20:54:28.7623566Z _Ty=std::pair 2025-08-26T20:54:28.7623863Z ] 2025-08-26T20:54:28.7624381Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(791,18): 2025-08-26T20:54:28.7625443Z see reference to function template instantiation 'void std::_Construct_in_place,_Ty&,int&>(std::pair &,_Ty &,int &) noexcept' being compiled 2025-08-26T20:54:28.7626195Z with 2025-08-26T20:54:28.7626432Z [ 2025-08-26T20:54:28.7626695Z _Ty=size_t 2025-08-26T20:54:28.7626970Z ] 2025-08-26T20:54:28.7627506Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406,61): 2025-08-26T20:54:28.7628459Z see reference to function template instantiation 'std::pair::pair(_Other1,_Other2) noexcept' being compiled 2025-08-26T20:54:28.7629136Z with 2025-08-26T20:54:28.7629352Z [ 2025-08-26T20:54:28.7629606Z _Other1=uint64_t &, 2025-08-26T20:54:28.7629959Z _Other2=int & 2025-08-26T20:54:28.7630249Z ] 2025-08-26T20:54:28.7630455Z 2025-08-26T20:54:28.7631764Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,54): warning C4267: 'initializing': conversion from 'size_t' to '_Ty2', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:28.7634082Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,54): warning C4267: with [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:28.7636065Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,54): warning C4267: [ [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:28.7638080Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,54): warning C4267: _Ty2=int [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:28.7640088Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,54): warning C4267: ] [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:28.7641329Z (compiling source file '../../csrc/aten/OpenRegMinimal.cpp') 2025-08-26T20:54:28.7641713Z 2025-08-26T20:54:29.3896336Z Extra.cpp 2025-08-26T20:54:37.1627708Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(82,17): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:37.1629294Z (compiling source file '../../csrc/aten/native/Extra.cpp') 2025-08-26T20:54:37.1629984Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(82,17): 2025-08-26T20:54:37.1630655Z the template instantiation context (the oldest one first) is 2025-08-26T20:54:37.1631341Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen\core\function_schema.h(438,9): 2025-08-26T20:54:37.1632277Z see reference to function template instantiation 'std::optional::optional(_Ty2 &&) noexcept' being compiled 2025-08-26T20:54:37.1633039Z with 2025-08-26T20:54:37.1633287Z [ 2025-08-26T20:54:37.1633545Z I=size_t, 2025-08-26T20:54:37.1633824Z _Ty2=size_t 2025-08-26T20:54:37.1634067Z ] 2025-08-26T20:54:37.1634587Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen\core\function_schema.h(438,9): 2025-08-26T20:54:37.1635422Z see the first reference to 'std::optional::optional' in 'c10::FunctionSchema::argumentIndexWithName' 2025-08-26T20:54:37.1636276Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(248,18): 2025-08-26T20:54:37.1637462Z see reference to function template instantiation 'std::_Optional_construct_base<_Ty>::_Optional_construct_base(std::in_place_t,const unsigned __int64 &&)' being compiled 2025-08-26T20:54:37.1638327Z with 2025-08-26T20:54:37.1638572Z [ 2025-08-26T20:54:37.1638776Z _Ty=int32_t 2025-08-26T20:54:37.1639041Z ] 2025-08-26T20:54:37.1639758Z C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\csrc\aten\native\Extra.cpp(211,1): 2025-08-26T20:54:37.1641076Z see reference to function template instantiation 'std::_Optional_destruct_base<_Ty,true>::_Optional_destruct_base(std::in_place_t,const unsigned __int64 &&) noexcept' being compiled 2025-08-26T20:54:37.1641991Z with 2025-08-26T20:54:37.1642198Z [ 2025-08-26T20:54:37.1642441Z _Ty=int32_t 2025-08-26T20:54:37.1642677Z ] 2025-08-26T20:54:37.1642894Z 2025-08-26T20:54:37.2522920Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406,61): warning C4267: 'initializing': conversion from 'size_t' to 'unsigned int', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:37.2524663Z (compiling source file '../../csrc/aten/native/Extra.cpp') 2025-08-26T20:54:37.2525321Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406,61): 2025-08-26T20:54:37.2526036Z the template instantiation context (the oldest one first) is 2025-08-26T20:54:37.2526748Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\dynamo\compiled_autograd.h(236,23): 2025-08-26T20:54:37.2527890Z see reference to function template instantiation 'std::_Vbase &std::vector>::emplace_back(const _Ty &)' being compiled 2025-08-26T20:54:37.2528670Z with 2025-08-26T20:54:37.2528961Z [ 2025-08-26T20:54:37.2529203Z _Ty=size_t 2025-08-26T20:54:37.2529482Z ] 2025-08-26T20:54:37.2529996Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(858,24): 2025-08-26T20:54:37.2531713Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(const unsigned __int64 &)' being compiled 2025-08-26T20:54:37.2532555Z with 2025-08-26T20:54:37.2532800Z [ 2025-08-26T20:54:37.2533030Z _Ty=std::_Vbase 2025-08-26T20:54:37.2533311Z ] 2025-08-26T20:54:37.2533792Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(776,20): 2025-08-26T20:54:37.2535014Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(const unsigned __int64 &)' being compiled 2025-08-26T20:54:37.2535937Z with 2025-08-26T20:54:37.2536228Z [ 2025-08-26T20:54:37.2536472Z _Ty=std::_Vbase 2025-08-26T20:54:37.2536733Z ] 2025-08-26T20:54:37.2537249Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(791,18): 2025-08-26T20:54:37.2538269Z see reference to function template instantiation 'void std::_Construct_in_place(unsigned int &,const _Ty &) noexcept' being compiled 2025-08-26T20:54:37.2539033Z with 2025-08-26T20:54:37.2539242Z [ 2025-08-26T20:54:37.2539470Z _Ty=size_t 2025-08-26T20:54:37.2539731Z ] 2025-08-26T20:54:37.2539930Z 2025-08-26T20:54:37.2541335Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: 'initializing': conversion from 'size_t' to '_Ty', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:37.2543573Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: with [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:37.2545651Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: [ [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:37.2547859Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: _Ty=unsigned int [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:37.2549904Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: ] [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:37.2551115Z (compiling source file '../../csrc/aten/native/Extra.cpp') 2025-08-26T20:54:37.2551856Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): 2025-08-26T20:54:37.2552574Z the template instantiation context (the oldest one first) is 2025-08-26T20:54:37.2553269Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(779,17): 2025-08-26T20:54:37.2554521Z see reference to function template instantiation 'unsigned int *std::vector>::_Emplace_reallocate(unsigned int *const ,const _Ty &)' being compiled 2025-08-26T20:54:37.2555395Z with 2025-08-26T20:54:37.2555637Z [ 2025-08-26T20:54:37.2555848Z _Ty=size_t 2025-08-26T20:54:37.2556114Z ] 2025-08-26T20:54:37.2556687Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(830,23): 2025-08-26T20:54:37.2557922Z see reference to function template instantiation 'void std::_Default_allocator_traits<_Alloc>::construct<_Ty,const unsigned __int64&>(_Alloc &,_Objty *const ,const unsigned __int64 &)' being compiled 2025-08-26T20:54:37.2558854Z with 2025-08-26T20:54:37.2559070Z [ 2025-08-26T20:54:37.2559334Z _Alloc=std::allocator, 2025-08-26T20:54:37.2559691Z _Ty=unsigned int, 2025-08-26T20:54:37.2559971Z _Objty=unsigned int 2025-08-26T20:54:37.2560274Z ] 2025-08-26T20:54:37.2560469Z 2025-08-26T20:54:37.2673090Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406,61): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:37.2674890Z (compiling source file '../../csrc/aten/native/Extra.cpp') 2025-08-26T20:54:37.2675551Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406,61): 2025-08-26T20:54:37.2676246Z the template instantiation context (the oldest one first) is 2025-08-26T20:54:37.2676955Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\dynamo\compiled_autograd.h(681,26): 2025-08-26T20:54:37.2679072Z see reference to function template instantiation 'int32_t &std::vector>::emplace_back(size_t &)' being compiled 2025-08-26T20:54:37.2680083Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(858,24): 2025-08-26T20:54:37.2681121Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(unsigned __int64 &)' being compiled 2025-08-26T20:54:37.2681997Z with 2025-08-26T20:54:37.2682237Z [ 2025-08-26T20:54:37.2682448Z _Ty=int32_t 2025-08-26T20:54:37.2682713Z ] 2025-08-26T20:54:37.2683199Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(776,20): 2025-08-26T20:54:37.2685429Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(unsigned __int64 &)' being compiled 2025-08-26T20:54:37.2686246Z with 2025-08-26T20:54:37.2686491Z [ 2025-08-26T20:54:37.2686731Z _Ty=int32_t 2025-08-26T20:54:37.2686976Z ] 2025-08-26T20:54:37.2687493Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(791,18): 2025-08-26T20:54:37.2688417Z see reference to function template instantiation 'void std::_Construct_in_place(int &,_Ty &) noexcept' being compiled 2025-08-26T20:54:37.2689070Z with 2025-08-26T20:54:37.2690305Z [ 2025-08-26T20:54:37.2690545Z _Ty=size_t 2025-08-26T20:54:37.2690788Z ] 2025-08-26T20:54:37.2691016Z 2025-08-26T20:54:37.2692323Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: 'initializing': conversion from 'size_t' to '_Ty', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:37.2694524Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: with [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:37.2697604Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: [ [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:37.2699612Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: _Ty=int [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:37.2702601Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: ] [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:37.2703876Z (compiling source file '../../csrc/aten/native/Extra.cpp') 2025-08-26T20:54:37.2704562Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): 2025-08-26T20:54:37.2705232Z the template instantiation context (the oldest one first) is 2025-08-26T20:54:37.2705919Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(779,17): 2025-08-26T20:54:37.2708072Z see reference to function template instantiation 'int *std::vector>::_Emplace_reallocate<_Ty&>(int *const ,_Ty &)' being compiled 2025-08-26T20:54:37.2708805Z with 2025-08-26T20:54:37.2709043Z [ 2025-08-26T20:54:37.2709249Z _Ty=size_t 2025-08-26T20:54:37.2709513Z ] 2025-08-26T20:54:37.2709993Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(830,23): 2025-08-26T20:54:37.2711139Z see reference to function template instantiation 'void std::_Default_allocator_traits<_Alloc>::construct<_Ty,unsigned __int64&>(_Alloc &,_Objty *const ,unsigned __int64 &)' being compiled 2025-08-26T20:54:37.2712075Z with 2025-08-26T20:54:37.2713336Z [ 2025-08-26T20:54:37.2713642Z _Alloc=std::allocator, 2025-08-26T20:54:37.2713938Z _Ty=int, 2025-08-26T20:54:37.2714203Z _Objty=int 2025-08-26T20:54:37.2714436Z ] 2025-08-26T20:54:37.2714659Z 2025-08-26T20:54:37.4502001Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): warning C4267: 'initializing': conversion from 'size_t' to '_Ty1', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:37.4504363Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): warning C4267: with [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:37.4506410Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): warning C4267: [ [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:37.4508418Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): warning C4267: _Ty1=int [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:37.4510470Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): warning C4267: ] [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:37.4511724Z (compiling source file '../../csrc/aten/native/Extra.cpp') 2025-08-26T20:54:37.4512419Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): 2025-08-26T20:54:37.4513095Z the template instantiation context (the oldest one first) is 2025-08-26T20:54:37.4513903Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\dynamo\compiled_autograd.h(658,33): 2025-08-26T20:54:37.4515136Z see reference to function template instantiation 'std::pair &std::vector,std::allocator>>::emplace_back(size_t &,int &)' being compiled 2025-08-26T20:54:37.4516247Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(858,24): 2025-08-26T20:54:37.4517435Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(unsigned __int64 &,int &)' being compiled 2025-08-26T20:54:37.4518239Z with 2025-08-26T20:54:37.4518454Z [ 2025-08-26T20:54:37.4518707Z _Ty=std::pair 2025-08-26T20:54:37.4518993Z ] 2025-08-26T20:54:37.4519500Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(776,20): 2025-08-26T20:54:37.4520623Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(unsigned __int64 &,int &)' being compiled 2025-08-26T20:54:37.4521492Z with 2025-08-26T20:54:37.4521729Z [ 2025-08-26T20:54:37.4521950Z _Ty=std::pair 2025-08-26T20:54:37.4522270Z ] 2025-08-26T20:54:37.4522755Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(791,18): 2025-08-26T20:54:37.4523873Z see reference to function template instantiation 'void std::_Construct_in_place,_Ty&,int&>(std::pair &,_Ty &,int &) noexcept' being compiled 2025-08-26T20:54:37.4524681Z with 2025-08-26T20:54:37.4524894Z [ 2025-08-26T20:54:37.4525123Z _Ty=size_t 2025-08-26T20:54:37.4525356Z ] 2025-08-26T20:54:37.4525860Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406,61): 2025-08-26T20:54:37.4526832Z see reference to function template instantiation 'std::pair::pair(_Other1,_Other2) noexcept' being compiled 2025-08-26T20:54:37.4527499Z with 2025-08-26T20:54:37.4527710Z [ 2025-08-26T20:54:37.4527951Z _Other1=uint64_t &, 2025-08-26T20:54:37.4528252Z _Other2=int & 2025-08-26T20:54:37.4528500Z ] 2025-08-26T20:54:37.4528709Z 2025-08-26T20:54:37.4530000Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,54): warning C4267: 'initializing': conversion from 'size_t' to '_Ty2', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:37.4532247Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,54): warning C4267: with [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:37.4534277Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,54): warning C4267: [ [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:37.4536316Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,54): warning C4267: _Ty2=int [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:37.4538299Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,54): warning C4267: ] [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:37.4539523Z (compiling source file '../../csrc/aten/native/Extra.cpp') 2025-08-26T20:54:37.4539885Z 2025-08-26T20:54:37.9839132Z Minimal.cpp 2025-08-26T20:54:45.6448899Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(82,17): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:45.6450629Z (compiling source file '../../csrc/aten/native/Minimal.cpp') 2025-08-26T20:54:45.6451333Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(82,17): 2025-08-26T20:54:45.6451999Z the template instantiation context (the oldest one first) is 2025-08-26T20:54:45.6452680Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen\core\function_schema.h(438,9): 2025-08-26T20:54:45.6453647Z see reference to function template instantiation 'std::optional::optional(_Ty2 &&) noexcept' being compiled 2025-08-26T20:54:45.6454284Z with 2025-08-26T20:54:45.6454514Z [ 2025-08-26T20:54:45.6454713Z I=size_t, 2025-08-26T20:54:45.6454968Z _Ty2=size_t 2025-08-26T20:54:45.6456419Z ] 2025-08-26T20:54:45.6457156Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen\core\function_schema.h(438,9): 2025-08-26T20:54:45.6458805Z see the first reference to 'std::optional::optional' in 'c10::FunctionSchema::argumentIndexWithName' 2025-08-26T20:54:45.6460421Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(248,18): 2025-08-26T20:54:45.6462822Z see reference to function template instantiation 'std::_Optional_construct_base<_Ty>::_Optional_construct_base(std::in_place_t,const unsigned __int64 &&)' being compiled 2025-08-26T20:54:45.6463693Z with 2025-08-26T20:54:45.6463929Z [ 2025-08-26T20:54:45.6464138Z _Ty=int32_t 2025-08-26T20:54:45.6464402Z ] 2025-08-26T20:54:45.6465047Z C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\csrc\aten\native\Minimal.cpp(186,1): 2025-08-26T20:54:45.6466359Z see reference to function template instantiation 'std::_Optional_destruct_base<_Ty,true>::_Optional_destruct_base(std::in_place_t,const unsigned __int64 &&) noexcept' being compiled 2025-08-26T20:54:45.6467283Z with 2025-08-26T20:54:45.6467545Z [ 2025-08-26T20:54:45.6467952Z _Ty=int32_t 2025-08-26T20:54:45.6468413Z ] 2025-08-26T20:54:45.6468740Z 2025-08-26T20:54:45.7319090Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406,61): warning C4267: 'initializing': conversion from 'size_t' to 'unsigned int', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:45.7320712Z (compiling source file '../../csrc/aten/native/Minimal.cpp') 2025-08-26T20:54:45.7321532Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406,61): 2025-08-26T20:54:45.7322244Z the template instantiation context (the oldest one first) is 2025-08-26T20:54:45.7322957Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\dynamo\compiled_autograd.h(236,23): 2025-08-26T20:54:45.7324181Z see reference to function template instantiation 'std::_Vbase &std::vector>::emplace_back(const _Ty &)' being compiled 2025-08-26T20:54:45.7324948Z with 2025-08-26T20:54:45.7325160Z [ 2025-08-26T20:54:45.7325391Z _Ty=size_t 2025-08-26T20:54:45.7325627Z ] 2025-08-26T20:54:45.7326119Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(858,24): 2025-08-26T20:54:45.7327277Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(const unsigned __int64 &)' being compiled 2025-08-26T20:54:45.7328084Z with 2025-08-26T20:54:45.7328316Z [ 2025-08-26T20:54:45.7328523Z _Ty=std::_Vbase 2025-08-26T20:54:45.7328798Z ] 2025-08-26T20:54:45.7329271Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(776,20): 2025-08-26T20:54:45.7330419Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(const unsigned __int64 &)' being compiled 2025-08-26T20:54:45.7331278Z with 2025-08-26T20:54:45.7331478Z [ 2025-08-26T20:54:45.7331707Z _Ty=std::_Vbase 2025-08-26T20:54:45.7331958Z ] 2025-08-26T20:54:45.7332454Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(791,18): 2025-08-26T20:54:45.7333534Z see reference to function template instantiation 'void std::_Construct_in_place(unsigned int &,const _Ty &) noexcept' being compiled 2025-08-26T20:54:45.7334295Z with 2025-08-26T20:54:45.7334521Z [ 2025-08-26T20:54:45.7334724Z _Ty=size_t 2025-08-26T20:54:45.7334984Z ] 2025-08-26T20:54:45.7335176Z 2025-08-26T20:54:45.7336546Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: 'initializing': conversion from 'size_t' to '_Ty', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:45.7338791Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: with [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:45.7340758Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: [ [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:45.7342793Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: _Ty=unsigned int [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:45.7344826Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: ] [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:45.7346102Z (compiling source file '../../csrc/aten/native/Minimal.cpp') 2025-08-26T20:54:45.7346781Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): 2025-08-26T20:54:45.7347471Z the template instantiation context (the oldest one first) is 2025-08-26T20:54:45.7348131Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(779,17): 2025-08-26T20:54:45.7349400Z see reference to function template instantiation 'unsigned int *std::vector>::_Emplace_reallocate(unsigned int *const ,const _Ty &)' being compiled 2025-08-26T20:54:45.7367768Z with 2025-08-26T20:54:45.7368133Z [ 2025-08-26T20:54:45.7368397Z _Ty=size_t 2025-08-26T20:54:45.7368794Z ] 2025-08-26T20:54:45.7369331Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(830,23): 2025-08-26T20:54:45.7370557Z see reference to function template instantiation 'void std::_Default_allocator_traits<_Alloc>::construct<_Ty,const unsigned __int64&>(_Alloc &,_Objty *const ,const unsigned __int64 &)' being compiled 2025-08-26T20:54:45.7371432Z with 2025-08-26T20:54:45.7371670Z [ 2025-08-26T20:54:45.7371913Z _Alloc=std::allocator, 2025-08-26T20:54:45.7372272Z _Ty=unsigned int, 2025-08-26T20:54:45.7372557Z _Objty=unsigned int 2025-08-26T20:54:45.7372856Z ] 2025-08-26T20:54:45.7373061Z 2025-08-26T20:54:45.7461744Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406,61): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:45.7463424Z (compiling source file '../../csrc/aten/native/Minimal.cpp') 2025-08-26T20:54:45.7464111Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406,61): 2025-08-26T20:54:45.7464785Z the template instantiation context (the oldest one first) is 2025-08-26T20:54:45.7465515Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\dynamo\compiled_autograd.h(681,26): 2025-08-26T20:54:45.7466609Z see reference to function template instantiation 'int32_t &std::vector>::emplace_back(size_t &)' being compiled 2025-08-26T20:54:45.7467563Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(858,24): 2025-08-26T20:54:45.7468593Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(unsigned __int64 &)' being compiled 2025-08-26T20:54:45.7469338Z with 2025-08-26T20:54:45.7469558Z [ 2025-08-26T20:54:45.7469753Z _Ty=int32_t 2025-08-26T20:54:45.7470015Z ] 2025-08-26T20:54:45.7470487Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(776,20): 2025-08-26T20:54:45.7471587Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(unsigned __int64 &)' being compiled 2025-08-26T20:54:45.7472402Z with 2025-08-26T20:54:45.7472614Z [ 2025-08-26T20:54:45.7472844Z _Ty=int32_t 2025-08-26T20:54:45.7473070Z ] 2025-08-26T20:54:45.7473573Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(791,18): 2025-08-26T20:54:45.7474578Z see reference to function template instantiation 'void std::_Construct_in_place(int &,_Ty &) noexcept' being compiled 2025-08-26T20:54:45.7475205Z with 2025-08-26T20:54:45.7475440Z [ 2025-08-26T20:54:45.7475642Z _Ty=size_t 2025-08-26T20:54:45.7475896Z ] 2025-08-26T20:54:45.7476091Z 2025-08-26T20:54:45.7477389Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: 'initializing': conversion from 'size_t' to '_Ty', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:45.7479639Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: with [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:45.7481651Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: [ [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:45.7483736Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: _Ty=int [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:45.7485741Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: ] [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:45.7486964Z (compiling source file '../../csrc/aten/native/Minimal.cpp') 2025-08-26T20:54:45.7487625Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): 2025-08-26T20:54:45.7488344Z the template instantiation context (the oldest one first) is 2025-08-26T20:54:45.7489003Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(779,17): 2025-08-26T20:54:45.7490053Z see reference to function template instantiation 'int *std::vector>::_Emplace_reallocate<_Ty&>(int *const ,_Ty &)' being compiled 2025-08-26T20:54:45.7490794Z with 2025-08-26T20:54:45.7490993Z [ 2025-08-26T20:54:45.7491276Z _Ty=size_t 2025-08-26T20:54:45.7491593Z ] 2025-08-26T20:54:45.7492086Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(830,23): 2025-08-26T20:54:45.7493213Z see reference to function template instantiation 'void std::_Default_allocator_traits<_Alloc>::construct<_Ty,unsigned __int64&>(_Alloc &,_Objty *const ,unsigned __int64 &)' being compiled 2025-08-26T20:54:45.7494070Z with 2025-08-26T20:54:45.7494300Z [ 2025-08-26T20:54:45.7494522Z _Alloc=std::allocator, 2025-08-26T20:54:45.7494847Z _Ty=int, 2025-08-26T20:54:45.7495079Z _Objty=int 2025-08-26T20:54:45.7495334Z ] 2025-08-26T20:54:45.7495523Z 2025-08-26T20:54:45.8733404Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): warning C4267: 'initializing': conversion from 'size_t' to '_Ty1', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:45.8735943Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): warning C4267: with [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:45.8737966Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): warning C4267: [ [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:45.8739986Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): warning C4267: _Ty1=int [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:45.8741950Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): warning C4267: ] [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:45.8743281Z (compiling source file '../../csrc/aten/native/Minimal.cpp') 2025-08-26T20:54:45.8743970Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): 2025-08-26T20:54:45.8744635Z the template instantiation context (the oldest one first) is 2025-08-26T20:54:45.8745369Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\dynamo\compiled_autograd.h(658,33): 2025-08-26T20:54:45.8746590Z see reference to function template instantiation 'std::pair &std::vector,std::allocator>>::emplace_back(size_t &,int &)' being compiled 2025-08-26T20:54:45.8747701Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(858,24): 2025-08-26T20:54:45.8748802Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(unsigned __int64 &,int &)' being compiled 2025-08-26T20:54:45.8749687Z with 2025-08-26T20:54:45.8749908Z [ 2025-08-26T20:54:45.8750166Z _Ty=std::pair 2025-08-26T20:54:45.8750443Z ] 2025-08-26T20:54:45.8750952Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(776,20): 2025-08-26T20:54:45.8752070Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(unsigned __int64 &,int &)' being compiled 2025-08-26T20:54:45.8753425Z with 2025-08-26T20:54:45.8753677Z [ 2025-08-26T20:54:45.8753900Z _Ty=std::pair 2025-08-26T20:54:45.8754211Z ] 2025-08-26T20:54:45.8754684Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(791,18): 2025-08-26T20:54:45.8755710Z see reference to function template instantiation 'void std::_Construct_in_place,_Ty&,int&>(std::pair &,_Ty &,int &) noexcept' being compiled 2025-08-26T20:54:45.8756467Z with 2025-08-26T20:54:45.8756696Z [ 2025-08-26T20:54:45.8756897Z _Ty=size_t 2025-08-26T20:54:45.8757143Z ] 2025-08-26T20:54:45.8757623Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406,61): 2025-08-26T20:54:45.8758706Z see reference to function template instantiation 'std::pair::pair(_Other1,_Other2) noexcept' being compiled 2025-08-26T20:54:45.8759319Z with 2025-08-26T20:54:45.8759518Z [ 2025-08-26T20:54:45.8759716Z _Other1=uint64_t &, 2025-08-26T20:54:45.8759983Z _Other2=int & 2025-08-26T20:54:45.8760212Z ] 2025-08-26T20:54:45.8760378Z 2025-08-26T20:54:45.8761731Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,54): warning C4267: 'initializing': conversion from 'size_t' to '_Ty2', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:45.8764021Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,54): warning C4267: with [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:45.8765969Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,54): warning C4267: [ [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:45.8768016Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,54): warning C4267: _Ty2=int [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:45.8769978Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,54): warning C4267: ] [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:45.8771153Z (compiling source file '../../csrc/aten/native/Minimal.cpp') 2025-08-26T20:54:45.8771516Z 2025-08-26T20:54:46.3525316Z OpenRegDeviceAllocator.cpp 2025-08-26T20:54:47.3351856Z OpenRegFunctions.cpp 2025-08-26T20:54:48.0636397Z OpenRegGenerator.cpp 2025-08-26T20:54:49.4384973Z OpenRegGuard.cpp 2025-08-26T20:54:50.0706989Z C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\csrc\runtime\OpenRegGuard.h(124,16): warning C4312: 'reinterpret_cast': conversion from 'int' to 'void *' of greater size [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:54:50.0708793Z (compiling source file '../../csrc/runtime/OpenRegGuard.cpp') 2025-08-26T20:54:50.0709144Z 2025-08-26T20:54:50.2169518Z OpenRegHooks.cpp 2025-08-26T20:54:51.6922009Z OpenRegHostAllocator.cpp 2025-08-26T20:54:52.6783482Z OpenRegSerialization.cpp 2025-08-26T20:54:56.1793781Z Generating Code... 2025-08-26T20:55:00.3038058Z Creating library C:/actions-runner/_work/pytorch/pytorch/test/cpp_extensions/open_registration_extension/torch_openreg/build/csrc/Release/torch_openreg.lib and object C:/actions-runner/_work/pytorch/pytorch/test/cpp_extensions/open_registration_extension/torch_openreg/build/csrc/Release/torch_openreg.exp 2025-08-26T20:55:00.3908997Z torch_openreg.vcxproj -> C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\Release\torch_openreg.dll 2025-08-26T20:55:00.4832459Z Building Custom Rule C:/actions-runner/_work/pytorch/pytorch/test/cpp_extensions/open_registration_extension/torch_openreg/torch_openreg/csrc/CMakeLists.txt 2025-08-26T20:55:00.6997828Z Module.cpp 2025-08-26T20:55:07.6209952Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\utils\python_compat.h(41,13): warning C4273: '_PyWeakref_ClearRef': inconsistent dll linkage [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\torch_openreg\csrc\torch_bindings.vcxproj] 2025-08-26T20:55:07.6238703Z (compiling source file '../../../torch_openreg/csrc/Module.cpp') 2025-08-26T20:55:07.6239161Z C:\Jenkins\Miniconda3\Include\weakrefobject.h(67,18): 2025-08-26T20:55:07.6239560Z see previous definition of '_PyWeakref_ClearRef' 2025-08-26T20:55:07.6239862Z 2025-08-26T20:55:12.3358178Z Creating library C:/actions-runner/_work/pytorch/pytorch/test/cpp_extensions/open_registration_extension/torch_openreg/build/torch_openreg/csrc/Release/torch_bindings.lib and object C:/actions-runner/_work/pytorch/pytorch/test/cpp_extensions/open_registration_extension/torch_openreg/build/torch_openreg/csrc/Release/torch_bindings.exp 2025-08-26T20:55:12.4174831Z torch_bindings.vcxproj -> C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\torch_openreg\csrc\Release\torch_bindings.dll 2025-08-26T20:55:12.4690326Z Building Custom Rule C:/actions-runner/_work/pytorch/pytorch/test/cpp_extensions/open_registration_extension/torch_openreg/CMakeLists.txt 2025-08-26T20:55:12.6172631Z -- Install configuration: "Release" 2025-08-26T20:55:12.7129604Z Could not find an up-to-date installation of `packaging`. License expressions might not be validated. To enforce validation, please install `packaging>=24.2`. 2025-08-26T20:55:12.8763631Z C:\Jenkins\Miniconda3\lib\site-packages\setuptools\config\_apply_pyprojecttoml.py:82: SetuptoolsDeprecationWarning: `project.license` as a TOML table is deprecated 2025-08-26T20:55:12.8764453Z !! 2025-08-26T20:55:12.8764567Z 2025-08-26T20:55:12.8764684Z ******************************************************************************** 2025-08-26T20:55:12.8765523Z Please use a simple string containing a SPDX expression for `project.license`. You can also use `project.license-files`. (Both options available on setuptools>=77.0.0). 2025-08-26T20:55:12.8766208Z 2025-08-26T20:55:12.8766425Z By 2026-Feb-18, you need to update your project and remove deprecated calls 2025-08-26T20:55:12.8766863Z or your builds will no longer be supported. 2025-08-26T20:55:12.8767086Z 2025-08-26T20:55:12.8767497Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-08-26T20:55:12.8768063Z ******************************************************************************** 2025-08-26T20:55:12.8768438Z 2025-08-26T20:55:12.8768523Z !! 2025-08-26T20:55:12.8768706Z corresp(dist, value, root_dir) 2025-08-26T20:55:13.0627479Z running install 2025-08-26T20:55:13.1196223Z C:\Jenkins\Miniconda3\lib\site-packages\setuptools\_distutils\cmd.py:90: SetuptoolsDeprecationWarning: setup.py install is deprecated. 2025-08-26T20:55:13.1196923Z !! 2025-08-26T20:55:13.1197023Z 2025-08-26T20:55:13.1197134Z ******************************************************************************** 2025-08-26T20:55:13.1197481Z Please avoid running ``setup.py`` directly. 2025-08-26T20:55:13.1197988Z Instead, use pypa/build, pypa/installer or other 2025-08-26T20:55:13.1198337Z standards-based tools. 2025-08-26T20:55:13.1198503Z 2025-08-26T20:55:13.1198796Z See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details. 2025-08-26T20:55:13.1199335Z ******************************************************************************** 2025-08-26T20:55:13.1199628Z 2025-08-26T20:55:13.1199701Z !! 2025-08-26T20:55:13.1199877Z self.initialize_options() 2025-08-26T20:55:13.1320456Z running build 2025-08-26T20:55:13.1320718Z running build_py 2025-08-26T20:55:13.1422829Z creating build\lib.win-amd64-cpython-39\torch_openreg 2025-08-26T20:55:13.1427305Z copying torch_openreg\_utils.py -> build\lib.win-amd64-cpython-39\torch_openreg 2025-08-26T20:55:13.1433748Z copying torch_openreg\__init__.py -> build\lib.win-amd64-cpython-39\torch_openreg 2025-08-26T20:55:13.1440700Z creating build\lib.win-amd64-cpython-39\torch_openreg\openreg 2025-08-26T20:55:13.1443515Z copying torch_openreg\openreg\meta.py -> build\lib.win-amd64-cpython-39\torch_openreg\openreg 2025-08-26T20:55:13.1448955Z copying torch_openreg\openreg\random.py -> build\lib.win-amd64-cpython-39\torch_openreg\openreg 2025-08-26T20:55:13.1454764Z copying torch_openreg\openreg\__init__.py -> build\lib.win-amd64-cpython-39\torch_openreg\openreg 2025-08-26T20:55:13.1474925Z creating build\lib.win-amd64-cpython-39\torch_openreg\lib 2025-08-26T20:55:13.1477546Z copying torch_openreg\lib\openreg.dll -> build\lib.win-amd64-cpython-39\torch_openreg\lib 2025-08-26T20:55:13.1484620Z copying torch_openreg\lib\torch_bindings.dll -> build\lib.win-amd64-cpython-39\torch_openreg\lib 2025-08-26T20:55:13.1493316Z copying torch_openreg\lib\torch_openreg.dll -> build\lib.win-amd64-cpython-39\torch_openreg\lib 2025-08-26T20:55:13.1503224Z copying torch_openreg\lib\openreg.lib -> build\lib.win-amd64-cpython-39\torch_openreg\lib 2025-08-26T20:55:13.1509809Z copying torch_openreg\lib\torch_bindings.lib -> build\lib.win-amd64-cpython-39\torch_openreg\lib 2025-08-26T20:55:13.1522573Z copying torch_openreg\lib\torch_openreg.lib -> build\lib.win-amd64-cpython-39\torch_openreg\lib 2025-08-26T20:55:13.1531444Z running build_ext 2025-08-26T20:55:13.1662635Z building 'torch_openreg._C' extension 2025-08-26T20:55:13.1674782Z creating build\temp.win-amd64-cpython-39\Release\torch_openreg\csrc 2025-08-26T20:55:13.1686961Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64\cl.exe" /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\Jenkins\Miniconda3\include -IC:\Jenkins\Miniconda3\Include "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" /Tctorch_openreg/csrc/stub.c /Fobuild\temp.win-amd64-cpython-39\Release\torch_openreg\csrc\stub.obj /MD /FS /EHsc 2025-08-26T20:55:13.1794168Z stub.c 2025-08-26T20:55:13.3024503Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64\link.exe" /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\torch_openreg/lib /LIBPATH:C:\Jenkins\Miniconda3\libs /LIBPATH:C:\Jenkins\Miniconda3 /LIBPATH:C:\Jenkins\Miniconda3\PCbuild\amd64 "/LIBPATH:C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64" torch_bindings.lib /EXPORT:PyInit__C build\temp.win-amd64-cpython-39\Release\torch_openreg\csrc\stub.obj /OUT:build\lib.win-amd64-cpython-39\torch_openreg\_C.cp39-win_amd64.pyd /IMPLIB:build\temp.win-amd64-cpython-39\Release\torch_openreg\csrc\_C.cp39-win_amd64.lib /NODEFAULTLIB:LIBCMT.LIB 2025-08-26T20:55:13.3209452Z Creating library build\temp.win-amd64-cpython-39\Release\torch_openreg\csrc\_C.cp39-win_amd64.lib and object build\temp.win-amd64-cpython-39\Release\torch_openreg\csrc\_C.cp39-win_amd64.exp 2025-08-26T20:55:13.3253994Z Generating code 2025-08-26T20:55:13.3346416Z Finished generating code 2025-08-26T20:55:13.3635381Z running install_lib 2025-08-26T20:55:13.3749478Z creating install\Jenkins\Miniconda3\Lib\site-packages 2025-08-26T20:55:13.3758332Z creating install\Jenkins\Miniconda3\Lib\site-packages\torch_openreg 2025-08-26T20:55:13.3761926Z creating install\Jenkins\Miniconda3\Lib\site-packages\torch_openreg\lib 2025-08-26T20:55:13.3765388Z copying build\lib.win-amd64-cpython-39\torch_openreg\lib\openreg.dll -> ./install\Jenkins\Miniconda3\Lib\site-packages\torch_openreg\lib 2025-08-26T20:55:13.3771819Z copying build\lib.win-amd64-cpython-39\torch_openreg\lib\openreg.lib -> ./install\Jenkins\Miniconda3\Lib\site-packages\torch_openreg\lib 2025-08-26T20:55:13.3778705Z copying build\lib.win-amd64-cpython-39\torch_openreg\lib\torch_bindings.dll -> ./install\Jenkins\Miniconda3\Lib\site-packages\torch_openreg\lib 2025-08-26T20:55:13.3785508Z copying build\lib.win-amd64-cpython-39\torch_openreg\lib\torch_bindings.lib -> ./install\Jenkins\Miniconda3\Lib\site-packages\torch_openreg\lib 2025-08-26T20:55:13.3791842Z copying build\lib.win-amd64-cpython-39\torch_openreg\lib\torch_openreg.dll -> ./install\Jenkins\Miniconda3\Lib\site-packages\torch_openreg\lib 2025-08-26T20:55:13.3806522Z copying build\lib.win-amd64-cpython-39\torch_openreg\lib\torch_openreg.lib -> ./install\Jenkins\Miniconda3\Lib\site-packages\torch_openreg\lib 2025-08-26T20:55:13.3813216Z creating install\Jenkins\Miniconda3\Lib\site-packages\torch_openreg\openreg 2025-08-26T20:55:13.3816597Z copying build\lib.win-amd64-cpython-39\torch_openreg\openreg\meta.py -> ./install\Jenkins\Miniconda3\Lib\site-packages\torch_openreg\openreg 2025-08-26T20:55:13.3822346Z copying build\lib.win-amd64-cpython-39\torch_openreg\openreg\random.py -> ./install\Jenkins\Miniconda3\Lib\site-packages\torch_openreg\openreg 2025-08-26T20:55:13.3828006Z copying build\lib.win-amd64-cpython-39\torch_openreg\openreg\__init__.py -> ./install\Jenkins\Miniconda3\Lib\site-packages\torch_openreg\openreg 2025-08-26T20:55:13.3833956Z copying build\lib.win-amd64-cpython-39\torch_openreg\_C.cp39-win_amd64.pyd -> ./install\Jenkins\Miniconda3\Lib\site-packages\torch_openreg 2025-08-26T20:55:13.3839660Z copying build\lib.win-amd64-cpython-39\torch_openreg\_utils.py -> ./install\Jenkins\Miniconda3\Lib\site-packages\torch_openreg 2025-08-26T20:55:13.3845561Z copying build\lib.win-amd64-cpython-39\torch_openreg\__init__.py -> ./install\Jenkins\Miniconda3\Lib\site-packages\torch_openreg 2025-08-26T20:55:13.3865948Z byte-compiling ./install\Jenkins\Miniconda3\Lib\site-packages\torch_openreg\openreg\meta.py to meta.cpython-39.pyc 2025-08-26T20:55:13.3874600Z byte-compiling ./install\Jenkins\Miniconda3\Lib\site-packages\torch_openreg\openreg\random.py to random.cpython-39.pyc 2025-08-26T20:55:13.3885614Z byte-compiling ./install\Jenkins\Miniconda3\Lib\site-packages\torch_openreg\openreg\__init__.py to __init__.cpython-39.pyc 2025-08-26T20:55:13.3900017Z byte-compiling ./install\Jenkins\Miniconda3\Lib\site-packages\torch_openreg\_utils.py to _utils.cpython-39.pyc 2025-08-26T20:55:13.3911289Z byte-compiling ./install\Jenkins\Miniconda3\Lib\site-packages\torch_openreg\__init__.py to __init__.cpython-39.pyc 2025-08-26T20:55:13.3918555Z running install_egg_info 2025-08-26T20:55:13.4124354Z running egg_info 2025-08-26T20:55:13.4222825Z creating torch_openreg.egg-info 2025-08-26T20:55:13.4225548Z writing torch_openreg.egg-info\PKG-INFO 2025-08-26T20:55:13.4235670Z writing dependency_links to torch_openreg.egg-info\dependency_links.txt 2025-08-26T20:55:13.4239952Z writing requirements to torch_openreg.egg-info\requires.txt 2025-08-26T20:55:13.4242667Z writing top-level names to torch_openreg.egg-info\top_level.txt 2025-08-26T20:55:13.4252617Z writing manifest file 'torch_openreg.egg-info\SOURCES.txt' 2025-08-26T20:55:13.4375425Z reading manifest file 'torch_openreg.egg-info\SOURCES.txt' 2025-08-26T20:55:13.4394874Z writing manifest file 'torch_openreg.egg-info\SOURCES.txt' 2025-08-26T20:55:13.4398830Z Copying torch_openreg.egg-info to ./install\Jenkins\Miniconda3\Lib\site-packages\torch_openreg-0.0.1-py3.9.egg-info 2025-08-26T20:55:13.4431401Z running install_scripts 2025-08-26T20:55:13.7736648Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:55:13.7744014Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_transformers_privateuse1.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:55:13.771885] 2025-08-26T20:55:18.7740204Z 2025-08-26T20:55:18.7741535Z test_transformers_privateuse1 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_transformers_privateuse1_1.1_b3940f5444d25594_.log 2025-08-26T20:55:18.7743884Z Running 3 items in this shard: test/test_transformers_privateuse1.py::TestSDPAPrivateUse1Only::test_fused_sdp_choice_privateuseone, test/test_transformers_privateuse1.py::TestSDPAPrivateUse1Only::test_scaled_dot_product_fused_attention_overrideable, test/test_transformers_privateuse1.py::TestSDPAPrivateUse1Only::test_scaled_dot_product_fused_attention_overrideable_backward 2025-08-26T20:55:18.7745475Z 2025-08-26T20:55:18.7747114Z Running test_cpp_api_parity 1/1 ... [2025-08-26 20:55:18.774359] 2025-08-26T20:55:18.7747515Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:55:18.7753465Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_cpp_api_parity.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:55:18.774945] 2025-08-26T20:56:08.5027732Z 2025-08-26T20:56:08.5028889Z test_cpp_api_parity 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_cpp_api_parity_1.1_61deff4ae1946dde_.log 2025-08-26T20:56:08.5215123Z Running 488 items in this shard: test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_BCELoss_no_batch_dim_mean, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_BCELoss_no_batch_dim_mean_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_BCELoss_no_batch_dim_none, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_BCELoss_no_batch_dim_none_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_BCELoss_no_batch_dim_sum, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_BCELoss_no_batch_dim_sum_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_BCEWithLogitsLoss_no_batch_dim_mean, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_BCEWithLogitsLoss_no_batch_dim_mean_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_BCEWithLogitsLoss_no_batch_dim_none, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_BCEWithLogitsLoss_no_batch_dim_none_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_BCEWithLogitsLoss_no_batch_dim_sum, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_BCEWithLogitsLoss_no_batch_dim_sum_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_circular_stride2_pad2, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_circular_stride2_pad2_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_dilated, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_dilated_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_groups, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_groups_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_pad1, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_pad1_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_pad1size1, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_pad1size1_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_pad2, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_pad2_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_pad2size1, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_pad2size1_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_pad_same, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_pad_same2, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_pad_same2_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_pad_same_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_pad_same_dilated, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_pad_same_dilated_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_pad_valid, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_pad_valid_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_reflect_stride2_pad2, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_reflect_stride2_pad2_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_replicate_stride2_pad2, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_replicate_stride2_pad2_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_stride, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_stride_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_zero_batch, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_zero_batch_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_zeros_stride2_pad2, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_zeros_stride2_pad2_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_circular_stride2_pad2, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_circular_stride2_pad2_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_depthwise, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_depthwise_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_depthwise_dilated, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_depthwise_dilated_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_depthwise_padded, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_depthwise_padded_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_depthwise_strided, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_depthwise_strided_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_depthwise_with_multiplier, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_depthwise_with_multiplier_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_dilated, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_dilated_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_groups, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_groups_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_groups_thnn, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_groups_thnn_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_no_bias, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_no_bias_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_pad_same, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_pad_same_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_pad_same_dilated, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_pad_same_dilated_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_pad_valid, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_pad_valid_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_padding, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_padding_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_reflect_stride2_pad2, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_reflect_stride2_pad2_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_replicate_stride2_pad2, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_replicate_stride2_pad2_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_strided, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_strided_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_zero_batch, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_zero_batch_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_zeros_stride2_pad2, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_zeros_stride2_pad2_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_1x1x1_no_bias, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_1x1x1_no_bias_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_circular_stride2_pad2, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_circular_stride2_pad2_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_dilated, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_dilated_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_dilated_strided, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_dilated_strided_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_groups, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_groups_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_no_bias, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_no_bias_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_pad_same, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_pad_same_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_pad_same_dilated, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_pad_same_dilated_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_pad_valid, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_pad_valid_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_replicate_stride2_pad2, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_replicate_stride2_pad2_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_stride, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_stride_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_stride_padding, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_stride_padding_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_zero_batch, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_zero_batch_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_zeros_stride2_pad2, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_zeros_stride2_pad2_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ConvTranspose1d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ConvTranspose1d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ConvTranspose1d_dilated, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ConvTranspose1d_dilated_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ConvTranspose1d_groups, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ConvTranspose1d_groups_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ConvTranspose1d_no_bias, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ConvTranspose1d_no_bias_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ConvTranspose2d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ConvTranspose2d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ConvTranspose2d_dilated, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ConvTranspose2d_dilated_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ConvTranspose2d_groups, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ConvTranspose2d_groups_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ConvTranspose2d_no_bias, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ConvTranspose2d_no_bias_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ConvTranspose3d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ConvTranspose3d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ConvTranspose3d_dilated, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ConvTranspose3d_dilated_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_CosineEmbeddingLoss_no_batch_dim_mean, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_CosineEmbeddingLoss_no_batch_dim_mean_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_CosineEmbeddingLoss_no_batch_dim_none, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_CosineEmbeddingLoss_no_batch_dim_none_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_CosineEmbeddingLoss_no_batch_dim_sum, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_CosineEmbeddingLoss_no_batch_dim_sum_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_CrossMapLRN2d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_CrossMapLRN2d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Embedding, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_EmbeddingBag_discontiguous, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_EmbeddingBag_discontiguous_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_EmbeddingBag_max, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_EmbeddingBag_max_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_EmbeddingBag_max_padding_idx, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_EmbeddingBag_max_padding_idx_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_EmbeddingBag_mean, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_EmbeddingBag_mean_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_EmbeddingBag_mean_padding_idx, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_EmbeddingBag_mean_padding_idx_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_EmbeddingBag_sparse, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_EmbeddingBag_sparse_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_EmbeddingBag_sum, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_EmbeddingBag_sum_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_EmbeddingBag_sum_padding_idx, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_EmbeddingBag_sum_padding_idx_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Embedding_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Embedding_discontiguous, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Embedding_discontiguous_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Embedding_sparse, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Embedding_sparse_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Flatten, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Flatten_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Flatten_no_batch_dim, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Flatten_no_batch_dim_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Fold, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Fold_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Fold_int_input, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Fold_int_input_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Fold_no_batch_dim_input, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Fold_no_batch_dim_input_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Fold_no_batch_dim_int_input, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Fold_no_batch_dim_int_input_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_HingeEmbeddingLoss_no_batch_dim_mean, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_HingeEmbeddingLoss_no_batch_dim_mean_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_HingeEmbeddingLoss_no_batch_dim_none, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_HingeEmbeddingLoss_no_batch_dim_none_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_HingeEmbeddingLoss_no_batch_dim_sum, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_HingeEmbeddingLoss_no_batch_dim_sum_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_LayerNorm_3d_no_affine_large_feature, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_LayerNorm_3d_no_affine_large_feature_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Linear, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Linear_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Linear_no_batch_dim, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Linear_no_batch_dim_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Linear_no_bias, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Linear_no_bias_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_MarginRankingLoss_no_batch_dim_mean, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_MarginRankingLoss_no_batch_dim_mean_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_MarginRankingLoss_no_batch_dim_none, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_MarginRankingLoss_no_batch_dim_none_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_MarginRankingLoss_no_batch_dim_sum, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_MarginRankingLoss_no_batch_dim_sum_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_MultiLabelMarginLoss_no_batch_dim_mean, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_MultiLabelMarginLoss_no_batch_dim_mean_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_MultiLabelMarginLoss_no_batch_dim_none, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_MultiLabelMarginLoss_no_batch_dim_none_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_MultiLabelMarginLoss_no_batch_dim_sum, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_MultiLabelMarginLoss_no_batch_dim_sum_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_MultiLabelSoftMarginLoss_no_batch_dim_mean, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_MultiLabelSoftMarginLoss_no_batch_dim_mean_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_MultiLabelSoftMarginLoss_no_batch_dim_none, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_MultiLabelSoftMarginLoss_no_batch_dim_none_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_MultiLabelSoftMarginLoss_no_batch_dim_sum, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_MultiLabelSoftMarginLoss_no_batch_dim_sum_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_NLLLoss_no_batch_dim_mean, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_NLLLoss_no_batch_dim_mean_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_NLLLoss_no_batch_dim_none, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_NLLLoss_no_batch_dim_none_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_NLLLoss_no_batch_dim_sum, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_NLLLoss_no_batch_dim_sum_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_PairwiseDistance, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_PairwiseDistance_broadcast_lhs, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_PairwiseDistance_broadcast_lhs_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_PairwiseDistance_broadcast_rhs, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_PairwiseDistance_broadcast_rhs_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_PairwiseDistance_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_PairwiseDistance_no_batch_dim, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_PairwiseDistance_no_batch_dim_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_PairwiseDistance_with_non_default_args, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_PairwiseDistance_with_non_default_args_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_PixelShuffle, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_PixelShuffle_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_PixelUnshuffle, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_PixelUnshuffle_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_RReLU, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_RReLU_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_RReLU_with_up_down, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_RReLU_with_up_down_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_RReLU_with_up_down_scalar, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_RReLU_with_up_down_scalar_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ReplicationPad3d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ReplicationPad3d_complex, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ReplicationPad3d_complex_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ReplicationPad3d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ReplicationPad3d_no_batch_dim, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ReplicationPad3d_no_batch_dim_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_SampleModule_has_parity, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_SampleModule_has_parity_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_SampleModule_no_parity, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_SampleModule_no_parity_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_SoftMarginLoss_no_batch_dim_mean, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_SoftMarginLoss_no_batch_dim_mean_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_SoftMarginLoss_no_batch_dim_none, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_SoftMarginLoss_no_batch_dim_none_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_SoftMarginLoss_no_batch_dim_sum, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_SoftMarginLoss_no_batch_dim_sum_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_TransformerDecoderLayer_gelu_activation, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_TransformerDecoderLayer_gelu_activation_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_TransformerDecoderLayer_relu_activation, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_TransformerDecoderLayer_relu_activation_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_TransformerEncoderLayer_gelu_activation, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_TransformerEncoderLayer_gelu_activation_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_TransformerEncoderLayer_relu_activation, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_TransformerEncoderLayer_relu_activation_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Transformer_multilayer_coder, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Transformer_multilayer_coder_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_TripletMarginLoss_no_batch_dim_mean, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_TripletMarginLoss_no_batch_dim_mean_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_TripletMarginLoss_no_batch_dim_none, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_TripletMarginLoss_no_batch_dim_none_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_TripletMarginLoss_no_batch_dim_sum, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_TripletMarginLoss_no_batch_dim_sum_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Unflatten_no_batch_dim, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Unflatten_no_batch_dim_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Unfold, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Unfold_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Unfold_int_input, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Unfold_int_input_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_BCELoss_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_BCELoss_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_BCELoss_no_reduce_scalar, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_BCELoss_no_reduce_scalar_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_BCELoss_weights_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_BCELoss_weights_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_BCELoss_weights_no_reduce_scalar, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_BCELoss_weights_no_reduce_scalar_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_BCEWithLogitsLoss_legacy_enum, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_BCEWithLogitsLoss_legacy_enum_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_BCEWithLogitsLoss_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_BCEWithLogitsLoss_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_BCEWithLogitsLoss_no_reduce_scalar, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_BCEWithLogitsLoss_no_reduce_scalar_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_HingeEmbeddingLoss_margin_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_HingeEmbeddingLoss_margin_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_HingeEmbeddingLoss_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_HingeEmbeddingLoss_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_HuberLoss_delta, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_HuberLoss_delta_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_KLDivLoss_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_KLDivLoss_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_KLDivLoss_no_reduce_log_target, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_KLDivLoss_no_reduce_log_target_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_KLDivLoss_no_reduce_scalar, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_KLDivLoss_no_reduce_scalar_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_KLDivLoss_no_reduce_scalar_log_target, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_KLDivLoss_no_reduce_scalar_log_target_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_KLDivLoss_with_log_target_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_KLDivLoss_with_log_target_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_KLDivLoss_with_target_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_KLDivLoss_with_target_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_L1Loss_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_L1Loss_no_reduce_complex, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_L1Loss_no_reduce_complex_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_L1Loss_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_L1Loss_no_reduce_scalar, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_L1Loss_no_reduce_scalar_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MSELoss_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MSELoss_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MSELoss_no_reduce_scalar, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MSELoss_no_reduce_scalar_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiLabelMarginLoss_0d_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiLabelMarginLoss_0d_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiLabelMarginLoss_1d_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiLabelMarginLoss_1d_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiLabelMarginLoss_index_neg, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiLabelMarginLoss_index_neg_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiLabelMarginLoss_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiLabelMarginLoss_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiLabelSoftMarginLoss_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiLabelSoftMarginLoss_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiLabelSoftMarginLoss_weights_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiLabelSoftMarginLoss_weights_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiMarginLoss_1d_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiMarginLoss_1d_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiMarginLoss_margin_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiMarginLoss_margin_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiMarginLoss_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiMarginLoss_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiMarginLoss_p_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiMarginLoss_p_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiMarginLoss_weights_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiMarginLoss_weights_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLoss2d_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLoss2d_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLoss2d_no_reduce_ignore_index, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLoss2d_no_reduce_ignore_index_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLoss2d_no_reduce_weights, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLoss2d_no_reduce_weights_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLossNd_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLossNd_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLossNd_no_reduce_ignore_index, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLossNd_no_reduce_ignore_index_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLossNd_no_reduce_weights, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLossNd_no_reduce_weights_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLoss_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLoss_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLoss_no_reduce_ignore_index, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLoss_no_reduce_ignore_index_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLoss_no_reduce_weights, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLoss_no_reduce_weights_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLoss_no_reduce_weights_ignore_index, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLoss_no_reduce_weights_ignore_index_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLoss_no_reduce_weights_ignore_index_neg, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLoss_no_reduce_weights_ignore_index_neg_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_PoissonNLLLoss_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_PoissonNLLLoss_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_SmoothL1Loss_beta, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_SmoothL1Loss_beta_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_SmoothL1Loss_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_SmoothL1Loss_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_SmoothL1Loss_no_reduce_scalar, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_SmoothL1Loss_no_reduce_scalar_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_SmoothL1Loss_zero_beta, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_SmoothL1Loss_zero_beta_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_SoftMarginLoss_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_SoftMarginLoss_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bicubic_2d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bicubic_2d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bicubic_2d_zero_dim, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bicubic_2d_zero_dim_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bicubic_scale_2d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bicubic_scale_2d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bicubic_scale_tuple_shared_2d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bicubic_scale_tuple_shared_2d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bicubic_scale_tuple_skewed_2d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bicubic_scale_tuple_skewed_2d_align_corners, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bicubic_scale_tuple_skewed_2d_align_corners_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bicubic_scale_tuple_skewed_2d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bicubic_tuple_2d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bicubic_tuple_2d_align_corners, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bicubic_tuple_2d_align_corners_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bicubic_tuple_2d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bilinear_2d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bilinear_2d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bilinear_2d_zero_dim, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bilinear_2d_zero_dim_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bilinear_scale_2d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bilinear_scale_2d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bilinear_scale_tuple_shared_2d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bilinear_scale_tuple_shared_2d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bilinear_scale_tuple_skewed_2d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bilinear_scale_tuple_skewed_2d_align_corners, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bilinear_scale_tuple_skewed_2d_align_corners_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bilinear_scale_tuple_skewed_2d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bilinear_tuple_2d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bilinear_tuple_2d_align_corners, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bilinear_tuple_2d_align_corners_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bilinear_tuple_2d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_linear_1d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_linear_1d_align_corners, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_linear_1d_align_corners_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_linear_1d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_linear_1d_zero_dim, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_linear_1d_zero_dim_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_linear_scale_1d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_linear_scale_1d_align_corners, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_linear_scale_1d_align_corners_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_linear_scale_1d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_linear_tuple_1d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_linear_tuple_1d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_1d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_1d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_1d_zero_dim, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_1d_zero_dim_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_2d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_2d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_2d_launch_configs, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_2d_launch_configs_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_2d_zero_dim, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_2d_zero_dim_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_3d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_3d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_3d_zero_dim, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_3d_zero_dim_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_scale_1d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_scale_1d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_scale_2d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_scale_2d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_scale_3d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_scale_3d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_tuple_1d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_tuple_1d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_tuple_2d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_tuple_2d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_tuple_3d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_tuple_3d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_trilinear_3d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_trilinear_3d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_trilinear_3d_zero_dim, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_trilinear_3d_zero_dim_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_trilinear_scale_3d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_trilinear_scale_3d_align_corners, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_trilinear_scale_3d_align_corners_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_trilinear_scale_3d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_trilinear_tuple_3d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_trilinear_tuple_3d_align_corners, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_trilinear_tuple_3d_align_corners_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_trilinear_tuple_3d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_log_softmax_dim0, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_log_softmax_dim0_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_log_softmax_dim3, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_log_softmax_dim3_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_log_softmax_lastdim, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_log_softmax_lastdim_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_log_softmax_scalar, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_log_softmax_scalar_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_log_softmax_spatial, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_log_softmax_spatial_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_log_softmax_spatial_special, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_log_softmax_spatial_special_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_multimarginloss_1d_input_0d_target_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_multimarginloss_1d_input_0d_target_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_sample_functional_has_parity, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_sample_functional_has_parity_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_sample_functional_no_parity, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_sample_functional_no_parity_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_softmax_functional_dim0, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_softmax_functional_dim0_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_softmax_functional_dim3, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_softmax_functional_dim3_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_softmax_functional_scalar, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_softmax_functional_scalar_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_softmax_lastdim, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_softmax_lastdim_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_softmax_lastdim_dtype, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_softmax_lastdim_dtype_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_softmax_spatial, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_softmax_spatial_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_softmax_spatial_dtype, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_softmax_spatial_dtype_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_softmax_spatial_special, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_softmax_spatial_special_cuda 2025-08-26T20:56:08.5402955Z 2025-08-26T20:56:08.5403165Z Running test_extension_utils 1/1 ... [2025-08-26 20:56:08.504079] 2025-08-26T20:56:08.5403597Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:56:08.5404588Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_extension_utils.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:56:08.504667] 2025-08-26T20:56:13.3057320Z 2025-08-26T20:56:13.3058454Z test_extension_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_extension_utils_1.1_b00dd724f9df8c41_.log 2025-08-26T20:56:13.3059907Z Running 2 items in this shard: test/test_extension_utils.py::TestExtensionUtils::test_external_module_register, test/test_extension_utils.py::TestExtensionUtils::test_external_module_register_with_renamed_backend 2025-08-26T20:56:13.3060843Z 2025-08-26T20:56:13.3063384Z Running test_openreg 1/1 ... [2025-08-26 20:56:13.306122] 2025-08-26T20:56:15.1915283Z -- Building for: Visual Studio 17 2022 2025-08-26T20:56:15.1984277Z -- Selecting Windows SDK version 10.0.19041.0 to target Windows 10.0.17763. 2025-08-26T20:56:16.1518686Z -- The CXX compiler identification is MSVC 19.42.34444.0 2025-08-26T20:56:16.7898585Z -- The C compiler identification is MSVC 19.42.34444.0 2025-08-26T20:56:16.8101298Z -- Detecting CXX compiler ABI info 2025-08-26T20:56:17.4929752Z -- Detecting CXX compiler ABI info - done 2025-08-26T20:56:17.4965378Z -- Check for working CXX compiler: C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.42.34433/bin/Hostx64/x64/cl.exe - skipped 2025-08-26T20:56:17.4970587Z -- Detecting CXX compile features 2025-08-26T20:56:17.4979696Z -- Detecting CXX compile features - done 2025-08-26T20:56:17.5057277Z -- Detecting C compiler ABI info 2025-08-26T20:56:18.1224479Z -- Detecting C compiler ABI info - done 2025-08-26T20:56:18.1247196Z -- Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.42.34433/bin/Hostx64/x64/cl.exe - skipped 2025-08-26T20:56:18.1251020Z -- Detecting C compile features 2025-08-26T20:56:18.1256959Z -- Detecting C compile features - done 2025-08-26T20:56:18.5703687Z -- Found Torch: C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/build/torch/lib/torch.lib 2025-08-26T20:56:20.1536460Z -- Found Python3: C:/Jenkins/Miniconda3/python3 (found version "3.9.19") found components: Interpreter Development Development.Module Development.Embed 2025-08-26T20:56:20.1544703Z -- Configuring done 2025-08-26T20:56:20.2345803Z -- Generating done 2025-08-26T20:56:20.2367113Z -- Build files have been written to: C:/actions-runner/_work/pytorch/pytorch/test/cpp_extensions/open_registration_extension/torch_openreg/build 2025-08-26T20:56:20.4058262Z MSBuild version 17.12.36+d1cce8d7c for .NET Framework 2025-08-26T20:56:20.4353342Z 2025-08-26T20:56:20.6936407Z Checking Build System 2025-08-26T20:56:20.8166702Z Building Custom Rule C:/actions-runner/_work/pytorch/pytorch/test/cpp_extensions/open_registration_extension/torch_openreg/third_party/openreg/CMakeLists.txt 2025-08-26T20:56:20.8760761Z device.cpp 2025-08-26T20:56:20.9024207Z memory.cpp 2025-08-26T20:56:21.5529695Z Generating Code... 2025-08-26T20:56:21.7046112Z Creating library C:/actions-runner/_work/pytorch/pytorch/test/cpp_extensions/open_registration_extension/torch_openreg/build/third_party/openreg/Release/openreg.lib and object C:/actions-runner/_work/pytorch/pytorch/test/cpp_extensions/open_registration_extension/torch_openreg/build/third_party/openreg/Release/openreg.exp 2025-08-26T20:56:21.7544368Z openreg.vcxproj -> C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\third_party\openreg\Release\openreg.dll 2025-08-26T20:56:21.8001655Z Building Custom Rule C:/actions-runner/_work/pytorch/pytorch/test/cpp_extensions/open_registration_extension/torch_openreg/csrc/CMakeLists.txt 2025-08-26T20:56:21.8720107Z OpenRegExtra.cpp 2025-08-26T20:56:29.6001794Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(82,17): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:29.6003362Z (compiling source file '../../csrc/aten/OpenRegExtra.cpp') 2025-08-26T20:56:29.6004022Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(82,17): 2025-08-26T20:56:29.6004708Z the template instantiation context (the oldest one first) is 2025-08-26T20:56:29.6005427Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen\core\function_schema.h(438,9): 2025-08-26T20:56:29.6006496Z see reference to function template instantiation 'std::optional::optional(_Ty2 &&) noexcept' being compiled 2025-08-26T20:56:29.6007170Z with 2025-08-26T20:56:29.6007382Z [ 2025-08-26T20:56:29.6007753Z I=size_t, 2025-08-26T20:56:29.6007996Z _Ty2=size_t 2025-08-26T20:56:29.6008260Z ] 2025-08-26T20:56:29.6008743Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen\core\function_schema.h(438,9): 2025-08-26T20:56:29.6009615Z see the first reference to 'std::optional::optional' in 'c10::FunctionSchema::argumentIndexWithName' 2025-08-26T20:56:29.6010463Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(248,18): 2025-08-26T20:56:29.6011711Z see reference to function template instantiation 'std::_Optional_construct_base<_Ty>::_Optional_construct_base(std::in_place_t,const unsigned __int64 &&)' being compiled 2025-08-26T20:56:29.6012681Z with 2025-08-26T20:56:29.6012919Z [ 2025-08-26T20:56:29.6013125Z _Ty=int32_t 2025-08-26T20:56:29.6013389Z ] 2025-08-26T20:56:29.6013993Z C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\csrc\aten\OpenRegExtra.cpp(196,1): 2025-08-26T20:56:29.6015318Z see reference to function template instantiation 'std::_Optional_destruct_base<_Ty,true>::_Optional_destruct_base(std::in_place_t,const unsigned __int64 &&) noexcept' being compiled 2025-08-26T20:56:29.6016247Z with 2025-08-26T20:56:29.6016454Z [ 2025-08-26T20:56:29.6016724Z _Ty=int32_t 2025-08-26T20:56:29.6016959Z ] 2025-08-26T20:56:29.6017218Z 2025-08-26T20:56:29.6855875Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406,61): warning C4267: 'initializing': conversion from 'size_t' to 'unsigned int', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:29.6857769Z (compiling source file '../../csrc/aten/OpenRegExtra.cpp') 2025-08-26T20:56:29.6858475Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406,61): 2025-08-26T20:56:29.6859146Z the template instantiation context (the oldest one first) is 2025-08-26T20:56:29.6859878Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\dynamo\compiled_autograd.h(236,23): 2025-08-26T20:56:29.6861053Z see reference to function template instantiation 'std::_Vbase &std::vector>::emplace_back(const _Ty &)' being compiled 2025-08-26T20:56:29.6861855Z with 2025-08-26T20:56:29.6862092Z [ 2025-08-26T20:56:29.6862296Z _Ty=size_t 2025-08-26T20:56:29.6862555Z ] 2025-08-26T20:56:29.6863041Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(858,24): 2025-08-26T20:56:29.6864144Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(const unsigned __int64 &)' being compiled 2025-08-26T20:56:29.6864948Z with 2025-08-26T20:56:29.6865155Z [ 2025-08-26T20:56:29.6865389Z _Ty=std::_Vbase 2025-08-26T20:56:29.6865643Z ] 2025-08-26T20:56:29.6866138Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(776,20): 2025-08-26T20:56:29.6867263Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(const unsigned __int64 &)' being compiled 2025-08-26T20:56:29.6868128Z with 2025-08-26T20:56:29.6868356Z [ 2025-08-26T20:56:29.6868559Z _Ty=std::_Vbase 2025-08-26T20:56:29.6868832Z ] 2025-08-26T20:56:29.6869371Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(791,18): 2025-08-26T20:56:29.6870415Z see reference to function template instantiation 'void std::_Construct_in_place(unsigned int &,const _Ty &) noexcept' being compiled 2025-08-26T20:56:29.6871141Z with 2025-08-26T20:56:29.6871369Z [ 2025-08-26T20:56:29.6871589Z _Ty=size_t 2025-08-26T20:56:29.6871819Z ] 2025-08-26T20:56:29.6872030Z 2025-08-26T20:56:29.6873314Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: 'initializing': conversion from 'size_t' to '_Ty', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:29.6875624Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: with [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:29.6877624Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: [ [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:29.6879846Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: _Ty=unsigned int [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:29.6881880Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: ] [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:29.6883174Z (compiling source file '../../csrc/aten/OpenRegExtra.cpp') 2025-08-26T20:56:29.6883823Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): 2025-08-26T20:56:29.6884585Z the template instantiation context (the oldest one first) is 2025-08-26T20:56:29.6885267Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(779,17): 2025-08-26T20:56:29.6886539Z see reference to function template instantiation 'unsigned int *std::vector>::_Emplace_reallocate(unsigned int *const ,const _Ty &)' being compiled 2025-08-26T20:56:29.6887441Z with 2025-08-26T20:56:29.6887652Z [ 2025-08-26T20:56:29.6887879Z _Ty=size_t 2025-08-26T20:56:29.6888144Z ] 2025-08-26T20:56:29.6888618Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(830,23): 2025-08-26T20:56:29.6889832Z see reference to function template instantiation 'void std::_Default_allocator_traits<_Alloc>::construct<_Ty,const unsigned __int64&>(_Alloc &,_Objty *const ,const unsigned __int64 &)' being compiled 2025-08-26T20:56:29.6890719Z with 2025-08-26T20:56:29.6890916Z [ 2025-08-26T20:56:29.6891124Z _Alloc=std::allocator, 2025-08-26T20:56:29.6891430Z _Ty=unsigned int, 2025-08-26T20:56:29.6891693Z _Objty=unsigned int 2025-08-26T20:56:29.6891937Z ] 2025-08-26T20:56:29.6892119Z 2025-08-26T20:56:29.7001050Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406,61): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:29.7002574Z (compiling source file '../../csrc/aten/OpenRegExtra.cpp') 2025-08-26T20:56:29.7003215Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406,61): 2025-08-26T20:56:29.7003852Z the template instantiation context (the oldest one first) is 2025-08-26T20:56:29.7004639Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\dynamo\compiled_autograd.h(681,26): 2025-08-26T20:56:29.7005660Z see reference to function template instantiation 'int32_t &std::vector>::emplace_back(size_t &)' being compiled 2025-08-26T20:56:29.7006729Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(858,24): 2025-08-26T20:56:29.7007755Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(unsigned __int64 &)' being compiled 2025-08-26T20:56:29.7008473Z with 2025-08-26T20:56:29.7008671Z [ 2025-08-26T20:56:29.7008870Z _Ty=int32_t 2025-08-26T20:56:29.7009084Z ] 2025-08-26T20:56:29.7009551Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(776,20): 2025-08-26T20:56:29.7010690Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(unsigned __int64 &)' being compiled 2025-08-26T20:56:29.7011480Z with 2025-08-26T20:56:29.7011662Z [ 2025-08-26T20:56:29.7011851Z _Ty=int32_t 2025-08-26T20:56:29.7012066Z ] 2025-08-26T20:56:29.7012528Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(791,18): 2025-08-26T20:56:29.7013472Z see reference to function template instantiation 'void std::_Construct_in_place(int &,_Ty &) noexcept' being compiled 2025-08-26T20:56:29.7014075Z with 2025-08-26T20:56:29.7014268Z [ 2025-08-26T20:56:29.7014440Z _Ty=size_t 2025-08-26T20:56:29.7014661Z ] 2025-08-26T20:56:29.7014827Z 2025-08-26T20:56:29.7016229Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: 'initializing': conversion from 'size_t' to '_Ty', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:29.7018438Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: with [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:29.7020396Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: [ [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:29.7022434Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: _Ty=int [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:29.7024388Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: ] [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:29.7025632Z (compiling source file '../../csrc/aten/OpenRegExtra.cpp') 2025-08-26T20:56:29.7026259Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): 2025-08-26T20:56:29.7026910Z the template instantiation context (the oldest one first) is 2025-08-26T20:56:29.7027583Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(779,17): 2025-08-26T20:56:29.7028628Z see reference to function template instantiation 'int *std::vector>::_Emplace_reallocate<_Ty&>(int *const ,_Ty &)' being compiled 2025-08-26T20:56:29.7029345Z with 2025-08-26T20:56:29.7029528Z [ 2025-08-26T20:56:29.7029718Z _Ty=size_t 2025-08-26T20:56:29.7029931Z ] 2025-08-26T20:56:29.7030913Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(830,23): 2025-08-26T20:56:29.7032027Z see reference to function template instantiation 'void std::_Default_allocator_traits<_Alloc>::construct<_Ty,unsigned __int64&>(_Alloc &,_Objty *const ,unsigned __int64 &)' being compiled 2025-08-26T20:56:29.7032835Z with 2025-08-26T20:56:29.7033029Z [ 2025-08-26T20:56:29.7033269Z _Alloc=std::allocator, 2025-08-26T20:56:29.7033553Z _Ty=int, 2025-08-26T20:56:29.7033798Z _Objty=int 2025-08-26T20:56:29.7034012Z ] 2025-08-26T20:56:29.7034183Z 2025-08-26T20:56:29.8749223Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): warning C4267: 'initializing': conversion from 'size_t' to '_Ty1', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:29.8751524Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): warning C4267: with [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:29.8753660Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): warning C4267: [ [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:29.8755679Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): warning C4267: _Ty1=int [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:29.8757671Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): warning C4267: ] [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:29.8758862Z (compiling source file '../../csrc/aten/OpenRegExtra.cpp') 2025-08-26T20:56:29.8759488Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): 2025-08-26T20:56:29.8760148Z the template instantiation context (the oldest one first) is 2025-08-26T20:56:29.8760840Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\dynamo\compiled_autograd.h(658,33): 2025-08-26T20:56:29.8762008Z see reference to function template instantiation 'std::pair &std::vector,std::allocator>>::emplace_back(size_t &,int &)' being compiled 2025-08-26T20:56:29.8763110Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(858,24): 2025-08-26T20:56:29.8764226Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(unsigned __int64 &,int &)' being compiled 2025-08-26T20:56:29.8764978Z with 2025-08-26T20:56:29.8765180Z [ 2025-08-26T20:56:29.8765376Z _Ty=std::pair 2025-08-26T20:56:29.8765646Z ] 2025-08-26T20:56:29.8766095Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(776,20): 2025-08-26T20:56:29.8767274Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(unsigned __int64 &,int &)' being compiled 2025-08-26T20:56:29.8768108Z with 2025-08-26T20:56:29.8768366Z [ 2025-08-26T20:56:29.8768569Z _Ty=std::pair 2025-08-26T20:56:29.8768822Z ] 2025-08-26T20:56:29.8769288Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(791,18): 2025-08-26T20:56:29.8770304Z see reference to function template instantiation 'void std::_Construct_in_place,_Ty&,int&>(std::pair &,_Ty &,int &) noexcept' being compiled 2025-08-26T20:56:29.8771018Z with 2025-08-26T20:56:29.8771215Z [ 2025-08-26T20:56:29.8771396Z _Ty=size_t 2025-08-26T20:56:29.8771622Z ] 2025-08-26T20:56:29.8772079Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406,61): 2025-08-26T20:56:29.8772994Z see reference to function template instantiation 'std::pair::pair(_Other1,_Other2) noexcept' being compiled 2025-08-26T20:56:29.8773624Z with 2025-08-26T20:56:29.8773803Z [ 2025-08-26T20:56:29.8774012Z _Other1=uint64_t &, 2025-08-26T20:56:29.8774314Z _Other2=int & 2025-08-26T20:56:29.8774550Z ] 2025-08-26T20:56:29.8774718Z 2025-08-26T20:56:29.8775999Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,54): warning C4267: 'initializing': conversion from 'size_t' to '_Ty2', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:29.8778263Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,54): warning C4267: with [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:29.8780208Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,54): warning C4267: [ [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:29.8782163Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,54): warning C4267: _Ty2=int [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:29.8784133Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,54): warning C4267: ] [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:29.8785328Z (compiling source file '../../csrc/aten/OpenRegExtra.cpp') 2025-08-26T20:56:29.8785673Z 2025-08-26T20:56:30.4642821Z OpenRegMinimal.cpp 2025-08-26T20:56:38.0067542Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(82,17): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:38.0069256Z (compiling source file '../../csrc/aten/OpenRegMinimal.cpp') 2025-08-26T20:56:38.0070002Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(82,17): 2025-08-26T20:56:38.0070742Z the template instantiation context (the oldest one first) is 2025-08-26T20:56:38.0071476Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen\core\function_schema.h(438,9): 2025-08-26T20:56:38.0072473Z see reference to function template instantiation 'std::optional::optional(_Ty2 &&) noexcept' being compiled 2025-08-26T20:56:38.0073268Z with 2025-08-26T20:56:38.0073505Z [ 2025-08-26T20:56:38.0073683Z I=size_t, 2025-08-26T20:56:38.0073968Z _Ty2=size_t 2025-08-26T20:56:38.0074223Z ] 2025-08-26T20:56:38.0074744Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen\core\function_schema.h(438,9): 2025-08-26T20:56:38.0075637Z see the first reference to 'std::optional::optional' in 'c10::FunctionSchema::argumentIndexWithName' 2025-08-26T20:56:38.0076569Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(248,18): 2025-08-26T20:56:38.0107240Z see reference to function template instantiation 'std::_Optional_construct_base<_Ty>::_Optional_construct_base(std::in_place_t,const unsigned __int64 &&)' being compiled 2025-08-26T20:56:38.0108081Z with 2025-08-26T20:56:38.0108280Z [ 2025-08-26T20:56:38.0108462Z _Ty=int32_t 2025-08-26T20:56:38.0108693Z ] 2025-08-26T20:56:38.0109301Z C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\csrc\aten\OpenRegMinimal.cpp(149,1): 2025-08-26T20:56:38.0110696Z see reference to function template instantiation 'std::_Optional_destruct_base<_Ty,true>::_Optional_destruct_base(std::in_place_t,const unsigned __int64 &&) noexcept' being compiled 2025-08-26T20:56:38.0111627Z with 2025-08-26T20:56:38.0111851Z [ 2025-08-26T20:56:38.0112083Z _Ty=int32_t 2025-08-26T20:56:38.0112293Z ] 2025-08-26T20:56:38.0112476Z 2025-08-26T20:56:38.0928016Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406,61): warning C4267: 'initializing': conversion from 'size_t' to 'unsigned int', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:38.0929624Z (compiling source file '../../csrc/aten/OpenRegMinimal.cpp') 2025-08-26T20:56:38.0930284Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406,61): 2025-08-26T20:56:38.0930978Z the template instantiation context (the oldest one first) is 2025-08-26T20:56:38.0931663Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\dynamo\compiled_autograd.h(236,23): 2025-08-26T20:56:38.0932764Z see reference to function template instantiation 'std::_Vbase &std::vector>::emplace_back(const _Ty &)' being compiled 2025-08-26T20:56:38.0933503Z with 2025-08-26T20:56:38.0933686Z [ 2025-08-26T20:56:38.0933876Z _Ty=size_t 2025-08-26T20:56:38.0934089Z ] 2025-08-26T20:56:38.0934557Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(858,24): 2025-08-26T20:56:38.0936243Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(const unsigned __int64 &)' being compiled 2025-08-26T20:56:38.0937037Z with 2025-08-26T20:56:38.0937231Z [ 2025-08-26T20:56:38.0937418Z _Ty=std::_Vbase 2025-08-26T20:56:38.0937662Z ] 2025-08-26T20:56:38.0938113Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(776,20): 2025-08-26T20:56:38.0939231Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(const unsigned __int64 &)' being compiled 2025-08-26T20:56:38.0940069Z with 2025-08-26T20:56:38.0940256Z [ 2025-08-26T20:56:38.0940534Z _Ty=std::_Vbase 2025-08-26T20:56:38.0940767Z ] 2025-08-26T20:56:38.0941230Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(791,18): 2025-08-26T20:56:38.0942229Z see reference to function template instantiation 'void std::_Construct_in_place(unsigned int &,const _Ty &) noexcept' being compiled 2025-08-26T20:56:38.0942949Z with 2025-08-26T20:56:38.0943130Z [ 2025-08-26T20:56:38.0943315Z _Ty=size_t 2025-08-26T20:56:38.0943542Z ] 2025-08-26T20:56:38.0943708Z 2025-08-26T20:56:38.0945038Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: 'initializing': conversion from 'size_t' to '_Ty', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:38.0947250Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: with [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:38.0949277Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: [ [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:38.0951329Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: _Ty=unsigned int [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:38.0953330Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: ] [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:38.0954526Z (compiling source file '../../csrc/aten/OpenRegMinimal.cpp') 2025-08-26T20:56:38.0955176Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): 2025-08-26T20:56:38.0955812Z the template instantiation context (the oldest one first) is 2025-08-26T20:56:38.0956459Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(779,17): 2025-08-26T20:56:38.0957616Z see reference to function template instantiation 'unsigned int *std::vector>::_Emplace_reallocate(unsigned int *const ,const _Ty &)' being compiled 2025-08-26T20:56:38.0958454Z with 2025-08-26T20:56:38.0958658Z [ 2025-08-26T20:56:38.0958838Z _Ty=size_t 2025-08-26T20:56:38.0959060Z ] 2025-08-26T20:56:38.0959566Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(830,23): 2025-08-26T20:56:38.0960708Z see reference to function template instantiation 'void std::_Default_allocator_traits<_Alloc>::construct<_Ty,const unsigned __int64&>(_Alloc &,_Objty *const ,const unsigned __int64 &)' being compiled 2025-08-26T20:56:38.0961556Z with 2025-08-26T20:56:38.0961736Z [ 2025-08-26T20:56:38.0961953Z _Alloc=std::allocator, 2025-08-26T20:56:38.0962263Z _Ty=unsigned int, 2025-08-26T20:56:38.0962514Z _Objty=unsigned int 2025-08-26T20:56:38.0962769Z ] 2025-08-26T20:56:38.0962933Z 2025-08-26T20:56:38.1072583Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406,61): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:38.1074240Z (compiling source file '../../csrc/aten/OpenRegMinimal.cpp') 2025-08-26T20:56:38.1074879Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406,61): 2025-08-26T20:56:38.1075530Z the template instantiation context (the oldest one first) is 2025-08-26T20:56:38.1076234Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\dynamo\compiled_autograd.h(681,26): 2025-08-26T20:56:38.1077276Z see reference to function template instantiation 'int32_t &std::vector>::emplace_back(size_t &)' being compiled 2025-08-26T20:56:38.1078240Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(858,24): 2025-08-26T20:56:38.1079248Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(unsigned __int64 &)' being compiled 2025-08-26T20:56:38.1080063Z with 2025-08-26T20:56:38.1080268Z [ 2025-08-26T20:56:38.1080450Z _Ty=int32_t 2025-08-26T20:56:38.1080678Z ] 2025-08-26T20:56:38.1081130Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(776,20): 2025-08-26T20:56:38.1082198Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(unsigned __int64 &)' being compiled 2025-08-26T20:56:38.1083032Z with 2025-08-26T20:56:38.1083226Z [ 2025-08-26T20:56:38.1083412Z _Ty=int32_t 2025-08-26T20:56:38.1083628Z ] 2025-08-26T20:56:38.1084092Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(791,18): 2025-08-26T20:56:38.1084976Z see reference to function template instantiation 'void std::_Construct_in_place(int &,_Ty &) noexcept' being compiled 2025-08-26T20:56:38.1085594Z with 2025-08-26T20:56:38.1085775Z [ 2025-08-26T20:56:38.1085967Z _Ty=size_t 2025-08-26T20:56:38.1086206Z ] 2025-08-26T20:56:38.1086373Z 2025-08-26T20:56:38.1087633Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: 'initializing': conversion from 'size_t' to '_Ty', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:38.1089823Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: with [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:38.1091942Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: [ [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:38.1093934Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: _Ty=int [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:38.1095906Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: ] [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:38.1097147Z (compiling source file '../../csrc/aten/OpenRegMinimal.cpp') 2025-08-26T20:56:38.1097810Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): 2025-08-26T20:56:38.1098469Z the template instantiation context (the oldest one first) is 2025-08-26T20:56:38.1099098Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(779,17): 2025-08-26T20:56:38.1100100Z see reference to function template instantiation 'int *std::vector>::_Emplace_reallocate<_Ty&>(int *const ,_Ty &)' being compiled 2025-08-26T20:56:38.1100803Z with 2025-08-26T20:56:38.1101008Z [ 2025-08-26T20:56:38.1101195Z _Ty=size_t 2025-08-26T20:56:38.1101420Z ] 2025-08-26T20:56:38.1101880Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(830,23): 2025-08-26T20:56:38.1102969Z see reference to function template instantiation 'void std::_Default_allocator_traits<_Alloc>::construct<_Ty,unsigned __int64&>(_Alloc &,_Objty *const ,unsigned __int64 &)' being compiled 2025-08-26T20:56:38.1103838Z with 2025-08-26T20:56:38.1104022Z [ 2025-08-26T20:56:38.1104235Z _Alloc=std::allocator, 2025-08-26T20:56:38.1104510Z _Ty=int, 2025-08-26T20:56:38.1104736Z _Objty=int 2025-08-26T20:56:38.1104954Z ] 2025-08-26T20:56:38.1105124Z 2025-08-26T20:56:38.2743350Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): warning C4267: 'initializing': conversion from 'size_t' to '_Ty1', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:38.2745648Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): warning C4267: with [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:38.2747627Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): warning C4267: [ [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:38.2749593Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): warning C4267: _Ty1=int [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:38.2751605Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): warning C4267: ] [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:38.2752816Z (compiling source file '../../csrc/aten/OpenRegMinimal.cpp') 2025-08-26T20:56:38.2753463Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): 2025-08-26T20:56:38.2754100Z the template instantiation context (the oldest one first) is 2025-08-26T20:56:38.2754795Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\dynamo\compiled_autograd.h(658,33): 2025-08-26T20:56:38.2755970Z see reference to function template instantiation 'std::pair &std::vector,std::allocator>>::emplace_back(size_t &,int &)' being compiled 2025-08-26T20:56:38.2757048Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(858,24): 2025-08-26T20:56:38.2758158Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(unsigned __int64 &,int &)' being compiled 2025-08-26T20:56:38.2758931Z with 2025-08-26T20:56:38.2759117Z [ 2025-08-26T20:56:38.2759324Z _Ty=std::pair 2025-08-26T20:56:38.2759578Z ] 2025-08-26T20:56:38.2760041Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(776,20): 2025-08-26T20:56:38.2761141Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(unsigned __int64 &,int &)' being compiled 2025-08-26T20:56:38.2761963Z with 2025-08-26T20:56:38.2762156Z [ 2025-08-26T20:56:38.2762343Z _Ty=std::pair 2025-08-26T20:56:38.2762607Z ] 2025-08-26T20:56:38.2763062Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(791,18): 2025-08-26T20:56:38.2764298Z see reference to function template instantiation 'void std::_Construct_in_place,_Ty&,int&>(std::pair &,_Ty &,int &) noexcept' being compiled 2025-08-26T20:56:38.2765015Z with 2025-08-26T20:56:38.2765217Z [ 2025-08-26T20:56:38.2765415Z _Ty=size_t 2025-08-26T20:56:38.2765627Z ] 2025-08-26T20:56:38.2766103Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406,61): 2025-08-26T20:56:38.2767053Z see reference to function template instantiation 'std::pair::pair(_Other1,_Other2) noexcept' being compiled 2025-08-26T20:56:38.2767672Z with 2025-08-26T20:56:38.2767847Z [ 2025-08-26T20:56:38.2768048Z _Other1=uint64_t &, 2025-08-26T20:56:38.2768304Z _Other2=int & 2025-08-26T20:56:38.2768536Z ] 2025-08-26T20:56:38.2768722Z 2025-08-26T20:56:38.2769988Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,54): warning C4267: 'initializing': conversion from 'size_t' to '_Ty2', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:38.2772285Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,54): warning C4267: with [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:38.2774231Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,54): warning C4267: [ [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:38.2776240Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,54): warning C4267: _Ty2=int [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:38.2778201Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,54): warning C4267: ] [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:38.2779412Z (compiling source file '../../csrc/aten/OpenRegMinimal.cpp') 2025-08-26T20:56:38.2779760Z 2025-08-26T20:56:38.9000628Z Extra.cpp 2025-08-26T20:56:46.5588773Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(82,17): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:46.5590612Z (compiling source file '../../csrc/aten/native/Extra.cpp') 2025-08-26T20:56:46.5591260Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(82,17): 2025-08-26T20:56:46.5591901Z the template instantiation context (the oldest one first) is 2025-08-26T20:56:46.5592560Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen\core\function_schema.h(438,9): 2025-08-26T20:56:46.5593478Z see reference to function template instantiation 'std::optional::optional(_Ty2 &&) noexcept' being compiled 2025-08-26T20:56:46.5594096Z with 2025-08-26T20:56:46.5594300Z [ 2025-08-26T20:56:46.5594492Z I=size_t, 2025-08-26T20:56:46.5594721Z _Ty2=size_t 2025-08-26T20:56:46.5594943Z ] 2025-08-26T20:56:46.5596193Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen\core\function_schema.h(438,9): 2025-08-26T20:56:46.5597003Z see the first reference to 'std::optional::optional' in 'c10::FunctionSchema::argumentIndexWithName' 2025-08-26T20:56:46.5597813Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(248,18): 2025-08-26T20:56:46.5599027Z see reference to function template instantiation 'std::_Optional_construct_base<_Ty>::_Optional_construct_base(std::in_place_t,const unsigned __int64 &&)' being compiled 2025-08-26T20:56:46.5599865Z with 2025-08-26T20:56:46.5600071Z [ 2025-08-26T20:56:46.5600256Z _Ty=int32_t 2025-08-26T20:56:46.5600482Z ] 2025-08-26T20:56:46.5601072Z C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\csrc\aten\native\Extra.cpp(211,1): 2025-08-26T20:56:46.5602458Z see reference to function template instantiation 'std::_Optional_destruct_base<_Ty,true>::_Optional_destruct_base(std::in_place_t,const unsigned __int64 &&) noexcept' being compiled 2025-08-26T20:56:46.5603344Z with 2025-08-26T20:56:46.5603525Z [ 2025-08-26T20:56:46.5603718Z _Ty=int32_t 2025-08-26T20:56:46.5603929Z ] 2025-08-26T20:56:46.5604109Z 2025-08-26T20:56:46.6453458Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406,61): warning C4267: 'initializing': conversion from 'size_t' to 'unsigned int', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:46.6455052Z (compiling source file '../../csrc/aten/native/Extra.cpp') 2025-08-26T20:56:46.6455893Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406,61): 2025-08-26T20:56:46.6456561Z the template instantiation context (the oldest one first) is 2025-08-26T20:56:46.6457235Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\dynamo\compiled_autograd.h(236,23): 2025-08-26T20:56:46.6458329Z see reference to function template instantiation 'std::_Vbase &std::vector>::emplace_back(const _Ty &)' being compiled 2025-08-26T20:56:46.6459079Z with 2025-08-26T20:56:46.6459264Z [ 2025-08-26T20:56:46.6459465Z _Ty=size_t 2025-08-26T20:56:46.6459681Z ] 2025-08-26T20:56:46.6460148Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(858,24): 2025-08-26T20:56:46.6461271Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(const unsigned __int64 &)' being compiled 2025-08-26T20:56:46.6462045Z with 2025-08-26T20:56:46.6462239Z [ 2025-08-26T20:56:46.6462425Z _Ty=std::_Vbase 2025-08-26T20:56:46.6462672Z ] 2025-08-26T20:56:46.6463127Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(776,20): 2025-08-26T20:56:46.6464241Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(const unsigned __int64 &)' being compiled 2025-08-26T20:56:46.6465068Z with 2025-08-26T20:56:46.6465268Z [ 2025-08-26T20:56:46.6465467Z _Ty=std::_Vbase 2025-08-26T20:56:46.6465696Z ] 2025-08-26T20:56:46.6466157Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(791,18): 2025-08-26T20:56:46.6467207Z see reference to function template instantiation 'void std::_Construct_in_place(unsigned int &,const _Ty &) noexcept' being compiled 2025-08-26T20:56:46.6467934Z with 2025-08-26T20:56:46.6468118Z [ 2025-08-26T20:56:46.6468320Z _Ty=size_t 2025-08-26T20:56:46.6468548Z ] 2025-08-26T20:56:46.6468721Z 2025-08-26T20:56:46.6470058Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: 'initializing': conversion from 'size_t' to '_Ty', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:46.6472260Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: with [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:46.6474223Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: [ [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:46.6476234Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: _Ty=unsigned int [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:46.6478222Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: ] [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:46.6479444Z (compiling source file '../../csrc/aten/native/Extra.cpp') 2025-08-26T20:56:46.6480086Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): 2025-08-26T20:56:46.6480720Z the template instantiation context (the oldest one first) is 2025-08-26T20:56:46.6481368Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(779,17): 2025-08-26T20:56:46.6482500Z see reference to function template instantiation 'unsigned int *std::vector>::_Emplace_reallocate(unsigned int *const ,const _Ty &)' being compiled 2025-08-26T20:56:46.6483342Z with 2025-08-26T20:56:46.6483542Z [ 2025-08-26T20:56:46.6483723Z _Ty=size_t 2025-08-26T20:56:46.6483995Z ] 2025-08-26T20:56:46.6484461Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(830,23): 2025-08-26T20:56:46.6485607Z see reference to function template instantiation 'void std::_Default_allocator_traits<_Alloc>::construct<_Ty,const unsigned __int64&>(_Alloc &,_Objty *const ,const unsigned __int64 &)' being compiled 2025-08-26T20:56:46.6486471Z with 2025-08-26T20:56:46.6486653Z [ 2025-08-26T20:56:46.6486877Z _Alloc=std::allocator, 2025-08-26T20:56:46.6487180Z _Ty=unsigned int, 2025-08-26T20:56:46.6487452Z _Objty=unsigned int 2025-08-26T20:56:46.6487711Z ] 2025-08-26T20:56:46.6487882Z 2025-08-26T20:56:46.6597139Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406,61): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:46.6598839Z (compiling source file '../../csrc/aten/native/Extra.cpp') 2025-08-26T20:56:46.6599469Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406,61): 2025-08-26T20:56:46.6600141Z the template instantiation context (the oldest one first) is 2025-08-26T20:56:46.6600831Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\dynamo\compiled_autograd.h(681,26): 2025-08-26T20:56:46.6601961Z see reference to function template instantiation 'int32_t &std::vector>::emplace_back(size_t &)' being compiled 2025-08-26T20:56:46.6602990Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(858,24): 2025-08-26T20:56:46.6604001Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(unsigned __int64 &)' being compiled 2025-08-26T20:56:46.6604747Z with 2025-08-26T20:56:46.6604940Z [ 2025-08-26T20:56:46.6605144Z _Ty=int32_t 2025-08-26T20:56:46.6605366Z ] 2025-08-26T20:56:46.6605832Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(776,20): 2025-08-26T20:56:46.6606949Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(unsigned __int64 &)' being compiled 2025-08-26T20:56:46.6607774Z with 2025-08-26T20:56:46.6607972Z [ 2025-08-26T20:56:46.6608159Z _Ty=int32_t 2025-08-26T20:56:46.6608410Z ] 2025-08-26T20:56:46.6608872Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(791,18): 2025-08-26T20:56:46.6609760Z see reference to function template instantiation 'void std::_Construct_in_place(int &,_Ty &) noexcept' being compiled 2025-08-26T20:56:46.6610412Z with 2025-08-26T20:56:46.6610609Z [ 2025-08-26T20:56:46.6610790Z _Ty=size_t 2025-08-26T20:56:46.6611009Z ] 2025-08-26T20:56:46.6611178Z 2025-08-26T20:56:46.6612446Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: 'initializing': conversion from 'size_t' to '_Ty', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:46.6614751Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: with [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:46.6616836Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: [ [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:46.6618901Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: _Ty=int [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:46.6620867Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: ] [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:46.6622071Z (compiling source file '../../csrc/aten/native/Extra.cpp') 2025-08-26T20:56:46.6622691Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): 2025-08-26T20:56:46.6623385Z the template instantiation context (the oldest one first) is 2025-08-26T20:56:46.6624059Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(779,17): 2025-08-26T20:56:46.6625178Z see reference to function template instantiation 'int *std::vector>::_Emplace_reallocate<_Ty&>(int *const ,_Ty &)' being compiled 2025-08-26T20:56:46.6625979Z with 2025-08-26T20:56:46.6626173Z [ 2025-08-26T20:56:46.6626408Z _Ty=size_t 2025-08-26T20:56:46.6626714Z ] 2025-08-26T20:56:46.6627229Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(830,23): 2025-08-26T20:56:46.6628468Z see reference to function template instantiation 'void std::_Default_allocator_traits<_Alloc>::construct<_Ty,unsigned __int64&>(_Alloc &,_Objty *const ,unsigned __int64 &)' being compiled 2025-08-26T20:56:46.6629415Z with 2025-08-26T20:56:46.6629621Z [ 2025-08-26T20:56:46.6629869Z _Alloc=std::allocator, 2025-08-26T20:56:46.6630195Z _Ty=int, 2025-08-26T20:56:46.6630402Z _Objty=int 2025-08-26T20:56:46.6630669Z ] 2025-08-26T20:56:46.6630877Z 2025-08-26T20:56:46.8388087Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): warning C4267: 'initializing': conversion from 'size_t' to '_Ty1', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:46.8390458Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): warning C4267: with [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:46.8392592Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): warning C4267: [ [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:46.8394558Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): warning C4267: _Ty1=int [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:46.8396590Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): warning C4267: ] [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:46.8397880Z (compiling source file '../../csrc/aten/native/Extra.cpp') 2025-08-26T20:56:46.8398522Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): 2025-08-26T20:56:46.8399161Z the template instantiation context (the oldest one first) is 2025-08-26T20:56:46.8399866Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\dynamo\compiled_autograd.h(658,33): 2025-08-26T20:56:46.8401080Z see reference to function template instantiation 'std::pair &std::vector,std::allocator>>::emplace_back(size_t &,int &)' being compiled 2025-08-26T20:56:46.8402207Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(858,24): 2025-08-26T20:56:46.8403257Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(unsigned __int64 &,int &)' being compiled 2025-08-26T20:56:46.8404097Z with 2025-08-26T20:56:46.8404287Z [ 2025-08-26T20:56:46.8404499Z _Ty=std::pair 2025-08-26T20:56:46.8404752Z ] 2025-08-26T20:56:46.8405222Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(776,20): 2025-08-26T20:56:46.8406317Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(unsigned __int64 &,int &)' being compiled 2025-08-26T20:56:46.8407230Z with 2025-08-26T20:56:46.8407953Z [ 2025-08-26T20:56:46.8408166Z _Ty=std::pair 2025-08-26T20:56:46.8408442Z ] 2025-08-26T20:56:46.8408893Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(791,18): 2025-08-26T20:56:46.8409911Z see reference to function template instantiation 'void std::_Construct_in_place,_Ty&,int&>(std::pair &,_Ty &,int &) noexcept' being compiled 2025-08-26T20:56:46.8410637Z with 2025-08-26T20:56:46.8410835Z [ 2025-08-26T20:56:46.8411025Z _Ty=size_t 2025-08-26T20:56:46.8411237Z ] 2025-08-26T20:56:46.8411714Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406,61): 2025-08-26T20:56:46.8412656Z see reference to function template instantiation 'std::pair::pair(_Other1,_Other2) noexcept' being compiled 2025-08-26T20:56:46.8413321Z with 2025-08-26T20:56:46.8413503Z [ 2025-08-26T20:56:46.8413702Z _Other1=uint64_t &, 2025-08-26T20:56:46.8413967Z _Other2=int & 2025-08-26T20:56:46.8414191Z ] 2025-08-26T20:56:46.8414377Z 2025-08-26T20:56:46.8415807Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,54): warning C4267: 'initializing': conversion from 'size_t' to '_Ty2', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:46.8418043Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,54): warning C4267: with [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:46.8420097Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,54): warning C4267: [ [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:46.8422112Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,54): warning C4267: _Ty2=int [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:46.8424106Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,54): warning C4267: ] [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:46.8425336Z (compiling source file '../../csrc/aten/native/Extra.cpp') 2025-08-26T20:56:46.8425684Z 2025-08-26T20:56:47.3709888Z Minimal.cpp 2025-08-26T20:56:54.9896734Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(82,17): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:54.9898468Z (compiling source file '../../csrc/aten/native/Minimal.cpp') 2025-08-26T20:56:54.9899103Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(82,17): 2025-08-26T20:56:54.9899840Z the template instantiation context (the oldest one first) is 2025-08-26T20:56:54.9900486Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen\core\function_schema.h(438,9): 2025-08-26T20:56:54.9908727Z see reference to function template instantiation 'std::optional::optional(_Ty2 &&) noexcept' being compiled 2025-08-26T20:56:54.9909504Z with 2025-08-26T20:56:54.9909717Z [ 2025-08-26T20:56:54.9909900Z I=size_t, 2025-08-26T20:56:54.9910135Z _Ty2=size_t 2025-08-26T20:56:54.9910362Z ] 2025-08-26T20:56:54.9910854Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen\core\function_schema.h(438,9): 2025-08-26T20:56:54.9911673Z see the first reference to 'std::optional::optional' in 'c10::FunctionSchema::argumentIndexWithName' 2025-08-26T20:56:54.9912492Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(248,18): 2025-08-26T20:56:54.9913635Z see reference to function template instantiation 'std::_Optional_construct_base<_Ty>::_Optional_construct_base(std::in_place_t,const unsigned __int64 &&)' being compiled 2025-08-26T20:56:54.9914469Z with 2025-08-26T20:56:54.9914673Z [ 2025-08-26T20:56:54.9914864Z _Ty=int32_t 2025-08-26T20:56:54.9915099Z ] 2025-08-26T20:56:54.9915693Z C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\csrc\aten\native\Minimal.cpp(186,1): 2025-08-26T20:56:54.9917074Z see reference to function template instantiation 'std::_Optional_destruct_base<_Ty,true>::_Optional_destruct_base(std::in_place_t,const unsigned __int64 &&) noexcept' being compiled 2025-08-26T20:56:54.9917970Z with 2025-08-26T20:56:54.9918156Z [ 2025-08-26T20:56:54.9918354Z _Ty=int32_t 2025-08-26T20:56:54.9918571Z ] 2025-08-26T20:56:54.9918756Z 2025-08-26T20:56:55.0760081Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406,61): warning C4267: 'initializing': conversion from 'size_t' to 'unsigned int', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:55.0761829Z (compiling source file '../../csrc/aten/native/Minimal.cpp') 2025-08-26T20:56:55.0762780Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406,61): 2025-08-26T20:56:55.0763535Z the template instantiation context (the oldest one first) is 2025-08-26T20:56:55.0764351Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\dynamo\compiled_autograd.h(236,23): 2025-08-26T20:56:55.0765592Z see reference to function template instantiation 'std::_Vbase &std::vector>::emplace_back(const _Ty &)' being compiled 2025-08-26T20:56:55.0766430Z with 2025-08-26T20:56:55.0766663Z [ 2025-08-26T20:56:55.0766862Z _Ty=size_t 2025-08-26T20:56:55.0767120Z ] 2025-08-26T20:56:55.0767666Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(858,24): 2025-08-26T20:56:55.0768873Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(const unsigned __int64 &)' being compiled 2025-08-26T20:56:55.0769836Z with 2025-08-26T20:56:55.0770078Z [ 2025-08-26T20:56:55.0770273Z _Ty=std::_Vbase 2025-08-26T20:56:55.0770564Z ] 2025-08-26T20:56:55.0771069Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(776,20): 2025-08-26T20:56:55.0772380Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(const unsigned __int64 &)' being compiled 2025-08-26T20:56:55.0773296Z with 2025-08-26T20:56:55.0773540Z [ 2025-08-26T20:56:55.0773840Z _Ty=std::_Vbase 2025-08-26T20:56:55.0774098Z ] 2025-08-26T20:56:55.0774654Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(791,18): 2025-08-26T20:56:55.0775655Z see reference to function template instantiation 'void std::_Construct_in_place(unsigned int &,const _Ty &) noexcept' being compiled 2025-08-26T20:56:55.0776383Z with 2025-08-26T20:56:55.0776563Z [ 2025-08-26T20:56:55.0776756Z _Ty=size_t 2025-08-26T20:56:55.0776992Z ] 2025-08-26T20:56:55.0777163Z 2025-08-26T20:56:55.0778431Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: 'initializing': conversion from 'size_t' to '_Ty', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:55.0780788Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: with [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:55.0782843Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: [ [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:55.0784856Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: _Ty=unsigned int [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:55.0787000Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: ] [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:55.0788418Z (compiling source file '../../csrc/aten/native/Minimal.cpp') 2025-08-26T20:56:55.0789163Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): 2025-08-26T20:56:55.0789912Z the template instantiation context (the oldest one first) is 2025-08-26T20:56:55.0790660Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(779,17): 2025-08-26T20:56:55.0791864Z see reference to function template instantiation 'unsigned int *std::vector>::_Emplace_reallocate(unsigned int *const ,const _Ty &)' being compiled 2025-08-26T20:56:55.0792718Z with 2025-08-26T20:56:55.0792961Z [ 2025-08-26T20:56:55.0793146Z _Ty=size_t 2025-08-26T20:56:55.0793381Z ] 2025-08-26T20:56:55.0793841Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(830,23): 2025-08-26T20:56:55.0795003Z see reference to function template instantiation 'void std::_Default_allocator_traits<_Alloc>::construct<_Ty,const unsigned __int64&>(_Alloc &,_Objty *const ,const unsigned __int64 &)' being compiled 2025-08-26T20:56:55.0795918Z with 2025-08-26T20:56:55.0796132Z [ 2025-08-26T20:56:55.0796382Z _Alloc=std::allocator, 2025-08-26T20:56:55.0796732Z _Ty=unsigned int, 2025-08-26T20:56:55.0796993Z _Objty=unsigned int 2025-08-26T20:56:55.0797249Z ] 2025-08-26T20:56:55.0797426Z 2025-08-26T20:56:55.0908717Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406,61): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:55.0910274Z (compiling source file '../../csrc/aten/native/Minimal.cpp') 2025-08-26T20:56:55.0911265Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406,61): 2025-08-26T20:56:55.0912242Z the template instantiation context (the oldest one first) is 2025-08-26T20:56:55.0912931Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\dynamo\compiled_autograd.h(681,26): 2025-08-26T20:56:55.0913952Z see reference to function template instantiation 'int32_t &std::vector>::emplace_back(size_t &)' being compiled 2025-08-26T20:56:55.0914917Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(858,24): 2025-08-26T20:56:55.0915919Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(unsigned __int64 &)' being compiled 2025-08-26T20:56:55.0916723Z with 2025-08-26T20:56:55.0917076Z [ 2025-08-26T20:56:55.0917389Z _Ty=int32_t 2025-08-26T20:56:55.0917902Z ] 2025-08-26T20:56:55.0918365Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(776,20): 2025-08-26T20:56:55.0919439Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(unsigned __int64 &)' being compiled 2025-08-26T20:56:55.0920221Z with 2025-08-26T20:56:55.0920415Z [ 2025-08-26T20:56:55.0920619Z _Ty=int32_t 2025-08-26T20:56:55.0920832Z ] 2025-08-26T20:56:55.0921299Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(791,18): 2025-08-26T20:56:55.0922179Z see reference to function template instantiation 'void std::_Construct_in_place(int &,_Ty &) noexcept' being compiled 2025-08-26T20:56:55.0923141Z with 2025-08-26T20:56:55.0923470Z [ 2025-08-26T20:56:55.0923783Z _Ty=size_t 2025-08-26T20:56:55.0924049Z ] 2025-08-26T20:56:55.0924214Z 2025-08-26T20:56:55.0925479Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: 'initializing': conversion from 'size_t' to '_Ty', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:55.0927702Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: with [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:55.0930262Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: [ [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:55.0932310Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: _Ty=int [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:55.0934311Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): warning C4267: ] [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:55.0936174Z (compiling source file '../../csrc/aten/native/Minimal.cpp') 2025-08-26T20:56:55.0936841Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700,82): 2025-08-26T20:56:55.0937499Z the template instantiation context (the oldest one first) is 2025-08-26T20:56:55.0938134Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(779,17): 2025-08-26T20:56:55.0939137Z see reference to function template instantiation 'int *std::vector>::_Emplace_reallocate<_Ty&>(int *const ,_Ty &)' being compiled 2025-08-26T20:56:55.0939902Z with 2025-08-26T20:56:55.0940102Z [ 2025-08-26T20:56:55.0940282Z _Ty=size_t 2025-08-26T20:56:55.0940561Z ] 2025-08-26T20:56:55.0941401Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(830,23): 2025-08-26T20:56:55.0942684Z see reference to function template instantiation 'void std::_Default_allocator_traits<_Alloc>::construct<_Ty,unsigned __int64&>(_Alloc &,_Objty *const ,unsigned __int64 &)' being compiled 2025-08-26T20:56:55.0943508Z with 2025-08-26T20:56:55.0943688Z [ 2025-08-26T20:56:55.0943969Z _Alloc=std::allocator, 2025-08-26T20:56:55.0944252Z _Ty=int, 2025-08-26T20:56:55.0944459Z _Objty=int 2025-08-26T20:56:55.0944686Z ] 2025-08-26T20:56:55.0944855Z 2025-08-26T20:56:55.2194351Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): warning C4267: 'initializing': conversion from 'size_t' to '_Ty1', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:55.2196745Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): warning C4267: with [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:55.2199389Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): warning C4267: [ [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:55.2201493Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): warning C4267: _Ty1=int [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:55.2203458Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): warning C4267: ] [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:55.2204693Z (compiling source file '../../csrc/aten/native/Minimal.cpp') 2025-08-26T20:56:55.2205328Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,16): 2025-08-26T20:56:55.2206071Z the template instantiation context (the oldest one first) is 2025-08-26T20:56:55.2206805Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\dynamo\compiled_autograd.h(658,33): 2025-08-26T20:56:55.2208055Z see reference to function template instantiation 'std::pair &std::vector,std::allocator>>::emplace_back(size_t &,int &)' being compiled 2025-08-26T20:56:55.2209226Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(858,24): 2025-08-26T20:56:55.2210278Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(unsigned __int64 &,int &)' being compiled 2025-08-26T20:56:55.2211055Z with 2025-08-26T20:56:55.2211238Z [ 2025-08-26T20:56:55.2211459Z _Ty=std::pair 2025-08-26T20:56:55.2211724Z ] 2025-08-26T20:56:55.2212175Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(776,20): 2025-08-26T20:56:55.2213410Z see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(unsigned __int64 &,int &)' being compiled 2025-08-26T20:56:55.2214227Z with 2025-08-26T20:56:55.2214428Z [ 2025-08-26T20:56:55.2214632Z _Ty=std::pair 2025-08-26T20:56:55.2214889Z ] 2025-08-26T20:56:55.2215353Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(791,18): 2025-08-26T20:56:55.2216441Z see reference to function template instantiation 'void std::_Construct_in_place,_Ty&,int&>(std::pair &,_Ty &,int &) noexcept' being compiled 2025-08-26T20:56:55.2217176Z with 2025-08-26T20:56:55.2217357Z [ 2025-08-26T20:56:55.2217560Z _Ty=size_t 2025-08-26T20:56:55.2217772Z ] 2025-08-26T20:56:55.2218240Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406,61): 2025-08-26T20:56:55.2219238Z see reference to function template instantiation 'std::pair::pair(_Other1,_Other2) noexcept' being compiled 2025-08-26T20:56:55.2219951Z with 2025-08-26T20:56:55.2220145Z [ 2025-08-26T20:56:55.2220339Z _Other1=uint64_t &, 2025-08-26T20:56:55.2220613Z _Other2=int & 2025-08-26T20:56:55.2220832Z ] 2025-08-26T20:56:55.2221019Z 2025-08-26T20:56:55.2222383Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,54): warning C4267: 'initializing': conversion from 'size_t' to '_Ty2', possible loss of data [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:55.2224568Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,54): warning C4267: with [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:55.2226524Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,54): warning C4267: [ [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:55.2228501Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,54): warning C4267: _Ty2=int [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:55.2230660Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263,54): warning C4267: ] [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:55.2231847Z (compiling source file '../../csrc/aten/native/Minimal.cpp') 2025-08-26T20:56:55.2232207Z 2025-08-26T20:56:55.7183771Z OpenRegDeviceAllocator.cpp 2025-08-26T20:56:56.6955159Z OpenRegFunctions.cpp 2025-08-26T20:56:57.4271979Z OpenRegGenerator.cpp 2025-08-26T20:56:58.8082055Z OpenRegGuard.cpp 2025-08-26T20:56:59.4515198Z C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\csrc\runtime\OpenRegGuard.h(124,16): warning C4312: 'reinterpret_cast': conversion from 'int' to 'void *' of greater size [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\torch_openreg.vcxproj] 2025-08-26T20:56:59.4516871Z (compiling source file '../../csrc/runtime/OpenRegGuard.cpp') 2025-08-26T20:56:59.4517241Z 2025-08-26T20:56:59.6000118Z OpenRegHooks.cpp 2025-08-26T20:57:01.0837189Z OpenRegHostAllocator.cpp 2025-08-26T20:57:02.0609628Z OpenRegSerialization.cpp 2025-08-26T20:57:05.5406841Z Generating Code... 2025-08-26T20:57:09.5017459Z Creating library C:/actions-runner/_work/pytorch/pytorch/test/cpp_extensions/open_registration_extension/torch_openreg/build/csrc/Release/torch_openreg.lib and object C:/actions-runner/_work/pytorch/pytorch/test/cpp_extensions/open_registration_extension/torch_openreg/build/csrc/Release/torch_openreg.exp 2025-08-26T20:57:09.6039017Z torch_openreg.vcxproj -> C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\csrc\Release\torch_openreg.dll 2025-08-26T20:57:09.6790512Z Building Custom Rule C:/actions-runner/_work/pytorch/pytorch/test/cpp_extensions/open_registration_extension/torch_openreg/torch_openreg/csrc/CMakeLists.txt 2025-08-26T20:57:09.7960611Z Module.cpp 2025-08-26T20:57:16.2074242Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\utils\python_compat.h(41,13): warning C4273: '_PyWeakref_ClearRef': inconsistent dll linkage [C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\torch_openreg\csrc\torch_bindings.vcxproj] 2025-08-26T20:57:16.2104178Z (compiling source file '../../../torch_openreg/csrc/Module.cpp') 2025-08-26T20:57:16.2104998Z C:\Jenkins\Miniconda3\Include\weakrefobject.h(67,18): 2025-08-26T20:57:16.2107283Z see previous definition of '_PyWeakref_ClearRef' 2025-08-26T20:57:16.2108064Z 2025-08-26T20:57:20.8762739Z Creating library C:/actions-runner/_work/pytorch/pytorch/test/cpp_extensions/open_registration_extension/torch_openreg/build/torch_openreg/csrc/Release/torch_bindings.lib and object C:/actions-runner/_work/pytorch/pytorch/test/cpp_extensions/open_registration_extension/torch_openreg/build/torch_openreg/csrc/Release/torch_bindings.exp 2025-08-26T20:57:20.9561926Z torch_bindings.vcxproj -> C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\build\torch_openreg\csrc\Release\torch_bindings.dll 2025-08-26T20:57:21.0008075Z Building Custom Rule C:/actions-runner/_work/pytorch/pytorch/test/cpp_extensions/open_registration_extension/torch_openreg/CMakeLists.txt 2025-08-26T20:57:21.1447885Z -- Install configuration: "Release" 2025-08-26T20:57:21.2336638Z Could not find an up-to-date installation of `packaging`. License expressions might not be validated. To enforce validation, please install `packaging>=24.2`. 2025-08-26T20:57:21.2396221Z C:\Jenkins\Miniconda3\lib\site-packages\setuptools\config\_apply_pyprojecttoml.py:82: SetuptoolsDeprecationWarning: `project.license` as a TOML table is deprecated 2025-08-26T20:57:21.2397169Z !! 2025-08-26T20:57:21.2397267Z 2025-08-26T20:57:21.2397380Z ******************************************************************************** 2025-08-26T20:57:21.2398199Z Please use a simple string containing a SPDX expression for `project.license`. You can also use `project.license-files`. (Both options available on setuptools>=77.0.0). 2025-08-26T20:57:21.2398883Z 2025-08-26T20:57:21.2399100Z By 2026-Feb-18, you need to update your project and remove deprecated calls 2025-08-26T20:57:21.2399532Z or your builds will no longer be supported. 2025-08-26T20:57:21.2399765Z 2025-08-26T20:57:21.2400200Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-08-26T20:57:21.2400849Z ******************************************************************************** 2025-08-26T20:57:21.2401125Z 2025-08-26T20:57:21.2401193Z !! 2025-08-26T20:57:21.2401381Z corresp(dist, value, root_dir) 2025-08-26T20:57:21.4097904Z running install 2025-08-26T20:57:21.4101549Z C:\Jenkins\Miniconda3\lib\site-packages\setuptools\_distutils\cmd.py:90: SetuptoolsDeprecationWarning: setup.py install is deprecated. 2025-08-26T20:57:21.4102257Z !! 2025-08-26T20:57:21.4102364Z 2025-08-26T20:57:21.4102474Z ******************************************************************************** 2025-08-26T20:57:21.4102815Z Please avoid running ``setup.py`` directly. 2025-08-26T20:57:21.4103164Z Instead, use pypa/build, pypa/installer or other 2025-08-26T20:57:21.4103489Z standards-based tools. 2025-08-26T20:57:21.4103661Z 2025-08-26T20:57:21.4103947Z See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details. 2025-08-26T20:57:21.4104445Z ******************************************************************************** 2025-08-26T20:57:21.4104669Z 2025-08-26T20:57:21.4104742Z !! 2025-08-26T20:57:21.4104921Z self.initialize_options() 2025-08-26T20:57:21.4230990Z running build 2025-08-26T20:57:21.4231260Z running build_py 2025-08-26T20:57:21.4341300Z creating build\lib.win-amd64-cpython-39\torch_openreg 2025-08-26T20:57:21.4346200Z copying torch_openreg\_utils.py -> build\lib.win-amd64-cpython-39\torch_openreg 2025-08-26T20:57:21.4352737Z copying torch_openreg\__init__.py -> build\lib.win-amd64-cpython-39\torch_openreg 2025-08-26T20:57:21.4359838Z creating build\lib.win-amd64-cpython-39\torch_openreg\openreg 2025-08-26T20:57:21.4362820Z copying torch_openreg\openreg\meta.py -> build\lib.win-amd64-cpython-39\torch_openreg\openreg 2025-08-26T20:57:21.4369066Z copying torch_openreg\openreg\random.py -> build\lib.win-amd64-cpython-39\torch_openreg\openreg 2025-08-26T20:57:21.4375291Z copying torch_openreg\openreg\__init__.py -> build\lib.win-amd64-cpython-39\torch_openreg\openreg 2025-08-26T20:57:21.4396392Z creating build\lib.win-amd64-cpython-39\torch_openreg\lib 2025-08-26T20:57:21.4398977Z copying torch_openreg\lib\openreg.dll -> build\lib.win-amd64-cpython-39\torch_openreg\lib 2025-08-26T20:57:21.4406762Z copying torch_openreg\lib\torch_bindings.dll -> build\lib.win-amd64-cpython-39\torch_openreg\lib 2025-08-26T20:57:21.4417218Z copying torch_openreg\lib\torch_openreg.dll -> build\lib.win-amd64-cpython-39\torch_openreg\lib 2025-08-26T20:57:21.4427700Z copying torch_openreg\lib\openreg.lib -> build\lib.win-amd64-cpython-39\torch_openreg\lib 2025-08-26T20:57:21.4434990Z copying torch_openreg\lib\torch_bindings.lib -> build\lib.win-amd64-cpython-39\torch_openreg\lib 2025-08-26T20:57:21.4448163Z copying torch_openreg\lib\torch_openreg.lib -> build\lib.win-amd64-cpython-39\torch_openreg\lib 2025-08-26T20:57:21.4458646Z running build_ext 2025-08-26T20:57:21.4579114Z building 'torch_openreg._C' extension 2025-08-26T20:57:21.4591500Z creating build\temp.win-amd64-cpython-39\Release\torch_openreg\csrc 2025-08-26T20:57:21.4603827Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64\cl.exe" /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\Jenkins\Miniconda3\include -IC:\Jenkins\Miniconda3\Include "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" /Tctorch_openreg/csrc/stub.c /Fobuild\temp.win-amd64-cpython-39\Release\torch_openreg\csrc\stub.obj /MD /FS /EHsc 2025-08-26T20:57:21.4717991Z stub.c 2025-08-26T20:57:21.5408676Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64\link.exe" /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg\torch_openreg/lib /LIBPATH:C:\Jenkins\Miniconda3\libs /LIBPATH:C:\Jenkins\Miniconda3 /LIBPATH:C:\Jenkins\Miniconda3\PCbuild\amd64 "/LIBPATH:C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64" torch_bindings.lib /EXPORT:PyInit__C build\temp.win-amd64-cpython-39\Release\torch_openreg\csrc\stub.obj /OUT:build\lib.win-amd64-cpython-39\torch_openreg\_C.cp39-win_amd64.pyd /IMPLIB:build\temp.win-amd64-cpython-39\Release\torch_openreg\csrc\_C.cp39-win_amd64.lib /NODEFAULTLIB:LIBCMT.LIB 2025-08-26T20:57:21.5586718Z Creating library build\temp.win-amd64-cpython-39\Release\torch_openreg\csrc\_C.cp39-win_amd64.lib and object build\temp.win-amd64-cpython-39\Release\torch_openreg\csrc\_C.cp39-win_amd64.exp 2025-08-26T20:57:21.5693558Z Generating code 2025-08-26T20:57:21.5777736Z Finished generating code 2025-08-26T20:57:21.6103697Z running install_lib 2025-08-26T20:57:21.6218142Z copying build\lib.win-amd64-cpython-39\torch_openreg\lib\openreg.dll -> ./install\Jenkins\Miniconda3\Lib\site-packages\torch_openreg\lib 2025-08-26T20:57:21.6228635Z copying build\lib.win-amd64-cpython-39\torch_openreg\lib\openreg.lib -> ./install\Jenkins\Miniconda3\Lib\site-packages\torch_openreg\lib 2025-08-26T20:57:21.6236973Z copying build\lib.win-amd64-cpython-39\torch_openreg\lib\torch_bindings.dll -> ./install\Jenkins\Miniconda3\Lib\site-packages\torch_openreg\lib 2025-08-26T20:57:21.6246542Z copying build\lib.win-amd64-cpython-39\torch_openreg\lib\torch_bindings.lib -> ./install\Jenkins\Miniconda3\Lib\site-packages\torch_openreg\lib 2025-08-26T20:57:21.6254781Z copying build\lib.win-amd64-cpython-39\torch_openreg\lib\torch_openreg.dll -> ./install\Jenkins\Miniconda3\Lib\site-packages\torch_openreg\lib 2025-08-26T20:57:21.6265654Z copying build\lib.win-amd64-cpython-39\torch_openreg\lib\torch_openreg.lib -> ./install\Jenkins\Miniconda3\Lib\site-packages\torch_openreg\lib 2025-08-26T20:57:21.6280320Z copying build\lib.win-amd64-cpython-39\torch_openreg\_C.cp39-win_amd64.pyd -> ./install\Jenkins\Miniconda3\Lib\site-packages\torch_openreg 2025-08-26T20:57:21.6301382Z running install_egg_info 2025-08-26T20:57:21.6503765Z running egg_info 2025-08-26T20:57:21.6598587Z writing torch_openreg.egg-info\PKG-INFO 2025-08-26T20:57:21.6608969Z writing dependency_links to torch_openreg.egg-info\dependency_links.txt 2025-08-26T20:57:21.6613368Z writing requirements to torch_openreg.egg-info\requires.txt 2025-08-26T20:57:21.6615664Z writing top-level names to torch_openreg.egg-info\top_level.txt 2025-08-26T20:57:21.6733756Z reading manifest file 'torch_openreg.egg-info\SOURCES.txt' 2025-08-26T20:57:21.6760798Z writing manifest file 'torch_openreg.egg-info\SOURCES.txt' 2025-08-26T20:57:21.6763514Z removing './install\Jenkins\Miniconda3\Lib\site-packages\torch_openreg-0.0.1-py3.9.egg-info' (and everything under it) 2025-08-26T20:57:21.6772406Z Copying torch_openreg.egg-info to ./install\Jenkins\Miniconda3\Lib\site-packages\torch_openreg-0.0.1-py3.9.egg-info 2025-08-26T20:57:21.6809237Z running install_scripts 2025-08-26T20:57:21.9733939Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:57:21.9749406Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_openreg.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:57:21.974560] 2025-08-26T20:57:28.4108368Z 2025-08-26T20:57:28.4109404Z test_openreg 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_openreg_1.1_c2836927faa26821_.log 2025-08-26T20:57:28.4120527Z Running 44 items in this shard: test/test_openreg.py::TestPrivateUse1::test_backend_dispatchstub, test/test_openreg.py::TestPrivateUse1::test_backend_generate_methods, test/test_openreg.py::TestPrivateUse1::test_backend_module_function, test/test_openreg.py::TestPrivateUse1::test_backend_module_methods, test/test_openreg.py::TestPrivateUse1::test_backend_module_registration, test/test_openreg.py::TestPrivateUse1::test_backend_name, test/test_openreg.py::TestPrivateUse1::test_backend_operator_registration, test/test_openreg.py::TestPrivateUse1::test_backend_packed_sequence_methods, test/test_openreg.py::TestPrivateUse1::test_backend_storage_methods, test/test_openreg.py::TestPrivateUse1::test_backend_tensor_methods, test/test_openreg.py::TestPrivateUse1::test_backend_tensor_type, test/test_openreg.py::TestPrivateUse1::test_backend_type_methods, test/test_openreg.py::TestOpenReg::test_autograd_init, test/test_openreg.py::TestOpenReg::test_compile_autograd_function_aliasing, test/test_openreg.py::TestOpenReg::test_compile_autograd_function_returns_self, test/test_openreg.py::TestOpenReg::test_copy_same_device, test/test_openreg.py::TestOpenReg::test_cross_device_copy, test/test_openreg.py::TestOpenReg::test_cross_diff_devices_copy, test/test_openreg.py::TestOpenReg::test_data_dependent_output, test/test_openreg.py::TestOpenReg::test_event_elapsed_time, test/test_openreg.py::TestOpenReg::test_event_wait_stream, test/test_openreg.py::TestOpenReg::test_expand, test/test_openreg.py::TestOpenReg::test_factory, test/test_openreg.py::TestOpenReg::test_fake_tensor, test/test_openreg.py::TestOpenReg::test_generator, test/test_openreg.py::TestOpenReg::test_manual_seed, test/test_openreg.py::TestOpenReg::test_named_tensor, test/test_openreg.py::TestOpenReg::test_open_device_cpu_serialization, test/test_openreg.py::TestOpenReg::test_open_device_dlpack, test/test_openreg.py::TestOpenReg::test_open_device_numpy_serialization, test/test_openreg.py::TestOpenReg::test_pin_memory, test/test_openreg.py::TestOpenReg::test_printing, test/test_openreg.py::TestOpenReg::test_quantize, test/test_openreg.py::TestOpenReg::test_record_event, test/test_openreg.py::TestOpenReg::test_resize, test/test_openreg.py::TestOpenReg::test_rewrapped_storage, test/test_openreg.py::TestOpenReg::test_rng_state, test/test_openreg.py::TestOpenReg::test_scalar_type_fallback, test/test_openreg.py::TestOpenReg::test_serialization, test/test_openreg.py::TestOpenReg::test_stream_synchronize, test/test_openreg.py::TestOpenReg::test_stream_wait_event, test/test_openreg.py::TestOpenReg::test_stream_wait_stream, test/test_openreg.py::TestOpenReg::test_tensor_type_fallback, test/test_openreg.py::TestOpenReg::test_tensorlist_type_fallback 2025-08-26T20:57:28.4131056Z 2025-08-26T20:57:28.4131227Z Running test_show_pickle 1/1 ... [2025-08-26 20:57:28.400656] 2025-08-26T20:57:28.4131611Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:57:28.4132590Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_show_pickle.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:57:28.400656] 2025-08-26T20:57:32.8199787Z 2025-08-26T20:57:32.8200611Z test_show_pickle 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_show_pickle_1.1_ebb5eebead616086_.log 2025-08-26T20:57:32.8201510Z Running 1 items in this shard: test/test_show_pickle.py::TestShowPickle::test_scripted_model 2025-08-26T20:57:32.8201918Z 2025-08-26T20:57:32.8207334Z Running test_torch 1/1 ... [2025-08-26 20:57:32.820415] 2025-08-26T20:57:32.8207869Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:57:32.8213835Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_torch.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:57:32.820415] 2025-08-26T20:57:55.1851005Z 2025-08-26T20:57:55.1851801Z test_torch 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_torch_1.1_3ebf1b4aa80c1bad_.log 2025-08-26T20:57:55.2143281Z Running 953 items in this shard: test/test_torch.py::TestBasicVitalSigns::test_basic_vitals, test/test_torch.py::TestBasicVitalSigns::test_basic_vitals_read_write, test/test_torch.py::TestBasicVitalSigns::test_dataloader_vitals, test/test_torch.py::TestTorch::test_RNGState, test/test_torch.py::TestTorch::test_RNGStateAliasing, test/test_torch.py::TestTorch::test_RNG_after_pickle, test/test_torch.py::TestTorch::test_Size, test/test_torch.py::TestTorch::test_Size_concat_non_tuple_sequence, test/test_torch.py::TestTorch::test_Size_concat_wildcard, test/test_torch.py::TestTorch::test_Size_iter, test/test_torch.py::TestTorch::test_Size_scalar, test/test_torch.py::TestTorch::test_add_meta_scalar, test/test_torch.py::TestTorch::test_allow_tensor_metadata_change, test/test_torch.py::TestTorch::test_apply, test/test_torch.py::TestTorch::test_as_subclass, test/test_torch.py::TestTorch::test_assert_async, test/test_torch.py::TestTorch::test_backward_hooks_traverse, test/test_torch.py::TestTorch::test_batch_norm_cpu_inference, test/test_torch.py::TestTorch::test_bf16_supported_on_cpu, test/test_torch.py::TestTorch::test_bmm_multithreaded, test/test_torch.py::TestTorch::test_boxMullerState, test/test_torch.py::TestTorch::test_cat_neg_dim, test/test_torch.py::TestTorch::test_check, test/test_torch.py::TestTorch::test_chunk_neg_dim, test/test_torch.py::TestTorch::test_conj_neg_tolist, test/test_torch.py::TestTorch::test_conj_physical_meta_stride, test/test_torch.py::TestTorch::test_contains, test/test_torch.py::TestTorch::test_copy_broadcast, test/test_torch.py::TestTorch::test_copy_dtypes, test/test_torch.py::TestTorch::test_copy_float16, test/test_torch.py::TestTorch::test_copy_many_to_one, test/test_torch.py::TestTorch::test_copy_transpose, test/test_torch.py::TestTorch::test_cuda_not_built, test/test_torch.py::TestTorch::test_cummax_neg_dim, test/test_torch.py::TestTorch::test_cummin_neg_dim, test/test_torch.py::TestTorch::test_cumprod_neg_dim, test/test_torch.py::TestTorch::test_cumsum_neg_dim, test/test_torch.py::TestTorch::test_cxx_flags, test/test_torch.py::TestTorch::test_data_ptr_of_empty_tensor_with_storage, test/test_torch.py::TestTorch::test_data_ptr_of_empty_view_with_storage, test/test_torch.py::TestTorch::test_deepcopy_gradient, test/test_torch.py::TestTorch::test_deepcopy_parameter, test/test_torch.py::TestTorch::test_deterministic_fill_uninitialized_memory, test/test_torch.py::TestTorch::test_deterministic_flag, test/test_torch.py::TestTorch::test_device, test/test_torch.py::TestTorch::test_dim_order, test/test_torch.py::TestTorch::test_dir, test/test_torch.py::TestTorch::test_doc, test/test_torch.py::TestTorch::test_doc_template, test/test_torch.py::TestTorch::test_dot_data_use, test/test_torch.py::TestTorch::test_dtype_is_signed, test/test_torch.py::TestTorch::test_element_size, test/test_torch.py::TestTorch::test_empty_meta, test/test_torch.py::TestTorch::test_empty_storage_view, test/test_torch.py::TestTorch::test_equal, test/test_torch.py::TestTorch::test_error_msg_type_translation, test/test_torch.py::TestTorch::test_fill_diagonal, test/test_torch.py::TestTorch::test_format_scalar_meta, test/test_torch.py::TestTorch::test_from_buffer, test/test_torch.py::TestTorch::test_from_file, test/test_torch.py::TestTorch::test_gather_neg_dim, test/test_torch.py::TestTorch::test_generator_cpu, test/test_torch.py::TestTorch::test_get_cpu_capability, test/test_torch.py::TestTorch::test_has_internal_overlap, test/test_torch.py::TestTorch::test_has_storage, test/test_torch.py::TestTorch::test_index_add, test/test_torch.py::TestTorch::test_index_add_all_dtypes, test/test_torch.py::TestTorch::test_index_add_cornercase, test/test_torch.py::TestTorch::test_index_add_correctness, test/test_torch.py::TestTorch::test_index_add_neg_dim, test/test_torch.py::TestTorch::test_index_copy_neg_dim, test/test_torch.py::TestTorch::test_index_fill_neg_dim, test/test_torch.py::TestTorch::test_index_select_neg_dim, test/test_torch.py::TestTorch::test_invalid_arg_error_handling, test/test_torch.py::TestTorch::test_invalid_generator_raises, test/test_torch.py::TestTorch::test_is_nonzero, test/test_torch.py::TestTorch::test_is_same_size, test/test_torch.py::TestTorch::test_iter, test/test_torch.py::TestTorch::test_kthvalue_neg_dim, test/test_torch.py::TestTorch::test_linspace_logspace, test/test_torch.py::TestTorch::test_logcumsumexp_neg_dim, test/test_torch.py::TestTorch::test_manual_seed, test/test_torch.py::TestTorch::test_map, test/test_torch.py::TestTorch::test_map2, test/test_torch.py::TestTorch::test_max_neg_dim, test/test_torch.py::TestTorch::test_mean_neg_dim, test/test_torch.py::TestTorch::test_median_neg_dim, test/test_torch.py::TestTorch::test_memory_format, test/test_torch.py::TestTorch::test_memory_format_contiguous_returns_same_tensor_if_already_satisfies, test/test_torch.py::TestTorch::test_memory_format_empty, test/test_torch.py::TestTorch::test_min_neg_dim, test/test_torch.py::TestTorch::test_mode_neg_dim, test/test_torch.py::TestTorch::test_multinomial_invalid_probs, test/test_torch.py::TestTorch::test_nanmedian_neg_dim, test/test_torch.py::TestTorch::test_narrow_neg_dim, test/test_torch.py::TestTorch::test_nbytes, test/test_torch.py::TestTorch::test_ndim, test/test_torch.py::TestTorch::test_new, test/test_torch.py::TestTorch::test_newaxis_numpy_comparison, test/test_torch.py::TestTorch::test_newindex, test/test_torch.py::TestTorch::test_no_cuda_monkeypatch, test/test_torch.py::TestTorch::test_norm_neg_dim, test/test_torch.py::TestTorch::test_normal_shape, test/test_torch.py::TestTorch::test_numel, test/test_torch.py::TestTorch::test_parallel_info, test/test_torch.py::TestTorch::test_parsing_double, test/test_torch.py::TestTorch::test_parsing_int64, test/test_torch.py::TestTorch::test_parsing_intlist, test/test_torch.py::TestTorch::test_permute, test/test_torch.py::TestTorch::test_pickle, test/test_torch.py::TestTorch::test_pickle_dtype, test/test_torch.py::TestTorch::test_pickle_function, test/test_torch.py::TestTorch::test_pickle_generator, test/test_torch.py::TestTorch::test_pickle_parameter, test/test_torch.py::TestTorch::test_pickle_parameter_no_requires_grad, test/test_torch.py::TestTorch::test_pickle_size, test/test_torch.py::TestTorch::test_pin_memory, test/test_torch.py::TestTorch::test_print, test/test_torch.py::TestTorch::test_prod_neg_dim, test/test_torch.py::TestTorch::test_pyobj_preserved, test/test_torch.py::TestTorch::test_qengine, test/test_torch.py::TestTorch::test_renorm_neg_dim, test/test_torch.py::TestTorch::test_resizable, test/test_torch.py::TestTorch::test_reversed, test/test_torch.py::TestTorch::test_scatter_neg_dim, test/test_torch.py::TestTorch::test_select_neg_dim, test/test_torch.py::TestTorch::test_set_flush_denormal, test/test_torch.py::TestTorch::test_setting_real_imag_to_a_number, test/test_torch.py::TestTorch::test_show_config, test/test_torch.py::TestTorch::test_size_neg_dim, test/test_torch.py::TestTorch::test_size_stride, test/test_torch.py::TestTorch::test_sizeof, test/test_torch.py::TestTorch::test_slice, test/test_torch.py::TestTorch::test_slow_test, test/test_torch.py::TestTorch::test_sobolengine_bounds, test/test_torch.py::TestTorch::test_sobolengine_bounds_scrambled, test/test_torch.py::TestTorch::test_sobolengine_continuing, test/test_torch.py::TestTorch::test_sobolengine_continuing_scrambled, test/test_torch.py::TestTorch::test_sobolengine_default_dtype, test/test_torch.py::TestTorch::test_sobolengine_distribution, test/test_torch.py::TestTorch::test_sobolengine_distribution_scrambled, test/test_torch.py::TestTorch::test_sobolengine_draw, test/test_torch.py::TestTorch::test_sobolengine_draw_base2, test/test_torch.py::TestTorch::test_sobolengine_draw_base2_scrambled, test/test_torch.py::TestTorch::test_sobolengine_draw_scrambled, test/test_torch.py::TestTorch::test_sobolengine_fast_forward, test/test_torch.py::TestTorch::test_sobolengine_fast_forward_scrambled, test/test_torch.py::TestTorch::test_sobolengine_first_point, test/test_torch.py::TestTorch::test_sobolengine_high_dim, test/test_torch.py::TestTorch::test_sobolengine_raise, test/test_torch.py::TestTorch::test_sobolengine_reset, test/test_torch.py::TestTorch::test_sobolengine_reset_scrambled, test/test_torch.py::TestTorch::test_sort_neg_dim, test/test_torch.py::TestTorch::test_split_neg_dim, test/test_torch.py::TestTorch::test_split_with_sizes_copy_out, test/test_torch.py::TestTorch::test_squeeze_neg_dim, test/test_torch.py::TestTorch::test_std_neg_dim, test/test_torch.py::TestTorch::test_storage_base_init, test/test_torch.py::TestTorch::test_storage_base_new, test/test_torch.py::TestTorch::test_storage_byteswap, test/test_torch.py::TestTorch::test_storage_casts, test/test_torch.py::TestTorch::test_storage_cycle_via_dict, test/test_torch.py::TestTorch::test_storage_cycle_via_slots, test/test_torch.py::TestTorch::test_storage_dead_weak_ref, test/test_torch.py::TestTorch::test_storage_dealloc, test/test_torch.py::TestTorch::test_storage_dealloc_resurrected, test/test_torch.py::TestTorch::test_storage_dealloc_subclass_resurrected, test/test_torch.py::TestTorch::test_storage_dealloc_subclass_zombie, test/test_torch.py::TestTorch::test_storage_dict_dealloc, test/test_torch.py::TestTorch::test_storage_error, test/test_torch.py::TestTorch::test_storage_error_no_attribute, test/test_torch.py::TestTorch::test_storage_finalizer_dealloc, test/test_torch.py::TestTorch::test_storage_fix_weakref_no_leak, test/test_torch.py::TestTorch::test_storage_from_tensor_dealloc, test/test_torch.py::TestTorch::test_storage_from_tensor_dealloc_resurrected, test/test_torch.py::TestTorch::test_storage_from_tensor_dealloc_zombie, test/test_torch.py::TestTorch::test_storage_preserve_nonhermetic_in_hermetic_context, test/test_torch.py::TestTorch::test_storage_resurrected_weak_ref, test/test_torch.py::TestTorch::test_storage_slot_dealloc, test/test_torch.py::TestTorch::test_storage_weakref_dealloc, test/test_torch.py::TestTorch::test_structseq_repr, test/test_torch.py::TestTorch::test_subclass_preserved, test/test_torch.py::TestTorch::test_subclass_tensors, test/test_torch.py::TestTorch::test_sum_neg_dim, test/test_torch.py::TestTorch::test_swap_basic, test/test_torch.py::TestTorch::test_swap_fail_slots, test/test_torch.py::TestTorch::test_t_not_2d_error, test/test_torch.py::TestTorch::test_tensor_base_init, test/test_torch.py::TestTorch::test_tensor_base_new, test/test_torch.py::TestTorch::test_tensor_ctor_scalar, test/test_torch.py::TestTorch::test_tensor_cycle_via_dict, test/test_torch.py::TestTorch::test_tensor_cycle_via_slots, test/test_torch.py::TestTorch::test_tensor_dead_weak_ref, test/test_torch.py::TestTorch::test_tensor_dict_dealloc, test/test_torch.py::TestTorch::test_tensor_finalizer_dealloc, test/test_torch.py::TestTorch::test_tensor_fix_weakref_no_leak, test/test_torch.py::TestTorch::test_tensor_item_no_warning, test/test_torch.py::TestTorch::test_tensor_ressurecting_clear, test/test_torch.py::TestTorch::test_tensor_resurrected_weak_ref, test/test_torch.py::TestTorch::test_tensor_set, test/test_torch.py::TestTorch::test_tensor_set_errors, test/test_torch.py::TestTorch::test_tensor_slot_dealloc, test/test_torch.py::TestTorch::test_tensor_weakref_dealloc, test/test_torch.py::TestTorch::test_tensor_where_scalar, test/test_torch.py::TestTorch::test_tensor_with_grad_to_scalar_warning, test/test_torch.py::TestTorch::test_tensoriterator_output_setup, test/test_torch.py::TestTorch::test_terminate_handler_on_crash, test/test_torch.py::TestTorch::test_to, test/test_torch.py::TestTorch::test_to_with_tensor, test/test_torch.py::TestTorch::test_topk_neg_dim, test/test_torch.py::TestTorch::test_torch_from_file, test/test_torch.py::TestTorch::test_transpose_neg_dim, test/test_torch.py::TestTorch::test_type, test/test_torch.py::TestTorch::test_type_alias, test/test_torch.py::TestTorch::test_type_conversion_via_dtype_name, test/test_torch.py::TestTorch::test_typed_storage_deprecation_warning, test/test_torch.py::TestTorch::test_typed_storage_internal_no_warning, test/test_torch.py::TestTorch::test_unbind_neg_dim, test/test_torch.py::TestTorch::test_unflatten, test/test_torch.py::TestTorch::test_unfold_neg_dim, test/test_torch.py::TestTorch::test_unsqueeze_neg_dim, test/test_torch.py::TestTorch::test_upsample_nearest1d_meta, test/test_torch.py::TestTorch::test_upsample_nearest2d_meta, test/test_torch.py::TestTorch::test_var_neg_dim, test/test_torch.py::TestTorch::test_warn_types, test/test_torch.py::TestTorch::test_wildcard_import, test/test_torch.py::TestVitalSignsCudaCPU::test_cuda_vitals_gpu_only_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test__local_scalar_dense_with_empty_tensor_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcdiv_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcdiv_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcdiv_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcdiv_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcdiv_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcdiv_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcdiv_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcdiv_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcdiv_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcmul_cuda_errors_with_cpu_scalars_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcmul_use_cpu_scalar_False_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcmul_use_cpu_scalar_False_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcmul_use_cpu_scalar_False_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcmul_use_cpu_scalar_False_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcmul_use_cpu_scalar_False_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcmul_use_cpu_scalar_False_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcmul_use_cpu_scalar_False_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcmul_use_cpu_scalar_False_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcmul_use_cpu_scalar_False_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcmul_use_cpu_scalar_True_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcmul_use_cpu_scalar_True_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcmul_use_cpu_scalar_True_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcmul_use_cpu_scalar_True_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcmul_use_cpu_scalar_True_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcmul_use_cpu_scalar_True_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcmul_use_cpu_scalar_True_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcmul_use_cpu_scalar_True_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcmul_use_cpu_scalar_True_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_assertRaisesRegex_ignore_msg_non_native_device_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_bernoulli_edge_cases_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_bernoulli_edge_cases_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_bernoulli_edge_cases_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_bernoulli_mem_overlap_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_bernoulli_p_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_bernoulli_p_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_bernoulli_p_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_bernoulli_p_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_bernoulli_self_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_bernoulli_self_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_bernoulli_self_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_bernoulli_self_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_bernoulli_self_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_bernoulli_self_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_bernoulli_self_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_bernoulli_self_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_bernoulli_self_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_bfloat16_neg_abs_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_bool_tensor_value_change_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_add_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_addcdiv_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_addcmul_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_atan2_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_copy_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_dist_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_div_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_eq_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_fmod_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_ge_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_gt_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_le_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_lerp_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_lt_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_map2_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_map_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_masked_fill_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_masked_scatter_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_masked_select_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_max_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_min_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_mul_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_ne_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_pow_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_remainder_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_sub_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_bytes_to_scalar_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_bytes_to_scalar_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_bytes_to_scalar_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_bytes_to_scalar_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_bytes_to_scalar_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_bytes_to_scalar_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_bytes_to_scalar_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_bytes_to_scalar_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_bytes_to_scalar_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_bytes_to_scalar_cpu_uint16, test/test_torch.py::TestTorchDeviceTypeCPU::test_bytes_to_scalar_cpu_uint32, test/test_torch.py::TestTorchDeviceTypeCPU::test_bytes_to_scalar_cpu_uint64, test/test_torch.py::TestTorchDeviceTypeCPU::test_bytes_to_scalar_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_cauchy_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_cauchy_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_cauchy_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_cauchy_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_cauchy_kstest_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_cauchy_no_inf_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_cauchy_no_inf_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_cdist_cuda_backward_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_cdist_empty_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_cdist_euclidean_large_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_cdist_grad_p_lt_1_no_nan_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_cdist_large_batch_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_cdist_large_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_cdist_non_contiguous_batch_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_cdist_non_contiguous_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_cdist_norm_batch_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_cdist_norm_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_cdist_same_inputs_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_check_tensor_all_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_check_tensor_internal_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_clone_all_dtypes_and_devices_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_clone_not_memory_dense_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_clone_zero_stride_dim_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_complex_half_experimental_warning_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_constants_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_conv_transposed_backward_agnostic_to_memory_format_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_conv_transposed_large_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_copy__cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_copy__cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_copy__cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_copy__cpu_complex32, test/test_torch.py::TestTorchDeviceTypeCPU::test_copy__cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_copy__cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_copy__cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_copy__cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_copy__cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_copy__cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_copy__cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_copy__cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_copy__cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_copy_all_dtypes_and_devices_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_copy_math_view_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_copy_mem_overlap_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_copy_transpose_math_view_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_copy_transpose_math_view_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_copy_transpose_math_view_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_corrcoef_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_corrcoef_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_corrcoef_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_cov_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_cpp_warnings_have_python_context_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_cublas_config_nondeterministic_alert_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_cummax_cummin_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_cummax_discontiguous_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_cummin_discontiguous_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_cumprod_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_cumsum_64bit_indexing_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_cumsum_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_deepcopy_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_deepcopy_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_deepcopy_scalar_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_deepcopy_scalar_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_cumsum_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_empty_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_empty_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_empty_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_empty_cpu_complex32, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_empty_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_empty_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_empty_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_empty_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_empty_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_empty_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_empty_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_empty_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_empty_cpu_uint16, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_empty_cpu_uint32, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_empty_cpu_uint64, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_empty_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_interpolate_bilinear_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_replication_pad2d_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_resize_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_resize_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_resize_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_resize_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_resize_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_resize_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_resize_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_resize_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_resize_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_resize_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_resize_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_resize_cpu_uint16, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_resize_cpu_uint32, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_resize_cpu_uint64, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_resize_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_device_guard_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_noncontig_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_noncontig_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_noncontig_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_noncontig_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_noncontig_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_noncontig_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_noncontig_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_noncontig_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_noncontig_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_noncontig_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_noncontig_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_dim_function_empty_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_discontiguous_out_cumsum_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_dist_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_dtypetensor_warnings_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_expected_failure_xla_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_exponential_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_exponential_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_exponential_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_exponential_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_exponential_kstest_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_exponential_kstest_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_exponential_kstest_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_exponential_kstest_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_exponential_no_zero_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_exponential_no_zero_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_gather_backward_deterministic_path_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_gather_backward_one_dim_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_geometric_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_geometric_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_geometric_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_geometric_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_geometric_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_geometric_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_geometric_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_geometric_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_geometric_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_geometric_kstest_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scale_will_not_overflow_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaler_deprecated_warning_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaler_pass_itself_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaling_accumulation_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaling_autocast_foreach0_fused0_AdamW_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaling_autocast_foreach0_fused0_Adam_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaling_autocast_foreach0_fused0_SGD_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaling_autocast_foreach2_fused_True_AdamW_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaling_autocast_foreach2_fused_True_Adam_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaling_autocast_foreach2_fused_True_SGD_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaling_autocast_foreach_True_fused1_AdamW_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaling_autocast_foreach_True_fused1_Adam_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaling_autocast_foreach_True_fused1_SGD_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaling_clipping_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaling_clipping_separate_unscale_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaling_multiple_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaling_penalty_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaling_state_dict_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaling_unscale_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaling_unscale_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaling_unscale_sparse_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaling_update_scale_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_gradient_all_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_gradient_all_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_gradient_all_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_gradient_extreme_cases_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_gradient_extreme_cases_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_gradient_extreme_cases_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_gradient_spacing_list_length_error_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_gradient_spacing_list_length_error_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_gradient_spacing_list_length_error_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_gradient_type_promotion_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_hook_remove_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_add_large_inputs_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_add_mem_overlap_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_copy_mem_overlap_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_fill_mem_overlap_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_put_mem_overlap_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_int64_upsample3d_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_invalid_shapes_grid_sampler_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_is_set_to_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_is_signed_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_item_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_item_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_item_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_item_cpu_complex32, test/test_torch.py::TestTorchDeviceTypeCPU::test_item_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_item_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_item_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_item_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_item_cpu_float8_e4m3fn, test/test_torch.py::TestTorchDeviceTypeCPU::test_item_cpu_float8_e4m3fnuz, test/test_torch.py::TestTorchDeviceTypeCPU::test_item_cpu_float8_e5m2, test/test_torch.py::TestTorchDeviceTypeCPU::test_item_cpu_float8_e5m2fnuz, test/test_torch.py::TestTorchDeviceTypeCPU::test_item_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_item_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_item_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_item_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_item_cpu_uint16, test/test_torch.py::TestTorchDeviceTypeCPU::test_item_cpu_uint32, test/test_torch.py::TestTorchDeviceTypeCPU::test_item_cpu_uint64, test/test_torch.py::TestTorchDeviceTypeCPU::test_item_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_large_cumprod_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_large_cumsum_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_binary_op_no_materialize_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_binary_op_no_materialize_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_binary_op_no_materialize_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_binary_op_no_materialize_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_binary_op_no_materialize_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_binary_op_no_materialize_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_binary_op_no_materialize_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_binary_op_no_materialize_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_binary_op_no_materialize_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_binary_op_no_materialize_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_binary_op_no_materialize_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_binary_op_no_materialize_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_materialize_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_materialize_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_materialize_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_materialize_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_materialize_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_materialize_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_materialize_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_materialize_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_materialize_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_materialize_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_materialize_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_materialize_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_log_normal_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_log_normal_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_log_normal_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_log_normal_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_logcumsumexp_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_lognormal_kstest_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_bool_tensor_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_bfloat16_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_bfloat16_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_bool_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_bool_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_complex128_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_complex128_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_complex64_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_complex64_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_float16_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_float16_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_float32_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_float32_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_float64_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_float64_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_int16_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_int16_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_int32_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_int32_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_int64_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_int64_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_int8_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_int8_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_uint8_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_uint8_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_mem_overlap_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_scatter_bool_tensor_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_scatter_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_scatter_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_scatter_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_scatter_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_scatter_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_scatter_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_scatter_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_scatter_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_scatter_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_scatter_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_scatter_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_scatter_inplace_noncontiguous_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_scatter_large_tensor_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_scatter_mem_overlap_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_select_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_select_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_select_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_select_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_select_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_select_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_select_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_select_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_select_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_select_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_select_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_select_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_select_discontiguous_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_memory_format_clone_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_memory_format_consistency_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_memory_format_cpu_and_cuda_ops_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_memory_format_empty_like_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_memory_format_factory_like_functions_preserve_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_memory_format_operators_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_memory_format_preserved_after_permute_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_memory_format_propagation_rules_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_memory_format_to_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_memory_format_type_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_memory_format_type_shortcuts_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_module_share_memory_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_multinomial_cpu_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_multinomial_cpu_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_multinomial_cpu_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_multinomial_cpu_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_multinomial_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_multinomial_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_multinomial_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_multinomial_deterministic_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_multinomial_deterministic_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_multinomial_deterministic_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_multinomial_device_constrain_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_multinomial_empty_w_replacement_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_multinomial_empty_wo_replacement_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_multinomial_gpu_device_constrain_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_multinomial_rng_state_advance_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_narrow_copy_non_contiguous_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_narrow_empty_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_no_nondeterministic_alert_interpolate_bilinear_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_no_nondeterministic_alert_interpolate_trilinear_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_AdaptiveAvgPool2d_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_AdaptiveAvgPool3d_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_AdaptiveMaxPool2d_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_AvgPool3d_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_CTCLoss_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_EmbeddingBag_max_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_FractionalMaxPool2d_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_FractionalMaxPool3d_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_MaxPool3d_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_MaxUnpool1d_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_MaxUnpool1d_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_MaxUnpool1d_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_MaxUnpool2d_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_MaxUnpool2d_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_MaxUnpool2d_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_MaxUnpool3d_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_MaxUnpool3d_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_MaxUnpool3d_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_NLLLoss_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_ReflectionPad1d_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_ReflectionPad3d_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_ReplicationPad1d_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_ReplicationPad2d_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_ReplicationPad3d_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_bincount_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_grid_sample_2d_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_grid_sample_3d_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_histc_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_interpolate_bicubic_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_interpolate_bilinear_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_interpolate_linear_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_interpolate_trilinear_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_kthvalue_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_median_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_put_accumulate_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_put_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_resize_quantized_cpu_qint32, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_resize_quantized_cpu_qint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_resize_quantized_cpu_quint2x4, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_resize_quantized_cpu_quint4x2, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_resize_quantized_cpu_quint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_normal_kstest_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_normal_kstest_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_normal_kstest_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_nullary_op_mem_overlap_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_pairwise_distance_empty_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_parallel_cow_materialize_error_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_parallel_cow_materialize_error_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_parallel_cow_materialize_error_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_parallel_cow_materialize_error_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_parallel_cow_materialize_error_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_parallel_cow_materialize_error_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_parallel_cow_materialize_error_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_parallel_cow_materialize_error_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_parallel_cow_materialize_error_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_parallel_cow_materialize_error_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_parallel_cow_materialize_error_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_parallel_cow_materialize_error_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_params_invalidated_with_grads_invalidated_and_graph_partition_AdamW_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_params_invalidated_with_grads_invalidated_and_graph_partition_Adam_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_params_invalidated_with_grads_invalidated_and_graph_partition_SGD_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_params_invalidated_with_grads_invalidated_between_unscale_and_step_AdamW_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_params_invalidated_with_grads_invalidated_between_unscale_and_step_Adam_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_params_invalidated_with_grads_invalidated_between_unscale_and_step_SGD_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_pdist_empty_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_pdist_norm_large_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_pickle_gradscaler_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_pin_memory_from_constructor_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_accumulate_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_accumulate_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_accumulate_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_accumulate_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_accumulate_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_accumulate_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_accumulate_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_accumulate_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_accumulate_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_accumulate_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_accumulate_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_empty_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_mem_overlap_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_reduced_type_float_copy_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_reduced_type_float_copy_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_repeat_interleave_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_scalar_check_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_add_bool_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_add_non_unique_index_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_add_one_dim_deterministic_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_add_to_large_input_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_bool_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_mem_overlap_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_multiply_unsupported_dtypes_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_multiply_unsupported_dtypes_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_non_unique_index_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_non_unique_index_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_non_unique_index_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_non_unique_index_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_non_unique_index_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_non_unique_index_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_non_unique_index_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_non_unique_index_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_non_unique_index_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_non_unique_index_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_non_unique_index_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_non_unique_index_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_operations_to_large_input_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_operations_to_large_input_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_operations_to_large_input_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_operations_to_large_input_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_operations_to_large_input_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_operations_to_large_input_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_operations_to_large_input_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_operations_to_large_input_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_operations_to_large_input_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_operations_to_large_input_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_operations_to_large_input_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_operations_to_large_input_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_scalar_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_scalar_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_scalar_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_scalar_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_scalar_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_scalar_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_scalar_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_scalar_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_scalar_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_scalar_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_scalar_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_scalar_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_to_large_input_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_zero_size_index_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_serialization_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_set_default_tensor_type_warnings_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_set_storage_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_set_storage_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_set_storage_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_set_storage_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_set_storage_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_set_storage_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_set_storage_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_set_storage_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_set_storage_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_set_storage_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_set_storage_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_set_storage_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_shift_mem_overlap_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_skip_xla_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_all_devices_non_blocking_False_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_all_devices_non_blocking_True_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_cpu_uint16, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_cpu_uint32, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_cpu_uint64, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_errors_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_errors_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_errors_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_errors_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_errors_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_errors_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_errors_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_errors_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_errors_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_errors_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_errors_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_errors_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_from_tensor_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_from_tensor_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_from_tensor_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_from_tensor_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_from_tensor_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_from_tensor_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_from_tensor_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_from_tensor_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_from_tensor_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_from_tensor_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_from_tensor_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_from_tensor_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_ok_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_ok_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_ok_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_ok_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_ok_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_ok_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_ok_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_ok_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_ok_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_ok_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_ok_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_ok_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_setitem_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_setitem_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_setitem_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_setitem_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_setitem_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_setitem_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_setitem_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_setitem_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_setitem_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_setitem_cpu_qint32, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_setitem_cpu_qint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_setitem_cpu_quint4x2, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_setitem_cpu_quint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_setitem_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_use_count_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_strides_propagation_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_sync_warning_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_take_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_take_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_take_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_take_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_take_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_take_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_take_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_take_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_take_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_take_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_take_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_take_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_take_empty_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_from_storage_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_from_storage_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_from_storage_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_from_storage_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_from_storage_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_from_storage_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_from_storage_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_from_storage_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_from_storage_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_from_storage_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_from_storage_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_from_storage_cpu_uint16, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_from_storage_cpu_uint32, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_from_storage_cpu_uint64, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_from_storage_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_set_errors_multigpu_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_shape_empty_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_storage_type_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_storage_type_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_storage_type_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_storage_type_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_storage_type_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_storage_type_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_storage_type_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_storage_type_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_storage_type_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_storage_type_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_storage_type_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_storage_type_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_type_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_ternary_op_mem_overlap_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_typed_storage_meta_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_typed_storage_meta_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_typed_storage_meta_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_typed_storage_meta_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_typed_storage_meta_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_typed_storage_meta_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_typed_storage_meta_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_typed_storage_meta_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_typed_storage_meta_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_typed_storage_meta_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_typed_storage_meta_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_typed_storage_meta_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_uniform_kstest_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_uniform_kstest_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_uniform_kstest_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_uniform_kstest_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_untyped_storage_meta_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_warn_always_caught_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_where_scalar_handcrafted_values_cpu 2025-08-26T20:57:55.2421051Z 2025-08-26T20:57:55.2421292Z Running test_tensorexpr 1/1 ... [2025-08-26 20:57:55.177997] 2025-08-26T20:57:55.2421697Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:57:55.2422684Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_tensorexpr.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:57:55.177997] 2025-08-26T20:58:30.4306654Z 2025-08-26T20:58:30.4307634Z test_tensorexpr 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_tensorexpr_1.1_5337264abe228e3e_.log 2025-08-26T20:58:30.4328074Z Running 74 items in this shard: test/test_tensorexpr.py::TestTensorExprFuser::test_add_const_rhs, test/test_tensorexpr.py::TestTensorExprFuser::test_add_sub, test/test_tensorexpr.py::TestTensorExprFuser::test_alias_analysis_input_and_module, test/test_tensorexpr.py::TestTensorExprFuser::test_alias_analysis_inputs, test/test_tensorexpr.py::TestTensorExprFuser::test_alias_analysis_module, test/test_tensorexpr.py::TestTensorExprFuser::test_all_combos, test/test_tensorexpr.py::TestTensorExprFuser::test_alpha, test/test_tensorexpr.py::TestTensorExprFuser::test_binary_ops, test/test_tensorexpr.py::TestTensorExprFuser::test_bitwise_ops, test/test_tensorexpr.py::TestTensorExprFuser::test_broadcast, test/test_tensorexpr.py::TestTensorExprFuser::test_broadcast3, test/test_tensorexpr.py::TestTensorExprFuser::test_broadcast_2, test/test_tensorexpr.py::TestTensorExprFuser::test_broadcast_big2, test/test_tensorexpr.py::TestTensorExprFuser::test_cat, test/test_tensorexpr.py::TestTensorExprFuser::test_cat_empty_tensors, test/test_tensorexpr.py::TestTensorExprFuser::test_cat_negative_dim, test/test_tensorexpr.py::TestTensorExprFuser::test_cat_only, test/test_tensorexpr.py::TestTensorExprFuser::test_cat_promote_inputs, test/test_tensorexpr.py::TestTensorExprFuser::test_cat_with_constant_dim, test/test_tensorexpr.py::TestTensorExprFuser::test_char, test/test_tensorexpr.py::TestTensorExprFuser::test_chunk, test/test_tensorexpr.py::TestTensorExprFuser::test_clamp, test/test_tensorexpr.py::TestTensorExprFuser::test_constant, test/test_tensorexpr.py::TestTensorExprFuser::test_double, test/test_tensorexpr.py::TestTensorExprFuser::test_double_intrinsics, test/test_tensorexpr.py::TestTensorExprFuser::test_dynamic_shape, test/test_tensorexpr.py::TestTensorExprFuser::test_easy, test/test_tensorexpr.py::TestTensorExprFuser::test_eq, test/test_tensorexpr.py::TestTensorExprFuser::test_exp_pow, test/test_tensorexpr.py::TestTensorExprFuser::test_four_arg, test/test_tensorexpr.py::TestTensorExprFuser::test_ge, test/test_tensorexpr.py::TestTensorExprFuser::test_gt, test/test_tensorexpr.py::TestTensorExprFuser::test_guard_fails, test/test_tensorexpr.py::TestTensorExprFuser::test_half_bn_relu, test/test_tensorexpr.py::TestTensorExprFuser::test_half_gelu, test/test_tensorexpr.py::TestTensorExprFuser::test_int64_promotion, test/test_tensorexpr.py::TestTensorExprFuser::test_int_output, test/test_tensorexpr.py::TestTensorExprFuser::test_le, test/test_tensorexpr.py::TestTensorExprFuser::test_loop, test/test_tensorexpr.py::TestTensorExprFuser::test_lt, test/test_tensorexpr.py::TestTensorExprFuser::test_mask, test/test_tensorexpr.py::TestTensorExprFuser::test_min_max, test/test_tensorexpr.py::TestTensorExprFuser::test_min_max_reduction, test/test_tensorexpr.py::TestTensorExprFuser::test_min_max_reduction2, test/test_tensorexpr.py::TestTensorExprFuser::test_min_max_reduction_dim1, test/test_tensorexpr.py::TestTensorExprFuser::test_min_max_reduction_dim1_2, test/test_tensorexpr.py::TestTensorExprFuser::test_multi_rand, test/test_tensorexpr.py::TestTensorExprFuser::test_multioutput, test/test_tensorexpr.py::TestTensorExprFuser::test_multiple_outputs, test/test_tensorexpr.py::TestTensorExprFuser::test_nans, test/test_tensorexpr.py::TestTensorExprFuser::test_ne, test/test_tensorexpr.py::TestTensorExprFuser::test_promotion, test/test_tensorexpr.py::TestTensorExprFuser::test_propagated_mem_layout, test/test_tensorexpr.py::TestTensorExprFuser::test_rand_like, test/test_tensorexpr.py::TestTensorExprFuser::test_rank_two, test/test_tensorexpr.py::TestTensorExprFuser::test_relu, test/test_tensorexpr.py::TestTensorExprFuser::test_remainder, test/test_tensorexpr.py::TestTensorExprFuser::test_reps, test/test_tensorexpr.py::TestTensorExprFuser::test_round_2, test/test_tensorexpr.py::TestTensorExprFuser::test_scalar, test/test_tensorexpr.py::TestTensorExprFuser::test_short, test/test_tensorexpr.py::TestTensorExprFuser::test_simple_add, test/test_tensorexpr.py::TestTensorExprFuser::test_sin_pow, test/test_tensorexpr.py::TestTensorExprFuser::test_slice, test/test_tensorexpr.py::TestTensorExprFuser::test_sliced_stride, test/test_tensorexpr.py::TestTensorExprFuser::test_softmax_cpu, test/test_tensorexpr.py::TestTensorExprFuser::test_softmax_cuda, test/test_tensorexpr.py::TestTensorExprFuser::test_strided_output_preserved, test/test_tensorexpr.py::TestTensorExprFuser::test_three_arg, test/test_tensorexpr.py::TestTensorExprFuser::test_three_arg2, test/test_tensorexpr.py::TestTensorExprFuser::test_transpose, test/test_tensorexpr.py::TestTensorExprFuser::test_unary_ops, test/test_tensorexpr.py::TestTensorExprFuser::test_unsqueeze, test/test_tensorexpr.py::TestTensorExprFuser::test_where 2025-08-26T20:58:30.4348116Z 2025-08-26T20:58:30.4348281Z Running test_overrides 1/1 ... [2025-08-26 20:58:30.432081] 2025-08-26T20:58:30.4348651Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:58:30.4349671Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_overrides.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:58:30.432707] 2025-08-26T20:58:41.1870577Z 2025-08-26T20:58:41.1871399Z test_overrides 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_overrides_1.1_0a544c4e5a117381_.log 2025-08-26T20:58:41.2364724Z Running 1470 items in this shard: test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_H___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_T___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase__backward_hooks___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase__base___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase__cdata___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase__grad___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase__grad_fn___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase__post_accumulate_grad_hooks___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase__version___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_data___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_device___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_dtype___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_grad___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_grad_fn___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_imag___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_is_cpu___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_is_cuda___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_is_ipu___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_is_leaf___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_is_maia___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_is_meta___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_is_mkldnn___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_is_mps___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_is_mtia___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_is_nested___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_is_quantized___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_is_sparse___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_is_sparse_csr___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_is_vulkan___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_is_xla___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_is_xpu___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_itemsize___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_layout___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_mH___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_mT___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_name___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_names___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_nbytes___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_ndim___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_output_nr___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_real___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_requires_grad___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_retains_grad___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_shape___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_volatile___get__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___add__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___and__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___array__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___array_wrap__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___bool__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___complex__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___contains__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___cuda_array_interface_____get__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___deepcopy__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___div__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___dlpack__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___dlpack_device__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___eq__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___float__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___floordiv__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___format__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___ge__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___getitem__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___gt__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___iadd__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___iand__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___idiv__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___ifloordiv__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___ilshift__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___imod__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___imul__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___index__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___int__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___invert__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___ior__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___irshift__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___isub__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___ixor__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___le__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___len__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___long__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___lshift__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___lt__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___matmul__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___mod__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___mul__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___ne__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___nonzero__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___or__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___radd__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___rand__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___rdiv__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___reduce_ex__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___repr__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___reversed__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___rfloordiv__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___rlshift__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___rmatmul__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___rmod__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___rmul__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___ror__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___rpow__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___rrshift__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___rshift__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___rsub__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___rxor__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___setitem__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___setstate__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___sub__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___truediv__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___xor__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor__autocast_to_full_precision, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor__autocast_to_reduced_precision, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor__clear_non_serializable_cached_data, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor__coalesced_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor__dimI, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor__dimV, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor__indices, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor__is_view, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor__nested_tensor_size, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor__nested_tensor_storage_offsets, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor__nested_tensor_strides, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor__nnz, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor__sparse_mask_projection, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor__to_dense, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor__update_names, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor__values, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_abs, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_abs_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_absolute, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_absolute_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_acos, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_acos_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_acosh, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_acosh_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_add, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_add_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_addbmm, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_addbmm_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_addcdiv, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_addcdiv_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_addcmul, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_addcmul_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_addmm, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_addmm_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_addmv, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_addmv_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_addr, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_addr_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_adjoint, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_align_as, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_align_to, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_all, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_allclose, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_amax, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_amin, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_aminmax, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_angle, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_any, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_apply_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_arccos, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_arccos_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_arccosh, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_arccosh_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_arcsin, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_arcsin_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_arcsinh, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_arcsinh_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_arctan, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_arctan2, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_arctan2_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_arctan_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_arctanh, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_arctanh_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_argmax, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_argmin, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_argsort, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_argwhere, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_as_strided, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_as_strided_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_as_strided_scatter, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_asin, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_asin_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_asinh, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_asinh_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_atan, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_atan2, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_atan2_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_atan_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_atanh, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_atanh_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_backward, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_baddbmm, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_baddbmm_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_bernoulli, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_bernoulli_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_bfloat16, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_bincount, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_bitwise_and, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_bitwise_and_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_bitwise_left_shift, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_bitwise_left_shift_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_bitwise_not, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_bitwise_not_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_bitwise_or, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_bitwise_or_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_bitwise_right_shift, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_bitwise_right_shift_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_bitwise_xor, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_bitwise_xor_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_bmm, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_bool, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_broadcast_to, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_byte, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_cauchy_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_ccol_indices, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_cdouble, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_ceil, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_ceil_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_cfloat, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_chalf, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_char, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_cholesky, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_cholesky_inverse, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_cholesky_solve, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_chunk, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_clamp, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_clamp_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_clamp_max, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_clamp_max_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_clamp_min, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_clamp_min_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_clip, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_clip_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_clone, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_coalesce, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_col_indices, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_conj, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_conj_physical, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_conj_physical_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_contiguous, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_copy_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_copysign, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_copysign_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_corrcoef, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_cos, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_cos_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_cosh, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_cosh_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_count_nonzero, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_cov, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_cpu, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_cross, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_crow_indices, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_cuda, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_cummax, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_cummin, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_cumprod, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_cumprod_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_cumsum, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_cumsum_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_data_ptr, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_deg2rad, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_deg2rad_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_dense_dim, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_dequantize, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_det, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_detach, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_detach_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_diag, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_diag_embed, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_diagflat, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_diagonal, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_diagonal_scatter, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_diff, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_digamma, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_digamma_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_dim, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_dim_order, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_dist, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_div, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_div_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_divide, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_divide_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_dot, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_double, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_dsplit, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_element_size, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_eq, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_eq_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_equal, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_erf, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_erf_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_erfc, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_erfc_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_erfinv, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_erfinv_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_exp, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_exp2, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_exp2_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_exp_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_expand, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_expand_as, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_expm1, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_expm1_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_exponential_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_fill_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_fill_diagonal_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_fix, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_fix_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_flatten, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_flip, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_fliplr, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_flipud, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_float, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_float_power, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_float_power_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_floor, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_floor_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_floor_divide, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_floor_divide_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_fmax, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_fmin, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_fmod, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_fmod_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_frac, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_frac_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_frexp, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_gather, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_gcd, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_gcd_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_ge, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_ge_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_geometric_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_geqrf, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_ger, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_get_device, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_greater, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_greater_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_greater_equal, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_greater_equal_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_gt, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_gt_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_half, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_hardshrink, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_has_names, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_hash_tensor, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_heaviside, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_heaviside_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_histc, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_histogram, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_hsplit, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_hypot, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_hypot_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_i0, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_i0_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_igamma, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_igamma_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_igammac, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_igammac_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_index_add, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_index_add_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_index_copy, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_index_copy_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_index_fill, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_index_fill_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_index_put, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_index_put_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_index_reduce, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_index_reduce_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_index_select, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_indices, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_inner, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_int, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_int_repr, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_inverse, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_ipu, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_is_coalesced, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_is_complex, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_is_conj, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_is_contiguous, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_is_distributed, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_is_floating_point, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_is_inference, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_is_neg, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_is_nonzero, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_is_pinned, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_is_same_size, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_is_set_to, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_is_shared, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_is_signed, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_isclose, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_isfinite, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_isinf, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_isnan, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_isneginf, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_isposinf, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_isreal, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_istft, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_item, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_kron, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_kthvalue, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_lcm, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_lcm_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_ldexp, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_ldexp_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_le, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_le_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_lerp, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_lerp_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_less, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_less_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_less_equal, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_less_equal_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_lgamma, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_lgamma_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_log, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_log10, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_log10_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_log1p, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_log1p_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_log2, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_log2_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_log_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_log_normal_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_log_softmax, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_logaddexp, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_logaddexp2, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_logcumsumexp, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_logdet, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_logical_and, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_logical_and_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_logical_not, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_logical_not_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_logical_or, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_logical_or_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_logical_xor, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_logical_xor_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_logit, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_logit_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_logsumexp, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_long, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_lt, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_lt_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_lu, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_lu_solve, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_map2_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_map_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_masked_fill, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_masked_fill_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_masked_scatter, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_masked_scatter_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_masked_select, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_matmul, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_matrix_exp, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_matrix_power, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_max, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_maximum, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_mean, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_median, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_min, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_minimum, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_mm, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_mode, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_module_load, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_moveaxis, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_movedim, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_msort, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_mtia, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_mul, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_mul_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_multinomial, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_multiply, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_multiply_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_mv, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_mvlgamma, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_mvlgamma_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_nan_to_num, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_nan_to_num_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_nanmean, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_nanmedian, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_nanquantile, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_nansum, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_narrow, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_narrow_copy, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_ndimension, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_ne, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_ne_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_neg, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_neg_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_negative, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_negative_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_nelement, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_nextafter, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_nextafter_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_nonzero, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_nonzero_static, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_norm, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_normal_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_not_equal, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_not_equal_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_numel, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_numpy, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_orgqr, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_ormqr, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_outer, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_permute, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_pin_memory, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_pinverse, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_polygamma, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_polygamma_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_positive, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_pow, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_pow_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_prelu, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_prod, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_put, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_put_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_q_per_channel_axis, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_q_per_channel_scales, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_q_per_channel_zero_points, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_q_scale, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_q_zero_point, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_qr, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_qscheme, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_quantile, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_rad2deg, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_rad2deg_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_random_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_ravel, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_reciprocal, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_reciprocal_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_record_stream, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_refine_names, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_register_hook, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_register_post_accumulate_grad_hook, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_relu, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_relu_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_remainder, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_remainder_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_rename, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_rename_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_renorm, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_renorm_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_repeat, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_repeat_interleave, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_requires_grad_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_reshape, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_reshape_as, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_resize, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_resize_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_resize_as, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_resize_as_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_resize_as_sparse_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_resolve_conj, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_resolve_neg, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_retain_grad, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_roll, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_rot90, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_round, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_round_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_row_indices, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_rsqrt, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_rsqrt_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_scatter, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_scatter_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_scatter_add, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_scatter_add_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_scatter_reduce, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_scatter_reduce_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_select, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_select_scatter, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_set_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sgn, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sgn_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_share_memory_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_short, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sigmoid, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sigmoid_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sign, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sign_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_signbit, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sin, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sin_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sinc, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sinc_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sinh, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sinh_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_size, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_slice_inverse, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_slice_scatter, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_slogdet, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_smm, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_softmax, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sort, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sparse_dim, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sparse_mask, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sparse_resize_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sparse_resize_and_clear_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_split, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_split_with_sizes, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sqrt, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sqrt_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_square, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_square_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_squeeze, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_squeeze_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sspaddmm, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_std, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_stft, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_storage, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_storage_offset, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_storage_type, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sub, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sub_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_subtract, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_subtract_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sum, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sum_to_size, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_svd, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_swapaxes, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_swapaxes_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_swapdims, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_swapdims_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_t, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_t_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_take, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_take_along_dim, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_tan, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_tan_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_tanh, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_tanh_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_tensor_split, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_tile, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_to, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_to_dense, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_to_mkldnn, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_to_sparse, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_tolist, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_topk, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_trace, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_transpose, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_transpose_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_triangular_solve, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_tril, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_tril_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_triu, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_triu_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_true_divide, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_true_divide_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_trunc, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_trunc_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_type, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_type_as, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_unbind, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_unfold, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_uniform_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_unique, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_unique_consecutive, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_unsafe_chunk, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_unsafe_split, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_unsafe_split_with_sizes, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_unsqueeze, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_unsqueeze_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_untyped_storage, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_values, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_var, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_vdot, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_view, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_view_as, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_vsplit, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_where, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_xlogy, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_xlogy_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_xpu, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_zero_, test/test_overrides.py::TestTorchFunctionOverride::test_base, test/test_overrides.py::TestTorchFunctionOverride::test_dtype_override, test/test_overrides.py::TestTorchFunctionOverride::test_grad, test/test_overrides.py::TestTorchFunctionOverride::test_has_torch_function_non_sequence, test/test_overrides.py::TestTorchFunctionOverride::test_mean_semantics, test/test_overrides.py::TestTorchFunctionOverride::test_mm_semantics, test/test_overrides.py::TestTorchFunctionOverride::test_pow_rpow, test/test_overrides.py::TestTorchFunctionOverride::test_precedence_semantics, test/test_overrides.py::TestTorchFunctionOverride::test_tensor_subclass_propagation, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__fft_fft_fft, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__fft_fft_fft2, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__fft_fft_fftn, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__fft_fft_fftshift, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__fft_fft_hfft, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__fft_fft_hfft2, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__fft_fft_hfftn, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__fft_fft_ifft, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__fft_fft_ifft2, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__fft_fft_ifftn, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__fft_fft_ifftshift, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__fft_fft_ihfft, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__fft_fft_ihfft2, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__fft_fft_ihfftn, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__fft_fft_irfft, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__fft_fft_irfft2, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__fft_fft_irfftn, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__fft_fft_rfft, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__fft_fft_rfft2, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__fft_fft_rfftn, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_cholesky, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_cholesky_ex, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_cond, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_cross, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_det, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_diagonal, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_eig, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_eigh, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_eigvals, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_eigvalsh, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_householder_product, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_inv, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_inv_ex, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_ldl_factor, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_ldl_factor_ex, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_ldl_solve, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_lstsq, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_lu, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_lu_factor, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_lu_factor_ex, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_lu_solve, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_matmul, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_matrix_exp, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_matrix_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_matrix_power, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_matrix_rank, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_multi_dot, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_pinv, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_qr, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_slogdet, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_solve, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_solve_ex, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_solve_triangular, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_svd, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_svdvals, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_tensorinv, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_tensorsolve, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_vander, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_vecdot, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_vector_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__nn_avg_pool2d, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__nn_avg_pool3d, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__nn_gelu, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__nn_linear, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__nn_log_sigmoid, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__nn_one_hot, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__nn_scaled_dot_product_attention, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__nn_softplus, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__nn_softshrink, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_airy_ai, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_bessel_j0, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_bessel_j1, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_bessel_y0, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_bessel_y1, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_chebyshev_polynomial_t, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_chebyshev_polynomial_u, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_chebyshev_polynomial_v, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_chebyshev_polynomial_w, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_digamma, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_entr, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_erf, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_erfc, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_erfcx, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_erfinv, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_exp2, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_expit, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_expm1, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_gammainc, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_gammaincc, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_gammaln, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_hermite_polynomial_h, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_hermite_polynomial_he, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_i0, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_i0e, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_i1, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_i1e, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_laguerre_polynomial_l, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_legendre_polynomial_p, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_log1p, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_log_ndtr, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_log_softmax, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_logit, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_logsumexp, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_modified_bessel_i0, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_modified_bessel_i1, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_modified_bessel_k0, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_modified_bessel_k1, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_multigammaln, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_ndtr, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_ndtri, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_polygamma, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_psi, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_round, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_scaled_modified_bessel_k0, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_scaled_modified_bessel_k1, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_shifted_chebyshev_polynomial_t, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_shifted_chebyshev_polynomial_u, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_shifted_chebyshev_polynomial_v, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_shifted_chebyshev_polynomial_w, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_sinc, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_softmax, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_spherical_bessel_j0, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_xlog1py, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_xlogy, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_zeta, test/test_overrides.py::TestTorchFunctionOverride::test_torch__assert_async, test/test_overrides.py::TestTorchFunctionOverride::test_torch__conj_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch__functional_assert_async, test/test_overrides.py::TestTorchFunctionOverride::test_torch__fused_rms_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch__fw_primal_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch__indices_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch__lobpcg_lobpcg, test/test_overrides.py::TestTorchFunctionOverride::test_torch__lowrank_pca_lowrank, test/test_overrides.py::TestTorchFunctionOverride::test_torch__lowrank_svd_lowrank, test/test_overrides.py::TestTorchFunctionOverride::test_torch__make_dual_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch__native_batch_norm_legit, test/test_overrides.py::TestTorchFunctionOverride::test_torch__neg_view_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch__reshape_alias_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch__rowwise_prune, test/test_overrides.py::TestTorchFunctionOverride::test_torch__sparse_broadcast_to_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch__sym_acos, test/test_overrides.py::TestTorchFunctionOverride::test_torch__sym_asin, test/test_overrides.py::TestTorchFunctionOverride::test_torch__sym_atan, test/test_overrides.py::TestTorchFunctionOverride::test_torch__sym_cos, test/test_overrides.py::TestTorchFunctionOverride::test_torch__sym_cosh, test/test_overrides.py::TestTorchFunctionOverride::test_torch__sym_sin, test/test_overrides.py::TestTorchFunctionOverride::test_torch__sym_sinh, test/test_overrides.py::TestTorchFunctionOverride::test_torch__sym_sqrt, test/test_overrides.py::TestTorchFunctionOverride::test_torch__sym_tan, test/test_overrides.py::TestTorchFunctionOverride::test_torch__sym_tanh, test/test_overrides.py::TestTorchFunctionOverride::test_torch__values_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch__wrapped_linear_prepack, test/test_overrides.py::TestTorchFunctionOverride::test_torch__wrapped_quantized_linear_prepacked, test/test_overrides.py::TestTorchFunctionOverride::test_torch_abs, test/test_overrides.py::TestTorchFunctionOverride::test_torch_absolute, test/test_overrides.py::TestTorchFunctionOverride::test_torch_acos, test/test_overrides.py::TestTorchFunctionOverride::test_torch_acosh, test/test_overrides.py::TestTorchFunctionOverride::test_torch_adaptive_avg_pool1d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_adaptive_max_pool1d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_add, test/test_overrides.py::TestTorchFunctionOverride::test_torch_addbmm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_addcdiv, test/test_overrides.py::TestTorchFunctionOverride::test_torch_addcmul, test/test_overrides.py::TestTorchFunctionOverride::test_torch_addmm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_addmv, test/test_overrides.py::TestTorchFunctionOverride::test_torch_addr, test/test_overrides.py::TestTorchFunctionOverride::test_torch_adjoint, test/test_overrides.py::TestTorchFunctionOverride::test_torch_affine_grid_generator, test/test_overrides.py::TestTorchFunctionOverride::test_torch_alias_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_all, test/test_overrides.py::TestTorchFunctionOverride::test_torch_allclose, test/test_overrides.py::TestTorchFunctionOverride::test_torch_alpha_dropout, test/test_overrides.py::TestTorchFunctionOverride::test_torch_amax, test/test_overrides.py::TestTorchFunctionOverride::test_torch_amin, test/test_overrides.py::TestTorchFunctionOverride::test_torch_aminmax, test/test_overrides.py::TestTorchFunctionOverride::test_torch_angle, test/test_overrides.py::TestTorchFunctionOverride::test_torch_any, test/test_overrides.py::TestTorchFunctionOverride::test_torch_arccos, test/test_overrides.py::TestTorchFunctionOverride::test_torch_arccosh, test/test_overrides.py::TestTorchFunctionOverride::test_torch_arcsin, test/test_overrides.py::TestTorchFunctionOverride::test_torch_arcsinh, test/test_overrides.py::TestTorchFunctionOverride::test_torch_arctan, test/test_overrides.py::TestTorchFunctionOverride::test_torch_arctan2, test/test_overrides.py::TestTorchFunctionOverride::test_torch_arctanh, test/test_overrides.py::TestTorchFunctionOverride::test_torch_argmax, test/test_overrides.py::TestTorchFunctionOverride::test_torch_argmin, test/test_overrides.py::TestTorchFunctionOverride::test_torch_argsort, test/test_overrides.py::TestTorchFunctionOverride::test_torch_argwhere, test/test_overrides.py::TestTorchFunctionOverride::test_torch_as_strided_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_as_strided_scatter, test/test_overrides.py::TestTorchFunctionOverride::test_torch_asin, test/test_overrides.py::TestTorchFunctionOverride::test_torch_asinh, test/test_overrides.py::TestTorchFunctionOverride::test_torch_atan, test/test_overrides.py::TestTorchFunctionOverride::test_torch_atan2, test/test_overrides.py::TestTorchFunctionOverride::test_torch_atanh, test/test_overrides.py::TestTorchFunctionOverride::test_torch_avg_pool1d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_baddbmm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_batch_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_batch_norm_backward_elemt, test/test_overrides.py::TestTorchFunctionOverride::test_torch_batch_norm_backward_reduce, test/test_overrides.py::TestTorchFunctionOverride::test_torch_batch_norm_elemt, test/test_overrides.py::TestTorchFunctionOverride::test_torch_batch_norm_gather_stats, test/test_overrides.py::TestTorchFunctionOverride::test_torch_batch_norm_gather_stats_with_counts, test/test_overrides.py::TestTorchFunctionOverride::test_torch_batch_norm_stats, test/test_overrides.py::TestTorchFunctionOverride::test_torch_batch_norm_update_stats, test/test_overrides.py::TestTorchFunctionOverride::test_torch_bernoulli, test/test_overrides.py::TestTorchFunctionOverride::test_torch_bilinear, test/test_overrides.py::TestTorchFunctionOverride::test_torch_binary_cross_entropy_with_logits, test/test_overrides.py::TestTorchFunctionOverride::test_torch_bincount, test/test_overrides.py::TestTorchFunctionOverride::test_torch_binomial, test/test_overrides.py::TestTorchFunctionOverride::test_torch_bitwise_and, test/test_overrides.py::TestTorchFunctionOverride::test_torch_bitwise_left_shift, test/test_overrides.py::TestTorchFunctionOverride::test_torch_bitwise_not, test/test_overrides.py::TestTorchFunctionOverride::test_torch_bitwise_or, test/test_overrides.py::TestTorchFunctionOverride::test_torch_bitwise_right_shift, test/test_overrides.py::TestTorchFunctionOverride::test_torch_bitwise_xor, test/test_overrides.py::TestTorchFunctionOverride::test_torch_bmm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_broadcast_to, test/test_overrides.py::TestTorchFunctionOverride::test_torch_bucketize, test/test_overrides.py::TestTorchFunctionOverride::test_torch_cat, test/test_overrides.py::TestTorchFunctionOverride::test_torch_ccol_indices_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_ceil, test/test_overrides.py::TestTorchFunctionOverride::test_torch_celu, test/test_overrides.py::TestTorchFunctionOverride::test_torch_channel_shuffle, test/test_overrides.py::TestTorchFunctionOverride::test_torch_cholesky, test/test_overrides.py::TestTorchFunctionOverride::test_torch_cholesky_inverse, test/test_overrides.py::TestTorchFunctionOverride::test_torch_cholesky_solve, test/test_overrides.py::TestTorchFunctionOverride::test_torch_choose_qparams_optimized, test/test_overrides.py::TestTorchFunctionOverride::test_torch_chunk, test/test_overrides.py::TestTorchFunctionOverride::test_torch_clamp, test/test_overrides.py::TestTorchFunctionOverride::test_torch_clamp_max, test/test_overrides.py::TestTorchFunctionOverride::test_torch_clamp_min, test/test_overrides.py::TestTorchFunctionOverride::test_torch_clip, test/test_overrides.py::TestTorchFunctionOverride::test_torch_clone, test/test_overrides.py::TestTorchFunctionOverride::test_torch_col_indices_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_column_stack, test/test_overrides.py::TestTorchFunctionOverride::test_torch_combinations, test/test_overrides.py::TestTorchFunctionOverride::test_torch_complex, test/test_overrides.py::TestTorchFunctionOverride::test_torch_concat, test/test_overrides.py::TestTorchFunctionOverride::test_torch_concatenate, test/test_overrides.py::TestTorchFunctionOverride::test_torch_conj, test/test_overrides.py::TestTorchFunctionOverride::test_torch_conj_physical, test/test_overrides.py::TestTorchFunctionOverride::test_torch_constant_pad_nd, test/test_overrides.py::TestTorchFunctionOverride::test_torch_conv1d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_conv2d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_conv3d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_conv_tbc, test/test_overrides.py::TestTorchFunctionOverride::test_torch_conv_transpose1d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_conv_transpose2d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_conv_transpose3d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_convolution, test/test_overrides.py::TestTorchFunctionOverride::test_torch_copysign, test/test_overrides.py::TestTorchFunctionOverride::test_torch_corrcoef, test/test_overrides.py::TestTorchFunctionOverride::test_torch_cos, test/test_overrides.py::TestTorchFunctionOverride::test_torch_cosh, test/test_overrides.py::TestTorchFunctionOverride::test_torch_cosine_embedding_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_cosine_similarity, test/test_overrides.py::TestTorchFunctionOverride::test_torch_count_nonzero, test/test_overrides.py::TestTorchFunctionOverride::test_torch_cov, test/test_overrides.py::TestTorchFunctionOverride::test_torch_cross, test/test_overrides.py::TestTorchFunctionOverride::test_torch_crow_indices_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_ctc_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_cummax, test/test_overrides.py::TestTorchFunctionOverride::test_torch_cummin, test/test_overrides.py::TestTorchFunctionOverride::test_torch_cumprod, test/test_overrides.py::TestTorchFunctionOverride::test_torch_cumsum, test/test_overrides.py::TestTorchFunctionOverride::test_torch_cumulative_trapezoid, test/test_overrides.py::TestTorchFunctionOverride::test_torch_deg2rad, test/test_overrides.py::TestTorchFunctionOverride::test_torch_dequantize, test/test_overrides.py::TestTorchFunctionOverride::test_torch_det, test/test_overrides.py::TestTorchFunctionOverride::test_torch_detach, test/test_overrides.py::TestTorchFunctionOverride::test_torch_detach_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_diag, test/test_overrides.py::TestTorchFunctionOverride::test_torch_diag_embed, test/test_overrides.py::TestTorchFunctionOverride::test_torch_diagflat, test/test_overrides.py::TestTorchFunctionOverride::test_torch_diagonal, test/test_overrides.py::TestTorchFunctionOverride::test_torch_diagonal_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_diagonal_scatter, test/test_overrides.py::TestTorchFunctionOverride::test_torch_diff, test/test_overrides.py::TestTorchFunctionOverride::test_torch_digamma, test/test_overrides.py::TestTorchFunctionOverride::test_torch_dist, test/test_overrides.py::TestTorchFunctionOverride::test_torch_div, test/test_overrides.py::TestTorchFunctionOverride::test_torch_divide, test/test_overrides.py::TestTorchFunctionOverride::test_torch_dot, test/test_overrides.py::TestTorchFunctionOverride::test_torch_dropout, test/test_overrides.py::TestTorchFunctionOverride::test_torch_dsmm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_dsplit, test/test_overrides.py::TestTorchFunctionOverride::test_torch_dstack, test/test_overrides.py::TestTorchFunctionOverride::test_torch_embedding, test/test_overrides.py::TestTorchFunctionOverride::test_torch_embedding_bag, test/test_overrides.py::TestTorchFunctionOverride::test_torch_empty_like, test/test_overrides.py::TestTorchFunctionOverride::test_torch_eq, test/test_overrides.py::TestTorchFunctionOverride::test_torch_equal, test/test_overrides.py::TestTorchFunctionOverride::test_torch_erf, test/test_overrides.py::TestTorchFunctionOverride::test_torch_erfc, test/test_overrides.py::TestTorchFunctionOverride::test_torch_erfinv, test/test_overrides.py::TestTorchFunctionOverride::test_torch_exp, test/test_overrides.py::TestTorchFunctionOverride::test_torch_exp2, test/test_overrides.py::TestTorchFunctionOverride::test_torch_expand_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_expm1, test/test_overrides.py::TestTorchFunctionOverride::test_torch_fake_quantize_per_channel_affine, test/test_overrides.py::TestTorchFunctionOverride::test_torch_fake_quantize_per_tensor_affine, test/test_overrides.py::TestTorchFunctionOverride::test_torch_fbgemm_linear_fp16_weight, test/test_overrides.py::TestTorchFunctionOverride::test_torch_fbgemm_linear_fp16_weight_fp32_activation, test/test_overrides.py::TestTorchFunctionOverride::test_torch_fbgemm_linear_int8_weight, test/test_overrides.py::TestTorchFunctionOverride::test_torch_fbgemm_linear_int8_weight_fp32_activation, test/test_overrides.py::TestTorchFunctionOverride::test_torch_fbgemm_linear_quantize_weight, test/test_overrides.py::TestTorchFunctionOverride::test_torch_fbgemm_pack_gemm_matrix_fp16, test/test_overrides.py::TestTorchFunctionOverride::test_torch_fbgemm_pack_quantized_matrix, test/test_overrides.py::TestTorchFunctionOverride::test_torch_feature_alpha_dropout, test/test_overrides.py::TestTorchFunctionOverride::test_torch_feature_dropout, test/test_overrides.py::TestTorchFunctionOverride::test_torch_fix, test/test_overrides.py::TestTorchFunctionOverride::test_torch_flatten, test/test_overrides.py::TestTorchFunctionOverride::test_torch_flip, test/test_overrides.py::TestTorchFunctionOverride::test_torch_fliplr, test/test_overrides.py::TestTorchFunctionOverride::test_torch_flipud, test/test_overrides.py::TestTorchFunctionOverride::test_torch_float_power, test/test_overrides.py::TestTorchFunctionOverride::test_torch_floor, test/test_overrides.py::TestTorchFunctionOverride::test_torch_floor_divide, test/test_overrides.py::TestTorchFunctionOverride::test_torch_fmax, test/test_overrides.py::TestTorchFunctionOverride::test_torch_fmin, test/test_overrides.py::TestTorchFunctionOverride::test_torch_fmod, test/test_overrides.py::TestTorchFunctionOverride::test_torch_frac, test/test_overrides.py::TestTorchFunctionOverride::test_torch_frexp, test/test_overrides.py::TestTorchFunctionOverride::test_torch_frobenius_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_full_like, test/test_overrides.py::TestTorchFunctionOverride::test_torch_functional_atleast_1d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_functional_atleast_2d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_functional_atleast_3d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_functional_block_diag, test/test_overrides.py::TestTorchFunctionOverride::test_torch_functional_broadcast_tensors, test/test_overrides.py::TestTorchFunctionOverride::test_torch_functional_cartesian_prod, test/test_overrides.py::TestTorchFunctionOverride::test_torch_functional_cdist, test/test_overrides.py::TestTorchFunctionOverride::test_torch_functional_chain_matmul, test/test_overrides.py::TestTorchFunctionOverride::test_torch_functional_einsum, test/test_overrides.py::TestTorchFunctionOverride::test_torch_functional_lu, test/test_overrides.py::TestTorchFunctionOverride::test_torch_functional_meshgrid, test/test_overrides.py::TestTorchFunctionOverride::test_torch_functional_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_functional_split, test/test_overrides.py::TestTorchFunctionOverride::test_torch_functional_stft, test/test_overrides.py::TestTorchFunctionOverride::test_torch_functional_tensordot, test/test_overrides.py::TestTorchFunctionOverride::test_torch_functional_unique, test/test_overrides.py::TestTorchFunctionOverride::test_torch_functional_unique_consecutive, test/test_overrides.py::TestTorchFunctionOverride::test_torch_functional_unravel_index, test/test_overrides.py::TestTorchFunctionOverride::test_torch_fused_moving_avg_obs_fake_quant, test/test_overrides.py::TestTorchFunctionOverride::test_torch_gather, test/test_overrides.py::TestTorchFunctionOverride::test_torch_gcd, test/test_overrides.py::TestTorchFunctionOverride::test_torch_ge, test/test_overrides.py::TestTorchFunctionOverride::test_torch_geqrf, test/test_overrides.py::TestTorchFunctionOverride::test_torch_ger, test/test_overrides.py::TestTorchFunctionOverride::test_torch_get_device, test/test_overrides.py::TestTorchFunctionOverride::test_torch_gradient, test/test_overrides.py::TestTorchFunctionOverride::test_torch_greater, test/test_overrides.py::TestTorchFunctionOverride::test_torch_greater_equal, test/test_overrides.py::TestTorchFunctionOverride::test_torch_grid_sampler, test/test_overrides.py::TestTorchFunctionOverride::test_torch_grid_sampler_2d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_grid_sampler_3d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_group_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_gru, test/test_overrides.py::TestTorchFunctionOverride::test_torch_gru_cell, test/test_overrides.py::TestTorchFunctionOverride::test_torch_gt, test/test_overrides.py::TestTorchFunctionOverride::test_torch_hardshrink, test/test_overrides.py::TestTorchFunctionOverride::test_torch_hash_tensor, test/test_overrides.py::TestTorchFunctionOverride::test_torch_heaviside, test/test_overrides.py::TestTorchFunctionOverride::test_torch_hinge_embedding_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_histc, test/test_overrides.py::TestTorchFunctionOverride::test_torch_histogram, test/test_overrides.py::TestTorchFunctionOverride::test_torch_histogramdd, test/test_overrides.py::TestTorchFunctionOverride::test_torch_hsmm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_hsplit, test/test_overrides.py::TestTorchFunctionOverride::test_torch_hstack, test/test_overrides.py::TestTorchFunctionOverride::test_torch_hypot, test/test_overrides.py::TestTorchFunctionOverride::test_torch_i0, test/test_overrides.py::TestTorchFunctionOverride::test_torch_igamma, test/test_overrides.py::TestTorchFunctionOverride::test_torch_igammac, test/test_overrides.py::TestTorchFunctionOverride::test_torch_imag, test/test_overrides.py::TestTorchFunctionOverride::test_torch_index_add, test/test_overrides.py::TestTorchFunctionOverride::test_torch_index_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_index_fill, test/test_overrides.py::TestTorchFunctionOverride::test_torch_index_put, test/test_overrides.py::TestTorchFunctionOverride::test_torch_index_reduce, test/test_overrides.py::TestTorchFunctionOverride::test_torch_index_select, test/test_overrides.py::TestTorchFunctionOverride::test_torch_indices_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_inner, test/test_overrides.py::TestTorchFunctionOverride::test_torch_instance_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_int_repr, test/test_overrides.py::TestTorchFunctionOverride::test_torch_inverse, test/test_overrides.py::TestTorchFunctionOverride::test_torch_is_complex, test/test_overrides.py::TestTorchFunctionOverride::test_torch_is_conj, test/test_overrides.py::TestTorchFunctionOverride::test_torch_is_distributed, test/test_overrides.py::TestTorchFunctionOverride::test_torch_is_floating_point, test/test_overrides.py::TestTorchFunctionOverride::test_torch_is_inference, test/test_overrides.py::TestTorchFunctionOverride::test_torch_is_neg, test/test_overrides.py::TestTorchFunctionOverride::test_torch_is_nonzero, test/test_overrides.py::TestTorchFunctionOverride::test_torch_is_same_size, test/test_overrides.py::TestTorchFunctionOverride::test_torch_is_signed, test/test_overrides.py::TestTorchFunctionOverride::test_torch_isclose, test/test_overrides.py::TestTorchFunctionOverride::test_torch_isfinite, test/test_overrides.py::TestTorchFunctionOverride::test_torch_isin, test/test_overrides.py::TestTorchFunctionOverride::test_torch_isinf, test/test_overrides.py::TestTorchFunctionOverride::test_torch_isnan, test/test_overrides.py::TestTorchFunctionOverride::test_torch_isneginf, test/test_overrides.py::TestTorchFunctionOverride::test_torch_isposinf, test/test_overrides.py::TestTorchFunctionOverride::test_torch_isreal, test/test_overrides.py::TestTorchFunctionOverride::test_torch_istft, test/test_overrides.py::TestTorchFunctionOverride::test_torch_kl_div, test/test_overrides.py::TestTorchFunctionOverride::test_torch_kron, test/test_overrides.py::TestTorchFunctionOverride::test_torch_kthvalue, test/test_overrides.py::TestTorchFunctionOverride::test_torch_layer_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_lcm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_ldexp, test/test_overrides.py::TestTorchFunctionOverride::test_torch_le, test/test_overrides.py::TestTorchFunctionOverride::test_torch_lerp, test/test_overrides.py::TestTorchFunctionOverride::test_torch_less, test/test_overrides.py::TestTorchFunctionOverride::test_torch_less_equal, test/test_overrides.py::TestTorchFunctionOverride::test_torch_lgamma, test/test_overrides.py::TestTorchFunctionOverride::test_torch_log, test/test_overrides.py::TestTorchFunctionOverride::test_torch_log10, test/test_overrides.py::TestTorchFunctionOverride::test_torch_log1p, test/test_overrides.py::TestTorchFunctionOverride::test_torch_log2, test/test_overrides.py::TestTorchFunctionOverride::test_torch_log_softmax, test/test_overrides.py::TestTorchFunctionOverride::test_torch_logaddexp, test/test_overrides.py::TestTorchFunctionOverride::test_torch_logaddexp2, test/test_overrides.py::TestTorchFunctionOverride::test_torch_logcumsumexp, test/test_overrides.py::TestTorchFunctionOverride::test_torch_logdet, test/test_overrides.py::TestTorchFunctionOverride::test_torch_logical_and, test/test_overrides.py::TestTorchFunctionOverride::test_torch_logical_not, test/test_overrides.py::TestTorchFunctionOverride::test_torch_logical_or, test/test_overrides.py::TestTorchFunctionOverride::test_torch_logical_xor, test/test_overrides.py::TestTorchFunctionOverride::test_torch_logit, test/test_overrides.py::TestTorchFunctionOverride::test_torch_logsumexp, test/test_overrides.py::TestTorchFunctionOverride::test_torch_lstm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_lstm_cell, test/test_overrides.py::TestTorchFunctionOverride::test_torch_lt, test/test_overrides.py::TestTorchFunctionOverride::test_torch_lu_solve, test/test_overrides.py::TestTorchFunctionOverride::test_torch_lu_unpack, test/test_overrides.py::TestTorchFunctionOverride::test_torch_margin_ranking_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_masked_fill, test/test_overrides.py::TestTorchFunctionOverride::test_torch_masked_scatter, test/test_overrides.py::TestTorchFunctionOverride::test_torch_masked_select, test/test_overrides.py::TestTorchFunctionOverride::test_torch_matmul, test/test_overrides.py::TestTorchFunctionOverride::test_torch_matrix_exp, test/test_overrides.py::TestTorchFunctionOverride::test_torch_matrix_power, test/test_overrides.py::TestTorchFunctionOverride::test_torch_max, test/test_overrides.py::TestTorchFunctionOverride::test_torch_max_pool1d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_max_pool1d_with_indices, test/test_overrides.py::TestTorchFunctionOverride::test_torch_max_pool2d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_max_pool3d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_maximum, test/test_overrides.py::TestTorchFunctionOverride::test_torch_mean, test/test_overrides.py::TestTorchFunctionOverride::test_torch_median, test/test_overrides.py::TestTorchFunctionOverride::test_torch_min, test/test_overrides.py::TestTorchFunctionOverride::test_torch_minimum, test/test_overrides.py::TestTorchFunctionOverride::test_torch_miopen_batch_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_miopen_convolution, test/test_overrides.py::TestTorchFunctionOverride::test_torch_miopen_convolution_add_relu, test/test_overrides.py::TestTorchFunctionOverride::test_torch_miopen_convolution_relu, test/test_overrides.py::TestTorchFunctionOverride::test_torch_miopen_convolution_transpose, test/test_overrides.py::TestTorchFunctionOverride::test_torch_miopen_depthwise_convolution, test/test_overrides.py::TestTorchFunctionOverride::test_torch_miopen_rnn, test/test_overrides.py::TestTorchFunctionOverride::test_torch_mode, test/test_overrides.py::TestTorchFunctionOverride::test_torch_moveaxis, test/test_overrides.py::TestTorchFunctionOverride::test_torch_movedim, test/test_overrides.py::TestTorchFunctionOverride::test_torch_msort, test/test_overrides.py::TestTorchFunctionOverride::test_torch_mul, test/test_overrides.py::TestTorchFunctionOverride::test_torch_multinomial, test/test_overrides.py::TestTorchFunctionOverride::test_torch_multiply, test/test_overrides.py::TestTorchFunctionOverride::test_torch_mv, test/test_overrides.py::TestTorchFunctionOverride::test_torch_mvlgamma, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nan_to_num, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nanmean, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nanmedian, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nanquantile, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nansum, test/test_overrides.py::TestTorchFunctionOverride::test_torch_narrow, test/test_overrides.py::TestTorchFunctionOverride::test_torch_narrow_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_native_batch_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_native_channel_shuffle, test/test_overrides.py::TestTorchFunctionOverride::test_torch_native_dropout, test/test_overrides.py::TestTorchFunctionOverride::test_torch_native_group_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_native_layer_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_native_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_ne, test/test_overrides.py::TestTorchFunctionOverride::test_torch_neg, test/test_overrides.py::TestTorchFunctionOverride::test_torch_negative, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nextafter, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional__threshold, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_adaptive_avg_pool2d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_adaptive_avg_pool3d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_adaptive_max_pool1d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_adaptive_max_pool1d_with_indices, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_adaptive_max_pool2d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_adaptive_max_pool2d_with_indices, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_adaptive_max_pool3d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_adaptive_max_pool3d_with_indices, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_affine_grid, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_alpha_dropout, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_batch_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_binary_cross_entropy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_binary_cross_entropy_with_logits, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_celu, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_cosine_embedding_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_cross_entropy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_ctc_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_dropout, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_dropout1d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_dropout2d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_dropout3d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_elu, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_embedding, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_embedding_bag, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_feature_alpha_dropout, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_fold, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_fractional_max_pool2d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_fractional_max_pool2d_with_indices, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_fractional_max_pool3d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_fractional_max_pool3d_with_indices, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_gaussian_nll_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_glu, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_grid_sample, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_group_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_gumbel_softmax, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_hardtanh, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_hinge_embedding_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_huber_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_instance_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_interpolate, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_kl_div, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_l1_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_layer_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_leaky_relu, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_local_response_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_log_softmax, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_lp_pool1d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_lp_pool2d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_lp_pool3d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_margin_ranking_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_max_pool1d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_max_pool1d_with_indices, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_max_pool2d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_max_pool2d_with_indices, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_max_pool3d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_max_pool3d_with_indices, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_max_unpool1d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_max_unpool2d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_max_unpool3d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_mish, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_mse_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_multi_head_attention_forward, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_multi_margin_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_multilabel_margin_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_multilabel_soft_margin_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_nll_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_normalize, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_pad, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_poisson_nll_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_relu, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_relu6, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_rms_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_rrelu, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_selu, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_silu, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_smooth_l1_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_soft_margin_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_softmax, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_softmin, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_softsign, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_tanhshrink, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_triplet_margin_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_triplet_margin_with_distance_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_unfold, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_init_constant_, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_init_kaiming_uniform_, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_init_normal_, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_init_uniform_, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nonzero, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nonzero_static, test/test_overrides.py::TestTorchFunctionOverride::test_torch_norm_except_dim, test/test_overrides.py::TestTorchFunctionOverride::test_torch_not_equal, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nuclear_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_numel, test/test_overrides.py::TestTorchFunctionOverride::test_torch_ones_like, test/test_overrides.py::TestTorchFunctionOverride::test_torch_orgqr, test/test_overrides.py::TestTorchFunctionOverride::test_torch_ormqr, test/test_overrides.py::TestTorchFunctionOverride::test_torch_outer, test/test_overrides.py::TestTorchFunctionOverride::test_torch_pairwise_distance, test/test_overrides.py::TestTorchFunctionOverride::test_torch_pdist, test/test_overrides.py::TestTorchFunctionOverride::test_torch_permute, test/test_overrides.py::TestTorchFunctionOverride::test_torch_permute_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_pinverse, test/test_overrides.py::TestTorchFunctionOverride::test_torch_pixel_shuffle, test/test_overrides.py::TestTorchFunctionOverride::test_torch_pixel_unshuffle, test/test_overrides.py::TestTorchFunctionOverride::test_torch_poisson, test/test_overrides.py::TestTorchFunctionOverride::test_torch_poisson_nll_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_polar, test/test_overrides.py::TestTorchFunctionOverride::test_torch_polygamma, test/test_overrides.py::TestTorchFunctionOverride::test_torch_positive, test/test_overrides.py::TestTorchFunctionOverride::test_torch_pow, test/test_overrides.py::TestTorchFunctionOverride::test_torch_prelu, test/test_overrides.py::TestTorchFunctionOverride::test_torch_prod, test/test_overrides.py::TestTorchFunctionOverride::test_torch_put, test/test_overrides.py::TestTorchFunctionOverride::test_torch_q_per_channel_axis, test/test_overrides.py::TestTorchFunctionOverride::test_torch_q_per_channel_scales, test/test_overrides.py::TestTorchFunctionOverride::test_torch_q_per_channel_zero_points, test/test_overrides.py::TestTorchFunctionOverride::test_torch_q_scale, test/test_overrides.py::TestTorchFunctionOverride::test_torch_q_zero_point, test/test_overrides.py::TestTorchFunctionOverride::test_torch_qr, test/test_overrides.py::TestTorchFunctionOverride::test_torch_quantile, test/test_overrides.py::TestTorchFunctionOverride::test_torch_quantize_per_channel, test/test_overrides.py::TestTorchFunctionOverride::test_torch_quantize_per_tensor, test/test_overrides.py::TestTorchFunctionOverride::test_torch_quantize_per_tensor_dynamic, test/test_overrides.py::TestTorchFunctionOverride::test_torch_quantized_batch_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_quantized_gru_cell, test/test_overrides.py::TestTorchFunctionOverride::test_torch_quantized_lstm_cell, test/test_overrides.py::TestTorchFunctionOverride::test_torch_quantized_max_pool1d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_quantized_max_pool2d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_quantized_max_pool3d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_quantized_rnn_relu_cell, test/test_overrides.py::TestTorchFunctionOverride::test_torch_quantized_rnn_tanh_cell, test/test_overrides.py::TestTorchFunctionOverride::test_torch_rad2deg, test/test_overrides.py::TestTorchFunctionOverride::test_torch_rand_like, test/test_overrides.py::TestTorchFunctionOverride::test_torch_randint_like, test/test_overrides.py::TestTorchFunctionOverride::test_torch_randn_like, test/test_overrides.py::TestTorchFunctionOverride::test_torch_ravel, test/test_overrides.py::TestTorchFunctionOverride::test_torch_real, test/test_overrides.py::TestTorchFunctionOverride::test_torch_reciprocal, test/test_overrides.py::TestTorchFunctionOverride::test_torch_relu, test/test_overrides.py::TestTorchFunctionOverride::test_torch_remainder, test/test_overrides.py::TestTorchFunctionOverride::test_torch_renorm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_repeat_interleave, test/test_overrides.py::TestTorchFunctionOverride::test_torch_reshape, test/test_overrides.py::TestTorchFunctionOverride::test_torch_resolve_conj, test/test_overrides.py::TestTorchFunctionOverride::test_torch_resolve_neg, test/test_overrides.py::TestTorchFunctionOverride::test_torch_rms_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_rnn_relu, test/test_overrides.py::TestTorchFunctionOverride::test_torch_rnn_relu_cell, test/test_overrides.py::TestTorchFunctionOverride::test_torch_rnn_tanh, test/test_overrides.py::TestTorchFunctionOverride::test_torch_rnn_tanh_cell, test/test_overrides.py::TestTorchFunctionOverride::test_torch_roll, test/test_overrides.py::TestTorchFunctionOverride::test_torch_rot90, test/test_overrides.py::TestTorchFunctionOverride::test_torch_round, test/test_overrides.py::TestTorchFunctionOverride::test_torch_row_indices_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_row_stack, test/test_overrides.py::TestTorchFunctionOverride::test_torch_rrelu, test/test_overrides.py::TestTorchFunctionOverride::test_torch_rsqrt, test/test_overrides.py::TestTorchFunctionOverride::test_torch_rsub, test/test_overrides.py::TestTorchFunctionOverride::test_torch_saddmm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_scatter, test/test_overrides.py::TestTorchFunctionOverride::test_torch_scatter_add, test/test_overrides.py::TestTorchFunctionOverride::test_torch_scatter_reduce, test/test_overrides.py::TestTorchFunctionOverride::test_torch_searchsorted, test/test_overrides.py::TestTorchFunctionOverride::test_torch_segment_reduce, test/test_overrides.py::TestTorchFunctionOverride::test_torch_select, test/test_overrides.py::TestTorchFunctionOverride::test_torch_select_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_select_scatter, test/test_overrides.py::TestTorchFunctionOverride::test_torch_selu, test/test_overrides.py::TestTorchFunctionOverride::test_torch_sgn, test/test_overrides.py::TestTorchFunctionOverride::test_torch_sigmoid, test/test_overrides.py::TestTorchFunctionOverride::test_torch_sign, test/test_overrides.py::TestTorchFunctionOverride::test_torch_signbit, test/test_overrides.py::TestTorchFunctionOverride::test_torch_sin, test/test_overrides.py::TestTorchFunctionOverride::test_torch_sinc, test/test_overrides.py::TestTorchFunctionOverride::test_torch_sinh, test/test_overrides.py::TestTorchFunctionOverride::test_torch_slice_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_slice_inverse, test/test_overrides.py::TestTorchFunctionOverride::test_torch_slice_scatter, test/test_overrides.py::TestTorchFunctionOverride::test_torch_slogdet, test/test_overrides.py::TestTorchFunctionOverride::test_torch_smm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_softmax, test/test_overrides.py::TestTorchFunctionOverride::test_torch_sort, test/test_overrides.py::TestTorchFunctionOverride::test_torch_split_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_split_with_sizes, test/test_overrides.py::TestTorchFunctionOverride::test_torch_split_with_sizes_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_sqrt, test/test_overrides.py::TestTorchFunctionOverride::test_torch_square, test/test_overrides.py::TestTorchFunctionOverride::test_torch_squeeze, test/test_overrides.py::TestTorchFunctionOverride::test_torch_squeeze_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_stack, test/test_overrides.py::TestTorchFunctionOverride::test_torch_std, test/test_overrides.py::TestTorchFunctionOverride::test_torch_std_mean, test/test_overrides.py::TestTorchFunctionOverride::test_torch_sub, test/test_overrides.py::TestTorchFunctionOverride::test_torch_subtract, test/test_overrides.py::TestTorchFunctionOverride::test_torch_sum, test/test_overrides.py::TestTorchFunctionOverride::test_torch_svd, test/test_overrides.py::TestTorchFunctionOverride::test_torch_swapaxes, test/test_overrides.py::TestTorchFunctionOverride::test_torch_swapdims, test/test_overrides.py::TestTorchFunctionOverride::test_torch_sym_float, test/test_overrides.py::TestTorchFunctionOverride::test_torch_sym_int, test/test_overrides.py::TestTorchFunctionOverride::test_torch_sym_ite, test/test_overrides.py::TestTorchFunctionOverride::test_torch_sym_max, test/test_overrides.py::TestTorchFunctionOverride::test_torch_sym_min, test/test_overrides.py::TestTorchFunctionOverride::test_torch_sym_not, test/test_overrides.py::TestTorchFunctionOverride::test_torch_sym_sum, test/test_overrides.py::TestTorchFunctionOverride::test_torch_t, test/test_overrides.py::TestTorchFunctionOverride::test_torch_t_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_take, test/test_overrides.py::TestTorchFunctionOverride::test_torch_take_along_dim, test/test_overrides.py::TestTorchFunctionOverride::test_torch_tan, test/test_overrides.py::TestTorchFunctionOverride::test_torch_tanh, test/test_overrides.py::TestTorchFunctionOverride::test_torch_tensor_split, test/test_overrides.py::TestTorchFunctionOverride::test_torch_threshold, test/test_overrides.py::TestTorchFunctionOverride::test_torch_tile, test/test_overrides.py::TestTorchFunctionOverride::test_torch_topk, test/test_overrides.py::TestTorchFunctionOverride::test_torch_trace, test/test_overrides.py::TestTorchFunctionOverride::test_torch_transpose, test/test_overrides.py::TestTorchFunctionOverride::test_torch_transpose_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_trapezoid, test/test_overrides.py::TestTorchFunctionOverride::test_torch_trapz, test/test_overrides.py::TestTorchFunctionOverride::test_torch_triangular_solve, test/test_overrides.py::TestTorchFunctionOverride::test_torch_tril, test/test_overrides.py::TestTorchFunctionOverride::test_torch_triplet_margin_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_triu, test/test_overrides.py::TestTorchFunctionOverride::test_torch_true_divide, test/test_overrides.py::TestTorchFunctionOverride::test_torch_trunc, test/test_overrides.py::TestTorchFunctionOverride::test_torch_unbind, test/test_overrides.py::TestTorchFunctionOverride::test_torch_unbind_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_unflatten, test/test_overrides.py::TestTorchFunctionOverride::test_torch_unfold_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_unsafe_chunk, test/test_overrides.py::TestTorchFunctionOverride::test_torch_unsafe_split, test/test_overrides.py::TestTorchFunctionOverride::test_torch_unsafe_split_with_sizes, test/test_overrides.py::TestTorchFunctionOverride::test_torch_unsqueeze, test/test_overrides.py::TestTorchFunctionOverride::test_torch_unsqueeze_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_values_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_var, test/test_overrides.py::TestTorchFunctionOverride::test_torch_var_mean, test/test_overrides.py::TestTorchFunctionOverride::test_torch_vdot, test/test_overrides.py::TestTorchFunctionOverride::test_torch_view_as_complex, test/test_overrides.py::TestTorchFunctionOverride::test_torch_view_as_complex_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_view_as_real, test/test_overrides.py::TestTorchFunctionOverride::test_torch_view_as_real_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_view_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_vsplit, test/test_overrides.py::TestTorchFunctionOverride::test_torch_vstack, test/test_overrides.py::TestTorchFunctionOverride::test_torch_where, test/test_overrides.py::TestTorchFunctionOverride::test_torch_xlogy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_zeros_like, test/test_overrides.py::TestTorchFunctionOverride::test_user_implementation_raises, test/test_overrides.py::TestEinsumOverride::test_wrapper, test/test_overrides.py::TestGradCheckOverride::test_gradcheck, test/test_overrides.py::TestNamedTuple::test_max, test/test_overrides.py::TestGradNewOnesOverride::test_newones, test/test_overrides.py::TestPickle::test_pickle, test/test_overrides.py::TestBroadcastAllOverride::test_broadcast_all, test/test_overrides.py::TestWrapTorchFunction::test_wrap_torch_function, test/test_overrides.py::TestIndexing::test_getitem, test/test_overrides.py::TestIndexing::test_getitem_subclass, test/test_overrides.py::TestIndexing::test_setitem, test/test_overrides.py::TestIndexing::test_setitem_subclass, test/test_overrides.py::TestIndexing::test_setitem_val, test/test_overrides.py::TestIterator::test_iterator, test/test_overrides.py::TestRNN::test_rnn, test/test_overrides.py::TestDisabledTorchFunction::test_parameter_does_not_prevent_dispatch, test/test_overrides.py::TestResolveName::test_resolve_name, test/test_overrides.py::TestTorchFunctionWarning::test_warn_on_invalid_torch_function_standalone_class, test/test_overrides.py::TestTorchFunctionWarning::test_warn_on_invalid_torch_function_tensor_subclass, test/test_overrides.py::TestDisabledUserWarnings::test_no_implicit_user_warning_for_deprecated_functions, test/test_overrides.py::TestTorchFunctionMode::test_all_same_mode, test/test_overrides.py::TestTorchFunctionMode::test_basic, test/test_overrides.py::TestTorchFunctionMode::test_custom_device_type, test/test_overrides.py::TestTorchFunctionMode::test_device_context_semantics, test/test_overrides.py::TestTorchFunctionMode::test_disable_enable_subclass, test/test_overrides.py::TestTorchFunctionMode::test_disable_enable_torch_function_ctx, test/test_overrides.py::TestTorchFunctionMode::test_disable_subclass_mode, test/test_overrides.py::TestTorchFunctionMode::test_disable_subclass_not_mode, test/test_overrides.py::TestTorchFunctionMode::test_distributions_bernoulli, test/test_overrides.py::TestTorchFunctionMode::test_error_using_class_method_on_mode, test/test_overrides.py::TestTorchFunctionMode::test_factory_override, test/test_overrides.py::TestTorchFunctionMode::test_get_cur_mode, test/test_overrides.py::TestTorchFunctionMode::test_get_mode_stack, test/test_overrides.py::TestTorchFunctionMode::test_getitem_call, test/test_overrides.py::TestTorchFunctionMode::test_mode_notimplemented_loop, test/test_overrides.py::TestTorchFunctionMode::test_modes_handle_first, test/test_overrides.py::TestTorchFunctionMode::test_modes_return_notimplemented, test/test_overrides.py::TestTorchFunctionMode::test_nested_modes_with_python_has_torch_function, test/test_overrides.py::TestTorchFunctionMode::test_nested_same_mode, test/test_overrides.py::TestTorchFunctionMode::test_nn_parse_to, test/test_overrides.py::TestTorchFunctionMode::test_reentrant_mode_idiom, test/test_overrides.py::TestTorchFunctionMode::test_restacking_with_ancestor, test/test_overrides.py::TestTorchFunctionMode::test_subclass_hash, test/test_overrides.py::TestTorchFunctionMode::test_torch_function_all_disabled_api, test/test_overrides.py::TestTorchFunctionMode::test_with_mode, test/test_overrides.py::TestTorchFunctionMode::test_with_mode_created_separately, test/test_overrides.py::TestTorchFunctionMode::test_with_nested_modes 2025-08-26T20:58:41.2824218Z 2025-08-26T20:58:41.2824455Z Running test_namedtuple_return_api 1/1 ... [2025-08-26 20:58:41.182700] 2025-08-26T20:58:41.2825541Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:58:41.2826586Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_namedtuple_return_api.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:58:41.182700] 2025-08-26T20:58:48.0722681Z 2025-08-26T20:58:48.0723617Z test_namedtuple_return_api 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_namedtuple_return_api_1.1_95151b90714ff2c3_.log 2025-08-26T20:58:48.0725385Z Running 3 items in this shard: test/test_namedtuple_return_api.py::TestNamedTupleAPI::test_import_return_types, test/test_namedtuple_return_api.py::TestNamedTupleAPI::test_namedtuple_return, test/test_namedtuple_return_api.py::TestNamedTupleAPI::test_native_functions_yaml 2025-08-26T20:58:48.0726725Z 2025-08-26T20:58:48.0730367Z Running test_multiprocessing 1/2 ... [2025-08-26 20:58:48.072547] 2025-08-26T20:58:48.0730770Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:58:48.0739376Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_multiprocessing.py', '--shard-id=1', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:58:48.073725] 2025-08-26T21:01:46.3371377Z 2025-08-26T21:01:46.3372361Z test_multiprocessing 1/2 was successful, full logs can be found in artifacts with path test/test-reports/test_multiprocessing_1.2_ec7300e39e74734f_.log 2025-08-26T21:01:46.3380846Z Running 23 items in this shard: test/test_multiprocessing.py::TestMultiprocessing::test_cuda_bad_call, test/test_multiprocessing.py::TestMultiprocessing::test_cuda_memory_allocation, test/test_multiprocessing.py::TestMultiprocessing::test_cuda_parameter_sharing, test/test_multiprocessing.py::TestMultiprocessing::test_cuda_small_tensors, test/test_multiprocessing.py::TestMultiprocessing::test_empty_shared, test/test_multiprocessing.py::TestMultiprocessing::test_empty_tensor_sharing_cuda, test/test_multiprocessing.py::TestMultiprocessing::test_empty_tensor_sharing_meta, test/test_multiprocessing.py::TestMultiprocessing::test_event_handle_exporter, test/test_multiprocessing.py::TestMultiprocessing::test_event_handle_importer, test/test_multiprocessing.py::TestMultiprocessing::test_event_multiprocess, test/test_multiprocessing.py::TestMultiprocessing::test_fd_pool, test/test_multiprocessing.py::TestMultiprocessing::test_fd_preserve_sharing, test/test_multiprocessing.py::TestMultiprocessing::test_fs, test/test_multiprocessing.py::TestMultiprocessing::test_inherit_tensor, test/test_multiprocessing.py::TestMultiprocessing::test_integer_parameter_serialization_cuda, test/test_multiprocessing.py::TestMultiprocessing::test_is_shared, test/test_multiprocessing.py::TestMultiprocessing::test_is_shared_cuda, test/test_multiprocessing.py::TestMultiprocessing::test_leaf_variable_sharing, test/test_multiprocessing.py::TestMultiprocessing::test_meta_simple, test/test_multiprocessing.py::TestMultiprocessing::test_parameter_sharing, test/test_multiprocessing.py::TestMultiprocessing::test_rebuild_cuda_tensor, test/test_multiprocessing.py::TestMultiprocessing::test_set_thread_name, test/test_multiprocessing.py::TestMultiprocessing::test_variable_sharing 2025-08-26T21:01:46.3388404Z 2025-08-26T21:01:46.3388590Z Running test_multiprocessing 2/2 ... [2025-08-26 21:01:46.337360] 2025-08-26T21:01:46.3388988Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:01:46.3389982Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_multiprocessing.py', '--shard-id=2', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:01:46.337931] 2025-08-26T21:13:27.7415586Z 2025-08-26T21:13:27.7417400Z test_multiprocessing 2/2 was successful, full logs can be found in artifacts with path test/test-reports/test_multiprocessing_2.2_4b7f8f20ed3cfb31_.log 2025-08-26T21:13:27.7424072Z Running 19 items in this shard: test/test_multiprocessing.py::TestMultiprocessing::test_autograd_errors, test/test_multiprocessing.py::TestMultiprocessing::test_autograd_fine_with_spawn, test/test_multiprocessing.py::TestMultiprocessing::test_cuda_ipc_deadlock, test/test_multiprocessing.py::TestMultiprocessing::test_cuda_send_many, test/test_multiprocessing.py::TestMultiprocessing::test_cuda_simple, test/test_multiprocessing.py::TestMultiprocessing::test_cuda_variable_sharing, test/test_multiprocessing.py::TestMultiprocessing::test_empty_tensor_sharing, test/test_multiprocessing.py::TestMultiprocessing::test_event, test/test_multiprocessing.py::TestMultiprocessing::test_event_handle_multi_gpu, test/test_multiprocessing.py::TestMultiprocessing::test_fd_sharing, test/test_multiprocessing.py::TestMultiprocessing::test_fs_is_shared, test/test_multiprocessing.py::TestMultiprocessing::test_fs_pool, test/test_multiprocessing.py::TestMultiprocessing::test_fs_preserve_sharing, test/test_multiprocessing.py::TestMultiprocessing::test_fs_sharing, test/test_multiprocessing.py::TestMultiprocessing::test_integer_parameter_serialization_cpu, test/test_multiprocessing.py::TestMultiprocessing::test_mixed_types_cuda_sharing, test/test_multiprocessing.py::TestMultiprocessing::test_non_leaf_variable_sharing, test/test_multiprocessing.py::TestMultiprocessing::test_tensor_sharing_meta, test/test_multiprocessing.py::TestMultiprocessing::test_wrong_cuda_fork 2025-08-26T21:13:27.7430443Z 2025-08-26T21:13:27.7430637Z Running test_autograd_fallback 1/1 ... [2025-08-26 21:13:27.742041] 2025-08-26T21:13:27.7431061Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:13:27.7439420Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_autograd_fallback.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:13:27.743784] 2025-08-26T21:13:27.7440703Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T21:13:27.7441180Z Uploading artifacts took 0.00 seconds 2025-08-26T21:13:32.8073857Z 2025-08-26T21:13:32.8075005Z test_autograd_fallback 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_autograd_fallback_1.1_1601b2e62bc82a2f_.log 2025-08-26T21:13:32.8087996Z Running 28 items in this shard: test/test_autograd_fallback.py::TestAutogradFallback::test_autograd_function_registered_to_cpu_mode_nothing, test/test_autograd_fallback.py::TestAutogradFallback::test_autograd_function_registered_to_cpu_mode_warn, test/test_autograd_fallback.py::TestAutogradFallback::test_base_does_not_require_grad_mode_nothing, test/test_autograd_fallback.py::TestAutogradFallback::test_base_does_not_require_grad_mode_warn, test/test_autograd_fallback.py::TestAutogradFallback::test_composite_registered_to_cpu_mode_nothing, test/test_autograd_fallback.py::TestAutogradFallback::test_composite_registered_to_cpu_mode_warn, test/test_autograd_fallback.py::TestAutogradFallback::test_cpu_return_self_mode_nothing, test/test_autograd_fallback.py::TestAutogradFallback::test_cpu_return_self_mode_warn, test/test_autograd_fallback.py::TestAutogradFallback::test_inplace_autograd_function_registered_to_cpu_mode_nothing, test/test_autograd_fallback.py::TestAutogradFallback::test_inplace_autograd_function_registered_to_cpu_mode_warn, test/test_autograd_fallback.py::TestAutogradFallback::test_inplace_on_tensor_that_does_not_require_grad_mode_nothing, test/test_autograd_fallback.py::TestAutogradFallback::test_inplace_on_tensor_that_does_not_require_grad_mode_warn, test/test_autograd_fallback.py::TestAutogradFallback::test_no_autograd_kernel_inplace_mode_nothing, test/test_autograd_fallback.py::TestAutogradFallback::test_no_autograd_kernel_inplace_mode_warn, test/test_autograd_fallback.py::TestAutogradFallback::test_no_autograd_kernel_mode_nothing, test/test_autograd_fallback.py::TestAutogradFallback::test_no_autograd_kernel_mode_warn, test/test_autograd_fallback.py::TestAutogradFallback::test_no_grad_mode_nothing, test/test_autograd_fallback.py::TestAutogradFallback::test_no_grad_mode_warn, test/test_autograd_fallback.py::TestAutogradFallback::test_post_autograd_returns_leaf_mode_nothing, test/test_autograd_fallback.py::TestAutogradFallback::test_post_autograd_returns_leaf_mode_warn, test/test_autograd_fallback.py::TestAutogradFallback::test_post_autograd_returns_mix_of_requires_grad_tensors_mode_nothing, test/test_autograd_fallback.py::TestAutogradFallback::test_post_autograd_returns_mix_of_requires_grad_tensors_mode_warn, test/test_autograd_fallback.py::TestAutogradFallback::test_supports_tensor_lists_mode_nothing, test/test_autograd_fallback.py::TestAutogradFallback::test_supports_tensor_lists_mode_warn, test/test_autograd_fallback.py::TestAutogradFallback::test_undefined_grads_mode_nothing, test/test_autograd_fallback.py::TestAutogradFallback::test_undefined_grads_mode_warn, test/test_autograd_fallback.py::TestAutogradFallback::test_undefined_inputs_outputs_mode_nothing, test/test_autograd_fallback.py::TestAutogradFallback::test_undefined_inputs_outputs_mode_warn 2025-08-26T21:13:32.8099762Z 2025-08-26T21:13:32.8099981Z Running test_reductions 1/1 ... [2025-08-26 21:13:32.798164] 2025-08-26T21:13:32.8100357Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:13:32.8101346Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_reductions.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:13:32.808247] 2025-08-26T21:18:22.9582047Z 2025-08-26T21:18:22.9583107Z test_reductions 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_reductions_1.1_623d1a18ef18066c_.log 2025-08-26T21:18:23.1297992Z Running 4673 items in this shard: test/test_reductions.py::TestReductionsCPU::test_accreal_type_cpu, test/test_reductions.py::TestReductionsCPU::test_all_any_cpu, test/test_reductions.py::TestReductionsCPU::test_all_any_empty_cpu, test/test_reductions.py::TestReductionsCPU::test_all_any_vs_numpy_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_all_any_vs_numpy_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_all_any_vs_numpy_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_all_any_vs_numpy_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_all_any_vs_numpy_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_all_any_vs_numpy_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_all_any_vs_numpy_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_all_any_vs_numpy_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_all_any_vs_numpy_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_all_any_vs_numpy_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_all_any_vs_numpy_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_all_any_with_dim_cpu, test/test_reductions.py::TestReductionsCPU::test_all_issue117215_cpu, test/test_reductions.py::TestReductionsCPU::test_amax_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_amin_amax_some_dims_cpu, test/test_reductions.py::TestReductionsCPU::test_amin_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_aminmax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_aminmax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_aminmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_aminmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_argminmax_axis_with_dim_one_cpu, test/test_reductions.py::TestReductionsCPU::test_argminmax_large_axis_cpu, test/test_reductions.py::TestReductionsCPU::test_argminmax_multiple_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_argminmax_multiple_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_argminmax_multiple_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_argminmax_multiple_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_argminmax_multiple_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_argminmax_multiple_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_argminmax_multiple_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_argminmax_multiple_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_bincount_cpu, test/test_reductions.py::TestReductionsCPU::test_bucketization_cpu, test/test_reductions.py::TestReductionsCPU::test_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_cumprod_integer_upcast_cpu, test/test_reductions.py::TestReductionsCPU::test_cumsum_integer_upcast_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_arg_reduction_scalar_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_dim_arg_reduction_scalar_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_dim_arg_reduction_scalar_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_dim_arg_reduction_scalar_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_dim_arg_reduction_scalar_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_dim_arg_reduction_scalar_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_dim_arg_reduction_scalar_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_dim_arg_reduction_scalar_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_dim_arg_reduction_scalar_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_dim_default__refs_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default__refs_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default__refs_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default__refs_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default__refs_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default__refs_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default__refs_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default__refs_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default__refs_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default__refs_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default__refs_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_hash_tensor_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim__refs_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim__refs_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim__refs_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim__refs_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim__refs_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim__refs_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim__refs_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim__refs_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim__refs_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim__refs_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim__refs_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_hash_tensor_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_masked_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_masked_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_masked_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_masked_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_masked_logsumexp_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_masked_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_masked_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_masked_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_masked_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_masked_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_masked_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_nanmean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_nansum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_std_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_var_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_masked_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_masked_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_masked_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_masked_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_masked_logsumexp_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_masked_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_masked_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_masked_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_masked_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_masked_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_masked_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_nanmean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_nansum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_std_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_var_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty__refs_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty__refs_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty__refs_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty__refs_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty__refs_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty__refs_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty__refs_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty__refs_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty__refs_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty__refs_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty__refs_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_hash_tensor_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim__refs_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim__refs_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim__refs_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim__refs_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim__refs_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim__refs_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim__refs_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim__refs_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim__refs_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim__refs_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim__refs_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_hash_tensor_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_masked_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_masked_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_masked_logsumexp_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_masked_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_masked_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_masked_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_masked_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_masked_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_masked_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_nanmean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_nansum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_std_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_var_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_masked_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_masked_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_masked_logsumexp_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_masked_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_masked_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_masked_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_masked_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_masked_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_masked_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_nanmean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_nansum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_std_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_var_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi__refs_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi__refs_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi__refs_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi__refs_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi__refs_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi__refs_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi__refs_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi__refs_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi__refs_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi__refs_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi__refs_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate__refs_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate__refs_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate__refs_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate__refs_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate__refs_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate__refs_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate__refs_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate__refs_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate__refs_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate__refs_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate__refs_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_hash_tensor_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_masked_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_masked_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_masked_logsumexp_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_masked_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_masked_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_masked_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_masked_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_masked_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_masked_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_nanmean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_nansum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_std_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_var_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_hash_tensor_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim__refs_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim__refs_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim__refs_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim__refs_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim__refs_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim__refs_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim__refs_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim__refs_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim__refs_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim__refs_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim__refs_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_hash_tensor_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_masked_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_masked_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_masked_logsumexp_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_masked_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_masked_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_masked_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_masked_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_masked_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_masked_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_nanmean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_nansum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_std_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_var_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_masked_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_masked_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_masked_logsumexp_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_masked_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_masked_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_masked_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_masked_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_masked_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_masked_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_nanmean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_nansum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_std_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted__refs_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted__refs_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted__refs_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted__refs_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted__refs_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted__refs_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted__refs_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted__refs_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted__refs_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted__refs_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted__refs_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_hash_tensor_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim__refs_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim__refs_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim__refs_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim__refs_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim__refs_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim__refs_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim__refs_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim__refs_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim__refs_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim__refs_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim__refs_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_hash_tensor_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_masked_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_masked_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_masked_logsumexp_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_masked_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_masked_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_masked_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_masked_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_masked_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_masked_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_nanmean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_nansum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_std_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_var_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_masked_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_masked_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_masked_logsumexp_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_masked_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_masked_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_masked_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_masked_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_masked_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_masked_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_nanmean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_nansum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_std_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_var_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsupported_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsupported_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsupported_masked_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsupported_masked_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsupported_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_var_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit__refs_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit__refs_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit__refs_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit__refs_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit__refs_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit__refs_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit__refs_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit__refs_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit__refs_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit__refs_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit__refs_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_hash_tensor_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_masked_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_masked_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_masked_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_masked_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_masked_logsumexp_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_masked_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_masked_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_masked_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_masked_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_masked_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_masked_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_nanmean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_nansum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_std_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_var_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none__refs_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none__refs_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none__refs_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none__refs_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none__refs_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none__refs_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none__refs_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none__refs_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none__refs_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none__refs_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none__refs_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_hash_tensor_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim__refs_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim__refs_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim__refs_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim__refs_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim__refs_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim__refs_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim__refs_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim__refs_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim__refs_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim__refs_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim__refs_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_hash_tensor_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_masked_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_masked_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_masked_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_masked_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_masked_logsumexp_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_masked_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_masked_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_masked_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_masked_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_masked_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_masked_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_nanmean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_nansum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_std_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_var_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_masked_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_masked_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_masked_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_masked_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_masked_logsumexp_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_masked_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_masked_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_masked_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_masked_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_masked_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_masked_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_nanmean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_nansum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_std_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_var_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds__refs_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds__refs_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds__refs_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds__refs_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds__refs_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds__refs_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds__refs_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds__refs_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds__refs_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds__refs_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds__refs_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_hash_tensor_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_masked_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_masked_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_masked_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_masked_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_masked_logsumexp_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_masked_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_masked_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_masked_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_masked_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_masked_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_masked_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_nanmean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_nansum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_std_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_var_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_max_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_max_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_max_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_max_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_max_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_max_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_max_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_max_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_mean_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_mean_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_mean_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_mean_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_median_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_median_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_median_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_median_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_median_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_median_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_median_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_median_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_min_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_min_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_min_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_min_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_min_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_min_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_min_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_min_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_mode_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_mode_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_mode_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_mode_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_mode_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_mode_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_mode_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_mode_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_nanmedian_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_nanmedian_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_nanmedian_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_nanmedian_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_nanmedian_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_nanmedian_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_nanmedian_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_nanmedian_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_norm_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_norm_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_norm_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_norm_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_std_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_std_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_std_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_std_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_var_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_var_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_var_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_var_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_lastdim_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_lastdim_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_less_than_64_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single__refs_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single__refs_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single__refs_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single__refs_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single__refs_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single__refs_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single__refs_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single__refs_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single__refs_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single__refs_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single__refs_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_hash_tensor_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim__refs_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim__refs_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim__refs_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim__refs_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim__refs_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim__refs_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim__refs_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim__refs_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim__refs_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim__refs_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim__refs_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_hash_tensor_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_masked_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_masked_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_masked_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_masked_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_masked_logsumexp_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_masked_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_masked_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_masked_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_masked_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_masked_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_masked_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_nanmean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_nansum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_std_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_var_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_masked_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_masked_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_masked_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_masked_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_masked_logsumexp_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_masked_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_masked_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_masked_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_masked_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_masked_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_masked_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_nanmean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_nansum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_std_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_var_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice__refs_all_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice__refs_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice__refs_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice__refs_any_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice__refs_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice__refs_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice__refs_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice__refs_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice__refs_std_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice__refs_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice__refs_var_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_all_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_any_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_hash_tensor_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_masked_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_masked_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_masked_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_masked_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_masked_logsumexp_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_masked_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_masked_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_masked_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_masked_std_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_masked_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_masked_var_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_nanmean_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_nansum_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_std_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_std_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_var_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_var_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice__refs_all_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice__refs_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice__refs_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice__refs_any_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice__refs_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice__refs_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice__refs_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice__refs_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice__refs_std_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice__refs_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice__refs_var_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_all_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_any_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_hash_tensor_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_masked_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_masked_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_masked_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_masked_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_masked_logsumexp_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_masked_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_masked_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_masked_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_masked_std_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_masked_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_masked_var_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_nanmean_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_nansum_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_std_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_std_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_var_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_var_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_histc_cpu, test/test_reductions.py::TestReductionsCPU::test_histc_lowp_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_histc_lowp_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_histc_min_max_corner_cases_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_histc_min_max_corner_cases_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_histc_min_max_corner_cases_cuda_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_histc_min_max_corner_cases_cuda_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_histc_min_max_corner_cases_cuda_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_histc_min_max_corner_cases_cuda_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_histc_min_max_errors_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_histc_min_max_errors_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_histc_min_max_errors_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_histc_min_max_errors_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_histc_min_max_errors_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_histc_min_max_errors_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_histogram_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_histogram_error_handling_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_histogramdd_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_identity__refs_all_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_identity__refs_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_identity__refs_all_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_identity__refs_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_identity__refs_all_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_identity__refs_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_identity__refs_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_identity__refs_all_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_identity__refs_all_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_identity__refs_all_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_identity__refs_all_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_identity__refs_all_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_identity__refs_any_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_identity__refs_any_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_identity__refs_any_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_identity__refs_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_identity__refs_any_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_identity__refs_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_identity__refs_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_identity__refs_any_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_identity__refs_any_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_identity__refs_any_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_identity__refs_any_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_identity__refs_any_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_identity__refs_count_nonzero_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_identity__refs_count_nonzero_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_identity__refs_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_identity__refs_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_identity__refs_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_identity__refs_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_identity__refs_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_identity__refs_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_identity__refs_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_identity__refs_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_identity__refs_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_identity__refs_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_identity__refs_linalg_vector_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_identity__refs_linalg_vector_norm_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_identity__refs_linalg_vector_norm_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_identity__refs_linalg_vector_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_identity__refs_linalg_vector_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_identity__refs_linalg_vector_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_identity__refs_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_identity__refs_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_identity__refs_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_identity__refs_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_identity__refs_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_identity__refs_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_identity__refs_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_identity__refs_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_identity__refs_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_identity__refs_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_identity__refs_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_identity__refs_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_identity__refs_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_identity__refs_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_identity__refs_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_identity__refs_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_identity__refs_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_identity__refs_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_identity__refs_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_identity__refs_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_identity__refs_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_identity__refs_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_identity__refs_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_identity__refs_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_identity_all_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_identity_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_identity_all_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_identity_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_identity_all_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_identity_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_identity_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_identity_all_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_identity_all_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_identity_all_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_identity_all_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_identity_all_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_identity_any_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_identity_any_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_identity_any_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_identity_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_identity_any_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_identity_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_identity_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_identity_any_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_identity_any_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_identity_any_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_identity_any_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_identity_any_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_identity_count_nonzero_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_identity_count_nonzero_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_identity_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_identity_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_identity_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_identity_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_identity_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_identity_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_identity_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_identity_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_identity_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_identity_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_identity_linalg_vector_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_identity_linalg_vector_norm_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_identity_linalg_vector_norm_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_identity_linalg_vector_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_identity_linalg_vector_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_identity_linalg_vector_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_identity_masked_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_identity_masked_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_identity_masked_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_identity_masked_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_identity_masked_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_identity_masked_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_identity_masked_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_identity_masked_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_identity_masked_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_identity_masked_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_identity_masked_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_identity_masked_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_identity_masked_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_identity_masked_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_identity_masked_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_identity_masked_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_identity_masked_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_identity_masked_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_identity_masked_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_identity_masked_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_identity_masked_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_identity_masked_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_identity_masked_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_identity_masked_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_identity_masked_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_identity_masked_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_identity_masked_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_identity_masked_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_identity_nansum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_identity_nansum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_identity_nansum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_identity_nansum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_identity_nansum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_identity_nansum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_identity_nansum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_identity_nansum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_identity_nansum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_identity_nansum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_identity_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_identity_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_identity_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_identity_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_identity_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_identity_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_identity_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_identity_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_identity_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_identity_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_identity_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_identity_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_identity_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_identity_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_identity_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_identity_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_identity_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_identity_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_identity_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_identity_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_identity_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_identity_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_identity_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_identity_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_invalid_0dim_aminmax_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_invalid_0dim_aminmax_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_logcumsumexp_complex_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_logcumsumexp_complex_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_logsumexp_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_logsumexp_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_logsumexp_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_logsumexp_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_logsumexp_dim_cpu, test/test_reductions.py::TestReductionsCPU::test_logsumexp_integral_promotion_cpu, test/test_reductions.py::TestReductionsCPU::test_max_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_max_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_max_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_max_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_max_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_max_elementwise_cpu, test/test_reductions.py::TestReductionsCPU::test_max_mixed_devices_cpu, test/test_reductions.py::TestReductionsCPU::test_max_with_inf_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_max_with_inf_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_max_with_inf_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_max_with_inf_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_mean_dim_cpu, test/test_reductions.py::TestReductionsCPU::test_mean_int_with_optdtype_cpu, test/test_reductions.py::TestReductionsCPU::test_mean_out_is_alias_of_return_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_mean_out_is_alias_of_return_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_mean_out_is_alias_of_return_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_mean_out_is_alias_of_return_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_median_corner_cases_cpu, test/test_reductions.py::TestReductionsCPU::test_median_nan_values_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_median_nan_values_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_median_real_values_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_median_real_values_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_median_real_values_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_median_real_values_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_min_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_min_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_min_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_min_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_min_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_min_elementwise_cpu, test/test_reductions.py::TestReductionsCPU::test_min_max_nan_cpu, test/test_reductions.py::TestReductionsCPU::test_min_mixed_devices_cpu, test/test_reductions.py::TestReductionsCPU::test_min_with_inf_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_min_with_inf_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_min_with_inf_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_min_with_inf_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_minmax_illegal_dtype_cpu, test/test_reductions.py::TestReductionsCPU::test_mode_boolean_cpu, test/test_reductions.py::TestReductionsCPU::test_mode_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_mode_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_mode_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_mode_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_mode_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_mode_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_mode_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_mode_large_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_mode_large_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_mode_large_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_mode_large_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_mode_large_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_mode_large_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_mode_large_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_mode_large_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_mode_large_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_mode_wrong_device_cpu, test/test_reductions.py::TestReductionsCPU::test_mode_wrong_dtype_cpu, test/test_reductions.py::TestReductionsCPU::test_nan_policy_omit_nanmean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_omit_nanmean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_omit_nanmean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_omit_nanmean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_omit_nansum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_omit_nansum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_omit_nansum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_omit_nansum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_linalg_vector_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_linalg_vector_norm_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_linalg_vector_norm_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_linalg_vector_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_linalg_vector_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_linalg_vector_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_linalg_vector_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_linalg_vector_norm_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_linalg_vector_norm_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_linalg_vector_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_linalg_vector_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_linalg_vector_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_logsumexp_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_logsumexp_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_logsumexp_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_logsumexp_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_logsumexp_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_logsumexp_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_std_unbiased_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_std_unbiased_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_std_unbiased_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_std_unbiased_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_std_unbiased_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_std_unbiased_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_var_unbiased_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_var_unbiased_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_var_unbiased_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_var_unbiased_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_var_unbiased_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_var_unbiased_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nanmean_integral_types_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_nanmean_integral_types_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_nanmean_integral_types_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_nanmean_integral_types_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_nanmean_integral_types_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_nanmean_integral_types_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_nansum_complex_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nansum_complex_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nansum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nansum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nansum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nansum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nansum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_nansum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_nansum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_nansum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_nansum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_nansum_out_dtype_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nansum_out_dtype_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nansum_out_dtype_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nansum_out_dtype_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_nansum_out_dtype_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_nansum_out_dtype_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_nansum_out_dtype_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_nansum_out_dtype_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_nansum_vs_numpy_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nansum_vs_numpy_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nansum_vs_numpy_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nansum_vs_numpy_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_nansum_vs_numpy_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_nansum_vs_numpy_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_nansum_vs_numpy_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_all_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_all_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_all_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_all_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_all_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_all_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_all_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_all_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_amax_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_amin_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_any_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_any_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_any_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_any_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_any_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_any_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_any_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_any_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_any_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_count_nonzero_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_count_nonzero_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_linalg_vector_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_linalg_vector_norm_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_linalg_vector_norm_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_linalg_vector_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_linalg_vector_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_linalg_vector_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_all_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_all_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_all_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_all_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_all_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_all_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_all_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_all_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_amax_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_amin_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_any_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_any_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_any_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_any_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_any_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_any_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_any_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_any_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_any_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_argmax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_argmax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_argmax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_argmax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_argmax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_argmax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_argmax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_argmin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_argmin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_argmin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_argmin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_argmin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_argmin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_argmin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_count_nonzero_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_count_nonzero_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_hash_tensor_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_hash_tensor_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_hash_tensor_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_hash_tensor_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_hash_tensor_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_hash_tensor_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_hash_tensor_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_hash_tensor_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_hash_tensor_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_hash_tensor_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_linalg_vector_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_linalg_vector_norm_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_linalg_vector_norm_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_linalg_vector_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_linalg_vector_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_linalg_vector_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_argmax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_argmax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_argmax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_argmax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_argmax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_argmax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_argmax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_argmin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_argmin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_argmin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_argmin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_argmin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_argmin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_argmin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_logsumexp_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_logsumexp_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_logsumexp_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_logsumexp_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_logsumexp_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_logsumexp_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_logsumexp_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_logsumexp_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_logsumexp_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_logsumexp_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_logsumexp_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_std_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_std_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_std_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_std_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_std_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_var_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_var_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_var_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_var_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_var_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_nanmean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_nanmean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_nanmean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_nanmean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_nansum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_nansum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_nansum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_nansum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_nansum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_nansum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_nansum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_nansum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_nansum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_nansum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_std_unbiased_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_std_unbiased_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_std_unbiased_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_std_unbiased_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_std_unbiased_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_std_unbiased_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_var_unbiased_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_var_unbiased_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_var_unbiased_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_var_unbiased_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_var_unbiased_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_var_unbiased_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_all_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_all_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_all_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_all_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_all_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_all_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_all_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_all_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_amax_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_amin_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_any_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_any_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_any_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_any_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_any_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_any_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_any_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_any_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_any_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_count_nonzero_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_count_nonzero_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_linalg_vector_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_linalg_vector_norm_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_linalg_vector_norm_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_linalg_vector_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_linalg_vector_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_linalg_vector_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_all_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_all_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_all_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_all_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_all_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_all_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_all_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_all_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_amax_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_amin_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_any_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_any_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_any_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_any_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_any_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_any_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_any_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_any_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_any_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_argmax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_argmax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_argmax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_argmax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_argmax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_argmax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_argmax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_argmin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_argmin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_argmin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_argmin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_argmin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_argmin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_argmin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_count_nonzero_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_count_nonzero_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_hash_tensor_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_hash_tensor_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_hash_tensor_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_hash_tensor_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_hash_tensor_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_hash_tensor_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_hash_tensor_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_hash_tensor_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_hash_tensor_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_hash_tensor_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_linalg_vector_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_linalg_vector_norm_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_linalg_vector_norm_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_linalg_vector_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_linalg_vector_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_linalg_vector_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_argmax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_argmax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_argmax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_argmax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_argmax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_argmax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_argmax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_argmin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_argmin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_argmin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_argmin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_argmin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_argmin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_argmin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_logsumexp_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_logsumexp_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_logsumexp_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_logsumexp_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_logsumexp_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_logsumexp_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_logsumexp_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_logsumexp_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_logsumexp_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_logsumexp_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_logsumexp_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_std_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_std_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_std_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_std_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_std_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_var_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_var_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_var_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_var_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_var_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_nanmean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_nanmean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_nanmean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_nanmean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_nansum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_nansum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_nansum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_nansum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_nansum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_nansum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_nansum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_nansum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_nansum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_nansum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_std_unbiased_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_std_unbiased_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_std_unbiased_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_std_unbiased_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_std_unbiased_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_std_unbiased_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_var_unbiased_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_var_unbiased_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_var_unbiased_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_var_unbiased_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_var_unbiased_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_var_unbiased_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_all_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_all_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_all_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_all_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_all_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_all_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_all_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_all_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_amax_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_amin_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_any_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_any_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_any_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_any_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_any_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_any_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_any_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_any_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_any_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_count_nonzero_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_count_nonzero_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_linalg_vector_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_linalg_vector_norm_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_linalg_vector_norm_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_linalg_vector_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_linalg_vector_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_linalg_vector_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_all_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_all_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_all_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_all_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_all_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_all_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_all_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_all_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_amax_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_amin_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_any_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_any_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_any_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_any_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_any_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_any_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_any_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_any_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_any_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_argmax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_argmax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_argmax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_argmax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_argmax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_argmax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_argmax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_argmin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_argmin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_argmin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_argmin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_argmin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_argmin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_argmin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_count_nonzero_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_count_nonzero_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_hash_tensor_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_hash_tensor_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_hash_tensor_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_hash_tensor_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_hash_tensor_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_hash_tensor_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_hash_tensor_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_hash_tensor_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_hash_tensor_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_hash_tensor_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_linalg_vector_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_linalg_vector_norm_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_linalg_vector_norm_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_linalg_vector_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_linalg_vector_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_linalg_vector_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_argmax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_argmax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_argmax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_argmax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_argmax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_argmax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_argmax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_argmin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_argmin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_argmin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_argmin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_argmin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_argmin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_argmin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_logsumexp_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_logsumexp_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_logsumexp_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_logsumexp_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_logsumexp_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_logsumexp_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_logsumexp_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_logsumexp_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_logsumexp_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_logsumexp_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_logsumexp_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_std_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_std_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_std_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_std_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_std_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_var_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_var_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_var_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_var_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_var_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_nanmean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_nanmean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_nanmean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_nanmean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_nansum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_nansum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_nansum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_nansum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_nansum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_nansum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_nansum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_nansum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_nansum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_nansum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_std_unbiased_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_std_unbiased_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_std_unbiased_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_std_unbiased_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_std_unbiased_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_std_unbiased_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_var_unbiased_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_var_unbiased_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_var_unbiased_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_var_unbiased_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_var_unbiased_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_var_unbiased_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_all_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_all_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_all_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_all_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_all_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_all_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_all_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_all_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_amax_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_amin_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_any_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_any_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_any_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_any_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_any_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_any_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_any_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_any_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_any_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_count_nonzero_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_count_nonzero_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_linalg_vector_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_linalg_vector_norm_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_linalg_vector_norm_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_linalg_vector_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_linalg_vector_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_linalg_vector_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_all_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_all_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_all_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_all_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_all_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_all_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_all_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_all_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_amax_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_amin_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_any_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_any_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_any_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_any_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_any_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_any_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_any_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_any_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_any_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_argmax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_argmax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_argmax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_argmax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_argmax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_argmax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_argmax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_argmin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_argmin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_argmin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_argmin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_argmin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_argmin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_argmin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_count_nonzero_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_count_nonzero_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_hash_tensor_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_hash_tensor_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_hash_tensor_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_hash_tensor_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_hash_tensor_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_hash_tensor_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_hash_tensor_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_hash_tensor_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_hash_tensor_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_hash_tensor_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_linalg_vector_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_linalg_vector_norm_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_linalg_vector_norm_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_linalg_vector_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_linalg_vector_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_linalg_vector_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_argmax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_argmax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_argmax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_argmax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_argmax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_argmax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_argmax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_argmin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_argmin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_argmin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_argmin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_argmin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_argmin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_argmin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_logsumexp_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_logsumexp_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_logsumexp_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_logsumexp_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_logsumexp_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_logsumexp_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_logsumexp_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_logsumexp_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_logsumexp_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_logsumexp_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_logsumexp_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_std_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_std_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_std_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_std_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_std_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_var_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_var_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_var_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_var_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_var_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_nanmean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_nanmean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_nanmean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_nanmean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_nansum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_nansum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_nansum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_nansum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_nansum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_nansum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_nansum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_nansum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_nansum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_nansum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_std_unbiased_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_std_unbiased_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_std_unbiased_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_std_unbiased_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_std_unbiased_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_std_unbiased_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_var_unbiased_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_var_unbiased_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_var_unbiased_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_var_unbiased_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_var_unbiased_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_var_unbiased_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_all_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_all_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_all_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_all_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_all_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_all_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_all_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_all_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_amax_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_amin_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_any_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_any_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_any_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_any_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_any_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_any_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_any_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_any_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_any_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_count_nonzero_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_count_nonzero_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_linalg_vector_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_linalg_vector_norm_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_linalg_vector_norm_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_linalg_vector_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_linalg_vector_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_linalg_vector_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_all_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_all_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_all_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_all_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_all_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_all_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_all_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_all_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_amax_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_amin_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_any_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_any_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_any_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_any_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_any_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_any_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_any_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_any_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_any_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_argmax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_argmax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_argmax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_argmax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_argmax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_argmax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_argmax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_argmin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_argmin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_argmin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_argmin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_argmin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_argmin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_argmin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_count_nonzero_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_count_nonzero_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_hash_tensor_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_hash_tensor_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_hash_tensor_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_hash_tensor_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_hash_tensor_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_hash_tensor_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_hash_tensor_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_hash_tensor_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_hash_tensor_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_hash_tensor_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_linalg_vector_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_linalg_vector_norm_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_linalg_vector_norm_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_linalg_vector_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_linalg_vector_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_linalg_vector_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_argmax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_argmax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_argmax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_argmax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_argmax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_argmax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_argmax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_argmin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_argmin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_argmin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_argmin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_argmin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_argmin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_argmin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_logsumexp_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_logsumexp_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_logsumexp_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_logsumexp_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_logsumexp_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_logsumexp_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_logsumexp_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_logsumexp_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_logsumexp_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_logsumexp_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_logsumexp_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_std_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_std_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_std_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_std_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_std_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_var_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_var_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_var_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_var_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_var_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_nanmean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_nanmean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_nanmean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_nanmean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_nansum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_nansum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_nansum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_nansum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_nansum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_nansum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_nansum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_nansum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_nansum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_nansum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_std_unbiased_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_std_unbiased_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_std_unbiased_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_std_unbiased_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_std_unbiased_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_std_unbiased_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_var_unbiased_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_var_unbiased_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_var_unbiased_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_var_unbiased_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_var_unbiased_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_var_unbiased_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_numpy_named_args_cpu, test/test_reductions.py::TestReductionsCPU::test_prod_bool_cpu, test/test_reductions.py::TestReductionsCPU::test_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_prod_gpu_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_prod_gpu_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_prod_integer_upcast_cpu, test/test_reductions.py::TestReductionsCPU::test_prod_lowp_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_prod_lowp_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_quantile_backward_cpu, test/test_reductions.py::TestReductionsCPU::test_quantile_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_quantile_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_quantile_error_cpu, test/test_reductions.py::TestReductionsCPU::test_reduce_dtype_cpu, test/test_reductions.py::TestReductionsCPU::test_reduction_empty_any_all_cpu, test/test_reductions.py::TestReductionsCPU::test_reduction_split_cpu, test/test_reductions.py::TestReductionsCPU::test_reduction_vectorize_along_input_corner_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_reduction_vectorize_along_input_corner_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_reduction_vectorize_along_input_corner_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_reduction_vectorize_along_input_corner_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_reduction_vectorize_along_output_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_reduction_vectorize_along_output_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_reduction_vectorize_along_output_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_reduction_vectorize_along_output_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_reductions_large_half_tensors_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_reductions_large_half_tensors_cpu_complex32, test/test_reductions.py::TestReductionsCPU::test_reductions_large_half_tensors_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_all_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_all_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_all_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_all_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_all_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_all_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_all_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_amax_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_amin_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_any_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_any_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_any_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_any_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_any_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_any_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_any_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_any_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_count_nonzero_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_all_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_all_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_all_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_all_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_all_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_all_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_all_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_amax_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_amin_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_any_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_any_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_any_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_any_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_any_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_any_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_any_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_any_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_argmax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_argmax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_argmax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_argmax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_argmax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_argmax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_argmin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_argmin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_argmin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_argmin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_argmin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_argmin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_count_nonzero_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_hash_tensor_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_hash_tensor_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_hash_tensor_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_hash_tensor_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_hash_tensor_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_hash_tensor_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_hash_tensor_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_hash_tensor_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_hash_tensor_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_argmax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_argmax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_argmax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_argmax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_argmax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_argmax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_argmin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_argmin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_argmin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_argmin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_argmin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_argmin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_std_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_std_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_std_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_std_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_std_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_var_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_var_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_var_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_var_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_var_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_nanmean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_nanmean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_nanmean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_nansum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_nansum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_nansum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_nansum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_nansum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_nansum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_nansum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_nansum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_nansum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values__refs_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values__refs_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values__refs_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values__refs_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values__refs_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values__refs_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values__refs_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values__refs_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values__refs_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values__refs_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values__refs_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values__refs_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values__refs_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values__refs_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values__refs_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values__refs_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values__refs_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values__refs_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_hash_tensor_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_masked_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_masked_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_masked_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_masked_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_masked_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_masked_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_masked_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_masked_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_masked_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_masked_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_masked_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_masked_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_masked_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_masked_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_nanmean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_nansum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D__refs_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D__refs_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D__refs_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D__refs_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D__refs_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D__refs_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D__refs_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D__refs_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D__refs_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D__refs_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_hash_tensor_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_masked_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_masked_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_masked_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_masked_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_masked_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_masked_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_masked_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_masked_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_masked_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_nanmean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_nansum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D__refs_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D__refs_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D__refs_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D__refs_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D__refs_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D__refs_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D__refs_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D__refs_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D__refs_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D__refs_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_hash_tensor_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_masked_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_masked_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_masked_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_masked_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_masked_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_masked_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_masked_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_masked_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_masked_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_nanmean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_nansum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing__refs_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing__refs_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing__refs_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing__refs_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing__refs_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing__refs_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing__refs_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing__refs_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing__refs_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing__refs_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_hash_tensor_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_masked_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_masked_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_masked_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_masked_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_masked_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_masked_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_masked_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_masked_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_masked_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_nanmean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_nansum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_all_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_all_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_all_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_all_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_all_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_all_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_all_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_amax_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_amin_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_any_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_any_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_any_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_any_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_any_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_any_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_any_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_any_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_count_nonzero_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_all_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_all_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_all_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_all_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_all_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_all_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_all_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_amax_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_amin_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_any_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_any_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_any_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_any_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_any_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_any_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_any_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_any_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_argmax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_argmax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_argmax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_argmax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_argmax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_argmax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_argmin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_argmin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_argmin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_argmin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_argmin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_argmin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_count_nonzero_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_hash_tensor_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_hash_tensor_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_hash_tensor_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_hash_tensor_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_hash_tensor_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_hash_tensor_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_hash_tensor_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_hash_tensor_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_hash_tensor_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_argmax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_argmax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_argmax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_argmax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_argmax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_argmax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_argmin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_argmin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_argmin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_argmin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_argmin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_argmin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_std_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_std_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_std_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_std_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_std_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_var_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_var_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_var_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_var_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_var_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_nanmean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_nanmean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_nanmean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_nansum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_nansum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_nansum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_nansum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_nansum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_nansum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_nansum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_nansum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_nansum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_all_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_all_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_all_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_all_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_all_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_all_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_all_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_amax_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_amin_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_any_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_any_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_any_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_any_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_any_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_any_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_any_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_any_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_count_nonzero_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_all_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_all_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_all_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_all_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_all_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_all_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_all_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_amax_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_amin_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_any_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_any_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_any_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_any_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_any_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_any_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_any_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_any_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_argmax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_argmax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_argmax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_argmax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_argmax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_argmax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_argmin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_argmin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_argmin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_argmin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_argmin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_argmin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_count_nonzero_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_hash_tensor_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_hash_tensor_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_hash_tensor_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_hash_tensor_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_hash_tensor_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_hash_tensor_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_hash_tensor_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_hash_tensor_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_hash_tensor_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_argmax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_argmax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_argmax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_argmax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_argmax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_argmax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_argmin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_argmin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_argmin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_argmin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_argmin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_argmin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_std_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_std_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_std_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_std_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_std_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_var_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_var_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_var_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_var_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_var_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_nanmean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_nanmean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_nanmean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_nansum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_nansum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_nansum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_nansum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_nansum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_nansum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_nansum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_nansum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_nansum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_argmax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_argmax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_argmax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_argmax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_argmax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_argmax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_argmax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_argmin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_argmin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_argmin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_argmin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_argmin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_argmin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_argmin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_std_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_std_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_std_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_std_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_std_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_var_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_var_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_var_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_var_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_var_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_repeated_dim_cpu, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_all_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_all_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_all_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_all_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_all_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_all_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_all_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_all_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_amax_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_amin_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_any_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_any_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_any_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_any_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_any_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_any_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_any_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_any_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_any_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_count_nonzero_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_count_nonzero_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_linalg_vector_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_linalg_vector_norm_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_linalg_vector_norm_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_linalg_vector_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_linalg_vector_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_linalg_vector_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_all_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_result_dtype_all_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_all_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_all_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_all_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_all_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_all_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_all_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_amax_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_result_dtype_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_amin_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_result_dtype_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_any_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_any_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_result_dtype_any_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_any_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_any_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_any_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_any_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_any_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_any_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_argmax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_argmax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_argmax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_argmax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_argmax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_argmax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_argmax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_argmin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_argmin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_argmin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_argmin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_argmin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_argmin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_argmin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_count_nonzero_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_count_nonzero_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_result_dtype_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_hash_tensor_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_hash_tensor_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_result_dtype_hash_tensor_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_hash_tensor_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_hash_tensor_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_hash_tensor_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_hash_tensor_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_hash_tensor_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_hash_tensor_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_hash_tensor_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_linalg_vector_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_linalg_vector_norm_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype_linalg_vector_norm_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_linalg_vector_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_linalg_vector_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_linalg_vector_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_argmax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_argmax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_argmax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_argmax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_argmax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_argmax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_argmax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_argmin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_argmin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_argmin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_argmin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_argmin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_argmin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_argmin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_logsumexp_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_logsumexp_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_logsumexp_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_logsumexp_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_logsumexp_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_logsumexp_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_logsumexp_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_logsumexp_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_logsumexp_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_logsumexp_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_logsumexp_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_std_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_std_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_std_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_std_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_std_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_var_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_var_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_var_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_var_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_var_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_nanmean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_nanmean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_nanmean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_nanmean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_nansum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_nansum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_result_dtype_nansum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_nansum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_nansum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_nansum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_nansum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_nansum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_nansum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_nansum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_result_dtype_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_std_unbiased_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_std_unbiased_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype_std_unbiased_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_std_unbiased_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_std_unbiased_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_std_unbiased_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_result_dtype_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_var_unbiased_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_var_unbiased_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype_var_unbiased_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_var_unbiased_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_var_unbiased_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_var_unbiased_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_std_correction_vs_numpy_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_std_correction_vs_numpy_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_std_correction_vs_numpy_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_std_correction_vs_numpy_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_std_dim_cpu, test/test_reductions.py::TestReductionsCPU::test_std_mean_all_dims_cpu, test/test_reductions.py::TestReductionsCPU::test_std_mean_correction_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_std_mean_correction_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_std_mean_correction_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_std_mean_correction_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_std_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_std_mean_some_dims_cpu, test/test_reductions.py::TestReductionsCPU::test_std_vs_numpy_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_std_vs_numpy_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_std_vs_numpy_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_std_vs_numpy_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_sum_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_sum_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_sum_cpu_device_mismatch_cpu, test/test_reductions.py::TestReductionsCPU::test_sum_dim_cpu, test/test_reductions.py::TestReductionsCPU::test_sum_dim_reduction_uint8_overflow_cpu, test/test_reductions.py::TestReductionsCPU::test_sum_integer_upcast_cpu, test/test_reductions.py::TestReductionsCPU::test_sum_noncontig_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_sum_noncontig_lowp_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_sum_noncontig_lowp_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_sum_out_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_sum_parallel_cpu, test/test_reductions.py::TestReductionsCPU::test_sum_vs_numpy_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_sum_vs_numpy_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_sum_vs_numpy_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_sum_vs_numpy_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_sum_vs_numpy_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_sum_vs_numpy_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_sum_vs_numpy_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_tensor_compare_ops_argmax_argmix_kthvalue_dim_empty_cpu, test/test_reductions.py::TestReductionsCPU::test_tensor_compare_ops_empty_cpu, test/test_reductions.py::TestReductionsCPU::test_tensor_reduce_ops_empty_cpu, test/test_reductions.py::TestReductionsCPU::test_var_correction_vs_numpy_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_var_correction_vs_numpy_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_var_correction_vs_numpy_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_var_correction_vs_numpy_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_var_cpu, test/test_reductions.py::TestReductionsCPU::test_var_dim_cpu, test/test_reductions.py::TestReductionsCPU::test_var_large_input_cpu, test/test_reductions.py::TestReductionsCPU::test_var_mean_all_dims_cpu, test/test_reductions.py::TestReductionsCPU::test_var_mean_correction_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_var_mean_correction_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_var_mean_correction_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_var_mean_correction_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_var_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_var_mean_some_dims_cpu, test/test_reductions.py::TestReductionsCPU::test_var_stability2_cpu, test/test_reductions.py::TestReductionsCPU::test_var_stability_cpu, test/test_reductions.py::TestReductionsCPU::test_var_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_var_vs_numpy_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_var_vs_numpy_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_var_vs_numpy_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_var_vs_numpy_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_warn_invalid_degrees_of_freedom_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_warn_invalid_degrees_of_freedom_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_warn_invalid_degrees_of_freedom_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_warn_invalid_degrees_of_freedom_cpu_float64 2025-08-26T21:18:23.2942949Z 2025-08-26T21:18:23.2943177Z Running test_fake_tensor 1/1 ... [2025-08-26 21:18:22.967521] 2025-08-26T21:18:23.2943559Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:18:23.2944555Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_fake_tensor.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:18:22.968179] 2025-08-26T21:18:39.8370767Z 2025-08-26T21:18:39.8371620Z test_fake_tensor 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_fake_tensor_1.1_01f3e3a7b4862309_.log 2025-08-26T21:18:39.8484087Z Running 290 items in this shard: test/test_fake_tensor.py::FakeTensorTest::test__adaptive_avg_pool2d_backward, test/test_fake_tensor.py::FakeTensorTest::test_alias_call, test/test_fake_tensor.py::FakeTensorTest::test_allow_meta, test/test_fake_tensor.py::FakeTensorTest::test_aten_copy_multi_device, test/test_fake_tensor.py::FakeTensorTest::test_aten_index_multi_device, test/test_fake_tensor.py::FakeTensorTest::test_aten_slice_scatter_multi_device, test/test_fake_tensor.py::FakeTensorTest::test_basic, test/test_fake_tensor.py::FakeTensorTest::test_batch_tensor, test/test_fake_tensor.py::FakeTensorTest::test_binary_op_type_promotion, test/test_fake_tensor.py::FakeTensorTest::test_constructor, test/test_fake_tensor.py::FakeTensorTest::test_convert_fake_to_real, test/test_fake_tensor.py::FakeTensorTest::test_cpu_fallback, test/test_fake_tensor.py::FakeTensorTest::test_cuda_initialized, test/test_fake_tensor.py::FakeTensorTest::test_cuda_lstm, test/test_fake_tensor.py::FakeTensorTest::test_cudnn_rnn_with_fallback, test/test_fake_tensor.py::FakeTensorTest::test_cudnn_rnn_without_fallback, test/test_fake_tensor.py::FakeTensorTest::test_custom_op_fallback, test/test_fake_tensor.py::FakeTensorTest::test_data_dependent_operator, test/test_fake_tensor.py::FakeTensorTest::test_deepcopy, test/test_fake_tensor.py::FakeTensorTest::test_device_inplace_copy, test/test_fake_tensor.py::FakeTensorTest::test_embedding_bag_meta, test/test_fake_tensor.py::FakeTensorTest::test_export_numpy, test/test_fake_tensor.py::FakeTensorTest::test_fake_device, test/test_fake_tensor.py::FakeTensorTest::test_fake_dispatch_keys, test/test_fake_tensor.py::FakeTensorTest::test_fake_grad_copy, test/test_fake_tensor.py::FakeTensorTest::test_fake_mode_error, test/test_fake_tensor.py::FakeTensorTest::test_fast_div, test/test_fake_tensor.py::FakeTensorTest::test_from_numpy, test/test_fake_tensor.py::FakeTensorTest::test_fsdp_flat_param, test/test_fake_tensor.py::FakeTensorTest::test_full, test/test_fake_tensor.py::FakeTensorTest::test_index_cuda_with_cpu_complex128, test/test_fake_tensor.py::FakeTensorTest::test_index_cuda_with_cpu_complex64, test/test_fake_tensor.py::FakeTensorTest::test_index_cuda_with_cpu_float32, test/test_fake_tensor.py::FakeTensorTest::test_index_cuda_with_cpu_float64, test/test_fake_tensor.py::FakeTensorTest::test_index_cuda_with_cpu_float8_e4m3fn, test/test_fake_tensor.py::FakeTensorTest::test_index_cuda_with_cpu_float8_e4m3fnuz, test/test_fake_tensor.py::FakeTensorTest::test_index_cuda_with_cpu_float8_e5m2, test/test_fake_tensor.py::FakeTensorTest::test_index_cuda_with_cpu_float8_e5m2fnuz, test/test_fake_tensor.py::FakeTensorTest::test_index_cuda_with_cpu_int16, test/test_fake_tensor.py::FakeTensorTest::test_index_cuda_with_cpu_int32, test/test_fake_tensor.py::FakeTensorTest::test_index_cuda_with_cpu_int64, test/test_fake_tensor.py::FakeTensorTest::test_index_cuda_with_cpu_int8, test/test_fake_tensor.py::FakeTensorTest::test_index_cuda_with_cpu_uint8, test/test_fake_tensor.py::FakeTensorTest::test_index_put_error, test/test_fake_tensor.py::FakeTensorTest::test_jagged_fake_to_fake_preserved, test/test_fake_tensor.py::FakeTensorTest::test_like_constructor, test/test_fake_tensor.py::FakeTensorTest::test_mixed_real_and_fake_inputs, test/test_fake_tensor.py::FakeTensorTest::test_mode, test/test_fake_tensor.py::FakeTensorTest::test_nan_to_num, test/test_fake_tensor.py::FakeTensorTest::test_nanmean_out, test/test_fake_tensor.py::FakeTensorTest::test_new, test/test_fake_tensor.py::FakeTensorTest::test_no_tag_func, test/test_fake_tensor.py::FakeTensorTest::test_non_kwarg_device, test/test_fake_tensor.py::FakeTensorTest::test_non_overlapping_stride_zero, test/test_fake_tensor.py::FakeTensorTest::test_non_parameter_grad, test/test_fake_tensor.py::FakeTensorTest::test_normalize_device, test/test_fake_tensor.py::FakeTensorTest::test_op_with_zero_dim_bypassed, test/test_fake_tensor.py::FakeTensorTest::test_out_multi_device, test/test_fake_tensor.py::FakeTensorTest::test_parameter_instantiation, test/test_fake_tensor.py::FakeTensorTest::test_parameter_view, test/test_fake_tensor.py::FakeTensorTest::test_print_in_fake_mode, test/test_fake_tensor.py::FakeTensorTest::test_randperm, test/test_fake_tensor.py::FakeTensorTest::test_recursive_invocation, test/test_fake_tensor.py::FakeTensorTest::test_repr, test/test_fake_tensor.py::FakeTensorTest::test_same_shape_env_preserved, test/test_fake_tensor.py::FakeTensorTest::test_scalar_inputs, test/test_fake_tensor.py::FakeTensorTest::test_scan_reverse_False, test/test_fake_tensor.py::FakeTensorTest::test_scan_reverse_True, test/test_fake_tensor.py::FakeTensorTest::test_setitem, test/test_fake_tensor.py::FakeTensorTest::test_shape_take_not_device, test/test_fake_tensor.py::FakeTensorTest::test_split_return_self, test/test_fake_tensor.py::FakeTensorTest::test_throw, test/test_fake_tensor.py::FakeTensorTest::test_tolist, test/test_fake_tensor.py::FakeTensorTest::test_type_as, test/test_fake_tensor.py::FakeTensorTest::test_unbind_copy_out, test/test_fake_tensor.py::FakeTensorTest::test_unsqueeze_copy, test/test_fake_tensor.py::FakeTensorTest::test_upsample_bilinear_small_channels, test/test_fake_tensor.py::FakeTensorTest::test_zero_dim, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test__adaptive_avg_pool2d_backward_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_alias_call_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_allow_meta_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_aten_copy_multi_device_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_aten_index_multi_device_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_aten_slice_scatter_multi_device_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_basic_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_batch_tensor_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_binary_op_type_promotion_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_constructor_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_convert_fake_to_real_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_cpu_fallback_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_cuda_initialized_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_cuda_lstm_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_cudnn_rnn_with_fallback_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_cudnn_rnn_without_fallback_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_custom_op_fallback_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_data_dependent_operator_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_deepcopy_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_device_inplace_copy_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_embedding_bag_meta_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_export_numpy_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_fake_device_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_fake_dispatch_keys_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_fake_grad_copy_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_fake_mode_error_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_fast_div_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_from_numpy_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_fsdp_flat_param_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_full_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_index_cuda_with_cpu_complex128_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_index_cuda_with_cpu_complex64_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_index_cuda_with_cpu_float32_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_index_cuda_with_cpu_float64_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_index_cuda_with_cpu_float8_e4m3fn_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_index_cuda_with_cpu_float8_e4m3fnuz_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_index_cuda_with_cpu_float8_e5m2_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_index_cuda_with_cpu_float8_e5m2fnuz_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_index_cuda_with_cpu_int16_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_index_cuda_with_cpu_int32_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_index_cuda_with_cpu_int64_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_index_cuda_with_cpu_int8_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_index_cuda_with_cpu_uint8_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_index_put_error_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_jagged_fake_to_fake_preserved_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_like_constructor_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_mixed_real_and_fake_inputs_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_mode_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_nan_to_num_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_nanmean_out_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_new_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_no_tag_func_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_non_kwarg_device_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_non_overlapping_stride_zero_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_non_parameter_grad_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_normalize_device_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_op_with_zero_dim_bypassed_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_out_multi_device_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_parameter_instantiation_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_parameter_view_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_print_in_fake_mode_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_randperm_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_recursive_invocation_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_repr_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_same_shape_env_preserved_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_scalar_inputs_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_scan_reverse_False_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_scan_reverse_True_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_setitem_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_shape_take_not_device_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_split_return_self_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_throw_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_tolist_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_type_as_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_unbind_copy_out_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_unsqueeze_copy_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_upsample_bilinear_small_channels_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_zero_dim_propagate_real_tensors, test/test_fake_tensor.py::FakeTensorConstHandling::test_aliased_const_write, test/test_fake_tensor.py::FakeTensorConstHandling::test_constant_invalidation, test/test_fake_tensor.py::FakeTensorConstHandling::test_constant_propagate_through_functions, test/test_fake_tensor.py::FakeTensorConstHandling::test_fake_tensor_batch_norm_cpu, test/test_fake_tensor.py::FakeTensorConstHandling::test_fake_tensor_in_intlist_repro, test/test_fake_tensor.py::FakeTensorConstHandling::test_inplace_add, test/test_fake_tensor.py::FakeTensorConstHandling::test_inplace_view_invalidation, test/test_fake_tensor.py::FakeTensorConstHandling::test_shared_storage_invalidation, test/test_fake_tensor.py::FakeTensorConstHandling::test_shared_storages, test/test_fake_tensor.py::FakeTensorConstHandling::test_simple, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorConstHandling::test_aliased_const_write_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorConstHandling::test_constant_invalidation_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorConstHandling::test_constant_propagate_through_functions_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorConstHandling::test_fake_tensor_batch_norm_cpu_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorConstHandling::test_fake_tensor_in_intlist_repro_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorConstHandling::test_inplace_add_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorConstHandling::test_inplace_view_invalidation_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorConstHandling::test_shared_storage_invalidation_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorConstHandling::test_shared_storages_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorConstHandling::test_simple_propagate_real_tensors, test/test_fake_tensor.py::FakeTensorOpInfoTestCPU::test_fake_NumpyCatCustomOp_cpu_float32, test/test_fake_tensor.py::FakeTensorOpInfoTestCPU::test_fake_NumpyCubeCustomOp_cpu_float32, test/test_fake_tensor.py::FakeTensorOpInfoTestCPU::test_fake_NumpyMulCustomOp_cpu_float32, test/test_fake_tensor.py::FakeTensorOpInfoTestCPU::test_fake_NumpyMulScalarCustomOp_cpu_float32, test/test_fake_tensor.py::FakeTensorOpInfoTestCPU::test_fake_NumpyNMSCustomOp_cpu_float32, test/test_fake_tensor.py::FakeTensorOpInfoTestCPU::test_fake_NumpyNonzeroCustomOp_cpu_float32, test/test_fake_tensor.py::FakeTensorOpInfoTestCPU::test_fake_NumpySortCustomOp_cpu_float32, test/test_fake_tensor.py::FakeTensorOpInfoTestCPU::test_fake_NumpySplitCopyCustomOp_cpu_float32, test/test_fake_tensor.py::FakeTensorOpInfoTestCPU::test_fake_NumpySplitCopyWithIntCustomOp_cpu_float32, test/test_fake_tensor.py::FakeTensorOpInfoTestCPU::test_fake_NumpyTakeCustomOp_cpu_float32, test/test_fake_tensor.py::FakeTensorOpInfoTestCPU::test_fake_NumpyViewCopyCustomOp_cpu_float32, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOpInfoTestCPU::test_fake_propagate_real_tensors_NumpyCatCustomOp_cpu_float32, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOpInfoTestCPU::test_fake_propagate_real_tensors_NumpyCubeCustomOp_cpu_float32, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOpInfoTestCPU::test_fake_propagate_real_tensors_NumpyMulCustomOp_cpu_float32, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOpInfoTestCPU::test_fake_propagate_real_tensors_NumpyMulScalarCustomOp_cpu_float32, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOpInfoTestCPU::test_fake_propagate_real_tensors_NumpyNMSCustomOp_cpu_float32, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOpInfoTestCPU::test_fake_propagate_real_tensors_NumpyNonzeroCustomOp_cpu_float32, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOpInfoTestCPU::test_fake_propagate_real_tensors_NumpySortCustomOp_cpu_float32, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOpInfoTestCPU::test_fake_propagate_real_tensors_NumpySplitCopyCustomOp_cpu_float32, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOpInfoTestCPU::test_fake_propagate_real_tensors_NumpySplitCopyWithIntCustomOp_cpu_float32, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOpInfoTestCPU::test_fake_propagate_real_tensors_NumpyTakeCustomOp_cpu_float32, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOpInfoTestCPU::test_fake_propagate_real_tensors_NumpyViewCopyCustomOp_cpu_float32, test/test_fake_tensor.py::FakeTensorConverterTest::test_dead_key, test/test_fake_tensor.py::FakeTensorConverterTest::test_dead_weak_ref, test/test_fake_tensor.py::FakeTensorConverterTest::test_memoized_conversion_from_meta, test/test_fake_tensor.py::FakeTensorConverterTest::test_memoized_conversion_to_meta, test/test_fake_tensor.py::FakeTensorConverterTest::test_multiple_modes, test/test_fake_tensor.py::FakeTensorConverterTest::test_no_active_mode, test/test_fake_tensor.py::FakeTensorConverterTest::test_no_ref_cycle, test/test_fake_tensor.py::FakeTensorConverterTest::test_separate_mode_error, test/test_fake_tensor.py::FakeTensorConverterTest::test_separate_tensor_storages_non_view, test/test_fake_tensor.py::FakeTensorConverterTest::test_separate_tensor_storages_view, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorConverterTest::test_dead_key_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorConverterTest::test_dead_weak_ref_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorConverterTest::test_memoized_conversion_from_meta_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorConverterTest::test_memoized_conversion_to_meta_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorConverterTest::test_multiple_modes_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorConverterTest::test_no_active_mode_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorConverterTest::test_no_ref_cycle_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorConverterTest::test_separate_mode_error_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorConverterTest::test_separate_tensor_storages_non_view_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorConverterTest::test_separate_tensor_storages_view_propagate_real_tensors, test/test_fake_tensor.py::FakeTensorOperatorInvariants::test_conv_c1_backward, test/test_fake_tensor.py::FakeTensorOperatorInvariants::test_cross_entropy_loss, test/test_fake_tensor.py::FakeTensorOperatorInvariants::test_embedding_bag_private, test/test_fake_tensor.py::FakeTensorOperatorInvariants::test_fake_gpu_no_init, test/test_fake_tensor.py::FakeTensorOperatorInvariants::test_flash_attention, test/test_fake_tensor.py::FakeTensorOperatorInvariants::test_like_ops, test/test_fake_tensor.py::FakeTensorOperatorInvariants::test_module_to, test/test_fake_tensor.py::FakeTensorOperatorInvariants::test_no_dispatch_with_like_function, test/test_fake_tensor.py::FakeTensorOperatorInvariants::test_non_kwarg_only_device, test/test_fake_tensor.py::FakeTensorOperatorInvariants::test_sparse_new, test/test_fake_tensor.py::FakeTensorOperatorInvariants::test_str_storage, test/test_fake_tensor.py::FakeTensorOperatorInvariants::test_tensor_constructors_all_have_kwarg_device, test/test_fake_tensor.py::FakeTensorOperatorInvariants::test_tensor_new, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOperatorInvariants::test_conv_c1_backward_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOperatorInvariants::test_cross_entropy_loss_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOperatorInvariants::test_embedding_bag_private_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOperatorInvariants::test_fake_gpu_no_init_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOperatorInvariants::test_flash_attention_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOperatorInvariants::test_like_ops_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOperatorInvariants::test_module_to_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOperatorInvariants::test_no_dispatch_with_like_function_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOperatorInvariants::test_non_kwarg_only_device_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOperatorInvariants::test_sparse_new_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOperatorInvariants::test_str_storage_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOperatorInvariants::test_tensor_constructors_all_have_kwarg_device_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOperatorInvariants::test_tensor_new_propagate_real_tensors, test/test_fake_tensor.py::FakeTensorPropTest::test_fake_tensor_prop_on_nn_module, test/test_fake_tensor.py::FakeTensorPropTest::test_fake_tensor_prop_on_nn_module_with_optional_args, test/test_fake_tensor.py::FakeTensorPropTest::test_nan_to_num, test/test_fake_tensor.py::FakeTensorPropTest::test_nonzero_stride, test/test_fake_tensor.py::FakeTensorPropTest::test_torch_load_with_fake_mode, test/test_fake_tensor.py::FakeTensorPropTest::test_unbacked_shape_realloc, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorPropTest::test_fake_tensor_prop_on_nn_module_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorPropTest::test_fake_tensor_prop_on_nn_module_with_optional_args_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorPropTest::test_nan_to_num_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorPropTest::test_nonzero_stride_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorPropTest::test_torch_load_with_fake_mode_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorPropTest::test_unbacked_shape_realloc_propagate_real_tensors, test/test_fake_tensor.py::FakeTensorSerialization::test_serialization, test/test_fake_tensor.py::FakeTensorSerialization::test_serialization_with_tracing, test/test_fake_tensor.py::FakeTensorDispatchCache::test__upsample_bilinear2d_aa_backward_dynamic_shapes, test/test_fake_tensor.py::FakeTensorDispatchCache::test_cache_aten_index, test/test_fake_tensor.py::FakeTensorDispatchCache::test_cache_bypass, test/test_fake_tensor.py::FakeTensorDispatchCache::test_cache_default_device, test/test_fake_tensor.py::FakeTensorDispatchCache::test_cache_default_dtype, test/test_fake_tensor.py::FakeTensorDispatchCache::test_cache_dispatch_key_set, test/test_fake_tensor.py::FakeTensorDispatchCache::test_cache_hit, test/test_fake_tensor.py::FakeTensorDispatchCache::test_cache_inplace_op, test/test_fake_tensor.py::FakeTensorDispatchCache::test_cache_key_constants, test/test_fake_tensor.py::FakeTensorDispatchCache::test_cache_key_device, test/test_fake_tensor.py::FakeTensorDispatchCache::test_cache_key_dtype, test/test_fake_tensor.py::FakeTensorDispatchCache::test_cache_key_is_conj, test/test_fake_tensor.py::FakeTensorDispatchCache::test_cache_key_is_inference, test/test_fake_tensor.py::FakeTensorDispatchCache::test_cache_key_is_neg, test/test_fake_tensor.py::FakeTensorDispatchCache::test_cache_key_memory_format, test/test_fake_tensor.py::FakeTensorDispatchCache::test_cache_key_requires_grad, test/test_fake_tensor.py::FakeTensorDispatchCache::test_cache_key_shape, test/test_fake_tensor.py::FakeTensorDispatchCache::test_cache_key_storage_offset, test/test_fake_tensor.py::FakeTensorDispatchCache::test_cache_key_stride, test/test_fake_tensor.py::FakeTensorDispatchCache::test_cache_tuple_outputs, test/test_fake_tensor.py::FakeTensorDispatchCache::test_cache_view_op, test/test_fake_tensor.py::FakeTensorDispatchCache::test_fft_hfft2_issue145522, test/test_fake_tensor.py::FakeTensorDispatchCache::test_from_buffer, test/test_fake_tensor.py::FakeTensorDispatchCache::test_inference_mode, test/test_fake_tensor.py::FakeTensorDispatchCache::test_invoke_subgraph, test/test_fake_tensor.py::FakeTensorDispatchCache::test_invoke_subgraph_cacheable_inplace, test/test_fake_tensor.py::FakeTensorDispatchCache::test_meta_tensor_to_fake_cpu, test/test_fake_tensor.py::FakeTensorDispatchCache::test_shape_env_settings, test/test_fake_tensor.py::FakeTensorDispatchCache::test_unbacked_output, test/test_fake_tensor.py::FakeTensorDispatchCache::test_wrapper_tensor_subclass_different_device, test/test_fake_tensor.py::FakeTensorPreferDeviceType::test_fake_tensor_prefer_device_type, test/test_fake_tensor.py::FakeTensorPreferDeviceType::test_fake_tensor_prefer_device_type_cpu_only 2025-08-26T21:18:39.8594037Z 2025-08-26T21:18:39.8594235Z Running test_python_dispatch 1/1 ... [2025-08-26 21:18:39.836643] 2025-08-26T21:18:39.8594634Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:18:39.8595700Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_python_dispatch.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:18:39.836643] 2025-08-26T21:18:53.4260073Z 2025-08-26T21:18:53.4260963Z test_python_dispatch 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_python_dispatch_1.1_a209253973546c46_.log 2025-08-26T21:18:53.4304285Z Running 118 items in this shard: test/test_python_dispatch.py::TestDispatcherPythonBindings::test_call_boxed, test/test_python_dispatch.py::TestPythonRegistration::test_alias_analysis, test/test_python_dispatch.py::TestPythonRegistration::test_create_new_library, test/test_python_dispatch.py::TestPythonRegistration::test_create_new_library_fragment_no_existing, test/test_python_dispatch.py::TestPythonRegistration::test_create_new_library_fragment_with_existing, test/test_python_dispatch.py::TestPythonRegistration::test_dispatchkeyset_eq, test/test_python_dispatch.py::TestPythonRegistration::test_dispatchkeyset_pickle, test/test_python_dispatch.py::TestPythonRegistration::test_error_for_unsupported_ns_or_kind, test/test_python_dispatch.py::TestPythonRegistration::test_error_if_fn_not_callable, test/test_python_dispatch.py::TestPythonRegistration::test_extend_library_with_dispatch_key_arg, test/test_python_dispatch.py::TestPythonRegistration::test_fallback, test/test_python_dispatch.py::TestPythonRegistration::test_fallback_fallthrough, test/test_python_dispatch.py::TestPythonRegistration::test_fallback_keyset, test/test_python_dispatch.py::TestPythonRegistration::test_fallthrough_for_dense_key_with_meta_in_tls, test/test_python_dispatch.py::TestPythonRegistration::test_finalizer, test/test_python_dispatch.py::TestPythonRegistration::test_override_aten_ops_with_multiple_libraries, test/test_python_dispatch.py::TestPythonRegistration::test_override_cpu_sum, test/test_python_dispatch.py::TestPythonRegistration::test_override_cuda_with_jiterator, test/test_python_dispatch.py::TestPythonRegistration::test_register_fallthrough, test/test_python_dispatch.py::TestPythonRegistration::test_returning_symint, test/test_python_dispatch.py::TestPythonDispatch::test_all_same_mode, test/test_python_dispatch.py::TestPythonDispatch::test_autograd_in_attr, test/test_python_dispatch.py::TestPythonDispatch::test_basic, test/test_python_dispatch.py::TestPythonDispatch::test_capture_logs_with_torch_dispatch_mode, test/test_python_dispatch.py::TestPythonDispatch::test_construct_int_tensor, test/test_python_dispatch.py::TestPythonDispatch::test_custom_autograd, test/test_python_dispatch.py::TestPythonDispatch::test_custom_dispatch_mode_not_supports_higher_order_operators, test/test_python_dispatch.py::TestPythonDispatch::test_custom_dispatch_mode_supports_higher_order_operators, test/test_python_dispatch.py::TestPythonDispatch::test_custom_size_policy_dynamic_shapes, test/test_python_dispatch.py::TestPythonDispatch::test_data_ptr_respects_numel_slow_path, test/test_python_dispatch.py::TestPythonDispatch::test_deepcopy_non_wrapper_subclass, test/test_python_dispatch.py::TestPythonDispatch::test_deepcopy_wrapper_subclass, test/test_python_dispatch.py::TestPythonDispatch::test_deepcopy_wrapper_subclass_with_clone_returning_different_type, test/test_python_dispatch.py::TestPythonDispatch::test_detach_appears_twice_when_called_once, test/test_python_dispatch.py::TestPythonDispatch::test_device_slowpath, test/test_python_dispatch.py::TestPythonDispatch::test_dim_slowpath, test/test_python_dispatch.py::TestPythonDispatch::test_dispatch_super_call, test/test_python_dispatch.py::TestPythonDispatch::test_dispatch_super_call_list_arg, test/test_python_dispatch.py::TestPythonDispatch::test_dispatch_super_dont_autograd, test/test_python_dispatch.py::TestPythonDispatch::test_dispatch_uint64, test/test_python_dispatch.py::TestPythonDispatch::test_error_using_class_method_on_mode, test/test_python_dispatch.py::TestPythonDispatch::test_exception_handling, test/test_python_dispatch.py::TestPythonDispatch::test_fancy_strides, test/test_python_dispatch.py::TestPythonDispatch::test_format, test/test_python_dispatch.py::TestPythonDispatch::test_get_cur_mode, test/test_python_dispatch.py::TestPythonDispatch::test_get_mode_stack, test/test_python_dispatch.py::TestPythonDispatch::test_index_put_where_only_index_is_subclass, test/test_python_dispatch.py::TestPythonDispatch::test_invalid_ret, test/test_python_dispatch.py::TestPythonDispatch::test_is_contiguous_slow_path, test/test_python_dispatch.py::TestPythonDispatch::test_kwarg_only, test/test_python_dispatch.py::TestPythonDispatch::test_kwarg_only_and_positional_default, test/test_python_dispatch.py::TestPythonDispatch::test_layout_slow_path, test/test_python_dispatch.py::TestPythonDispatch::test_like, test/test_python_dispatch.py::TestPythonDispatch::test_list_ret, test/test_python_dispatch.py::TestPythonDispatch::test_make_fx_with_subclass, test/test_python_dispatch.py::TestPythonDispatch::test_make_subclass_with_modes, test/test_python_dispatch.py::TestPythonDispatch::test_make_wrapper_subclass_noalloc, test/test_python_dispatch.py::TestPythonDispatch::test_make_wrapper_subclass_propagates_metadata, test/test_python_dispatch.py::TestPythonDispatch::test_maybe_tuple_bug, test/test_python_dispatch.py::TestPythonDispatch::test_mode_detection, test/test_python_dispatch.py::TestPythonDispatch::test_mode_with_make_subclass, test/test_python_dispatch.py::TestPythonDispatch::test_multiple_ops_subclass, test/test_python_dispatch.py::TestPythonDispatch::test_nested_push_logging_tensor_mode, test/test_python_dispatch.py::TestPythonDispatch::test_nesting_same_mode, test/test_python_dispatch.py::TestPythonDispatch::test_new_ones, test/test_python_dispatch.py::TestPythonDispatch::test_none_wrapping, test/test_python_dispatch.py::TestPythonDispatch::test_notimplemented_mode, test/test_python_dispatch.py::TestPythonDispatch::test_optional_tensor_list, test/test_python_dispatch.py::TestPythonDispatch::test_out, test/test_python_dispatch.py::TestPythonDispatch::test_produce_real_type, test/test_python_dispatch.py::TestPythonDispatch::test_record_stream, test/test_python_dispatch.py::TestPythonDispatch::test_return_and_correct_aliasing_gives_correct_stride, test/test_python_dispatch.py::TestPythonDispatch::test_return_stream, test/test_python_dispatch.py::TestPythonDispatch::test_set_data, test/test_python_dispatch.py::TestPythonDispatch::test_shallow_copy_and_detach, test/test_python_dispatch.py::TestPythonDispatch::test_sizes_slow_path, test/test_python_dispatch.py::TestPythonDispatch::test_standard_is_not_subclass, test/test_python_dispatch.py::TestPythonDispatch::test_storage, test/test_python_dispatch.py::TestPythonDispatch::test_storage_can_be_converted_to_python_object, test/test_python_dispatch.py::TestPythonDispatch::test_strides_slow_path, test/test_python_dispatch.py::TestPythonDispatch::test_subclass_creation, test/test_python_dispatch.py::TestPythonDispatch::test_subclass_priority, test/test_python_dispatch.py::TestPythonDispatch::test_sym_sizes_strides_slow_path, test/test_python_dispatch.py::TestPythonDispatch::test_tolist_numpy_with_torch_dispatch_mode, test/test_python_dispatch.py::TestPythonDispatch::test_torch_dispatch_mode_basic, test/test_python_dispatch.py::TestPythonDispatch::test_torch_dispatch_mode_respects_no_dispatch, test/test_python_dispatch.py::TestPythonDispatch::test_torch_dispatch_mode_subclass_priority, test/test_python_dispatch.py::TestPythonDispatch::test_torch_dispatch_mode_unrelated_tensors, test/test_python_dispatch.py::TestPythonDispatch::test_version, test/test_python_dispatch.py::TestPythonDispatch::test_view_returns_alias_under_torch_dispatch, test/test_python_dispatch.py::TestPythonDispatch::test_with_mode_created_separately, test/test_python_dispatch.py::TestPythonDispatch::test_with_nested_modes, test/test_python_dispatch.py::TestPythonDispatch::test_wrapper_subclass_extra_dispatch_keys, test/test_python_dispatch.py::TestPythonDispatch::test_wrapper_subclass_multiprocessing_preserves_dtype, test/test_python_dispatch.py::TestPythonDispatch::test_wrapper_subclass_reentrant_dispatch_with_mode, test/test_python_dispatch.py::TestPythonDispatch::test_wrapper_subclass_serializes, test/test_python_dispatch.py::TestPythonDispatcher::test_basic, test/test_python_dispatch.py::TestPythonDispatcher::test_lstsq, test/test_python_dispatch.py::TestWrapperSubclassAliasingCPU::test_wrapper_subclass_aliasing_cat_cpu_float32, test/test_python_dispatch.py::TestWrapperSubclassAliasingCPU::test_wrapper_subclass_aliasing_conv2d_cpu, test/test_python_dispatch.py::TestWrapperSubclassAliasingCPU::test_wrapper_subclass_aliasing_custom_NumpyCatCustomOp_cpu_float32, test/test_python_dispatch.py::TestWrapperSubclassAliasingCPU::test_wrapper_subclass_aliasing_custom_NumpyCubeCustomOp_cpu_float32, test/test_python_dispatch.py::TestWrapperSubclassAliasingCPU::test_wrapper_subclass_aliasing_custom_NumpyMulCustomOp_cpu_float32, test/test_python_dispatch.py::TestWrapperSubclassAliasingCPU::test_wrapper_subclass_aliasing_custom_NumpyMulScalarCustomOp_cpu_float32, test/test_python_dispatch.py::TestWrapperSubclassAliasingCPU::test_wrapper_subclass_aliasing_custom_NumpyNMSCustomOp_cpu_float32, test/test_python_dispatch.py::TestWrapperSubclassAliasingCPU::test_wrapper_subclass_aliasing_custom_NumpyNonzeroCustomOp_cpu_float32, test/test_python_dispatch.py::TestWrapperSubclassAliasingCPU::test_wrapper_subclass_aliasing_custom_NumpySortCustomOp_cpu_float32, test/test_python_dispatch.py::TestWrapperSubclassAliasingCPU::test_wrapper_subclass_aliasing_custom_NumpySplitCopyCustomOp_cpu_float32, test/test_python_dispatch.py::TestWrapperSubclassAliasingCPU::test_wrapper_subclass_aliasing_custom_NumpySplitCopyWithIntCustomOp_cpu_float32, test/test_python_dispatch.py::TestWrapperSubclassAliasingCPU::test_wrapper_subclass_aliasing_custom_NumpyTakeCustomOp_cpu_float32, test/test_python_dispatch.py::TestWrapperSubclassAliasingCPU::test_wrapper_subclass_aliasing_custom_NumpyViewCopyCustomOp_cpu_float32, test/test_python_dispatch.py::TestWrapperSubclassAliasingCPU::test_wrapper_subclass_aliasing_fft_fft2_cpu, test/test_python_dispatch.py::TestWrapperSubclassAliasingCPU::test_wrapper_subclass_aliasing_mul_cpu_float32, test/test_python_dispatch.py::TestWrapperSubclassAliasingCPU::test_wrapper_subclass_aliasing_native_batch_norm_cpu_float32, test/test_python_dispatch.py::TestWrapperSubclassAliasingCPU::test_wrapper_subclass_aliasing_out_op_cpu, test/test_python_dispatch.py::TestWrapperSubclassAliasingCPU::test_wrapper_subclass_aliasing_split_cpu_float32, test/test_python_dispatch.py::TestWrapperSubclassAliasingCPU::test_wrapper_subclass_aliasing_split_list_args_cpu_float32, test/test_python_dispatch.py::TestWrapperSubclassAliasingCPU::test_wrapper_subclass_aliasing_view_cpu_float32 2025-08-26T21:18:53.4346559Z 2025-08-26T21:18:53.4346774Z Running test_autocast 1/1 ... [2025-08-26 21:18:53.422795] 2025-08-26T21:18:53.4347139Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:18:53.4348120Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_autocast.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:18:53.422795] 2025-08-26T21:18:58.9971300Z 2025-08-26T21:18:58.9973783Z test_autocast 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_autocast_1.1_a4cb5ab65fa3765e_.log 2025-08-26T21:18:58.9980071Z Running 20 items in this shard: test/test_autocast.py::TestAutocastCPU::test_autocast_disabled_with_fp32_dtype, test/test_autocast.py::TestAutocastCPU::test_autocast_methods_expect_builtin_promote, test/test_autocast.py::TestAutocastCPU::test_autocast_nn_16, test/test_autocast.py::TestAutocastCPU::test_autocast_nn_fp32, test/test_autocast.py::TestAutocastCPU::test_autocast_rnn, test/test_autocast.py::TestAutocastCPU::test_autocast_torch_16, test/test_autocast.py::TestAutocastCPU::test_autocast_torch_expect_builtin_promote, test/test_autocast.py::TestAutocastCPU::test_autocast_torch_fp32, test/test_autocast.py::TestAutocastCPU::test_autocast_torch_need_autocast_promote, test/test_autocast.py::TestAutocastCPU::test_cpu_autocast_deprecated_warning, test/test_autocast.py::TestAutocastCPU::test_generic_autocast, test/test_autocast.py::TestAutocastGPU::test_autocast_prioritize, test/test_autocast.py::TestAutocastGPU::test_cache_disabled, test/test_autocast.py::TestAutocastGPU::test_cast_cache_is_global, test/test_autocast.py::TestAutocastMPS::test_cast_cache_is_global, test/test_autocast.py::TestAutocastMPS::test_mps_autocast_bfloat16_supported, test/test_autocast.py::TestAutocastMPS::test_mps_autocast_error_message, test/test_autocast.py::TestTorchAutocast::test_autocast_fast_dtype, test/test_autocast.py::TestTorchAutocast::test_invalid_device, test/test_autocast.py::TestTorchAutocast::test_non_string_device 2025-08-26T21:18:58.9985933Z 2025-08-26T21:18:58.9986541Z Running test_jit_disabled 1/1 ... [2025-08-26 21:18:58.997765] 2025-08-26T21:18:58.9986936Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:18:58.9987922Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_jit_disabled.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:18:58.998357] 2025-08-26T21:19:04.0076151Z 2025-08-26T21:19:04.0077109Z test_jit_disabled 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_jit_disabled_1.1_d89de8bf7e572f6b_.log 2025-08-26T21:19:04.0078612Z Running 3 items in this shard: test/test_jit_disabled.py::TestJitDisabled::test_attribute, test/test_jit_disabled.py::TestJitDisabled::test_recursive_script, test/test_jit_disabled.py::TestJitDisabled::test_script_module_construction 2025-08-26T21:19:04.0079625Z 2025-08-26T21:19:04.0082451Z Running test_tensor_creation_ops 1/1 ... [2025-08-26 21:19:03.998832] 2025-08-26T21:19:04.0082910Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:19:04.0088693Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_tensor_creation_ops.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:19:03.998832] 2025-08-26T21:19:41.6284369Z 2025-08-26T21:19:41.6292996Z test_tensor_creation_ops 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_tensor_creation_ops_1.1_d320cf2f691850a4_.log 2025-08-26T21:19:41.6517413Z Running 641 items in this shard: test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_arange_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_arange_device_vs_cpu_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_arange_device_vs_cpu_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_arange_device_vs_cpu_cpu_int32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_arange_device_vs_cpu_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_arange_inference_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_arange_lowp_cpu_bfloat16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_arange_lowp_cpu_float16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_as_strided_neg_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_as_tensor_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_block_diag_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_block_diag_scipy_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cartesian_prod_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat2_cpu_float16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat2_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat2_cpu_int32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_all_dtypes_and_devices_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_big_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_empty_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_empty_legacy_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_in_channels_last_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_mem_overlap_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_out_channels_last_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_out_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_out_fast_path_dim0_dim1_cpu_complex128, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_out_fast_path_dim0_dim1_cpu_complex64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_out_fast_path_dim0_dim1_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_out_fast_path_dim0_dim1_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_out_fast_path_dim0_dim1_cpu_int16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_out_fast_path_dim0_dim1_cpu_int32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_out_fast_path_dim0_dim1_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_out_fast_path_dim0_dim1_cpu_int8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_out_fast_path_dim0_dim1_cpu_uint16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_out_fast_path_dim0_dim1_cpu_uint32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_out_fast_path_dim0_dim1_cpu_uint64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_out_fast_path_dim0_dim1_cpu_uint8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_out_memory_format_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_preserve_channels_last_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_stack_cross_devices_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_combinations_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_complex_type_conversions_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_concat_empty_list_error_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_constructor_device_legacy_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_constructor_dtypes_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_ctor_with_numpy_array_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_device_rounding_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_device_rounding_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_diag_embed_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_diagflat_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_dsplit_cpu_complex64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_dsplit_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_dsplit_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_dstack_cpu_complex128, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_dstack_cpu_complex64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_dstack_cpu_float16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_dstack_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_dstack_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_dstack_cpu_int16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_dstack_cpu_int32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_dstack_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_dstack_cpu_int8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_dstack_cpu_uint8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_empty_full_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_empty_overflow_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_empty_strided_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_empty_tensor_props_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_eye_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_fill_all_dtypes_and_devices_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_float_to_int_conversion_finite_cpu_bool, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_float_to_int_conversion_finite_cpu_int16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_float_to_int_conversion_finite_cpu_int32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_float_to_int_conversion_finite_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_float_to_int_conversion_finite_cpu_int8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_float_to_int_conversion_finite_cpu_uint8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_float_to_int_conversion_nonfinite_cpu_bool, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_float_to_int_conversion_nonfinite_cpu_int16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_float_to_int_conversion_nonfinite_cpu_int32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_float_to_int_conversion_nonfinite_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_float_to_int_conversion_nonfinite_cpu_int8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_float_to_int_conversion_nonfinite_cpu_uint8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_from_file_shared_False_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_from_file_shared_True_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_full_inference_cpu_float16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_full_inference_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_full_inference_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_full_out_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_hsplit_cpu_complex64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_hsplit_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_hsplit_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_hstack_column_stack_cpu_complex128, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_hstack_column_stack_cpu_complex64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_hstack_column_stack_cpu_float16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_hstack_column_stack_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_hstack_column_stack_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_hstack_column_stack_cpu_int16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_hstack_column_stack_cpu_int32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_hstack_column_stack_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_hstack_column_stack_cpu_int8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_hstack_column_stack_cpu_uint8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_kaiser_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_kaiser_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_kaiser_window_cpu_bfloat16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_kaiser_window_cpu_float16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_kaiser_window_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_kaiser_window_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_kaiser_window_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_large_linspace_cpu_int32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_large_linspace_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_like_fn_stride_proparation_vs_tensoriterator_unary_op_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linlogspace_mem_overlap_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_cpu_bfloat16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_cpu_complex128, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_cpu_complex64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_cpu_int16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_cpu_int32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_cpu_int8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_cpu_uint8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_deduction_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_device_vs_cpu_cpu_bfloat16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_device_vs_cpu_cpu_complex128, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_device_vs_cpu_cpu_complex64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_device_vs_cpu_cpu_float16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_device_vs_cpu_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_device_vs_cpu_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_special_steps_cpu_bfloat16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_special_steps_cpu_complex128, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_special_steps_cpu_complex64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_special_steps_cpu_float16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_special_steps_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_special_steps_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_vs_numpy_complex_cpu_complex64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_vs_numpy_cpu_complex128, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_vs_numpy_cpu_complex64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_vs_numpy_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_vs_numpy_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_vs_numpy_integral_cpu_int16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_vs_numpy_integral_cpu_int32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_vs_numpy_integral_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_vs_numpy_integral_cpu_int8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_vs_numpy_integral_cpu_uint8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_logspace_base2_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_logspace_base2_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_logspace_cpu_bfloat16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_logspace_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_logspace_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_logspace_cpu_int16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_logspace_cpu_int32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_logspace_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_logspace_cpu_int8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_logspace_cpu_uint8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_logspace_deduction_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_logspace_device_vs_cpu_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_logspace_device_vs_cpu_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_logspace_special_steps_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_logspace_special_steps_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_logspace_vs_numpy_complex_cpu_complex64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_logspace_vs_numpy_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_logspace_vs_numpy_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_meshgrid_default_indexing_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_meshgrid_empty_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_meshgrid_ij_indexing_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_meshgrid_ij_indexing_is_default_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_meshgrid_inconsistent_device_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_meshgrid_inconsistent_dtype_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_meshgrid_non_1d_tensor_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_meshgrid_unsupported_indexing_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_meshgrid_vs_numpy_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_meshgrid_warns_if_no_indexing_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_meshgrid_xy_indexing_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_new_empty_strided_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_new_methods_requires_grad_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_new_tensor_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_new_tensor_device_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_offset_scalar_cast_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_ones_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_bool_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_cpu_int16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_cpu_int32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_cpu_int8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_default_cpu_bfloat16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_default_cpu_float16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_default_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_default_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_default_cpu_int16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_default_cpu_int32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_default_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_default_cpu_int8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_default_cpu_uint8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_from_to_bool_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_from_to_cpu_bfloat16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_from_to_cpu_float16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_from_to_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_from_to_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_from_to_cpu_int16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_from_to_cpu_int32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_from_to_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_from_to_cpu_int8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_from_to_cpu_uint16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_from_to_cpu_uint32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_from_to_cpu_uint8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_full_range_cpu_bfloat16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_full_range_cpu_float16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_full_range_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_full_range_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_full_range_cpu_int16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_full_range_cpu_int32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_full_range_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_full_range_cpu_int8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_full_range_cpu_uint16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_full_range_cpu_uint32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_full_range_cpu_uint8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_to_cpu_bfloat16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_to_cpu_float16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_to_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_to_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_to_cpu_int16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_to_cpu_int32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_to_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_to_cpu_int8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_to_cpu_uint16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_to_cpu_uint32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_to_cpu_uint8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_range_cpu_bfloat16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_range_cpu_float16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_range_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_range_factories_64bit_indexing_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_range_warning_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_refs_tensor_cpu_bfloat16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_refs_tensor_cpu_bool, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_refs_tensor_cpu_complex128, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_refs_tensor_cpu_complex64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_refs_tensor_cpu_float16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_refs_tensor_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_refs_tensor_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_refs_tensor_cpu_int16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_refs_tensor_cpu_int32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_refs_tensor_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_refs_tensor_cpu_int8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_refs_tensor_cpu_uint8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_repeat_interleave_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_roll_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_window_functions_window_bartlett_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_window_functions_window_bartlett_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_window_functions_window_bartlett_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_window_functions_window_blackman_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_window_functions_window_blackman_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_window_functions_window_blackman_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_window_functions_window_hamming_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_window_functions_window_hamming_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_window_functions_window_hamming_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_window_functions_window_hann_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_window_functions_window_hann_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_window_functions_window_hann_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_windows_functions_window_bartlett_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_windows_functions_window_bartlett_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_windows_functions_window_blackman_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_windows_functions_window_blackman_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_windows_functions_window_cosine_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_windows_functions_window_cosine_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_windows_functions_window_hamming_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_windows_functions_window_hamming_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_windows_functions_window_hann_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_windows_functions_window_hann_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_windows_functions_window_nuttall_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_windows_functions_window_nuttall_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_simple_scalar_cast_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_stack_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_stack_out_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_storage_filename_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_strided_mismatched_stride_shape_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_tensor_ctor_device_inference_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_tensor_device_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_tensor_factories_empty_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_tensor_factory_copy_var_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_tensor_factory_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_tensor_factory_gpu_type_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_tensor_factory_gpu_type_inference_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_tensor_factory_type_inference_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_tensor_from_non_writable_numpy_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_tensor_from_sequence_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_torch_complex_cpu_float16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_torch_complex_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_torch_complex_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_torch_complex_floating_dtype_error_cpu_bool, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_torch_complex_floating_dtype_error_cpu_complex128, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_torch_complex_floating_dtype_error_cpu_complex64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_torch_complex_floating_dtype_error_cpu_int16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_torch_complex_floating_dtype_error_cpu_int32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_torch_complex_floating_dtype_error_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_torch_complex_floating_dtype_error_cpu_int8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_torch_complex_floating_dtype_error_cpu_uint8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_torch_complex_out_dtype_error_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_torch_complex_out_dtype_error_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_torch_complex_same_dtype_error_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_torch_complex_same_dtype_error_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_torch_polar_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_torch_polar_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_unpack_double_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_unpack_double_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vander_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vander_types_cpu_bool, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vander_types_cpu_complex128, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vander_types_cpu_complex64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vander_types_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vander_types_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vander_types_cpu_int16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vander_types_cpu_int32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vander_types_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vander_types_cpu_int8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vander_types_cpu_uint8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vsplit_cpu_complex64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vsplit_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vsplit_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vstack_row_stack_cpu_complex128, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vstack_row_stack_cpu_complex64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vstack_row_stack_cpu_float16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vstack_row_stack_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vstack_row_stack_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vstack_row_stack_cpu_int16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vstack_row_stack_cpu_int32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vstack_row_stack_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vstack_row_stack_cpu_int8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vstack_row_stack_cpu_uint8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_zeros_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_zeros_dtype_layout_device_match_cpu_bool, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_zeros_dtype_layout_device_match_cpu_complex64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_zeros_dtype_layout_device_match_cpu_float16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_zeros_dtype_layout_device_match_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_zeros_dtype_layout_device_match_cpu_int16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_zeros_dtype_layout_device_match_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_zeros_dtype_layout_device_match_cpu_uint8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_zeros_out_cpu, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_normal_cpu_float32, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_normal_cpu_float64, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_normal_std_error_cpu, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_rand_cpu_complex128, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_rand_cpu_complex32, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_rand_cpu_complex64, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_rand_cpu_float32, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_rand_cpu_float64, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_randint_cpu, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_randint_distribution_cpu, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_randint_inference_cpu, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_randn_cpu_bfloat16, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_randn_cpu_complex128, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_randn_cpu_complex32, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_randn_cpu_complex64, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_randn_cpu_float16, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_randn_cpu_float32, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_randn_cpu_float64, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_random_neg_values_cpu, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_randperm_cpu, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_randperm_device_compatibility_cpu, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_randperm_large_cpu, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_uniform_from_to_cpu_float16, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_uniform_from_to_cpu_float32, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_uniform_from_to_cpu_float64, test/test_tensor_creation_ops.py::TestLikeTensorCreationCPU::test_empty_like_cpu, test/test_tensor_creation_ops.py::TestLikeTensorCreationCPU::test_full_like_inference_cpu, test/test_tensor_creation_ops.py::TestLikeTensorCreationCPU::test_ones_like_cpu, test/test_tensor_creation_ops.py::TestLikeTensorCreationCPU::test_ones_like_multiple_device_cpu, test/test_tensor_creation_ops.py::TestLikeTensorCreationCPU::test_zeros_like_cpu, test/test_tensor_creation_ops.py::TestLikeTensorCreationCPU::test_zeros_like_multiple_device_cpu, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_byte_to_int_cpu, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_invalid_positional_args_cpu_bool, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_invalid_positional_args_cpu_complex128, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_invalid_positional_args_cpu_complex64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_invalid_positional_args_cpu_float16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_invalid_positional_args_cpu_float32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_invalid_positional_args_cpu_float64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_invalid_positional_args_cpu_int16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_invalid_positional_args_cpu_int32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_invalid_positional_args_cpu_int64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_invalid_positional_args_cpu_int8, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_invalid_positional_args_cpu_uint16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_invalid_positional_args_cpu_uint32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_invalid_positional_args_cpu_uint64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_invalid_positional_args_cpu_uint8, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_non_writable_buffer_cpu_bool, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_non_writable_buffer_cpu_complex128, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_non_writable_buffer_cpu_complex64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_non_writable_buffer_cpu_float16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_non_writable_buffer_cpu_float32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_non_writable_buffer_cpu_float64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_non_writable_buffer_cpu_int16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_non_writable_buffer_cpu_int32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_non_writable_buffer_cpu_int64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_non_writable_buffer_cpu_int8, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_non_writable_buffer_cpu_uint16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_non_writable_buffer_cpu_uint32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_non_writable_buffer_cpu_uint64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_non_writable_buffer_cpu_uint8, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_not_a_buffer_cpu_bool, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_not_a_buffer_cpu_complex128, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_not_a_buffer_cpu_complex64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_not_a_buffer_cpu_float16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_not_a_buffer_cpu_float32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_not_a_buffer_cpu_float64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_not_a_buffer_cpu_int16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_not_a_buffer_cpu_int32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_not_a_buffer_cpu_int64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_not_a_buffer_cpu_int8, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_not_a_buffer_cpu_uint16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_not_a_buffer_cpu_uint32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_not_a_buffer_cpu_uint64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_not_a_buffer_cpu_uint8, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_requires_grad_cpu_bool, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_requires_grad_cpu_complex128, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_requires_grad_cpu_complex64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_requires_grad_cpu_float16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_requires_grad_cpu_float32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_requires_grad_cpu_float64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_requires_grad_cpu_int16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_requires_grad_cpu_int32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_requires_grad_cpu_int64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_requires_grad_cpu_int8, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_requires_grad_cpu_uint16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_requires_grad_cpu_uint32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_requires_grad_cpu_uint64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_requires_grad_cpu_uint8, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_same_type_cpu_bool, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_same_type_cpu_complex128, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_same_type_cpu_complex64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_same_type_cpu_float16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_same_type_cpu_float32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_same_type_cpu_float64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_same_type_cpu_int16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_same_type_cpu_int32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_same_type_cpu_int64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_same_type_cpu_int8, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_same_type_cpu_uint16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_same_type_cpu_uint32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_same_type_cpu_uint64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_same_type_cpu_uint8, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_shared_buffer_cpu_bool, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_shared_buffer_cpu_complex128, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_shared_buffer_cpu_complex64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_shared_buffer_cpu_float16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_shared_buffer_cpu_float32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_shared_buffer_cpu_float64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_shared_buffer_cpu_int16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_shared_buffer_cpu_int32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_shared_buffer_cpu_int64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_shared_buffer_cpu_int8, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_shared_buffer_cpu_uint16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_shared_buffer_cpu_uint32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_shared_buffer_cpu_uint64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_shared_buffer_cpu_uint8, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_and_offset_cpu_bool, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_and_offset_cpu_complex128, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_and_offset_cpu_complex64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_and_offset_cpu_float16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_and_offset_cpu_float32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_and_offset_cpu_float64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_and_offset_cpu_int16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_and_offset_cpu_int32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_and_offset_cpu_int64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_and_offset_cpu_int8, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_and_offset_cpu_uint16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_and_offset_cpu_uint32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_and_offset_cpu_uint64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_and_offset_cpu_uint8, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_cpu_bool, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_cpu_complex128, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_cpu_complex64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_cpu_float16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_cpu_float32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_cpu_float64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_cpu_int16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_cpu_int32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_cpu_int64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_cpu_int8, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_cpu_uint16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_cpu_uint32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_cpu_uint64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_cpu_uint8, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_offset_cpu_bool, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_offset_cpu_complex128, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_offset_cpu_complex64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_offset_cpu_float16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_offset_cpu_float32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_offset_cpu_float64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_offset_cpu_int16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_offset_cpu_int32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_offset_cpu_int64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_offset_cpu_int8, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_offset_cpu_uint16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_offset_cpu_uint32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_offset_cpu_uint64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_offset_cpu_uint8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_buffer_cpu_bool, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_buffer_cpu_complex128, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_buffer_cpu_complex64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_buffer_cpu_float16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_buffer_cpu_float32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_buffer_cpu_float64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_buffer_cpu_int16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_buffer_cpu_int32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_buffer_cpu_int64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_buffer_cpu_int8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_buffer_cpu_uint16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_buffer_cpu_uint32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_buffer_cpu_uint64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_buffer_cpu_uint8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_dlpack_cpu_bfloat16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_dlpack_cpu_complex128, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_dlpack_cpu_complex64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_dlpack_cpu_float16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_dlpack_cpu_float32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_dlpack_cpu_float64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_dlpack_cpu_int16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_dlpack_cpu_int32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_dlpack_cpu_int64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_dlpack_cpu_int8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_dlpack_cpu_uint8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_numpy_cpu_bool, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_numpy_cpu_complex128, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_numpy_cpu_complex64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_numpy_cpu_float16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_numpy_cpu_float32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_numpy_cpu_float64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_numpy_cpu_int16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_numpy_cpu_int32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_numpy_cpu_int64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_numpy_cpu_int8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_numpy_cpu_uint16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_numpy_cpu_uint32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_numpy_cpu_uint64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_numpy_cpu_uint8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_tensor_cpu_bfloat16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_tensor_cpu_bool, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_tensor_cpu_complex128, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_tensor_cpu_complex64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_tensor_cpu_float16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_tensor_cpu_float32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_tensor_cpu_float64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_tensor_cpu_int16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_tensor_cpu_int32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_tensor_cpu_int64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_tensor_cpu_int8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_tensor_cpu_uint8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_astensor_consistency_cpu, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_buffer_cpu_bool, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_buffer_cpu_complex128, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_buffer_cpu_complex64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_buffer_cpu_float16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_buffer_cpu_float32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_buffer_cpu_float64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_buffer_cpu_int16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_buffer_cpu_int32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_buffer_cpu_int64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_buffer_cpu_int8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_buffer_cpu_uint16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_buffer_cpu_uint32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_buffer_cpu_uint64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_buffer_cpu_uint8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_cpu_bfloat16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_cpu_complex128, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_cpu_complex64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_cpu_float16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_cpu_float32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_cpu_float64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_cpu_int16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_cpu_int32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_cpu_int64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_cpu_int8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_cpu_uint8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_mult_devices_cpu_bfloat16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_mult_devices_cpu_complex128, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_mult_devices_cpu_complex64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_mult_devices_cpu_float16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_mult_devices_cpu_float32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_mult_devices_cpu_float64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_mult_devices_cpu_int16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_mult_devices_cpu_int32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_mult_devices_cpu_int64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_mult_devices_cpu_int8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_mult_devices_cpu_uint8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_numpy_cpu_bool, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_numpy_cpu_complex128, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_numpy_cpu_complex64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_numpy_cpu_float16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_numpy_cpu_float32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_numpy_cpu_float64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_numpy_cpu_int16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_numpy_cpu_int32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_numpy_cpu_int64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_numpy_cpu_int8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_numpy_cpu_uint16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_numpy_cpu_uint32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_numpy_cpu_uint64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_numpy_cpu_uint8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_tensor_mult_devices_cpu_bfloat16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_tensor_mult_devices_cpu_complex128, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_tensor_mult_devices_cpu_complex64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_tensor_mult_devices_cpu_float16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_tensor_mult_devices_cpu_float32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_tensor_mult_devices_cpu_float64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_tensor_mult_devices_cpu_int16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_tensor_mult_devices_cpu_int32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_tensor_mult_devices_cpu_int64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_tensor_mult_devices_cpu_int8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_tensor_mult_devices_cpu_uint8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_list_cpu_bfloat16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_list_cpu_bool, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_list_cpu_complex128, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_list_cpu_complex64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_list_cpu_float16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_list_cpu_float32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_list_cpu_float64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_list_cpu_int16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_list_cpu_int32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_list_cpu_int64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_list_cpu_int8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_list_cpu_uint8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_tensor_cpu_bfloat16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_tensor_cpu_bool, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_tensor_cpu_complex128, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_tensor_cpu_complex64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_tensor_cpu_float16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_tensor_cpu_float32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_tensor_cpu_float64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_tensor_cpu_int16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_tensor_cpu_int32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_tensor_cpu_int64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_tensor_cpu_int8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_tensor_cpu_uint8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_default_device_cpu, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_device_without_index_cpu, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_numpy_scalars_cpu, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_retain_autograd_history_cpu_complex64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_retain_autograd_history_cpu_float32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_unsupported_alias_cpu_float32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_unsupported_alias_mult_devices_cpu_float32 2025-08-26T21:19:41.6743890Z 2025-08-26T21:19:41.6744148Z Running test_cpp_extensions_mtia_backend 1/1 ... [2025-08-26 21:19:41.627454] 2025-08-26T21:19:41.6744646Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:19:41.6745801Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_cpp_extensions_mtia_backend.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:19:41.630589] 2025-08-26T21:19:45.9721654Z 2025-08-26T21:19:45.9722696Z test_cpp_extensions_mtia_backend 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_cpp_extensions_mtia_backend_1.1_b7f0cd3a54d15bf9_.log 2025-08-26T21:19:45.9725458Z Running 5 items in this shard: test/test_cpp_extensions_mtia_backend.py::TestCppExtensionMTIABackend::test_device_context, test/test_cpp_extensions_mtia_backend.py::TestCppExtensionMTIABackend::test_get_device_module, test/test_cpp_extensions_mtia_backend.py::TestCppExtensionMTIABackend::test_stream_basic, test/test_cpp_extensions_mtia_backend.py::TestCppExtensionMTIABackend::test_stream_context, test/test_cpp_extensions_mtia_backend.py::TestCppExtensionMTIABackend::test_stream_context_different_device 2025-08-26T21:19:45.9727625Z 2025-08-26T21:19:45.9727774Z Running test_nn 1/1 ... [2025-08-26 21:19:45.964540] 2025-08-26T21:19:45.9728329Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:19:45.9734022Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_nn.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:19:45.964540] 2025-08-26T21:23:30.9829074Z 2025-08-26T21:23:30.9843630Z test_nn 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_nn_1.1_9d7a96be41fe5991_.log 2025-08-26T21:23:31.1112225Z Running 2230 items in this shard: test/test_nn.py::TestNN::test_AdaptiveLogSoftmax, test/test_nn.py::TestNN::test_AdaptiveLogSoftmax_cuda, test/test_nn.py::TestNN::test_BCELoss_no_batch_dim_mean, test/test_nn.py::TestNN::test_BCELoss_no_batch_dim_mean_cuda_double, test/test_nn.py::TestNN::test_BCELoss_no_batch_dim_mean_cuda_float, test/test_nn.py::TestNN::test_BCELoss_no_batch_dim_mean_cuda_half, test/test_nn.py::TestNN::test_BCELoss_no_batch_dim_none, test/test_nn.py::TestNN::test_BCELoss_no_batch_dim_none_cuda_double, test/test_nn.py::TestNN::test_BCELoss_no_batch_dim_none_cuda_float, test/test_nn.py::TestNN::test_BCELoss_no_batch_dim_none_cuda_half, test/test_nn.py::TestNN::test_BCELoss_no_batch_dim_sum, test/test_nn.py::TestNN::test_BCELoss_no_batch_dim_sum_cuda_double, test/test_nn.py::TestNN::test_BCELoss_no_batch_dim_sum_cuda_float, test/test_nn.py::TestNN::test_BCELoss_no_batch_dim_sum_cuda_half, test/test_nn.py::TestNN::test_BCELoss_no_reduce, test/test_nn.py::TestNN::test_BCELoss_no_reduce_cuda, test/test_nn.py::TestNN::test_BCELoss_no_reduce_scalar, test/test_nn.py::TestNN::test_BCELoss_no_reduce_scalar_cuda, test/test_nn.py::TestNN::test_BCELoss_weights_no_reduce, test/test_nn.py::TestNN::test_BCELoss_weights_no_reduce_cuda, test/test_nn.py::TestNN::test_BCELoss_weights_no_reduce_scalar, test/test_nn.py::TestNN::test_BCELoss_weights_no_reduce_scalar_cuda, test/test_nn.py::TestNN::test_BCEWithLogitsLoss_legacy_enum, test/test_nn.py::TestNN::test_BCEWithLogitsLoss_legacy_enum_cuda, test/test_nn.py::TestNN::test_BCEWithLogitsLoss_no_batch_dim_mean, test/test_nn.py::TestNN::test_BCEWithLogitsLoss_no_batch_dim_mean_cuda_double, test/test_nn.py::TestNN::test_BCEWithLogitsLoss_no_batch_dim_mean_cuda_float, test/test_nn.py::TestNN::test_BCEWithLogitsLoss_no_batch_dim_mean_cuda_half, test/test_nn.py::TestNN::test_BCEWithLogitsLoss_no_batch_dim_none, test/test_nn.py::TestNN::test_BCEWithLogitsLoss_no_batch_dim_none_cuda_double, test/test_nn.py::TestNN::test_BCEWithLogitsLoss_no_batch_dim_none_cuda_float, test/test_nn.py::TestNN::test_BCEWithLogitsLoss_no_batch_dim_none_cuda_half, test/test_nn.py::TestNN::test_BCEWithLogitsLoss_no_batch_dim_sum, test/test_nn.py::TestNN::test_BCEWithLogitsLoss_no_batch_dim_sum_cuda_double, test/test_nn.py::TestNN::test_BCEWithLogitsLoss_no_batch_dim_sum_cuda_float, test/test_nn.py::TestNN::test_BCEWithLogitsLoss_no_batch_dim_sum_cuda_half, test/test_nn.py::TestNN::test_BCEWithLogitsLoss_no_reduce, test/test_nn.py::TestNN::test_BCEWithLogitsLoss_no_reduce_cuda, test/test_nn.py::TestNN::test_BCEWithLogitsLoss_no_reduce_scalar, test/test_nn.py::TestNN::test_BCEWithLogitsLoss_no_reduce_scalar_cuda, test/test_nn.py::TestNN::test_CELU_no_batch_dim, test/test_nn.py::TestNN::test_CELU_no_batch_dim_cuda, test/test_nn.py::TestNN::test_CTCLoss_critical_target_len, test/test_nn.py::TestNN::test_CTCLoss_lengthchecks_cpu, test/test_nn.py::TestNN::test_CTCLoss_lengthchecks_cuda, test/test_nn.py::TestNN::test_CTCLoss_long_targets, test/test_nn.py::TestNN::test_CTCLoss_typechecks, test/test_nn.py::TestNN::test_CTCLoss_zero_infinity, test/test_nn.py::TestNN::test_CTCLoss_zero_lengths, test/test_nn.py::TestNN::test_Conv1d, test/test_nn.py::TestNN::test_Conv1d_circular_stride2_pad2, test/test_nn.py::TestNN::test_Conv1d_circular_stride2_pad2_cuda, test/test_nn.py::TestNN::test_Conv1d_cuda, test/test_nn.py::TestNN::test_Conv1d_dilated, test/test_nn.py::TestNN::test_Conv1d_dilated_cuda, test/test_nn.py::TestNN::test_Conv1d_groups, test/test_nn.py::TestNN::test_Conv1d_groups_cuda, test/test_nn.py::TestNN::test_Conv1d_pad1, test/test_nn.py::TestNN::test_Conv1d_pad1_cuda, test/test_nn.py::TestNN::test_Conv1d_pad1size1, test/test_nn.py::TestNN::test_Conv1d_pad1size1_cuda, test/test_nn.py::TestNN::test_Conv1d_pad2, test/test_nn.py::TestNN::test_Conv1d_pad2_cuda, test/test_nn.py::TestNN::test_Conv1d_pad2size1, test/test_nn.py::TestNN::test_Conv1d_pad2size1_cuda, test/test_nn.py::TestNN::test_Conv1d_pad_same, test/test_nn.py::TestNN::test_Conv1d_pad_same2, test/test_nn.py::TestNN::test_Conv1d_pad_same2_cuda, test/test_nn.py::TestNN::test_Conv1d_pad_same_cuda, test/test_nn.py::TestNN::test_Conv1d_pad_same_dilated, test/test_nn.py::TestNN::test_Conv1d_pad_same_dilated_cuda, test/test_nn.py::TestNN::test_Conv1d_pad_valid, test/test_nn.py::TestNN::test_Conv1d_pad_valid_cuda, test/test_nn.py::TestNN::test_Conv1d_reflect_stride2_pad2, test/test_nn.py::TestNN::test_Conv1d_reflect_stride2_pad2_cuda, test/test_nn.py::TestNN::test_Conv1d_replicate_stride2_pad2, test/test_nn.py::TestNN::test_Conv1d_replicate_stride2_pad2_cuda, test/test_nn.py::TestNN::test_Conv1d_stride, test/test_nn.py::TestNN::test_Conv1d_stride_cuda, test/test_nn.py::TestNN::test_Conv1d_zero_batch, test/test_nn.py::TestNN::test_Conv1d_zero_batch_cuda, test/test_nn.py::TestNN::test_Conv1d_zeros_stride2_pad2, test/test_nn.py::TestNN::test_Conv1d_zeros_stride2_pad2_cuda, test/test_nn.py::TestNN::test_Conv2d, test/test_nn.py::TestNN::test_Conv2d_circular_stride2_pad2, test/test_nn.py::TestNN::test_Conv2d_circular_stride2_pad2_cuda, test/test_nn.py::TestNN::test_Conv2d_cuda, test/test_nn.py::TestNN::test_Conv2d_depthwise, test/test_nn.py::TestNN::test_Conv2d_depthwise_cuda, test/test_nn.py::TestNN::test_Conv2d_depthwise_dilated, test/test_nn.py::TestNN::test_Conv2d_depthwise_dilated_cuda, test/test_nn.py::TestNN::test_Conv2d_depthwise_padded, test/test_nn.py::TestNN::test_Conv2d_depthwise_padded_cuda, test/test_nn.py::TestNN::test_Conv2d_depthwise_strided, test/test_nn.py::TestNN::test_Conv2d_depthwise_strided_cuda, test/test_nn.py::TestNN::test_Conv2d_depthwise_with_multiplier, test/test_nn.py::TestNN::test_Conv2d_depthwise_with_multiplier_cuda, test/test_nn.py::TestNN::test_Conv2d_dilated, test/test_nn.py::TestNN::test_Conv2d_dilated_cuda, test/test_nn.py::TestNN::test_Conv2d_dilated_with_long_tensor, test/test_nn.py::TestNN::test_Conv2d_dilated_with_long_tensor_cuda, test/test_nn.py::TestNN::test_Conv2d_groups, test/test_nn.py::TestNN::test_Conv2d_groups_cuda, test/test_nn.py::TestNN::test_Conv2d_groups_thnn, test/test_nn.py::TestNN::test_Conv2d_groups_thnn_cuda, test/test_nn.py::TestNN::test_Conv2d_groups_thnn_with_long_tensor, test/test_nn.py::TestNN::test_Conv2d_groups_thnn_with_long_tensor_cuda, test/test_nn.py::TestNN::test_Conv2d_groups_with_long_tensor, test/test_nn.py::TestNN::test_Conv2d_groups_with_long_tensor_cuda, test/test_nn.py::TestNN::test_Conv2d_no_bias, test/test_nn.py::TestNN::test_Conv2d_no_bias_cuda, test/test_nn.py::TestNN::test_Conv2d_no_bias_with_long_tensor, test/test_nn.py::TestNN::test_Conv2d_no_bias_with_long_tensor_cuda, test/test_nn.py::TestNN::test_Conv2d_pad_same, test/test_nn.py::TestNN::test_Conv2d_pad_same_cuda, test/test_nn.py::TestNN::test_Conv2d_pad_same_dilated, test/test_nn.py::TestNN::test_Conv2d_pad_same_dilated_cuda, test/test_nn.py::TestNN::test_Conv2d_pad_valid, test/test_nn.py::TestNN::test_Conv2d_pad_valid_cuda, test/test_nn.py::TestNN::test_Conv2d_padding, test/test_nn.py::TestNN::test_Conv2d_padding_cuda, test/test_nn.py::TestNN::test_Conv2d_padding_with_long_tensor, test/test_nn.py::TestNN::test_Conv2d_padding_with_long_tensor_cuda, test/test_nn.py::TestNN::test_Conv2d_reflect_stride2_pad2, test/test_nn.py::TestNN::test_Conv2d_reflect_stride2_pad2_cuda, test/test_nn.py::TestNN::test_Conv2d_replicate_stride2_pad2, test/test_nn.py::TestNN::test_Conv2d_replicate_stride2_pad2_cuda, test/test_nn.py::TestNN::test_Conv2d_strided, test/test_nn.py::TestNN::test_Conv2d_strided_cuda, test/test_nn.py::TestNN::test_Conv2d_strided_with_long_tensor, test/test_nn.py::TestNN::test_Conv2d_strided_with_long_tensor_cuda, test/test_nn.py::TestNN::test_Conv2d_with_long_tensor, test/test_nn.py::TestNN::test_Conv2d_with_long_tensor_cuda, test/test_nn.py::TestNN::test_Conv2d_zero_batch, test/test_nn.py::TestNN::test_Conv2d_zero_batch_cuda, test/test_nn.py::TestNN::test_Conv2d_zero_batch_with_long_tensor, test/test_nn.py::TestNN::test_Conv2d_zero_batch_with_long_tensor_cuda, test/test_nn.py::TestNN::test_Conv2d_zeros_stride2_pad2, test/test_nn.py::TestNN::test_Conv2d_zeros_stride2_pad2_cuda, test/test_nn.py::TestNN::test_Conv3d, test/test_nn.py::TestNN::test_Conv3d_1x1x1_no_bias, test/test_nn.py::TestNN::test_Conv3d_1x1x1_no_bias_cuda, test/test_nn.py::TestNN::test_Conv3d_1x1x1_no_bias_with_long_tensor, test/test_nn.py::TestNN::test_Conv3d_1x1x1_no_bias_with_long_tensor_cuda, test/test_nn.py::TestNN::test_Conv3d_circular_stride2_pad2, test/test_nn.py::TestNN::test_Conv3d_circular_stride2_pad2_cuda, test/test_nn.py::TestNN::test_Conv3d_cuda, test/test_nn.py::TestNN::test_Conv3d_dilated, test/test_nn.py::TestNN::test_Conv3d_dilated_cuda, test/test_nn.py::TestNN::test_Conv3d_dilated_strided, test/test_nn.py::TestNN::test_Conv3d_dilated_strided_cuda, test/test_nn.py::TestNN::test_Conv3d_groups, test/test_nn.py::TestNN::test_Conv3d_groups_cuda, test/test_nn.py::TestNN::test_Conv3d_groups_with_long_tensor, test/test_nn.py::TestNN::test_Conv3d_groups_with_long_tensor_cuda, test/test_nn.py::TestNN::test_Conv3d_no_bias, test/test_nn.py::TestNN::test_Conv3d_no_bias_cuda, test/test_nn.py::TestNN::test_Conv3d_no_bias_with_long_tensor, test/test_nn.py::TestNN::test_Conv3d_no_bias_with_long_tensor_cuda, test/test_nn.py::TestNN::test_Conv3d_pad_same, test/test_nn.py::TestNN::test_Conv3d_pad_same_cuda, test/test_nn.py::TestNN::test_Conv3d_pad_same_dilated, test/test_nn.py::TestNN::test_Conv3d_pad_same_dilated_cuda, test/test_nn.py::TestNN::test_Conv3d_pad_valid, test/test_nn.py::TestNN::test_Conv3d_pad_valid_cuda, test/test_nn.py::TestNN::test_Conv3d_replicate_stride2_pad2, test/test_nn.py::TestNN::test_Conv3d_replicate_stride2_pad2_cuda, test/test_nn.py::TestNN::test_Conv3d_stride, test/test_nn.py::TestNN::test_Conv3d_stride_cuda, test/test_nn.py::TestNN::test_Conv3d_stride_padding, test/test_nn.py::TestNN::test_Conv3d_stride_padding_cuda, test/test_nn.py::TestNN::test_Conv3d_stride_padding_with_long_tensor, test/test_nn.py::TestNN::test_Conv3d_stride_padding_with_long_tensor_cuda, test/test_nn.py::TestNN::test_Conv3d_stride_with_long_tensor, test/test_nn.py::TestNN::test_Conv3d_stride_with_long_tensor_cuda, test/test_nn.py::TestNN::test_Conv3d_with_long_tensor, test/test_nn.py::TestNN::test_Conv3d_with_long_tensor_cuda, test/test_nn.py::TestNN::test_Conv3d_zero_batch, test/test_nn.py::TestNN::test_Conv3d_zero_batch_cuda, test/test_nn.py::TestNN::test_Conv3d_zero_batch_with_long_tensor, test/test_nn.py::TestNN::test_Conv3d_zero_batch_with_long_tensor_cuda, test/test_nn.py::TestNN::test_Conv3d_zeros_stride2_pad2, test/test_nn.py::TestNN::test_Conv3d_zeros_stride2_pad2_cuda, test/test_nn.py::TestNN::test_ConvTranspose1d, test/test_nn.py::TestNN::test_ConvTranspose1d_cuda, test/test_nn.py::TestNN::test_ConvTranspose1d_dilated, test/test_nn.py::TestNN::test_ConvTranspose1d_dilated_cuda, test/test_nn.py::TestNN::test_ConvTranspose1d_groups, test/test_nn.py::TestNN::test_ConvTranspose1d_groups_cuda, test/test_nn.py::TestNN::test_ConvTranspose1d_no_bias, test/test_nn.py::TestNN::test_ConvTranspose1d_no_bias_cuda, test/test_nn.py::TestNN::test_ConvTranspose2d, test/test_nn.py::TestNN::test_ConvTranspose2d_cuda, test/test_nn.py::TestNN::test_ConvTranspose2d_dilated, test/test_nn.py::TestNN::test_ConvTranspose2d_dilated_cuda, test/test_nn.py::TestNN::test_ConvTranspose2d_dilated_with_long_tensor, test/test_nn.py::TestNN::test_ConvTranspose2d_dilated_with_long_tensor_cuda, test/test_nn.py::TestNN::test_ConvTranspose2d_groups, test/test_nn.py::TestNN::test_ConvTranspose2d_groups_cuda, test/test_nn.py::TestNN::test_ConvTranspose2d_groups_with_long_tensor, test/test_nn.py::TestNN::test_ConvTranspose2d_groups_with_long_tensor_cuda, test/test_nn.py::TestNN::test_ConvTranspose2d_no_bias, test/test_nn.py::TestNN::test_ConvTranspose2d_no_bias_cuda, test/test_nn.py::TestNN::test_ConvTranspose2d_no_bias_with_long_tensor, test/test_nn.py::TestNN::test_ConvTranspose2d_no_bias_with_long_tensor_cuda, test/test_nn.py::TestNN::test_ConvTranspose2d_with_long_tensor, test/test_nn.py::TestNN::test_ConvTranspose2d_with_long_tensor_cuda, test/test_nn.py::TestNN::test_ConvTranspose3d, test/test_nn.py::TestNN::test_ConvTranspose3d_cuda, test/test_nn.py::TestNN::test_ConvTranspose3d_dilated, test/test_nn.py::TestNN::test_ConvTranspose3d_dilated_cuda, test/test_nn.py::TestNN::test_CosineEmbeddingLoss_no_batch_dim_mean, test/test_nn.py::TestNN::test_CosineEmbeddingLoss_no_batch_dim_mean_cuda_double, test/test_nn.py::TestNN::test_CosineEmbeddingLoss_no_batch_dim_mean_cuda_float, test/test_nn.py::TestNN::test_CosineEmbeddingLoss_no_batch_dim_mean_cuda_half, test/test_nn.py::TestNN::test_CosineEmbeddingLoss_no_batch_dim_none, test/test_nn.py::TestNN::test_CosineEmbeddingLoss_no_batch_dim_none_cuda_double, test/test_nn.py::TestNN::test_CosineEmbeddingLoss_no_batch_dim_none_cuda_float, test/test_nn.py::TestNN::test_CosineEmbeddingLoss_no_batch_dim_none_cuda_half, test/test_nn.py::TestNN::test_CosineEmbeddingLoss_no_batch_dim_sum, test/test_nn.py::TestNN::test_CosineEmbeddingLoss_no_batch_dim_sum_cuda_double, test/test_nn.py::TestNN::test_CosineEmbeddingLoss_no_batch_dim_sum_cuda_float, test/test_nn.py::TestNN::test_CosineEmbeddingLoss_no_batch_dim_sum_cuda_half, test/test_nn.py::TestNN::test_CrossMapLRN2d, test/test_nn.py::TestNN::test_CrossMapLRN2d_cuda, test/test_nn.py::TestNN::test_ELU_no_batch_dim, test/test_nn.py::TestNN::test_ELU_no_batch_dim_cuda, test/test_nn.py::TestNN::test_Embedding, test/test_nn.py::TestNN::test_EmbeddingBag_discontiguous, test/test_nn.py::TestNN::test_EmbeddingBag_discontiguous_cuda, test/test_nn.py::TestNN::test_EmbeddingBag_max, test/test_nn.py::TestNN::test_EmbeddingBag_max_cuda, test/test_nn.py::TestNN::test_EmbeddingBag_max_padding_idx, test/test_nn.py::TestNN::test_EmbeddingBag_max_padding_idx_cuda, test/test_nn.py::TestNN::test_EmbeddingBag_mean, test/test_nn.py::TestNN::test_EmbeddingBag_mean_cuda, test/test_nn.py::TestNN::test_EmbeddingBag_mean_padding_idx, test/test_nn.py::TestNN::test_EmbeddingBag_mean_padding_idx_cuda, test/test_nn.py::TestNN::test_EmbeddingBag_sparse, test/test_nn.py::TestNN::test_EmbeddingBag_sparse_cuda, test/test_nn.py::TestNN::test_EmbeddingBag_sum, test/test_nn.py::TestNN::test_EmbeddingBag_sum_cuda, test/test_nn.py::TestNN::test_EmbeddingBag_sum_padding_idx, test/test_nn.py::TestNN::test_EmbeddingBag_sum_padding_idx_cuda, test/test_nn.py::TestNN::test_Embedding_cuda, test/test_nn.py::TestNN::test_Embedding_discontiguous, test/test_nn.py::TestNN::test_Embedding_discontiguous_cuda, test/test_nn.py::TestNN::test_Embedding_sparse, test/test_nn.py::TestNN::test_Embedding_sparse_cuda, test/test_nn.py::TestNN::test_Flatten, test/test_nn.py::TestNN::test_Flatten_cuda, test/test_nn.py::TestNN::test_Flatten_no_batch_dim, test/test_nn.py::TestNN::test_Flatten_no_batch_dim_cuda, test/test_nn.py::TestNN::test_Fold, test/test_nn.py::TestNN::test_Fold_cuda, test/test_nn.py::TestNN::test_Fold_int_input, test/test_nn.py::TestNN::test_Fold_int_input_cuda, test/test_nn.py::TestNN::test_Fold_no_batch_dim_input, test/test_nn.py::TestNN::test_Fold_no_batch_dim_input_cuda, test/test_nn.py::TestNN::test_Fold_no_batch_dim_int_input, test/test_nn.py::TestNN::test_Fold_no_batch_dim_int_input_cuda, test/test_nn.py::TestNN::test_GELU_no_batch_dim, test/test_nn.py::TestNN::test_GELU_no_batch_dim_cuda, test/test_nn.py::TestNN::test_GLU_no_batch_dim, test/test_nn.py::TestNN::test_GLU_no_batch_dim_cuda, test/test_nn.py::TestNN::test_Hardshrink_no_batch_dim, test/test_nn.py::TestNN::test_Hardshrink_no_batch_dim_cuda, test/test_nn.py::TestNN::test_Hardsigmoid_no_batch_dim, test/test_nn.py::TestNN::test_Hardsigmoid_no_batch_dim_cuda, test/test_nn.py::TestNN::test_Hardswish_no_batch_dim, test/test_nn.py::TestNN::test_Hardswish_no_batch_dim_cuda, test/test_nn.py::TestNN::test_Hardtanh_no_batch_dim, test/test_nn.py::TestNN::test_Hardtanh_no_batch_dim_cuda, test/test_nn.py::TestNN::test_HingeEmbeddingLoss_margin_no_reduce, test/test_nn.py::TestNN::test_HingeEmbeddingLoss_margin_no_reduce_cuda, test/test_nn.py::TestNN::test_HingeEmbeddingLoss_no_batch_dim_mean, test/test_nn.py::TestNN::test_HingeEmbeddingLoss_no_batch_dim_mean_cuda_double, test/test_nn.py::TestNN::test_HingeEmbeddingLoss_no_batch_dim_mean_cuda_float, test/test_nn.py::TestNN::test_HingeEmbeddingLoss_no_batch_dim_mean_cuda_half, test/test_nn.py::TestNN::test_HingeEmbeddingLoss_no_batch_dim_none, test/test_nn.py::TestNN::test_HingeEmbeddingLoss_no_batch_dim_none_cuda_double, test/test_nn.py::TestNN::test_HingeEmbeddingLoss_no_batch_dim_none_cuda_float, test/test_nn.py::TestNN::test_HingeEmbeddingLoss_no_batch_dim_none_cuda_half, test/test_nn.py::TestNN::test_HingeEmbeddingLoss_no_batch_dim_sum, test/test_nn.py::TestNN::test_HingeEmbeddingLoss_no_batch_dim_sum_cuda_double, test/test_nn.py::TestNN::test_HingeEmbeddingLoss_no_batch_dim_sum_cuda_float, test/test_nn.py::TestNN::test_HingeEmbeddingLoss_no_batch_dim_sum_cuda_half, test/test_nn.py::TestNN::test_HingeEmbeddingLoss_no_reduce, test/test_nn.py::TestNN::test_HingeEmbeddingLoss_no_reduce_cuda, test/test_nn.py::TestNN::test_HuberLoss_delta, test/test_nn.py::TestNN::test_HuberLoss_delta_cuda, test/test_nn.py::TestNN::test_HuberLoss_no_batch_dim_mean, test/test_nn.py::TestNN::test_HuberLoss_no_batch_dim_mean_cuda_double, test/test_nn.py::TestNN::test_HuberLoss_no_batch_dim_mean_cuda_float, test/test_nn.py::TestNN::test_HuberLoss_no_batch_dim_mean_cuda_half, test/test_nn.py::TestNN::test_HuberLoss_no_batch_dim_none, test/test_nn.py::TestNN::test_HuberLoss_no_batch_dim_none_cuda_double, test/test_nn.py::TestNN::test_HuberLoss_no_batch_dim_none_cuda_float, test/test_nn.py::TestNN::test_HuberLoss_no_batch_dim_none_cuda_half, test/test_nn.py::TestNN::test_HuberLoss_no_batch_dim_sum, test/test_nn.py::TestNN::test_HuberLoss_no_batch_dim_sum_cuda_double, test/test_nn.py::TestNN::test_HuberLoss_no_batch_dim_sum_cuda_float, test/test_nn.py::TestNN::test_HuberLoss_no_batch_dim_sum_cuda_half, test/test_nn.py::TestNN::test_KLDivLoss_batch_mean, test/test_nn.py::TestNN::test_KLDivLoss_batch_mean_log_target, test/test_nn.py::TestNN::test_KLDivLoss_no_batch_dim_mean, test/test_nn.py::TestNN::test_KLDivLoss_no_batch_dim_mean_cuda_double, test/test_nn.py::TestNN::test_KLDivLoss_no_batch_dim_mean_cuda_float, test/test_nn.py::TestNN::test_KLDivLoss_no_batch_dim_mean_cuda_half, test/test_nn.py::TestNN::test_KLDivLoss_no_batch_dim_none, test/test_nn.py::TestNN::test_KLDivLoss_no_batch_dim_none_cuda_double, test/test_nn.py::TestNN::test_KLDivLoss_no_batch_dim_none_cuda_float, test/test_nn.py::TestNN::test_KLDivLoss_no_batch_dim_none_cuda_half, test/test_nn.py::TestNN::test_KLDivLoss_no_batch_dim_sum, test/test_nn.py::TestNN::test_KLDivLoss_no_batch_dim_sum_cuda_double, test/test_nn.py::TestNN::test_KLDivLoss_no_batch_dim_sum_cuda_float, test/test_nn.py::TestNN::test_KLDivLoss_no_batch_dim_sum_cuda_half, test/test_nn.py::TestNN::test_KLDivLoss_no_reduce, test/test_nn.py::TestNN::test_KLDivLoss_no_reduce_cuda, test/test_nn.py::TestNN::test_KLDivLoss_no_reduce_log_target, test/test_nn.py::TestNN::test_KLDivLoss_no_reduce_log_target_cuda, test/test_nn.py::TestNN::test_KLDivLoss_no_reduce_scalar, test/test_nn.py::TestNN::test_KLDivLoss_no_reduce_scalar_cuda, test/test_nn.py::TestNN::test_KLDivLoss_no_reduce_scalar_log_target, test/test_nn.py::TestNN::test_KLDivLoss_no_reduce_scalar_log_target_cuda, test/test_nn.py::TestNN::test_KLDivLoss_with_log_target_no_reduce, test/test_nn.py::TestNN::test_KLDivLoss_with_log_target_no_reduce_cuda, test/test_nn.py::TestNN::test_KLDivLoss_with_target_no_reduce, test/test_nn.py::TestNN::test_KLDivLoss_with_target_no_reduce_cuda, test/test_nn.py::TestNN::test_L1Loss_no_batch_dim_mean, test/test_nn.py::TestNN::test_L1Loss_no_batch_dim_mean_cuda_double, test/test_nn.py::TestNN::test_L1Loss_no_batch_dim_mean_cuda_float, test/test_nn.py::TestNN::test_L1Loss_no_batch_dim_mean_cuda_half, test/test_nn.py::TestNN::test_L1Loss_no_batch_dim_none, test/test_nn.py::TestNN::test_L1Loss_no_batch_dim_none_cuda_double, test/test_nn.py::TestNN::test_L1Loss_no_batch_dim_none_cuda_float, test/test_nn.py::TestNN::test_L1Loss_no_batch_dim_none_cuda_half, test/test_nn.py::TestNN::test_L1Loss_no_batch_dim_sum, test/test_nn.py::TestNN::test_L1Loss_no_batch_dim_sum_cuda_double, test/test_nn.py::TestNN::test_L1Loss_no_batch_dim_sum_cuda_float, test/test_nn.py::TestNN::test_L1Loss_no_batch_dim_sum_cuda_half, test/test_nn.py::TestNN::test_L1Loss_no_reduce, test/test_nn.py::TestNN::test_L1Loss_no_reduce_complex, test/test_nn.py::TestNN::test_L1Loss_no_reduce_complex_cuda, test/test_nn.py::TestNN::test_L1Loss_no_reduce_cuda, test/test_nn.py::TestNN::test_L1Loss_no_reduce_scalar, test/test_nn.py::TestNN::test_L1Loss_no_reduce_scalar_cuda, test/test_nn.py::TestNN::test_LSTM_cell, test/test_nn.py::TestNN::test_LSTM_cell_forward_hidden_size, test/test_nn.py::TestNN::test_LSTM_cell_forward_input_size, test/test_nn.py::TestNN::test_LayerNorm_3d_no_affine_large_feature, test/test_nn.py::TestNN::test_LayerNorm_3d_no_affine_large_feature_cuda, test/test_nn.py::TestNN::test_LayerNorm_3d_no_affine_large_feature_eval, test/test_nn.py::TestNN::test_LayerNorm_3d_no_affine_large_feature_eval_cuda, test/test_nn.py::TestNN::test_LeakyReLU_no_batch_dim, test/test_nn.py::TestNN::test_LeakyReLU_no_batch_dim_cuda, test/test_nn.py::TestNN::test_Linear, test/test_nn.py::TestNN::test_Linear_cuda, test/test_nn.py::TestNN::test_Linear_no_batch_dim, test/test_nn.py::TestNN::test_Linear_no_batch_dim_cuda, test/test_nn.py::TestNN::test_Linear_no_bias, test/test_nn.py::TestNN::test_Linear_no_bias_cuda, test/test_nn.py::TestNN::test_LogSigmoid_no_batch_dim, test/test_nn.py::TestNN::test_LogSigmoid_no_batch_dim_cuda, test/test_nn.py::TestNN::test_MSELoss_no_batch_dim_mean, test/test_nn.py::TestNN::test_MSELoss_no_batch_dim_mean_cuda_double, test/test_nn.py::TestNN::test_MSELoss_no_batch_dim_mean_cuda_float, test/test_nn.py::TestNN::test_MSELoss_no_batch_dim_mean_cuda_half, test/test_nn.py::TestNN::test_MSELoss_no_batch_dim_none, test/test_nn.py::TestNN::test_MSELoss_no_batch_dim_none_cuda_double, test/test_nn.py::TestNN::test_MSELoss_no_batch_dim_none_cuda_float, test/test_nn.py::TestNN::test_MSELoss_no_batch_dim_none_cuda_half, test/test_nn.py::TestNN::test_MSELoss_no_batch_dim_sum, test/test_nn.py::TestNN::test_MSELoss_no_batch_dim_sum_cuda_double, test/test_nn.py::TestNN::test_MSELoss_no_batch_dim_sum_cuda_float, test/test_nn.py::TestNN::test_MSELoss_no_batch_dim_sum_cuda_half, test/test_nn.py::TestNN::test_MSELoss_no_reduce, test/test_nn.py::TestNN::test_MSELoss_no_reduce_cuda, test/test_nn.py::TestNN::test_MSELoss_no_reduce_scalar, test/test_nn.py::TestNN::test_MSELoss_no_reduce_scalar_cuda, test/test_nn.py::TestNN::test_MarginRankingLoss_no_batch_dim_mean, test/test_nn.py::TestNN::test_MarginRankingLoss_no_batch_dim_mean_cuda_double, test/test_nn.py::TestNN::test_MarginRankingLoss_no_batch_dim_mean_cuda_float, test/test_nn.py::TestNN::test_MarginRankingLoss_no_batch_dim_mean_cuda_half, test/test_nn.py::TestNN::test_MarginRankingLoss_no_batch_dim_none, test/test_nn.py::TestNN::test_MarginRankingLoss_no_batch_dim_none_cuda_double, test/test_nn.py::TestNN::test_MarginRankingLoss_no_batch_dim_none_cuda_float, test/test_nn.py::TestNN::test_MarginRankingLoss_no_batch_dim_none_cuda_half, test/test_nn.py::TestNN::test_MarginRankingLoss_no_batch_dim_sum, test/test_nn.py::TestNN::test_MarginRankingLoss_no_batch_dim_sum_cuda_double, test/test_nn.py::TestNN::test_MarginRankingLoss_no_batch_dim_sum_cuda_float, test/test_nn.py::TestNN::test_MarginRankingLoss_no_batch_dim_sum_cuda_half, test/test_nn.py::TestNN::test_MaxUnpool1d_net, test/test_nn.py::TestNN::test_MaxUnpool1d_net_cuda, test/test_nn.py::TestNN::test_MaxUnpool1d_net_no_batch_dim, test/test_nn.py::TestNN::test_MaxUnpool1d_net_no_batch_dim_cuda, test/test_nn.py::TestNN::test_MaxUnpool2d_net, test/test_nn.py::TestNN::test_MaxUnpool2d_net_cuda, test/test_nn.py::TestNN::test_MaxUnpool2d_net_no_batch_dim, test/test_nn.py::TestNN::test_MaxUnpool2d_net_no_batch_dim_cuda, test/test_nn.py::TestNN::test_MaxUnpool3d_net, test/test_nn.py::TestNN::test_MaxUnpool3d_net_cuda, test/test_nn.py::TestNN::test_MaxUnpool3d_net_no_batch_dim, test/test_nn.py::TestNN::test_MaxUnpool3d_net_no_batch_dim_cuda, test/test_nn.py::TestNN::test_Mish_no_batch_dim, test/test_nn.py::TestNN::test_Mish_no_batch_dim_cuda, test/test_nn.py::TestNN::test_ModuleDict, test/test_nn.py::TestNN::test_ModuleList, test/test_nn.py::TestNN::test_MultiLabelMarginLoss_0d_no_reduce, test/test_nn.py::TestNN::test_MultiLabelMarginLoss_0d_no_reduce_cuda, test/test_nn.py::TestNN::test_MultiLabelMarginLoss_1d_no_reduce, test/test_nn.py::TestNN::test_MultiLabelMarginLoss_1d_no_reduce_cuda, test/test_nn.py::TestNN::test_MultiLabelMarginLoss_index_neg, test/test_nn.py::TestNN::test_MultiLabelMarginLoss_index_neg_cuda, test/test_nn.py::TestNN::test_MultiLabelMarginLoss_no_batch_dim_mean, test/test_nn.py::TestNN::test_MultiLabelMarginLoss_no_batch_dim_mean_cuda_double, test/test_nn.py::TestNN::test_MultiLabelMarginLoss_no_batch_dim_mean_cuda_float, test/test_nn.py::TestNN::test_MultiLabelMarginLoss_no_batch_dim_mean_cuda_half, test/test_nn.py::TestNN::test_MultiLabelMarginLoss_no_batch_dim_none, test/test_nn.py::TestNN::test_MultiLabelMarginLoss_no_batch_dim_none_cuda_double, test/test_nn.py::TestNN::test_MultiLabelMarginLoss_no_batch_dim_none_cuda_float, test/test_nn.py::TestNN::test_MultiLabelMarginLoss_no_batch_dim_none_cuda_half, test/test_nn.py::TestNN::test_MultiLabelMarginLoss_no_batch_dim_sum, test/test_nn.py::TestNN::test_MultiLabelMarginLoss_no_batch_dim_sum_cuda_double, test/test_nn.py::TestNN::test_MultiLabelMarginLoss_no_batch_dim_sum_cuda_float, test/test_nn.py::TestNN::test_MultiLabelMarginLoss_no_batch_dim_sum_cuda_half, test/test_nn.py::TestNN::test_MultiLabelMarginLoss_no_reduce, test/test_nn.py::TestNN::test_MultiLabelMarginLoss_no_reduce_cuda, test/test_nn.py::TestNN::test_MultiLabelSoftMarginLoss_no_batch_dim_mean, test/test_nn.py::TestNN::test_MultiLabelSoftMarginLoss_no_batch_dim_mean_cuda_double, test/test_nn.py::TestNN::test_MultiLabelSoftMarginLoss_no_batch_dim_mean_cuda_float, test/test_nn.py::TestNN::test_MultiLabelSoftMarginLoss_no_batch_dim_mean_cuda_half, test/test_nn.py::TestNN::test_MultiLabelSoftMarginLoss_no_batch_dim_none, test/test_nn.py::TestNN::test_MultiLabelSoftMarginLoss_no_batch_dim_none_cuda_double, test/test_nn.py::TestNN::test_MultiLabelSoftMarginLoss_no_batch_dim_none_cuda_float, test/test_nn.py::TestNN::test_MultiLabelSoftMarginLoss_no_batch_dim_none_cuda_half, test/test_nn.py::TestNN::test_MultiLabelSoftMarginLoss_no_batch_dim_sum, test/test_nn.py::TestNN::test_MultiLabelSoftMarginLoss_no_batch_dim_sum_cuda_double, test/test_nn.py::TestNN::test_MultiLabelSoftMarginLoss_no_batch_dim_sum_cuda_float, test/test_nn.py::TestNN::test_MultiLabelSoftMarginLoss_no_batch_dim_sum_cuda_half, test/test_nn.py::TestNN::test_MultiLabelSoftMarginLoss_no_reduce, test/test_nn.py::TestNN::test_MultiLabelSoftMarginLoss_no_reduce_cuda, test/test_nn.py::TestNN::test_MultiLabelSoftMarginLoss_weights_no_reduce, test/test_nn.py::TestNN::test_MultiLabelSoftMarginLoss_weights_no_reduce_cuda, test/test_nn.py::TestNN::test_MultiMarginLoss_1d_no_reduce, test/test_nn.py::TestNN::test_MultiMarginLoss_1d_no_reduce_cuda, test/test_nn.py::TestNN::test_MultiMarginLoss_margin_no_reduce, test/test_nn.py::TestNN::test_MultiMarginLoss_margin_no_reduce_cuda, test/test_nn.py::TestNN::test_MultiMarginLoss_no_reduce, test/test_nn.py::TestNN::test_MultiMarginLoss_no_reduce_cuda, test/test_nn.py::TestNN::test_MultiMarginLoss_p_no_reduce, test/test_nn.py::TestNN::test_MultiMarginLoss_p_no_reduce_cuda, test/test_nn.py::TestNN::test_MultiMarginLoss_weights_no_reduce, test/test_nn.py::TestNN::test_MultiMarginLoss_weights_no_reduce_cuda, test/test_nn.py::TestNN::test_NLLLoss2d_no_reduce, test/test_nn.py::TestNN::test_NLLLoss2d_no_reduce_cuda, test/test_nn.py::TestNN::test_NLLLoss2d_no_reduce_ignore_index, test/test_nn.py::TestNN::test_NLLLoss2d_no_reduce_ignore_index_cuda, test/test_nn.py::TestNN::test_NLLLoss2d_no_reduce_weights, test/test_nn.py::TestNN::test_NLLLoss2d_no_reduce_weights_cuda, test/test_nn.py::TestNN::test_NLLLossNd_no_reduce, test/test_nn.py::TestNN::test_NLLLossNd_no_reduce_cuda, test/test_nn.py::TestNN::test_NLLLossNd_no_reduce_ignore_index, test/test_nn.py::TestNN::test_NLLLossNd_no_reduce_ignore_index_cuda, test/test_nn.py::TestNN::test_NLLLossNd_no_reduce_weights, test/test_nn.py::TestNN::test_NLLLossNd_no_reduce_weights_cuda, test/test_nn.py::TestNN::test_NLLLoss_no_batch_dim_mean, test/test_nn.py::TestNN::test_NLLLoss_no_batch_dim_mean_cuda_double, test/test_nn.py::TestNN::test_NLLLoss_no_batch_dim_mean_cuda_float, test/test_nn.py::TestNN::test_NLLLoss_no_batch_dim_mean_cuda_half, test/test_nn.py::TestNN::test_NLLLoss_no_batch_dim_none, test/test_nn.py::TestNN::test_NLLLoss_no_batch_dim_none_cuda_double, test/test_nn.py::TestNN::test_NLLLoss_no_batch_dim_none_cuda_float, test/test_nn.py::TestNN::test_NLLLoss_no_batch_dim_none_cuda_half, test/test_nn.py::TestNN::test_NLLLoss_no_batch_dim_sum, test/test_nn.py::TestNN::test_NLLLoss_no_batch_dim_sum_cuda_double, test/test_nn.py::TestNN::test_NLLLoss_no_batch_dim_sum_cuda_float, test/test_nn.py::TestNN::test_NLLLoss_no_batch_dim_sum_cuda_half, test/test_nn.py::TestNN::test_NLLLoss_no_reduce, test/test_nn.py::TestNN::test_NLLLoss_no_reduce_cuda, test/test_nn.py::TestNN::test_NLLLoss_no_reduce_ignore_index, test/test_nn.py::TestNN::test_NLLLoss_no_reduce_ignore_index_cuda, test/test_nn.py::TestNN::test_NLLLoss_no_reduce_weights, test/test_nn.py::TestNN::test_NLLLoss_no_reduce_weights_cuda, test/test_nn.py::TestNN::test_NLLLoss_no_reduce_weights_ignore_index, test/test_nn.py::TestNN::test_NLLLoss_no_reduce_weights_ignore_index_cuda, test/test_nn.py::TestNN::test_NLLLoss_no_reduce_weights_ignore_index_neg, test/test_nn.py::TestNN::test_NLLLoss_no_reduce_weights_ignore_index_neg_cuda, test/test_nn.py::TestNN::test_PReLU_backward_requires_grad_false, test/test_nn.py::TestNN::test_PReLU_no_batch_dim, test/test_nn.py::TestNN::test_PReLU_no_batch_dim_cuda, test/test_nn.py::TestNN::test_PairwiseDistance, test/test_nn.py::TestNN::test_PairwiseDistance_broadcast_lhs, test/test_nn.py::TestNN::test_PairwiseDistance_broadcast_lhs_cuda, test/test_nn.py::TestNN::test_PairwiseDistance_broadcast_rhs, test/test_nn.py::TestNN::test_PairwiseDistance_broadcast_rhs_cuda, test/test_nn.py::TestNN::test_PairwiseDistance_cuda, test/test_nn.py::TestNN::test_PairwiseDistance_no_batch_dim, test/test_nn.py::TestNN::test_PairwiseDistance_no_batch_dim_cuda, test/test_nn.py::TestNN::test_PairwiseDistance_with_non_default_args, test/test_nn.py::TestNN::test_PairwiseDistance_with_non_default_args_cuda, test/test_nn.py::TestNN::test_ParameterDict, test/test_nn.py::TestNN::test_ParameterDict_replication, test/test_nn.py::TestNN::test_ParameterList, test/test_nn.py::TestNN::test_ParameterList_meta, test/test_nn.py::TestNN::test_ParameterList_replication, test/test_nn.py::TestNN::test_PixelShuffle, test/test_nn.py::TestNN::test_PixelShuffle_cuda, test/test_nn.py::TestNN::test_PixelUnshuffle, test/test_nn.py::TestNN::test_PixelUnshuffle_cuda, test/test_nn.py::TestNN::test_PoissonNLLLoss_no_batch_dim_mean, test/test_nn.py::TestNN::test_PoissonNLLLoss_no_batch_dim_mean_cuda_double, test/test_nn.py::TestNN::test_PoissonNLLLoss_no_batch_dim_mean_cuda_float, test/test_nn.py::TestNN::test_PoissonNLLLoss_no_batch_dim_mean_cuda_half, test/test_nn.py::TestNN::test_PoissonNLLLoss_no_batch_dim_none, test/test_nn.py::TestNN::test_PoissonNLLLoss_no_batch_dim_none_cuda_double, test/test_nn.py::TestNN::test_PoissonNLLLoss_no_batch_dim_none_cuda_float, test/test_nn.py::TestNN::test_PoissonNLLLoss_no_batch_dim_none_cuda_half, test/test_nn.py::TestNN::test_PoissonNLLLoss_no_batch_dim_sum, test/test_nn.py::TestNN::test_PoissonNLLLoss_no_batch_dim_sum_cuda_double, test/test_nn.py::TestNN::test_PoissonNLLLoss_no_batch_dim_sum_cuda_float, test/test_nn.py::TestNN::test_PoissonNLLLoss_no_batch_dim_sum_cuda_half, test/test_nn.py::TestNN::test_PoissonNLLLoss_no_reduce, test/test_nn.py::TestNN::test_PoissonNLLLoss_no_reduce_cuda, test/test_nn.py::TestNN::test_RNN_cell, test/test_nn.py::TestNN::test_RNN_cell_forward_zero_hidden_size, test/test_nn.py::TestNN::test_RNN_cell_no_broadcasting, test/test_nn.py::TestNN::test_RNN_change_dropout, test/test_nn.py::TestNN::test_RNN_cpu_vs_cudnn_no_dropout, test/test_nn.py::TestNN::test_RNN_cpu_vs_cudnn_with_dropout, test/test_nn.py::TestNN::test_RNN_cudnn_weight_norm, test/test_nn.py::TestNN::test_RNN_dropout, test/test_nn.py::TestNN::test_RNN_dropout_state, test/test_nn.py::TestNN::test_RNN_input_size_zero, test/test_nn.py::TestNN::test_RNN_nonlinearity, test/test_nn.py::TestNN::test_RNN_nonlinearity_passed_as_arg, test/test_nn.py::TestNN::test_RReLU, test/test_nn.py::TestNN::test_RReLU_cuda, test/test_nn.py::TestNN::test_RReLU_no_batch_dim, test/test_nn.py::TestNN::test_RReLU_no_batch_dim_cuda, test/test_nn.py::TestNN::test_RReLU_with_up_down, test/test_nn.py::TestNN::test_RReLU_with_up_down_cuda, test/test_nn.py::TestNN::test_RReLU_with_up_down_scalar, test/test_nn.py::TestNN::test_RReLU_with_up_down_scalar_cuda, test/test_nn.py::TestNN::test_ReLU6_no_batch_dim, test/test_nn.py::TestNN::test_ReLU6_no_batch_dim_cuda, test/test_nn.py::TestNN::test_ReLU_no_batch_dim, test/test_nn.py::TestNN::test_ReLU_no_batch_dim_cuda, test/test_nn.py::TestNN::test_ReplicationPad3d, test/test_nn.py::TestNN::test_ReplicationPad3d_complex, test/test_nn.py::TestNN::test_ReplicationPad3d_complex_cuda, test/test_nn.py::TestNN::test_ReplicationPad3d_cuda, test/test_nn.py::TestNN::test_ReplicationPad3d_no_batch_dim, test/test_nn.py::TestNN::test_ReplicationPad3d_no_batch_dim_cuda, test/test_nn.py::TestNN::test_SELU_no_batch_dim, test/test_nn.py::TestNN::test_SELU_no_batch_dim_cuda, test/test_nn.py::TestNN::test_Sequential_add, test/test_nn.py::TestNN::test_Sequential_append, test/test_nn.py::TestNN::test_Sequential_delitem, test/test_nn.py::TestNN::test_Sequential_extend, test/test_nn.py::TestNN::test_Sequential_getitem, test/test_nn.py::TestNN::test_Sequential_iadd, test/test_nn.py::TestNN::test_Sequential_imul, test/test_nn.py::TestNN::test_Sequential_insert, test/test_nn.py::TestNN::test_Sequential_insert_fail_case, test/test_nn.py::TestNN::test_Sequential_mul, test/test_nn.py::TestNN::test_Sequential_pop, test/test_nn.py::TestNN::test_Sequential_rmul, test/test_nn.py::TestNN::test_Sequential_setitem, test/test_nn.py::TestNN::test_Sequential_setitem_named, test/test_nn.py::TestNN::test_SiLU_no_batch_dim, test/test_nn.py::TestNN::test_SiLU_no_batch_dim_cuda, test/test_nn.py::TestNN::test_Sigmoid_no_batch_dim, test/test_nn.py::TestNN::test_Sigmoid_no_batch_dim_cuda, test/test_nn.py::TestNN::test_SmoothL1Loss_beta, test/test_nn.py::TestNN::test_SmoothL1Loss_beta_cuda, test/test_nn.py::TestNN::test_SmoothL1Loss_no_batch_dim_mean, test/test_nn.py::TestNN::test_SmoothL1Loss_no_batch_dim_mean_cuda_double, test/test_nn.py::TestNN::test_SmoothL1Loss_no_batch_dim_mean_cuda_float, test/test_nn.py::TestNN::test_SmoothL1Loss_no_batch_dim_mean_cuda_half, test/test_nn.py::TestNN::test_SmoothL1Loss_no_batch_dim_none, test/test_nn.py::TestNN::test_SmoothL1Loss_no_batch_dim_none_cuda_double, test/test_nn.py::TestNN::test_SmoothL1Loss_no_batch_dim_none_cuda_float, test/test_nn.py::TestNN::test_SmoothL1Loss_no_batch_dim_none_cuda_half, test/test_nn.py::TestNN::test_SmoothL1Loss_no_batch_dim_sum, test/test_nn.py::TestNN::test_SmoothL1Loss_no_batch_dim_sum_cuda_double, test/test_nn.py::TestNN::test_SmoothL1Loss_no_batch_dim_sum_cuda_float, test/test_nn.py::TestNN::test_SmoothL1Loss_no_batch_dim_sum_cuda_half, test/test_nn.py::TestNN::test_SmoothL1Loss_no_reduce, test/test_nn.py::TestNN::test_SmoothL1Loss_no_reduce_cuda, test/test_nn.py::TestNN::test_SmoothL1Loss_no_reduce_scalar, test/test_nn.py::TestNN::test_SmoothL1Loss_no_reduce_scalar_cuda, test/test_nn.py::TestNN::test_SmoothL1Loss_zero_beta, test/test_nn.py::TestNN::test_SmoothL1Loss_zero_beta_cuda, test/test_nn.py::TestNN::test_SoftMarginLoss_no_batch_dim_mean, test/test_nn.py::TestNN::test_SoftMarginLoss_no_batch_dim_mean_cuda_double, test/test_nn.py::TestNN::test_SoftMarginLoss_no_batch_dim_mean_cuda_float, test/test_nn.py::TestNN::test_SoftMarginLoss_no_batch_dim_mean_cuda_half, test/test_nn.py::TestNN::test_SoftMarginLoss_no_batch_dim_none, test/test_nn.py::TestNN::test_SoftMarginLoss_no_batch_dim_none_cuda_double, test/test_nn.py::TestNN::test_SoftMarginLoss_no_batch_dim_none_cuda_float, test/test_nn.py::TestNN::test_SoftMarginLoss_no_batch_dim_none_cuda_half, test/test_nn.py::TestNN::test_SoftMarginLoss_no_batch_dim_sum, test/test_nn.py::TestNN::test_SoftMarginLoss_no_batch_dim_sum_cuda_double, test/test_nn.py::TestNN::test_SoftMarginLoss_no_batch_dim_sum_cuda_float, test/test_nn.py::TestNN::test_SoftMarginLoss_no_batch_dim_sum_cuda_half, test/test_nn.py::TestNN::test_SoftMarginLoss_no_reduce, test/test_nn.py::TestNN::test_SoftMarginLoss_no_reduce_cuda, test/test_nn.py::TestNN::test_Softplus_no_batch_dim, test/test_nn.py::TestNN::test_Softplus_no_batch_dim_cuda, test/test_nn.py::TestNN::test_Softshrink_no_batch_dim, test/test_nn.py::TestNN::test_Softshrink_no_batch_dim_cuda, test/test_nn.py::TestNN::test_Softsign_no_batch_dim, test/test_nn.py::TestNN::test_Softsign_no_batch_dim_cuda, test/test_nn.py::TestNN::test_Tanh_no_batch_dim, test/test_nn.py::TestNN::test_Tanh_no_batch_dim_cuda, test/test_nn.py::TestNN::test_Tanhshrink_no_batch_dim, test/test_nn.py::TestNN::test_Tanhshrink_no_batch_dim_cuda, test/test_nn.py::TestNN::test_Threshold_no_batch_dim, test/test_nn.py::TestNN::test_Threshold_no_batch_dim_cuda, test/test_nn.py::TestNN::test_TransformerDecoderLayer_gelu_activation, test/test_nn.py::TestNN::test_TransformerDecoderLayer_gelu_activation_cuda, test/test_nn.py::TestNN::test_TransformerDecoderLayer_relu_activation, test/test_nn.py::TestNN::test_TransformerDecoderLayer_relu_activation_cuda, test/test_nn.py::TestNN::test_TransformerEncoderLayer_gelu_activation, test/test_nn.py::TestNN::test_TransformerEncoderLayer_gelu_activation_cuda, test/test_nn.py::TestNN::test_TransformerEncoderLayer_relu_activation, test/test_nn.py::TestNN::test_TransformerEncoderLayer_relu_activation_cuda, test/test_nn.py::TestNN::test_Transformer_cell, test/test_nn.py::TestNN::test_Transformer_multilayer_coder, test/test_nn.py::TestNN::test_Transformer_multilayer_coder_cuda, test/test_nn.py::TestNN::test_TripletMarginLoss_no_batch_dim_mean, test/test_nn.py::TestNN::test_TripletMarginLoss_no_batch_dim_mean_cuda_double, test/test_nn.py::TestNN::test_TripletMarginLoss_no_batch_dim_mean_cuda_float, test/test_nn.py::TestNN::test_TripletMarginLoss_no_batch_dim_mean_cuda_half, test/test_nn.py::TestNN::test_TripletMarginLoss_no_batch_dim_none, test/test_nn.py::TestNN::test_TripletMarginLoss_no_batch_dim_none_cuda_double, test/test_nn.py::TestNN::test_TripletMarginLoss_no_batch_dim_none_cuda_float, test/test_nn.py::TestNN::test_TripletMarginLoss_no_batch_dim_none_cuda_half, test/test_nn.py::TestNN::test_TripletMarginLoss_no_batch_dim_sum, test/test_nn.py::TestNN::test_TripletMarginLoss_no_batch_dim_sum_cuda_double, test/test_nn.py::TestNN::test_TripletMarginLoss_no_batch_dim_sum_cuda_float, test/test_nn.py::TestNN::test_TripletMarginLoss_no_batch_dim_sum_cuda_half, test/test_nn.py::TestNN::test_Unflatten_no_batch_dim, test/test_nn.py::TestNN::test_Unflatten_no_batch_dim_cuda, test/test_nn.py::TestNN::test_Unfold, test/test_nn.py::TestNN::test_Unfold_cuda, test/test_nn.py::TestNN::test_Unfold_int_input, test/test_nn.py::TestNN::test_Unfold_int_input_cuda, test/test_nn.py::TestNN::test_adaptive_log_softmax, test/test_nn.py::TestNN::test_add_module, test/test_nn.py::TestNN::test_add_module_raises_error_if_attr_exists, test/test_nn.py::TestNN::test_affine_grid, test/test_nn.py::TestNN::test_affine_grid_3d, test/test_nn.py::TestNN::test_affine_grid_backward_cl_cf_consistency_device_cpu_nd_2, test/test_nn.py::TestNN::test_affine_grid_backward_cl_cf_consistency_device_cpu_nd_3, test/test_nn.py::TestNN::test_affine_grid_error_checking, test/test_nn.py::TestNN::test_assignment, test/test_nn.py::TestNN::test_batch_norm_update_stats, test/test_nn.py::TestNN::test_batchnorm_2D_inference_NCHW_vs_cpu_float32, test/test_nn.py::TestNN::test_batchnorm_2D_inference_NCHW_vs_cpu_mixed_bfloat16, test/test_nn.py::TestNN::test_batchnorm_2D_inference_NCHW_vs_cpu_mixed_float16, test/test_nn.py::TestNN::test_batchnorm_2D_inference_NCHW_vs_native_float32, test/test_nn.py::TestNN::test_batchnorm_2D_inference_NCHW_vs_native_mixed_bfloat16, test/test_nn.py::TestNN::test_batchnorm_2D_inference_NCHW_vs_native_mixed_float16, test/test_nn.py::TestNN::test_batchnorm_2D_train_NCHW_vs_cpu_float32, test/test_nn.py::TestNN::test_batchnorm_2D_train_NCHW_vs_cpu_mixed_bfloat16, test/test_nn.py::TestNN::test_batchnorm_2D_train_NCHW_vs_cpu_mixed_float16, test/test_nn.py::TestNN::test_batchnorm_2D_train_NCHW_vs_native_float32, test/test_nn.py::TestNN::test_batchnorm_2D_train_NCHW_vs_native_mixed_bfloat16, test/test_nn.py::TestNN::test_batchnorm_2D_train_NCHW_vs_native_mixed_float16, test/test_nn.py::TestNN::test_batchnorm_3D_inference_NCHW_vs_cpu_float32, test/test_nn.py::TestNN::test_batchnorm_3D_inference_NCHW_vs_cpu_mixed_bfloat16, test/test_nn.py::TestNN::test_batchnorm_3D_inference_NCHW_vs_cpu_mixed_float16, test/test_nn.py::TestNN::test_batchnorm_3D_inference_NCHW_vs_native_float32, test/test_nn.py::TestNN::test_batchnorm_3D_inference_NCHW_vs_native_mixed_bfloat16, test/test_nn.py::TestNN::test_batchnorm_3D_inference_NCHW_vs_native_mixed_float16, test/test_nn.py::TestNN::test_batchnorm_3D_train_NCHW_vs_cpu_float32, test/test_nn.py::TestNN::test_batchnorm_3D_train_NCHW_vs_cpu_mixed_bfloat16, test/test_nn.py::TestNN::test_batchnorm_3D_train_NCHW_vs_cpu_mixed_float16, test/test_nn.py::TestNN::test_batchnorm_3D_train_NCHW_vs_native_float32, test/test_nn.py::TestNN::test_batchnorm_3D_train_NCHW_vs_native_mixed_bfloat16, test/test_nn.py::TestNN::test_batchnorm_3D_train_NCHW_vs_native_mixed_float16, test/test_nn.py::TestNN::test_batchnorm_buffer_update_when_stats_are_not_tracked, test/test_nn.py::TestNN::test_batchnorm_cudnn_half, test/test_nn.py::TestNN::test_batchnorm_cudnn_nhwc, test/test_nn.py::TestNN::test_batchnorm_half_overflow, test/test_nn.py::TestNN::test_batchnorm_load_state_dict, test/test_nn.py::TestNN::test_batchnorm_nhwc_cpu, test/test_nn.py::TestNN::test_batchnorm_nhwc_cuda, test/test_nn.py::TestNN::test_batchnorm_non_contig_cpu_BatchNorm2d, test/test_nn.py::TestNN::test_batchnorm_non_contig_cpu_SyncBatchNorm, test/test_nn.py::TestNN::test_batchnorm_nonaffine_cuda_half_input, test/test_nn.py::TestNN::test_batchnorm_raises_error_if_bias_is_not_same_size_as_input, test/test_nn.py::TestNN::test_batchnorm_raises_error_if_less_than_one_value_per_channel, test/test_nn.py::TestNN::test_batchnorm_raises_error_if_running_mean_is_not_same_size_as_input, test/test_nn.py::TestNN::test_batchnorm_raises_error_if_running_var_is_not_same_size_as_input, test/test_nn.py::TestNN::test_batchnorm_raises_error_if_running_var_or_running_mean_have_forward_grad, test/test_nn.py::TestNN::test_batchnorm_raises_error_if_weight_is_not_same_size_as_input, test/test_nn.py::TestNN::test_bce_loss_always_nonnegative, test/test_nn.py::TestNN::test_bce_loss_broadcasts_weights, test/test_nn.py::TestNN::test_bce_loss_input_range, test/test_nn.py::TestNN::test_bce_loss_size_mismatch, test/test_nn.py::TestNN::test_bce_with_logits_broadcasts_pos_weights, test/test_nn.py::TestNN::test_bce_with_logits_broadcasts_weights, test/test_nn.py::TestNN::test_bce_with_logits_gives_same_result_as_sigmoid_and_bce_loss, test/test_nn.py::TestNN::test_bce_with_logits_gives_same_result_as_sigmoid_and_bce_loss_large_tensors_with_grad, test/test_nn.py::TestNN::test_bce_with_logits_has_correct_forward_grad, test/test_nn.py::TestNN::test_bce_with_logits_has_correct_grad_at_zero, test/test_nn.py::TestNN::test_bce_with_logits_ones_in_pos_weights_are_the_same_as_none, test/test_nn.py::TestNN::test_bce_with_logits_raises_if_target_and_input_are_different_size, test/test_nn.py::TestNN::test_bce_with_logits_stability, test/test_nn.py::TestNN::test_bce_with_logits_with_pos_weight_has_correct_grad_at_zero, test/test_nn.py::TestNN::test_bilinear, test/test_nn.py::TestNN::test_bilinear_broadcasting, test/test_nn.py::TestNN::test_bilinear_no_bias, test/test_nn.py::TestNN::test_bilinear_non_contiguous, test/test_nn.py::TestNN::test_bilinear_value_error, test/test_nn.py::TestNN::test_broadcast_double_backwards_gpu, test/test_nn.py::TestNN::test_broadcast_no_grad, test/test_nn.py::TestNN::test_broadcast_not_requiring_grad, test/test_nn.py::TestNN::test_buffer_bad_module_subclass, test/test_nn.py::TestNN::test_buffer_not_persistent, test/test_nn.py::TestNN::test_buffer_not_persistent_assign, test/test_nn.py::TestNN::test_buffer_not_persistent_del, test/test_nn.py::TestNN::test_buffer_not_persistent_load, test/test_nn.py::TestNN::test_buffer_not_persistent_overwrite, test/test_nn.py::TestNN::test_buffers_and_named_buffers, test/test_nn.py::TestNN::test_call_supports_python_dict_output, test/test_nn.py::TestNN::test_channel_shuffle_input_checks, test/test_nn.py::TestNN::test_channel_shuffle_return_alias_of_self, test/test_nn.py::TestNN::test_children, test/test_nn.py::TestNN::test_container_copy, test/test_nn.py::TestNN::test_convert_sync_batchnorm, test/test_nn.py::TestNN::test_cosine_embedding_loss_error_on_diff_shapes, test/test_nn.py::TestNN::test_cosine_embedding_loss_error_on_nonexpandable_shapes, test/test_nn.py::TestNN::test_cosine_embedding_loss_invalid_shape, test/test_nn.py::TestNN::test_cosine_embedding_loss_margin_no_reduce, test/test_nn.py::TestNN::test_cosine_embedding_loss_no_reduce, test/test_nn.py::TestNN::test_cosine_embedding_loss_with_diff_type, test/test_nn.py::TestNN::test_cosine_similarity, test/test_nn.py::TestNN::test_cross_entropy_loss, test/test_nn.py::TestNN::test_cross_entropy_loss_precision, test/test_nn.py::TestNN::test_cross_entropy_loss_zero_div, test/test_nn.py::TestNN::test_cudnn_forward_exception, test/test_nn.py::TestNN::test_cudnn_rnn_dropout_states_device, test/test_nn.py::TestNN::test_cudnn_weight_format, test/test_nn.py::TestNN::test_cudnn_weight_tying, test/test_nn.py::TestNN::test_dir, test/test_nn.py::TestNN::test_dir_digit, test/test_nn.py::TestNN::test_elu_inplace_gradgrad, test/test_nn.py::TestNN::test_elu_inplace_on_view, test/test_nn.py::TestNN::test_error_RNN_seq_len_zero, test/test_nn.py::TestNN::test_extra_state, test/test_nn.py::TestNN::test_extra_state_missing_get_extra_state, test/test_nn.py::TestNN::test_extra_state_missing_set_extra_state, test/test_nn.py::TestNN::test_extra_state_non_dict, test/test_nn.py::TestNN::test_fb_fc_packed, test/test_nn.py::TestNN::test_flatten, test/test_nn.py::TestNN::test_fold_invalid_arg, test/test_nn.py::TestNN::test_fractional_max_pool2d_invalid_output_ratio, test/test_nn.py::TestNN::test_gaussian_nll_loss_args, test/test_nn.py::TestNN::test_gaussian_nll_loss_broadcasting, test/test_nn.py::TestNN::test_gaussian_nll_loss_scalar_var, test/test_nn.py::TestNN::test_get_buffer, test/test_nn.py::TestNN::test_get_buffer_from_submodules, test/test_nn.py::TestNN::test_getattr_with_property, test/test_nn.py::TestNN::test_grid_sample, test/test_nn.py::TestNN::test_grid_sample_3d, test/test_nn.py::TestNN::test_grid_sample_error_checking, test/test_nn.py::TestNN::test_grid_sample_nearest_neighbor_rounding_mode_consistency, test/test_nn.py::TestNN::test_hardtanh_backward, test/test_nn.py::TestNN::test_hardtanh_inplace_gradgrad, test/test_nn.py::TestNN::test_huber_loss_invalid_delta, test/test_nn.py::TestNN::test_inplace_thnn, test/test_nn.py::TestNN::test_interpolate, test/test_nn.py::TestNN::test_interpolate_bicubic_2d, test/test_nn.py::TestNN::test_interpolate_bicubic_2d_cuda, test/test_nn.py::TestNN::test_interpolate_bicubic_2d_zero_dim, test/test_nn.py::TestNN::test_interpolate_bicubic_2d_zero_dim_cuda, test/test_nn.py::TestNN::test_interpolate_bicubic_scale_2d, test/test_nn.py::TestNN::test_interpolate_bicubic_scale_2d_cuda, test/test_nn.py::TestNN::test_interpolate_bicubic_scale_tuple_shared_2d, test/test_nn.py::TestNN::test_interpolate_bicubic_scale_tuple_shared_2d_cuda, test/test_nn.py::TestNN::test_interpolate_bicubic_scale_tuple_skewed_2d, test/test_nn.py::TestNN::test_interpolate_bicubic_scale_tuple_skewed_2d_align_corners, test/test_nn.py::TestNN::test_interpolate_bicubic_scale_tuple_skewed_2d_align_corners_cuda, test/test_nn.py::TestNN::test_interpolate_bicubic_scale_tuple_skewed_2d_cuda, test/test_nn.py::TestNN::test_interpolate_bicubic_tuple_2d, test/test_nn.py::TestNN::test_interpolate_bicubic_tuple_2d_align_corners, test/test_nn.py::TestNN::test_interpolate_bicubic_tuple_2d_align_corners_cuda, test/test_nn.py::TestNN::test_interpolate_bicubic_tuple_2d_cuda, test/test_nn.py::TestNN::test_interpolate_bilinear_2d, test/test_nn.py::TestNN::test_interpolate_bilinear_2d_cuda, test/test_nn.py::TestNN::test_interpolate_bilinear_2d_zero_dim, test/test_nn.py::TestNN::test_interpolate_bilinear_2d_zero_dim_cuda, test/test_nn.py::TestNN::test_interpolate_bilinear_scale_2d, test/test_nn.py::TestNN::test_interpolate_bilinear_scale_2d_cuda, test/test_nn.py::TestNN::test_interpolate_bilinear_scale_tuple_shared_2d, test/test_nn.py::TestNN::test_interpolate_bilinear_scale_tuple_shared_2d_cuda, test/test_nn.py::TestNN::test_interpolate_bilinear_scale_tuple_skewed_2d, test/test_nn.py::TestNN::test_interpolate_bilinear_scale_tuple_skewed_2d_align_corners, test/test_nn.py::TestNN::test_interpolate_bilinear_scale_tuple_skewed_2d_align_corners_cuda, test/test_nn.py::TestNN::test_interpolate_bilinear_scale_tuple_skewed_2d_cuda, test/test_nn.py::TestNN::test_interpolate_bilinear_tuple_2d, test/test_nn.py::TestNN::test_interpolate_bilinear_tuple_2d_align_corners, test/test_nn.py::TestNN::test_interpolate_bilinear_tuple_2d_align_corners_cuda, test/test_nn.py::TestNN::test_interpolate_bilinear_tuple_2d_cuda, test/test_nn.py::TestNN::test_interpolate_buffer_overflow, test/test_nn.py::TestNN::test_interpolate_illegal_memory_access, test/test_nn.py::TestNN::test_interpolate_linear_1d, test/test_nn.py::TestNN::test_interpolate_linear_1d_align_corners, test/test_nn.py::TestNN::test_interpolate_linear_1d_align_corners_cuda, test/test_nn.py::TestNN::test_interpolate_linear_1d_cuda, test/test_nn.py::TestNN::test_interpolate_linear_1d_zero_dim, test/test_nn.py::TestNN::test_interpolate_linear_1d_zero_dim_cuda, test/test_nn.py::TestNN::test_interpolate_linear_scale_1d, test/test_nn.py::TestNN::test_interpolate_linear_scale_1d_align_corners, test/test_nn.py::TestNN::test_interpolate_linear_scale_1d_align_corners_cuda, test/test_nn.py::TestNN::test_interpolate_linear_scale_1d_cuda, test/test_nn.py::TestNN::test_interpolate_linear_tuple_1d, test/test_nn.py::TestNN::test_interpolate_linear_tuple_1d_cuda, test/test_nn.py::TestNN::test_interpolate_nearest_1d, test/test_nn.py::TestNN::test_interpolate_nearest_1d_cuda, test/test_nn.py::TestNN::test_interpolate_nearest_1d_zero_dim, test/test_nn.py::TestNN::test_interpolate_nearest_1d_zero_dim_cuda, test/test_nn.py::TestNN::test_interpolate_nearest_2d, test/test_nn.py::TestNN::test_interpolate_nearest_2d_cuda, test/test_nn.py::TestNN::test_interpolate_nearest_2d_launch_configs, test/test_nn.py::TestNN::test_interpolate_nearest_2d_launch_configs_cuda, test/test_nn.py::TestNN::test_interpolate_nearest_2d_zero_dim, test/test_nn.py::TestNN::test_interpolate_nearest_2d_zero_dim_cuda, test/test_nn.py::TestNN::test_interpolate_nearest_3d, test/test_nn.py::TestNN::test_interpolate_nearest_3d_cuda, test/test_nn.py::TestNN::test_interpolate_nearest_3d_zero_dim, test/test_nn.py::TestNN::test_interpolate_nearest_3d_zero_dim_cuda, test/test_nn.py::TestNN::test_interpolate_nearest_scale_1d, test/test_nn.py::TestNN::test_interpolate_nearest_scale_1d_cuda, test/test_nn.py::TestNN::test_interpolate_nearest_scale_2d, test/test_nn.py::TestNN::test_interpolate_nearest_scale_2d_cuda, test/test_nn.py::TestNN::test_interpolate_nearest_scale_3d, test/test_nn.py::TestNN::test_interpolate_nearest_scale_3d_cuda, test/test_nn.py::TestNN::test_interpolate_nearest_tuple_1d, test/test_nn.py::TestNN::test_interpolate_nearest_tuple_1d_cuda, test/test_nn.py::TestNN::test_interpolate_nearest_tuple_2d, test/test_nn.py::TestNN::test_interpolate_nearest_tuple_2d_cuda, test/test_nn.py::TestNN::test_interpolate_nearest_tuple_3d, test/test_nn.py::TestNN::test_interpolate_nearest_tuple_3d_cuda, test/test_nn.py::TestNN::test_interpolate_trilinear_3d, test/test_nn.py::TestNN::test_interpolate_trilinear_3d_cuda, test/test_nn.py::TestNN::test_interpolate_trilinear_3d_zero_dim, test/test_nn.py::TestNN::test_interpolate_trilinear_3d_zero_dim_cuda, test/test_nn.py::TestNN::test_interpolate_trilinear_scale_3d, test/test_nn.py::TestNN::test_interpolate_trilinear_scale_3d_align_corners, test/test_nn.py::TestNN::test_interpolate_trilinear_scale_3d_align_corners_cuda, test/test_nn.py::TestNN::test_interpolate_trilinear_scale_3d_cuda, test/test_nn.py::TestNN::test_interpolate_trilinear_tuple_3d, test/test_nn.py::TestNN::test_interpolate_trilinear_tuple_3d_align_corners, test/test_nn.py::TestNN::test_interpolate_trilinear_tuple_3d_align_corners_cuda, test/test_nn.py::TestNN::test_interpolate_trilinear_tuple_3d_cuda, test/test_nn.py::TestNN::test_interpolate_undefined_behavior_casting, test/test_nn.py::TestNN::test_kl_div_log_softmax_target, test/test_nn.py::TestNN::test_kl_div_with_diff_type, test/test_nn.py::TestNN::test_kl_div_with_diff_type_log_target, test/test_nn.py::TestNN::test_l1_loss_correct, test/test_nn.py::TestNN::test_layer_norm_backwards_eps, test/test_nn.py::TestNN::test_layer_norm_eps, test/test_nn.py::TestNN::test_layer_norm_grads_with_create_graph_flag, test/test_nn.py::TestNN::test_layer_norm_large_tensor, test/test_nn.py::TestNN::test_linear_autograd_device_cpu_bias_weightCOO, test/test_nn.py::TestNN::test_linear_autograd_device_cpu_bias_weightCSC, test/test_nn.py::TestNN::test_linear_autograd_device_cpu_bias_weightCSR, test/test_nn.py::TestNN::test_linear_autograd_device_cpu_bias_weightStrided, test/test_nn.py::TestNN::test_linear_autograd_device_cpu_nobias_weightCOO, test/test_nn.py::TestNN::test_linear_autograd_device_cpu_nobias_weightCSC, test/test_nn.py::TestNN::test_linear_autograd_device_cpu_nobias_weightCSR, test/test_nn.py::TestNN::test_linear_autograd_device_cpu_nobias_weightStrided, test/test_nn.py::TestNN::test_linear_broadcasting, test/test_nn.py::TestNN::test_linear_raise_on_scalar_input, test/test_nn.py::TestNN::test_log_softmax_dim0, test/test_nn.py::TestNN::test_log_softmax_dim0_cuda, test/test_nn.py::TestNN::test_log_softmax_dim3, test/test_nn.py::TestNN::test_log_softmax_dim3_cuda, test/test_nn.py::TestNN::test_log_softmax_lastdim, test/test_nn.py::TestNN::test_log_softmax_lastdim_cuda, test/test_nn.py::TestNN::test_log_softmax_scalar, test/test_nn.py::TestNN::test_log_softmax_scalar_cuda, test/test_nn.py::TestNN::test_log_softmax_spatial, test/test_nn.py::TestNN::test_log_softmax_spatial_cuda, test/test_nn.py::TestNN::test_log_softmax_spatial_special, test/test_nn.py::TestNN::test_log_softmax_spatial_special_cuda, test/test_nn.py::TestNN::test_loss_equal_input_target_shape, test/test_nn.py::TestNN::test_margin_ranking_loss_margin_no_reduce, test/test_nn.py::TestNN::test_margin_ranking_loss_no_reduce, test/test_nn.py::TestNN::test_max_pool1d_invalid_output_size, test/test_nn.py::TestNN::test_module_apply_inplace_op, test/test_nn.py::TestNN::test_module_backcompat, test/test_nn.py::TestNN::test_module_super_init, test/test_nn.py::TestNN::test_module_to_argparse, test/test_nn.py::TestNN::test_modules, test/test_nn.py::TestNN::test_mse_loss_size_warning, test/test_nn.py::TestNN::test_multimarginloss_1d_input_0d_target_no_reduce, test/test_nn.py::TestNN::test_multimarginloss_1d_input_0d_target_no_reduce_cuda, test/test_nn.py::TestNN::test_named_children, test/test_nn.py::TestNN::test_named_modules, test/test_nn.py::TestNN::test_named_parameters_remove_duplicate, test/test_nn.py::TestNN::test_native_channel_shuffle_return_alias_of_self, test/test_nn.py::TestNN::test_nested_tensor_from_mask, test/test_nn.py::TestNN::test_nested_tensor_from_mask_error, test/test_nn.py::TestNN::test_no_grad, test/test_nn.py::TestNN::test_non_leaf_parameters, test/test_nn.py::TestNN::test_normalize, test/test_nn.py::TestNN::test_overwrite_module_params_on_conversion, test/test_nn.py::TestNN::test_pack_sequence_batch_sizes_throw, test/test_nn.py::TestNN::test_pad_scalar_error, test/test_nn.py::TestNN::test_padding_list, test/test_nn.py::TestNN::test_pairwise_distance, test/test_nn.py::TestNN::test_parameter_assignment, test/test_nn.py::TestNN::test_parameterlistdict_pickle, test/test_nn.py::TestNN::test_parameterlistdict_setting_attributes, test/test_nn.py::TestNN::test_parameters_and_named_parameters, test/test_nn.py::TestNN::test_parameters_to_vector, test/test_nn.py::TestNN::test_parse_to, test/test_nn.py::TestNN::test_partial_flat_weights, test/test_nn.py::TestNN::test_pdist, test/test_nn.py::TestNN::test_pdist_cpu_gradgrad_unimplemented, test/test_nn.py::TestNN::test_pdist_cuda_gradgrad_unimplemented, test/test_nn.py::TestNN::test_pdist_empty_col, test/test_nn.py::TestNN::test_pdist_empty_row, test/test_nn.py::TestNN::test_pdist_large, test/test_nn.py::TestNN::test_pdist_zeros, test/test_nn.py::TestNN::test_pickle_module_no_weights_only_warning, test/test_nn.py::TestNN::test_pixel_shuffle_nhwc_cpu, test/test_nn.py::TestNN::test_pixel_shuffle_unshuffle, test/test_nn.py::TestNN::test_pointwise_loss_broadcast, test/test_nn.py::TestNN::test_pointwise_loss_target_grad_none_reduction, test/test_nn.py::TestNN::test_projections_errors_on_gru_and_rnn, test/test_nn.py::TestNN::test_projections_lstm_args_check, test/test_nn.py::TestNN::test_projections_lstm_check_device, test/test_nn.py::TestNN::test_projections_lstm_initial_hidden_state, test/test_nn.py::TestNN::test_register_buffer_allows_overwriting_with_same_name, test/test_nn.py::TestNN::test_register_buffer_allows_tensor_like_object, test/test_nn.py::TestNN::test_register_buffer_raises_error_if_attr_exists, test/test_nn.py::TestNN::test_register_buffer_raises_error_if_name_is_not_string, test/test_nn.py::TestNN::test_register_buffer_raises_error_if_not_tensor, test/test_nn.py::TestNN::test_register_parameter_allows_overwriting_with_same_name, test/test_nn.py::TestNN::test_register_parameter_raises_error_if_attr_exists, test/test_nn.py::TestNN::test_register_parameter_raises_error_if_name_is_not_string, test/test_nn.py::TestNN::test_relu_inplace_on_view, test/test_nn.py::TestNN::test_repr, test/test_nn.py::TestNN::test_requires_grad_, test/test_nn.py::TestNN::test_rnn_args_check, test/test_nn.py::TestNN::test_rnn_check_device, test/test_nn.py::TestNN::test_rnn_initial_hidden_state, test/test_nn.py::TestNN::test_rnn_weight_norm, test/test_nn.py::TestNN::test_set_submodule, test/test_nn.py::TestNN::test_share_memory, test/test_nn.py::TestNN::test_smoothl1loss_intergral_target, test/test_nn.py::TestNN::test_smoothl1loss_negative_beta_not_supported, test/test_nn.py::TestNN::test_softmax_functional_dim0, test/test_nn.py::TestNN::test_softmax_functional_dim0_cuda, test/test_nn.py::TestNN::test_softmax_functional_dim3, test/test_nn.py::TestNN::test_softmax_functional_dim3_cuda, test/test_nn.py::TestNN::test_softmax_functional_scalar, test/test_nn.py::TestNN::test_softmax_functional_scalar_cuda, test/test_nn.py::TestNN::test_softmax_lastdim, test/test_nn.py::TestNN::test_softmax_lastdim_cuda, test/test_nn.py::TestNN::test_softmax_lastdim_dtype, test/test_nn.py::TestNN::test_softmax_lastdim_dtype_cuda, test/test_nn.py::TestNN::test_softmax_spatial, test/test_nn.py::TestNN::test_softmax_spatial_cuda, test/test_nn.py::TestNN::test_softmax_spatial_dtype, test/test_nn.py::TestNN::test_softmax_spatial_dtype_cuda, test/test_nn.py::TestNN::test_softmax_spatial_special, test/test_nn.py::TestNN::test_softmax_spatial_special_cuda, test/test_nn.py::TestNN::test_softmin, test/test_nn.py::TestNN::test_spectral_norm, test/test_nn.py::TestNN::test_spectral_norm_dim, test/test_nn.py::TestNN::test_spectral_norm_forward, test/test_nn.py::TestNN::test_spectral_norm_load_state_dict, test/test_nn.py::TestNN::test_spectral_norm_pickle, test/test_nn.py::TestNN::test_state_dict, test/test_nn.py::TestNN::test_swap_module_params_poisons_acc_grad, test/test_nn.py::TestNN::test_sync_batchnorm_accuracy_cuda, test/test_nn.py::TestNN::test_sync_batchnorm_backward_elemt, test/test_nn.py::TestNN::test_threshold_bfloat16_half, test/test_nn.py::TestNN::test_threshold_int, test/test_nn.py::TestNN::test_to, test/test_nn.py::TestNN::test_train_errors_for_invalid_mode, test/test_nn.py::TestNN::test_transformer_args_check, test/test_nn.py::TestNN::test_transformer_layer_args_check, test/test_nn.py::TestNN::test_transformerdecoder, test/test_nn.py::TestNN::test_transformerdecoderlayer, test/test_nn.py::TestNN::test_transformerdecoderlayer_gelu, test/test_nn.py::TestNN::test_triplet_margin_loss, test/test_nn.py::TestNN::test_triplet_margin_loss_no_reduce, test/test_nn.py::TestNN::test_triplet_margin_loss_swap, test/test_nn.py::TestNN::test_triplet_margin_loss_swap_no_reduce, test/test_nn.py::TestNN::test_type, test/test_nn.py::TestNN::test_unflatten, test/test_nn.py::TestNN::test_unflatten_invalid_arg, test/test_nn.py::TestNN::test_unfold_invalid_arg, test/test_nn.py::TestNN::test_upsamplingBilinear2d_spatial_invariance, test/test_nn.py::TestNN::test_upsamplingLinear1d, test/test_nn.py::TestNN::test_upsamplingLinear1d_spatial_invariance, test/test_nn.py::TestNN::test_upsamplingTrilinear3d_spatial_invariance, test/test_nn.py::TestNN::test_upsampling_bfloat16, test/test_nn.py::TestNN::test_upsampling_not_recompute_scale_factor, test/test_nn.py::TestNN::test_upsampling_small_scale, test/test_nn.py::TestNN::test_vector_to_parameters, test/test_nn.py::TestNN::test_weight_norm, test/test_nn.py::TestNN::test_weight_norm_pickle, test/test_nn.py::TestNN::test_weighted_huber_loss, test/test_nn.py::TestNN::test_weighted_l1_loss_with_weights, test/test_nn.py::TestNN::test_weighted_mse_loss, test/test_nn.py::TestNN::test_zero_grad, test/test_nn.py::TestFusionEval::test_fuse_module_eval_numerics, test/test_nn.py::TestConstantPadNd::test_constant_pad_nd, test/test_nn.py::TestConstantPadNd::test_preserves_memory_format, test/test_nn.py::TestAddRelu::test_add_relu, test/test_nn.py::TestAddRelu::test_add_relu_broadcasting, test/test_nn.py::TestFunctionalPickle::test_pickle_softsign, test/test_nn.py::TestFusionUtils::test_fuse_conv_bn_requires_grad, test/test_nn.py::TestFusionUtils::test_fuse_linear_bn_requires_grad, test/test_nn.py::TestUtils::test_consume_prefix_in_state_dict_if_present, test/test_nn.py::TestNNDeviceTypeCPU::test_BatchNorm_empty_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_Bilinear_empty_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_CTCLoss_cudnn_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_CTCLoss_empty_target_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_CTCLoss_no_batch_dim_reduction_mean_use_module_form_False_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_CTCLoss_no_batch_dim_reduction_mean_use_module_form_True_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_CTCLoss_no_batch_dim_reduction_none_use_module_form_False_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_CTCLoss_no_batch_dim_reduction_none_use_module_form_True_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_CTCLoss_no_batch_dim_reduction_sum_use_module_form_False_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_CTCLoss_no_batch_dim_reduction_sum_use_module_form_True_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_GRU_grad_and_gradgrad_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_GroupNorm_empty_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_GroupNorm_general_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_GroupNorm_memory_format_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_GroupNorm_numeric_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_GroupNorm_raises_error_if_one_value_per_group_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_InstanceNorm1d_general_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_InstanceNorm2d_general_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_InstanceNorm3d_general_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_LSTM_differentiable_backward_using_oneDNN_cpu_bfloat16, test/test_nn.py::TestNNDeviceTypeCPU::test_LSTM_differentiable_backward_using_oneDNN_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_LSTM_grad_and_gradgrad_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_LayerNorm_general_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_LayerNorm_numeric_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_LocalResponseNorm_empty_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_MarginLoss_empty_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_MarginLoss_empty_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_MarginLoss_race_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_MarginLoss_race_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_MarginLoss_warnings_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_ReflectionPad2d_large_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_ReflectionPad2d_large_deterministic_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_ReflectionPad3d_large_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_ReflectionPad_empty_cpu_complex64, test/test_nn.py::TestNNDeviceTypeCPU::test_ReflectionPad_empty_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_ReflectionPad_fails_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_ReplicationPad1d_large_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_ReplicationPad2d_large_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_ReplicationPad3d_large_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_ReplicationPad_empty_cpu_complex128, test/test_nn.py::TestNNDeviceTypeCPU::test_ReplicationPad_empty_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_TransformerDecoderLayer_empty_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_TransformerDecoder_empty_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_TransformerEncoderLayer_empty_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_TransformerEncoder_empty_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_Transformer_empty_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_Unfold_empty_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_activations_bfloat16_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_activations_bfloat16_half_cpu_cpu_bfloat16, test/test_nn.py::TestNNDeviceTypeCPU::test_activations_bfloat16_half_cpu_cpu_float16, test/test_nn.py::TestNNDeviceTypeCPU::test_adaptiveavg_pool1d_shmem_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_affine_2d_rotate0_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_affine_2d_rotate45_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_affine_2d_rotate90_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_affine_2d_rotateRandom_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_affine_3d_rotateRandom_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_avg_pool_large_tensor2_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_avg_pool_large_tensor_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_batchnorm_affine_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_batchnorm_affine_mixed_cpu_bfloat16, test/test_nn.py::TestNNDeviceTypeCPU::test_batchnorm_affine_mixed_cpu_float16, test/test_nn.py::TestNNDeviceTypeCPU::test_batchnorm_eval_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_batchnorm_eval_mixed_cpu_bfloat16, test/test_nn.py::TestNNDeviceTypeCPU::test_batchnorm_eval_mixed_cpu_float16, test/test_nn.py::TestNNDeviceTypeCPU::test_batchnorm_grad_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_batchnorm_large_batch_cpu_float16, test/test_nn.py::TestNNDeviceTypeCPU::test_batchnorm_large_batch_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_batchnorm_simple_average_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_batchnorm_simple_average_mixed_cpu_bfloat16, test/test_nn.py::TestNNDeviceTypeCPU::test_batchnorm_simple_average_mixed_cpu_float16, test/test_nn.py::TestNNDeviceTypeCPU::test_batchnorm_update_stats_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_channel_shuffle_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_clip_grad_norm_error_if_nonfinite_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_clip_grad_norm_foreach_False_norm_type_0_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_clip_grad_norm_foreach_False_norm_type_1_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_clip_grad_norm_foreach_False_norm_type_2_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_clip_grad_norm_foreach_False_norm_type_4_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_clip_grad_norm_foreach_False_norm_type_inf_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_clip_grad_norm_foreach_True_norm_type_0_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_clip_grad_norm_foreach_True_norm_type_1_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_clip_grad_norm_foreach_True_norm_type_2_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_clip_grad_norm_foreach_True_norm_type_4_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_clip_grad_norm_foreach_True_norm_type_inf_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_clip_grad_norm_multi_device_foreach_False_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_clip_grad_norm_multi_device_foreach_True_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_clip_grad_value_foreach_False_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_clip_grad_value_foreach_True_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_conv_empty_input_cpu_bfloat16, test/test_nn.py::TestNNDeviceTypeCPU::test_conv_empty_input_cpu_complex128, test/test_nn.py::TestNNDeviceTypeCPU::test_conv_empty_input_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_conv_empty_input_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_64bit_reduction_mean_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_64bit_reduction_none_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_64bit_reduction_sum_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_label_smoothing_consistent_index_target_and_probs_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_label_smoothing_errors_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_label_smoothing_weight_ignore_indices_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_label_smoothing_with_probs_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_large_tensor_reduction_mean_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_large_tensor_reduction_none_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_large_tensor_reduction_sum_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_loss_2d_out_of_bounds_class_index_cpu_float16, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_loss_2d_out_of_bounds_class_index_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_loss_index_target_unit_weights_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_loss_one_hot_target_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_loss_prob_target_all_reductions_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_loss_prob_target_no_batch_dim_reduction_mean_weighted_False_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_loss_prob_target_no_batch_dim_reduction_mean_weighted_True_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_loss_prob_target_no_batch_dim_reduction_none_weighted_False_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_loss_prob_target_no_batch_dim_reduction_none_weighted_True_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_loss_prob_target_no_batch_dim_reduction_sum_weighted_False_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_loss_prob_target_no_batch_dim_reduction_sum_weighted_True_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_loss_prob_target_unit_weights_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_ctc_loss_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_ctc_loss_cudnn_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_ctc_loss_cudnn_tensor_cpu_length_cuda_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_ctc_loss_cudnn_tensor_cuda_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_ctc_loss_error_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_device_mask_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_elu_inplace_overlap_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_elu_inplace_with_neg_alpha_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_fold_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_glu_bfloat16_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_grid_sample_bfloat16_precision_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_grid_sample_half_precision_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_grid_sample_large_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_grid_sample_large_index_2d_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_grid_sample_large_index_2d_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_grid_sample_large_index_3d_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_grid_sample_large_index_3d_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_grid_sample_nan_inf_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_grid_sample_nan_inf_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_groupnorm_nhwc_cpu_bfloat16, test/test_nn.py::TestNNDeviceTypeCPU::test_groupnorm_nhwc_cpu_float16, test/test_nn.py::TestNNDeviceTypeCPU::test_groupnorm_nhwc_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_groupnorm_nhwc_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_gumbel_softmax_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_gumbel_softmax_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_hardsigmoid_grad_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_hardswish_grad_corner_cpu_bfloat16, test/test_nn.py::TestNNDeviceTypeCPU::test_hardswish_grad_corner_cpu_float16, test/test_nn.py::TestNNDeviceTypeCPU::test_hardswish_grad_corner_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_hardswish_grad_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_hardswish_inplace_overlap_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_instancenorm_raises_error_for_single_spatial_element_during_training_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_instancenorm_raises_error_if_input_channels_is_not_num_features_InstanceNorm1d_no_batch_dim_False_affine_False_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_instancenorm_raises_error_if_input_channels_is_not_num_features_InstanceNorm1d_no_batch_dim_False_affine_True_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_instancenorm_raises_error_if_input_channels_is_not_num_features_InstanceNorm1d_no_batch_dim_True_affine_False_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_instancenorm_raises_error_if_input_channels_is_not_num_features_InstanceNorm1d_no_batch_dim_True_affine_True_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_instancenorm_raises_error_if_input_channels_is_not_num_features_InstanceNorm2d_no_batch_dim_False_affine_False_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_instancenorm_raises_error_if_input_channels_is_not_num_features_InstanceNorm2d_no_batch_dim_False_affine_True_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_instancenorm_raises_error_if_input_channels_is_not_num_features_InstanceNorm2d_no_batch_dim_True_affine_False_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_instancenorm_raises_error_if_input_channels_is_not_num_features_InstanceNorm2d_no_batch_dim_True_affine_True_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_instancenorm_raises_error_if_input_channels_is_not_num_features_InstanceNorm3d_no_batch_dim_False_affine_False_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_instancenorm_raises_error_if_input_channels_is_not_num_features_InstanceNorm3d_no_batch_dim_False_affine_True_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_instancenorm_raises_error_if_input_channels_is_not_num_features_InstanceNorm3d_no_batch_dim_True_affine_False_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_instancenorm_raises_error_if_input_channels_is_not_num_features_InstanceNorm3d_no_batch_dim_True_affine_True_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_instancenorm_raises_error_if_less_than_one_value_per_channel_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_invalid_reduction_strings_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_layernorm_half_precision_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_layernorm_weight_bias_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_leaky_relu_inplace_overlap_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_leaky_relu_inplace_with_neg_slope_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_leaky_relu_inplace_with_zero_slope_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_linear_empty_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_log_softmax_big_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_log_softmax_cpu_cpu_bfloat16, test/test_nn.py::TestNNDeviceTypeCPU::test_log_softmax_cpu_cpu_float16, test/test_nn.py::TestNNDeviceTypeCPU::test_logsigmoid_out_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_lstmcell_backward_only_one_output_grad_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_masked_softmax_TxT_layout_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_masked_softmax_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_masked_softmax_devices_parity_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_masked_softmax_forward_with_nans_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_masked_softmax_grad_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_masked_softmax_lowp_cpu_bfloat16, test/test_nn.py::TestNNDeviceTypeCPU::test_masked_softmax_lowp_cpu_float16, test/test_nn.py::TestNNDeviceTypeCPU::test_masked_softmax_mask_types_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_masked_softmax_transformer_layout_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_mish_inplace_overlap_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_module_to_empty_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_module_to_empty_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_module_to_empty_non_recursive_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_mse_loss_error_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_nll_loss_all_ignored_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_nll_loss_byte_target_matches_long_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_nll_loss_empty_tensor_reduction_mean_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_nll_loss_empty_tensor_reduction_none_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_nll_loss_empty_tensor_reduction_sum_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_nll_loss_invalid_target_dim_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_nll_loss_invalid_weights_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_nll_loss_large_tensor_reduction_mean_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_nll_loss_large_tensor_reduction_none_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_nll_loss_large_tensor_reduction_sum_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_nll_loss_mismatched_batch_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_nll_loss_out_of_bounds_ignore_index_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_nll_loss_total_weight_is_zero_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_nn_empty_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_nn_scalars_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_nn_scalars_reductions_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_nonlinearity_propagate_nan_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_one_hot_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_overwrite_module_params_on_conversion_cpu_device_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_pad_cpu_complex128, test/test_nn.py::TestNNDeviceTypeCPU::test_pad_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_prelu_backward_32bit_indexing_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_replicatepad_64bit_indexing_cpu_float16, test/test_nn.py::TestNNDeviceTypeCPU::test_rmsnorm_epsilon_cpu_bfloat16, test/test_nn.py::TestNNDeviceTypeCPU::test_rmsnorm_epsilon_cpu_float16, test/test_nn.py::TestNNDeviceTypeCPU::test_rmsnorm_epsilon_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_rmsnorm_epsilon_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_rmsnorm_numeric_cpu_bfloat16, test/test_nn.py::TestNNDeviceTypeCPU::test_rmsnorm_numeric_cpu_float16, test/test_nn.py::TestNNDeviceTypeCPU::test_rnn_fused_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_rnn_fused_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_rnn_retain_variables_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_save_lstm_compatibility_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_silu_inplace_overlap_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_skip_init_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_smooth_l1_loss_bfloat16_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_smooth_l1_loss_vs_huber_loss_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_smoothl1loss_backward_zero_beta_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_softmax_64bit_indexing_cpu_float16, test/test_nn.py::TestNNDeviceTypeCPU::test_softmax_backward_64bit_indexing_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_softmax_backward_smem_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_softmax_backward_unaligned_grad_output_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_softmax_backward_unaligned_output_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_softmax_backward_without_fully_vectorized_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_softmax_bfloat16_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_softmax_cpu_cpu_bfloat16, test/test_nn.py::TestNNDeviceTypeCPU::test_softmax_cpu_cpu_float16, test/test_nn.py::TestNNDeviceTypeCPU::test_softmax_cpu_float16, test/test_nn.py::TestNNDeviceTypeCPU::test_softmax_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_softmax_double_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_softmax_forward_64bit_indexing_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_softmax_results_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_softplus_inplace_overlap_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_softplus_low_threshold_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_softshrink_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_softshrink_inplace_overlap_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_softshrink_negative_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_threshold_inplace_overlap_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_to_complex_cpu_complex128, test/test_nn.py::TestNNDeviceTypeCPU::test_to_complex_cpu_complex64, test/test_nn.py::TestNNDeviceTypeCPU::test_to_complex_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_transformerencoderlayer_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_transformerencoderlayer_fast_path_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_transformerencoderlayer_gelu_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_triplet_margin_with_distance_loss_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_triplet_margin_with_distance_loss_default_parity_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiLinear2d_consistency_interp_size_bug_memory_format0_align_corners_False_input_size_399_output_size_437_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiLinear2d_consistency_interp_size_bug_memory_format0_align_corners_False_input_size_403_output_size_377_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiLinear2d_consistency_interp_size_bug_memory_format0_align_corners_True_input_size_399_output_size_437_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiLinear2d_consistency_interp_size_bug_memory_format0_align_corners_True_input_size_403_output_size_377_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiLinear2d_consistency_interp_size_bug_memory_format1_align_corners_False_input_size_399_output_size_437_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiLinear2d_consistency_interp_size_bug_memory_format1_align_corners_False_input_size_403_output_size_377_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiLinear2d_consistency_interp_size_bug_memory_format1_align_corners_True_input_size_399_output_size_437_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiLinear2d_consistency_interp_size_bug_memory_format1_align_corners_True_input_size_403_output_size_377_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_antialias_False_align_corners_False_mode_bicubic_memory_format0_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_antialias_False_align_corners_False_mode_bicubic_memory_format1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_antialias_False_align_corners_False_mode_bilinear_memory_format0_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_antialias_False_align_corners_False_mode_bilinear_memory_format1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_antialias_False_align_corners_True_mode_bicubic_memory_format0_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_antialias_False_align_corners_True_mode_bicubic_memory_format1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_antialias_False_align_corners_True_mode_bilinear_memory_format0_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_antialias_False_align_corners_True_mode_bilinear_memory_format1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_antialias_True_align_corners_False_mode_bicubic_memory_format0_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_antialias_True_align_corners_False_mode_bicubic_memory_format1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_antialias_True_align_corners_False_mode_bilinear_memory_format0_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_antialias_True_align_corners_False_mode_bilinear_memory_format1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_antialias_True_align_corners_True_mode_bicubic_memory_format0_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_antialias_True_align_corners_True_mode_bicubic_memory_format1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_antialias_True_align_corners_True_mode_bilinear_memory_format0_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_antialias_True_align_corners_True_mode_bilinear_memory_format1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_bicubic_float32_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_bicubic_float64_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_bicubic_int16_cpu_int16, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_bicubic_int32_cpu_int32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_bicubic_int64_cpu_int64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_bicubic_int8_cpu_int8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_bicubic_uint8_cpu_uint8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_bilinear_float32_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_bilinear_float64_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_bilinear_int16_cpu_int16, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_bilinear_int32_cpu_int32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_bilinear_int64_cpu_int64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_bilinear_int8_cpu_int8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_bilinear_uint8_cpu_uint8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_nearest-exact_float32_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_nearest-exact_float64_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_nearest-exact_int16_cpu_int16, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_nearest-exact_int32_cpu_int32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_nearest-exact_int64_cpu_int64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_nearest-exact_int8_cpu_int8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_nearest-exact_uint8_cpu_uint8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_nearest_float32_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_nearest_float64_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_nearest_int16_cpu_int16, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_nearest_int32_cpu_int32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_nearest_int64_cpu_int64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_nearest_int8_cpu_int8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_nearest_uint8_cpu_uint8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_bicubic_float32_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_bicubic_float64_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_bicubic_int16_cpu_int16, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_bicubic_int32_cpu_int32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_bicubic_int64_cpu_int64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_bicubic_int8_cpu_int8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_bicubic_uint8_cpu_uint8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_bilinear_float32_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_bilinear_float64_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_bilinear_int16_cpu_int16, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_bilinear_int32_cpu_int32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_bilinear_int64_cpu_int64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_bilinear_int8_cpu_int8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_bilinear_uint8_cpu_uint8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_nearest-exact_float32_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_nearest-exact_float64_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_nearest-exact_int16_cpu_int16, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_nearest-exact_int32_cpu_int32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_nearest-exact_int64_cpu_int64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_nearest-exact_int8_cpu_int8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_nearest-exact_uint8_cpu_uint8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_nearest_float32_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_nearest_float64_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_nearest_int16_cpu_int16, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_nearest_int32_cpu_int32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_nearest_int64_cpu_int64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_nearest_int8_cpu_int8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_nearest_uint8_cpu_uint8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_bicubic_float32_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_bicubic_float64_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_bicubic_int16_cpu_int16, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_bicubic_int32_cpu_int32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_bicubic_int64_cpu_int64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_bicubic_int8_cpu_int8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_bicubic_uint8_cpu_uint8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_bilinear_float32_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_bilinear_float64_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_bilinear_int16_cpu_int16, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_bilinear_int32_cpu_int32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_bilinear_int64_cpu_int64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_bilinear_int8_cpu_int8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_bilinear_uint8_cpu_uint8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_nearest-exact_float32_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_nearest-exact_float64_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_nearest-exact_int16_cpu_int16, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_nearest-exact_int32_cpu_int32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_nearest-exact_int64_cpu_int64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_nearest-exact_int8_cpu_int8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_nearest-exact_uint8_cpu_uint8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_nearest_float32_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_nearest_float64_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_nearest_int16_cpu_int16, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_nearest_int32_cpu_int32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_nearest_int64_cpu_int64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_nearest_int8_cpu_int8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_nearest_uint8_cpu_uint8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_bicubic_float32_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_bicubic_float64_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_bicubic_int16_cpu_int16, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_bicubic_int32_cpu_int32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_bicubic_int64_cpu_int64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_bicubic_int8_cpu_int8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_bicubic_uint8_cpu_uint8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_bilinear_float32_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_bilinear_float64_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_bilinear_int16_cpu_int16, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_bilinear_int32_cpu_int32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_bilinear_int64_cpu_int64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_bilinear_int8_cpu_int8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_bilinear_uint8_cpu_uint8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_nearest-exact_float32_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_nearest-exact_float64_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_nearest-exact_int16_cpu_int16, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_nearest-exact_int32_cpu_int32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_nearest-exact_int64_cpu_int64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_nearest-exact_int8_cpu_int8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_nearest-exact_uint8_cpu_uint8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_nearest_float32_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_nearest_float64_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_nearest_int16_cpu_int16, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_nearest_int32_cpu_int32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_nearest_int64_cpu_int64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_nearest_int8_cpu_int8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_nearest_uint8_cpu_uint8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBicubic2d_aa_correctness_memory_format0_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBicubic2d_aa_correctness_memory_format1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBicubic2d_correctness_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBilinear2d_aa_correctness_memory_format0_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBilinear2d_aa_correctness_memory_format1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest1d_correctness_isize_10_osize_15_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest1d_correctness_isize_20_osize_11_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest1d_launch_config_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest1d_mode_nearest-exact_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest1d_mode_nearest_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest2d_correctness_memory_format0_isize_10_osize_15_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest2d_correctness_memory_format0_isize_20_osize_11_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest2d_correctness_memory_format1_isize_10_osize_15_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest2d_correctness_memory_format1_isize_20_osize_11_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest2d_launch_config_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest2d_launch_fail_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest2d_launch_rocm_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest2d_memory_format0_mode_nearest-exact_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest2d_memory_format0_mode_nearest_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest2d_memory_format1_mode_nearest-exact_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest2d_memory_format1_mode_nearest_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest3d_correctness_memory_format0_isize_10_osize_15_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest3d_correctness_memory_format0_isize_20_osize_11_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest3d_correctness_memory_format1_isize_10_osize_15_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest3d_correctness_memory_format1_isize_20_osize_11_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest3d_launch_config_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest3d_memory_format0_mode_nearest-exact_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest3d_memory_format0_mode_nearest_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest3d_memory_format1_mode_nearest-exact_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest3d_memory_format1_mode_nearest_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearestExact1d_correctness_isize_10_osize_15_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearestExact1d_correctness_isize_20_osize_11_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearestExact1d_rescale_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearestExact2d_correctness_memory_format0_isize_10_osize_15_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearestExact2d_correctness_memory_format0_isize_20_osize_11_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearestExact2d_correctness_memory_format1_isize_10_osize_15_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearestExact2d_correctness_memory_format1_isize_20_osize_11_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearestExact3d_correctness_memory_format0_isize_10_osize_15_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearestExact3d_correctness_memory_format0_isize_20_osize_11_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearestExact3d_correctness_memory_format1_isize_10_osize_15_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearestExact3d_correctness_memory_format1_isize_20_osize_11_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingTrilinear3d_align_corners_False_memory_format0_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingTrilinear3d_align_corners_False_memory_format1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingTrilinear3d_align_corners_True_memory_format0_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingTrilinear3d_align_corners_True_memory_format1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsampling_64bit_indexing_channels_last_cpu_bfloat16, test/test_nn.py::TestNNDeviceTypeCPU::test_upsampling_64bit_indexing_channels_last_cpu_float16, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingnearest2d_backward_64bit_indexing_cpu_float16, test/test_nn.py::TestNNDeviceTypeCPU::test_variable_sequence_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_warp_softmax_64bit_indexing_cpu_float16, test/test_nn.py::TestNNDeviceTypeCPU::test_warp_softmax_64bit_indexing_cpu_float32 2025-08-26T21:23:31.2366463Z 2025-08-26T21:23:31.2366821Z Running functorch/test_memory_efficient_fusion 1/1 ... [2025-08-26 21:23:30.988620] 2025-08-26T21:23:31.2367342Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:23:31.2368661Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_memory_efficient_fusion.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:23:30.989192] 2025-08-26T21:23:42.7287355Z 2025-08-26T21:23:42.7288692Z functorch/test_memory_efficient_fusion 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_memory_efficient_fusion_1.1_950651b83546d6b5_.log 2025-08-26T21:23:42.7297815Z Running 22 items in this shard: test/functorch/test_memory_efficient_fusion.py::TestMemoryEfficientOpAuthoring::test_gelu_bias, test/functorch/test_memory_efficient_fusion.py::TestMemoryEfficientOpAuthoring::test_hard_sigmoid, test/functorch/test_memory_efficient_fusion.py::TestMemoryEfficientOpAuthoring::test_hard_swish, test/functorch/test_memory_efficient_fusion.py::TestMemoryEfficientOpAuthoring::test_layer_norm, test/functorch/test_memory_efficient_fusion.py::TestMemoryEfficientOpAuthoring::test_mish, test/functorch/test_memory_efficient_fusion.py::TestMemoryEfficientOpAuthoring::test_rmsnorm, test/functorch/test_memory_efficient_fusion.py::TestMemoryEfficientOpAuthoring::test_swish, test/functorch/test_memory_efficient_fusion.py::NoChangeTestCase::test_empty, test/functorch/test_memory_efficient_fusion.py::NoChangeTestCase::test_hash_with_numbers, test/functorch/test_memory_efficient_fusion.py::NoChangeTestCase::test_nochange, test/functorch/test_memory_efficient_fusion.py::NoChangeTestCase::test_rand_like, test/functorch/test_memory_efficient_fusion.py::NoChangeTestCase::test_rand_n, test/functorch/test_memory_efficient_fusion.py::ReduceTestCase::test_immutable_list_multiple_entries, test/functorch/test_memory_efficient_fusion.py::ReduceTestCase::test_immutable_list_type, test/functorch/test_memory_efficient_fusion.py::ReduceTestCase::test_kwarg, test/functorch/test_memory_efficient_fusion.py::ReduceTestCase::test_nested_immutable_list_type, test/functorch/test_memory_efficient_fusion.py::ReduceTestCase::test_simple, test/functorch/test_memory_efficient_fusion.py::ReduceTestCase::test_simple_2, test/functorch/test_memory_efficient_fusion.py::ReduceTestCase::test_simple_multiple_same_ops, test/functorch/test_memory_efficient_fusion.py::ReduceTestCase::test_two_args, test/functorch/test_memory_efficient_fusion.py::ReduceTestCase::test_two_args_default, test/functorch/test_memory_efficient_fusion.py::RandomOpTestCase::test_random 2025-08-26T21:23:42.7306860Z 2025-08-26T21:23:42.7307118Z Running test_cpp_extensions_stream_and_event 1/1 ... [2025-08-26 21:23:42.728825] 2025-08-26T21:23:42.7307681Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:23:42.7308770Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_cpp_extensions_stream_and_event.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:23:42.729411] 2025-08-26T21:23:47.3559611Z 2025-08-26T21:23:47.3560695Z test_cpp_extensions_stream_and_event 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_cpp_extensions_stream_and_event_1.1_258d536480f34f1a_.log 2025-08-26T21:23:47.3561966Z Running 1 items in this shard: test/test_cpp_extensions_stream_and_event.py::TestCppExtensionStreamAndEvent::test_stream_event 2025-08-26T21:23:47.3562672Z 2025-08-26T21:23:47.3565737Z Running test_dispatch 1/1 ... [2025-08-26 21:23:47.356496] 2025-08-26T21:23:47.3566174Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:23:47.3582933Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_dispatch.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:23:47.357679] 2025-08-26T21:24:49.0774687Z 2025-08-26T21:24:49.0775739Z test_dispatch 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_dispatch_1.1_c461d0d33df12d98_.log 2025-08-26T21:24:49.0785428Z Running 32 items in this shard: test/test_dispatch.py::TestDispatch::test_all_invariants, test/test_dispatch.py::TestDispatch::test_computed_table, test/test_dispatch.py::TestDispatch::test_computed_table_with_ambiguous_autogradother, test/test_dispatch.py::TestDispatch::test_computed_table_with_autograd, test/test_dispatch.py::TestDispatch::test_computed_table_with_cpu_autograd_defaultbackend, test/test_dispatch.py::TestDispatch::test_computed_table_with_cpu_autograd_math, test/test_dispatch.py::TestDispatch::test_computed_table_with_cpu_autograd_math_defaultbackend, test/test_dispatch.py::TestDispatch::test_computed_table_with_cpu_defaultbackend, test/test_dispatch.py::TestDispatch::test_computed_table_with_cpu_math, test/test_dispatch.py::TestDispatch::test_computed_table_with_cpu_math_autogradcpu_fallthrough, test/test_dispatch.py::TestDispatch::test_computed_table_with_math, test/test_dispatch.py::TestDispatch::test_def, test/test_dispatch.py::TestDispatch::test_def_impl_schema_mismatch, test/test_dispatch.py::TestDispatch::test_def_only, test/test_dispatch.py::TestDispatch::test_def_with_explicit_alias, test/test_dispatch.py::TestDispatch::test_def_with_inference, test/test_dispatch.py::TestDispatch::test_dispatch_print_registrations_for_dispatch_key_invalid, test/test_dispatch.py::TestDispatch::test_find_dangling_impls, test/test_dispatch.py::TestDispatch::test_find_dangling_impls_ext, test/test_dispatch.py::TestDispatch::test_impl_only, test/test_dispatch.py::TestDispatch::test_multiple_def_alias_defaulting, test/test_dispatch.py::TestDispatch::test_multiple_def_alias_mismatch, test/test_dispatch.py::TestDispatch::test_multiple_def_error, test/test_dispatch.py::TestDispatch::test_multiple_fallback, test/test_dispatch.py::TestDispatch::test_overwrite_math, test/test_dispatch.py::TestPythonDispatcher::test_autogradother, test/test_dispatch.py::TestPythonDispatcher::test_basic, test/test_dispatch.py::TestPythonDispatcher::test_defaultbackend_autogradcpu, test/test_dispatch.py::TestPythonDispatcher::test_defaultbackend_math, test/test_dispatch.py::TestPythonDispatcher::test_duplicate_registrations, test/test_dispatch.py::TestPythonDispatcher::test_math_autogradcpu, test/test_dispatch.py::TestPythonDispatcher::test_quantized_structured_not_implemented 2025-08-26T21:24:49.0794709Z 2025-08-26T21:24:49.0794891Z Running test_native_mha 1/1 ... [2025-08-26 21:24:49.076750] 2025-08-26T21:24:49.0795324Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:24:49.0796311Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_native_mha.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:24:49.078367] 2025-08-26T21:24:54.4189307Z 2025-08-26T21:24:54.4190232Z test_native_mha 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_native_mha_1.1_a3e51bc1c7faadc5_.log 2025-08-26T21:24:54.4210177Z Running 28 items in this shard: test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_attention_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_encoder_decoder_attention_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_False_use_padding_False_pad_all_False_need_weights_False_average_attn_weights_False_fused_False_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_False_use_padding_False_pad_all_False_need_weights_False_average_attn_weights_False_fused_True_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_False_use_padding_False_pad_all_False_need_weights_False_average_attn_weights_True_fused_False_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_False_use_padding_False_pad_all_False_need_weights_False_average_attn_weights_True_fused_True_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_False_use_padding_True_pad_all_False_need_weights_False_average_attn_weights_False_fused_False_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_False_use_padding_True_pad_all_False_need_weights_False_average_attn_weights_False_fused_True_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_False_use_padding_True_pad_all_False_need_weights_False_average_attn_weights_True_fused_False_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_False_use_padding_True_pad_all_False_need_weights_False_average_attn_weights_True_fused_True_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_False_use_padding_True_pad_all_True_need_weights_False_average_attn_weights_False_fused_False_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_False_use_padding_True_pad_all_True_need_weights_False_average_attn_weights_False_fused_True_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_False_use_padding_True_pad_all_True_need_weights_False_average_attn_weights_True_fused_False_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_False_use_padding_True_pad_all_True_need_weights_False_average_attn_weights_True_fused_True_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_True_use_padding_False_pad_all_False_need_weights_False_average_attn_weights_False_fused_False_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_True_use_padding_False_pad_all_False_need_weights_False_average_attn_weights_False_fused_True_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_True_use_padding_False_pad_all_False_need_weights_False_average_attn_weights_True_fused_False_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_True_use_padding_False_pad_all_False_need_weights_False_average_attn_weights_True_fused_True_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_True_use_padding_True_pad_all_False_need_weights_False_average_attn_weights_False_fused_False_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_True_use_padding_True_pad_all_False_need_weights_False_average_attn_weights_False_fused_True_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_True_use_padding_True_pad_all_False_need_weights_False_average_attn_weights_True_fused_False_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_True_use_padding_True_pad_all_False_need_weights_False_average_attn_weights_True_fused_True_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_True_use_padding_True_pad_all_True_need_weights_False_average_attn_weights_False_fused_False_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_True_use_padding_True_pad_all_True_need_weights_False_average_attn_weights_False_fused_True_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_True_use_padding_True_pad_all_True_need_weights_False_average_attn_weights_True_fused_False_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_True_use_padding_True_pad_all_True_need_weights_False_average_attn_weights_True_fused_True_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_transform_bias_rescale_qkv_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_transform_bias_rescale_qkv_nested_cpu_float32 2025-08-26T21:24:54.4230033Z 2025-08-26T21:24:54.4230224Z Running test_sort_and_select 1/1 ... [2025-08-26 21:24:54.416359] 2025-08-26T21:24:54.4230674Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:24:54.4231685Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_sort_and_select.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:24:54.416359] 2025-08-26T21:25:03.1164954Z 2025-08-26T21:25:03.1165900Z test_sort_and_select 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_sort_and_select_1.1_ad0203af39d956c9_.log 2025-08-26T21:25:03.1202788Z Running 113 items in this shard: test/test_sort_and_select.py::TestSortAndSelectCPU::test_complex_unsupported_cpu_cpu, test/test_sort_and_select.py::TestSortAndSelectCPU::test_isin_cpu_float32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_isin_cpu_float64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_isin_cpu_int16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_isin_cpu_int32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_isin_cpu_int64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_isin_cpu_int8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_isin_cpu_uint8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_isin_different_devices_cpu_float32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_isin_different_devices_cpu_float64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_isin_different_devices_cpu_int16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_isin_different_devices_cpu_int32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_isin_different_devices_cpu_int64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_isin_different_devices_cpu_int8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_isin_different_devices_cpu_uint8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_isin_different_dtypes_cpu, test/test_sort_and_select.py::TestSortAndSelectCPU::test_kthvalue_cpu_float64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_kthvalue_scalar_cpu_float32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_msort_cpu_bfloat16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_msort_cpu_float16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_msort_cpu_float32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_msort_cpu_float64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_msort_cpu_int16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_msort_cpu_int32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_msort_cpu_int64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_msort_cpu_int8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_msort_cpu_uint8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_sort_1d_output_discontiguous_cpu_float32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_sort_1d_parallel_cpu_int16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_sort_1d_parallel_cpu_int32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_sort_1d_parallel_cpu_int64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_sort_1d_parallel_cpu_int8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_sort_1d_parallel_cpu_uint8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_sort_cpu, test/test_sort_and_select.py::TestSortAndSelectCPU::test_sort_discontiguous_cpu_float32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_sort_discontiguous_slow_cpu_float32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_sort_expanded_tensor_cpu_float32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_sort_large_cpu_float16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_sort_large_slice_cpu, test/test_sort_and_select.py::TestSortAndSelectCPU::test_sort_overflow_cpu_int16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_sort_overflow_cpu_int32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_sort_overflow_cpu_int64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_sort_overflow_cpu_int8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_sort_overflow_cpu_uint8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_sort_restride_cpu_float32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_sort_stable_none_cpu, test/test_sort_and_select.py::TestSortAndSelectCPU::test_stable_sort_against_numpy_cpu_bfloat16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_stable_sort_against_numpy_cpu_bool, test/test_sort_and_select.py::TestSortAndSelectCPU::test_stable_sort_against_numpy_cpu_float16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_stable_sort_against_numpy_cpu_float32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_stable_sort_against_numpy_cpu_float64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_stable_sort_against_numpy_cpu_int16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_stable_sort_against_numpy_cpu_int32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_stable_sort_against_numpy_cpu_int64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_stable_sort_against_numpy_cpu_int8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_stable_sort_against_numpy_cpu_uint8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_stable_sort_cpu_bfloat16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_stable_sort_cpu_bool, test/test_sort_and_select.py::TestSortAndSelectCPU::test_stable_sort_cpu_float16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_stable_sort_cpu_float32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_stable_sort_cpu_float64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_stable_sort_cpu_int16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_stable_sort_cpu_int32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_stable_sort_cpu_int64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_stable_sort_cpu_int8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_stable_sort_cpu_uint8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_1d_output_discontiguous_cpu_float32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_4d_cpu, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_arguments_cpu, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_cpu, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_integral_cpu_int16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_integral_cpu_int32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_integral_cpu_int64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_integral_cpu_int8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_integral_cpu_uint8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_lower_precision_cpu_bfloat16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_lower_precision_cpu_float16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_noncontiguous_gpu_cpu, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_nonfinite_cpu_bfloat16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_nonfinite_cpu_float16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_nonfinite_cpu_float32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_nonfinite_cpu_float64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_quantized_scalar_input_cpu, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_zero_cpu_bfloat16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_zero_cpu_float16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_zero_cpu_float32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_zero_cpu_float64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_zero_cpu_int16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_zero_cpu_int32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_zero_cpu_int64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_zero_cpu_int8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_zero_cpu_uint8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_consecutive_cpu_bfloat16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_consecutive_cpu_bool, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_consecutive_cpu_float16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_consecutive_cpu_float32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_consecutive_cpu_float64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_consecutive_cpu_int16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_consecutive_cpu_int32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_consecutive_cpu_int64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_consecutive_cpu_int8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_consecutive_cpu_uint8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_cpu_bfloat16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_cpu_bool, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_cpu_float16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_cpu_float32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_cpu_float64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_cpu_int16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_cpu_int32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_cpu_int64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_cpu_int8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_cpu_uint8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_dim_cpu 2025-08-26T21:25:03.1238814Z 2025-08-26T21:25:03.1239092Z Running test_cpp_extensions_jit 1/1 ... [2025-08-26 21:25:03.116283] 2025-08-26T21:25:03.1239523Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:25:03.1240575Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_cpp_extensions_jit.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:25:03.116283] 2025-08-26T21:29:50.3103853Z 2025-08-26T21:29:50.3104796Z test_cpp_extensions_jit 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_cpp_extensions_jit_1.1_cd83eb2209c438dd_.log 2025-08-26T21:29:50.3118644Z Running 34 items in this shard: test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_aoti_torch_call_dispatcher, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_autograd_from_cpp, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_compilation_error_formatting, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_cpp_frontend_module_has_same_output_as_python, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_cpp_frontend_module_has_up_to_date_attributes, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_cpp_frontend_module_python_inter_op, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_cpp_frontend_module_python_inter_op_with_cuda, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_cuda_arch_flags_default_gencode, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_cuda_arch_flags_non_default_gencode, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_cuda_pluggable_allocator_include, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_custom_compound_op_autograd, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_custom_functorch_error, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_gen_extension_h_pch, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_half_support, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_inline_jit_compile_custom_op_cuda, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_inline_jit_compile_extension_cuda, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_inline_jit_compile_extension_multiple_sources_and_no_functions, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_inline_jit_compile_extension_throws_when_functions_is_bad, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_inline_jit_compile_extension_with_functions_as_dict, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_inline_jit_compile_extension_with_functions_as_list, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_inline_jit_compile_extension_xpu, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_jit_compile_extension, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_jit_cuda_archflags, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_jit_cuda_extension, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_jit_cudnn_extension, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_jit_xpu_archlists, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_jit_xpu_extension, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_lenient_flag_handling_in_jit_extensions, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_load_with_non_platform_default_encoding, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_mps_extension, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_reload_jit_extension, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_returns_shared_library_path_when_is_python_module_is_true, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_set_default_type_also_changes_aten_default_type, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_warning 2025-08-26T21:29:50.3131354Z 2025-08-26T21:29:50.3131558Z Running nn/test_pooling 1/1 ... [2025-08-26 21:29:50.301734] 2025-08-26T21:29:50.3131963Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:29:50.3133063Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'nn/test_pooling.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:29:50.301734] 2025-08-26T21:30:33.6345735Z 2025-08-26T21:30:33.6346915Z nn/test_pooling 1/1 was successful, full logs can be found in artifacts with path test/test-reports/nn.test_pooling_1.1_127b4b80e68062ea_.log 2025-08-26T21:30:33.6388251Z Running 111 items in this shard: test/nn/test_pooling.py::TestAvgPool::test_avg_pool1d_ceil_mode, test/nn/test_pooling.py::TestAvgPool::test_avg_pool2d_ceil_mode, test/nn/test_pooling.py::TestAvgPool::test_avg_pool3d_ceil_mode, test/nn/test_pooling.py::TestAvgPool::test_doubletensor_avg_pool2d, test/nn/test_pooling.py::TestAvgPool::test_doubletensor_avg_pool2d_with_divisor, test/nn/test_pooling.py::TestAvgPool::test_doubletensor_avg_pool3d, test/nn/test_pooling.py::TestAvgPool::test_doubletensor_avg_pool3d_with_divisor, test/nn/test_pooling.py::TestPoolingNN::test_MaxUnpool2d_output_size, test/nn/test_pooling.py::TestPoolingNN::test_adaptive_avg_pooling_nhwc_overflow, test/nn/test_pooling.py::TestPoolingNN::test_adaptive_avg_pooling_overflow, test/nn/test_pooling.py::TestPoolingNN::test_adaptive_pooling_avg_nhwc, test/nn/test_pooling.py::TestPoolingNN::test_adaptive_pooling_avg_nhwc_launch_config_backward, test/nn/test_pooling.py::TestPoolingNN::test_adaptive_pooling_avg_nhwc_launch_config_forward, test/nn/test_pooling.py::TestPoolingNN::test_adaptive_pooling_avg_nhwc_non_contiguous, test/nn/test_pooling.py::TestPoolingNN::test_adaptive_pooling_lower_precision, test/nn/test_pooling.py::TestPoolingNN::test_adaptive_pooling_size_none, test/nn/test_pooling.py::TestPoolingNN::test_adaptive_pooling_size_overflow, test/nn/test_pooling.py::TestPoolingNN::test_max_unpool, test/nn/test_pooling.py::TestPoolingNN::test_max_unpool2d_nhwc_cpu, test/nn/test_pooling.py::TestPoolingNN::test_max_unpool3d_input_check, test/nn/test_pooling.py::TestPoolingNN::test_quantized_max_pool1d_empty_kernel, test/nn/test_pooling.py::TestPoolingNN::test_quantized_max_pool3d, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_AdaptiveMaxPool1d_indices_cpu_float32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_AdaptiveMaxPool2d_indices_cpu_float32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_AdaptiveMaxPool3d_indices_cpu_float32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_AdaptiveMaxPool_zero_batch_dim_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_AvgPool2d_empty_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_AvgPool3d_backward_after_cat_dim1_device_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_FractionalMaxPool2d_zero_batch_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_FractionalMaxPool2d_zero_out_size_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_FractionalMaxPool2d_zero_samples_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_FractionalMaxPool3d_errors_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_FractionalMaxPool3d_zero_batch_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_FractionalMaxPool3d_zero_out_size_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_FractionalMaxPool3d_zero_samples_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_MaxPool1d_indices_cpu_float32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_MaxPool2d_indices_cpu_float32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_MaxPool3d_indices_cpu_float32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_MaxPool_zero_batch_dim_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_MaxUnpool_index_errors_case10_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_MaxUnpool_index_errors_case1_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_MaxUnpool_index_errors_case2_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_MaxUnpool_index_errors_case3_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_MaxUnpool_index_errors_case4_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_MaxUnpool_index_errors_case5_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_MaxUnpool_index_errors_case6_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_MaxUnpool_index_errors_case7_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_MaxUnpool_index_errors_case8_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_MaxUnpool_index_errors_case9_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_MaxUnpool_zero_batch_dim_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_adaptive_avg_pool2d_output_size_one_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_adaptive_avg_pool3d_output_size_one_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_adaptive_avg_pooling_backward_fails_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_adaptive_max_pooling_backward_fails_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_adaptive_pool_odd_size_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_adaptive_pooling_empty_output_size_cpu_float32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_adaptive_pooling_empty_output_size_cpu_float64, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_adaptive_pooling_max_nhwc_cpu_float32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_adaptive_pooling_max_nhwc_cpu_float64, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_adaptive_pooling_no_suppot_input_cpu_int16, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_adaptive_pooling_no_suppot_input_cpu_int32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_adaptive_pooling_no_suppot_input_cpu_int64, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_adaptive_pooling_no_suppot_input_cpu_int8, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_adaptive_pooling_no_suppot_input_cpu_uint8, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_adaptive_pooling_zero_batch_cpu_float32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_adaptive_pooling_zero_batch_cpu_float64, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_avg_pool2d_nhwc_cpu_float32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_avg_pool2d_nhwc_cpu_float64, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_avg_pool2d_reduced_floating_cpu_bfloat16, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_avg_pool2d_reduced_floating_cpu_float16, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_fractional_max_pool2d_backward_fails_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_fractional_max_pool2d_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_fractional_max_pool3d_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_fractional_max_pool_nan_inf_cpu_float32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_max_pool1d_corner_cases_cpu_float32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_max_pool1d_corner_cases_cpu_float64, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_max_pool1d_cpu_float32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_max_pool1d_cpu_float64, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_max_pool2d_corner_cases_cpu_int32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_max_pool2d_corner_cases_cpu_int64, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_max_pool2d_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_max_pool2d_indices_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_max_pool2d_nhwc_cpu_bfloat16, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_max_pool2d_nhwc_cpu_float16, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_max_pool2d_nhwc_cpu_float32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_max_pool2d_nhwc_cpu_float64, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_max_pool2d_with_indices_backward_fails_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_max_pool3d_ndhwc_cpu_bfloat16, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_max_pool3d_ndhwc_cpu_float16, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_max_pool3d_ndhwc_cpu_float32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_max_pool3d_ndhwc_cpu_float64, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_max_pool_bfloat16_half_cpu_bfloat16, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_max_pool_bfloat16_half_cpu_float16, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_max_pool_nan_inf_cpu_float32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_maxpool3d_non_square_backward_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_maxpool_indices_no_batch_dim_cpu_float32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_pool3d_large_size_int64_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_pool3d_size_one_feature_dim_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_pool_invalid_size_cpu_float32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_pool_large_size_cpu_float32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_pooling_bfloat16_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_pooling_large_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_pooling_max_nhwc_cpu_float32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_pooling_max_nhwc_cpu_float64, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_pooling_shape_kernel_avg_pooling_dims_1_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_pooling_shape_kernel_avg_pooling_dims_2_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_pooling_shape_kernel_avg_pooling_dims_3_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_pooling_shape_kernel_max_pooling_dims_1_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_pooling_shape_kernel_max_pooling_dims_2_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_pooling_shape_kernel_max_pooling_dims_3_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_pooling_zero_stride_cpu 2025-08-26T21:30:33.6431293Z 2025-08-26T21:30:33.6431513Z Running nn/test_convolution 1/1 ... [2025-08-26 21:30:33.635226] 2025-08-26T21:30:33.6432082Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:30:33.6433181Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'nn/test_convolution.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:30:33.635797] 2025-08-26T21:31:07.3418441Z 2025-08-26T21:31:07.3419324Z nn/test_convolution 1/1 was successful, full logs can be found in artifacts with path test/test-reports/nn.test_convolution_1.1_7297b59d34693a7a_.log 2025-08-26T21:31:07.3757469Z Running 598 items in this shard: test/nn/test_convolution.py::TestConvolutionNN::test_Conv1d_module_same_padding, test/nn/test_convolution.py::TestConvolutionNN::test_Conv2d_1x1, test/nn/test_convolution.py::TestConvolutionNN::test_Conv2d_OneDNN, test/nn/test_convolution.py::TestConvolutionNN::test_Conv2d_backward_twice, test/nn/test_convolution.py::TestConvolutionNN::test_Conv2d_groups_nobias, test/nn/test_convolution.py::TestConvolutionNN::test_Conv2d_groups_nobias_v2, test/nn/test_convolution.py::TestConvolutionNN::test_Conv2d_inconsistent_types, test/nn/test_convolution.py::TestConvolutionNN::test_Conv2d_inconsistent_types_on_GPU_with_cudnn, test/nn/test_convolution.py::TestConvolutionNN::test_Conv2d_inconsistent_types_on_GPU_without_cudnn, test/nn/test_convolution.py::TestConvolutionNN::test_Conv2d_missing_argument, test/nn/test_convolution.py::TestConvolutionNN::test_Conv2d_module_same_padding, test/nn/test_convolution.py::TestConvolutionNN::test_Conv3d_groups_nobias, test/nn/test_convolution.py::TestConvolutionNN::test_Conv3d_groups_wbias, test/nn/test_convolution.py::TestConvolutionNN::test_Conv3d_module_same_padding, test/nn/test_convolution.py::TestConvolutionNN::test_ConvTranspose2d_half_cublas_gemm, test/nn/test_convolution.py::TestConvolutionNN::test_ConvTranspose2d_output_size, test/nn/test_convolution.py::TestConvolutionNN::test_ConvTranspose2d_output_size_downsample_upsample, test/nn/test_convolution.py::TestConvolutionNN::test_ConvTranspose3d_correct_output_size, test/nn/test_convolution.py::TestConvolutionNN::test_conv1d_issue_120547, test/nn/test_convolution.py::TestConvolutionNN::test_conv2d_discontiguous_weight, test/nn/test_convolution.py::TestConvolutionNN::test_conv3d_issue_120406, test/nn/test_convolution.py::TestConvolutionNN::test_conv_backcompat, test/nn/test_convolution.py::TestConvolutionNN::test_conv_cudnn_memory_layout_dominance, test/nn/test_convolution.py::TestConvolutionNN::test_conv_invalid_groups, test/nn/test_convolution.py::TestConvolutionNN::test_conv_modules_raise_error_on_incorrect_input_size, test/nn/test_convolution.py::TestConvolutionNN::test_conv_padding_mode, test/nn/test_convolution.py::TestConvolutionNN::test_conv_shapecheck, test/nn/test_convolution.py::TestConvolutionNN::test_conv_tbc, test/nn/test_convolution.py::TestConvolutionNN::test_cudnn_non_contiguous, test/nn/test_convolution.py::TestConvolutionNN::test_cudnn_noncontiguous_weight, test/nn/test_convolution.py::TestConvolutionNN::test_cudnn_not_mutate_stride, test/nn/test_convolution.py::TestConvolutionNN::test_functional_grad_conv, test/nn/test_convolution.py::TestConvolutionNN::test_functional_grad_conv2d, test/nn/test_convolution.py::TestConvolutionNN::test_grad_conv1d_input, test/nn/test_convolution.py::TestConvolutionNN::test_grad_conv1d_weight, test/nn/test_convolution.py::TestConvolutionNN::test_grad_conv2d_input, test/nn/test_convolution.py::TestConvolutionNN::test_grad_conv2d_weight, test/nn/test_convolution.py::TestConvolutionNN::test_grad_conv3d_input, test/nn/test_convolution.py::TestConvolutionNN::test_grad_conv3d_weight, test/nn/test_convolution.py::TestConvolutionNN::test_grouped_conv_cudnn_nhwc_support, test/nn/test_convolution.py::TestConvolutionNN::test_invalid_conv1d, test/nn/test_convolution.py::TestConvolutionNN::test_invalid_conv2d, test/nn/test_convolution.py::TestConvolutionNN::test_invalid_conv3d, test/nn/test_convolution.py::TestConvolutionNN::test_mismatch_shape_conv2d, test/nn/test_convolution.py::TestConvolutionNN::test_nnpack_conv, test/nn/test_convolution.py::TestConvolutionNN::test_permute_conv2d_issue_120211, test/nn/test_convolution.py::TestConvolutionNN::test_thnn_conv_strided_padded_dilated, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_backward_depthwise_cpu_complex128, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_backward_depthwise_cpu_float64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_depthwise_naive_groups_cpu_float16, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_depthwise_naive_groups_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_depthwise_naive_groups_cpu_float64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_deterministic_cudnn_dilation_1_cpu_complex128, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_deterministic_cudnn_dilation_1_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_deterministic_cudnn_dilation_1_cpu_float16, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_deterministic_cudnn_dilation_1_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_deterministic_cudnn_dilation_1_cpu_float64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_deterministic_cudnn_dilation_2_cpu_complex128, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_deterministic_cudnn_dilation_2_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_deterministic_cudnn_dilation_2_cpu_float16, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_deterministic_cudnn_dilation_2_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_deterministic_cudnn_dilation_2_cpu_float64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_deterministic_cudnn_dilation_3_cpu_complex128, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_deterministic_cudnn_dilation_3_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_deterministic_cudnn_dilation_3_cpu_float16, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_deterministic_cudnn_dilation_3_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_deterministic_cudnn_dilation_3_cpu_float64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_large_workspace_cpu_float16, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_large_workspace_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_large_workspace_cpu_float64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_naive_groups_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_size_1_kernel_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv3d_depthwise_naive_groups_cpu_float16, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv3d_depthwise_naive_groups_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv3d_depthwise_naive_groups_cpu_float64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_ConvTranspose2d_large_output_padding_cpu_float16, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_ConvTranspose2d_large_output_padding_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_ConvTranspose2d_size_1_kernel_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_ConvTranspose3d_size_1_kernel_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_contig_wrong_stride_cudnn_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv1d_same_padding_backward_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv1d_same_padding_backward_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv1d_same_padding_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv1d_same_padding_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv1d_valid_padding_backward_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv1d_valid_padding_backward_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv1d_valid_padding_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv1d_valid_padding_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv1d_vs_scipy_mode_same_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv1d_vs_scipy_mode_same_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv1d_vs_scipy_mode_valid_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv1d_vs_scipy_mode_valid_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv2d_no_grad_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv2d_same_padding_backward_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv2d_same_padding_backward_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv2d_same_padding_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv2d_same_padding_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv2d_valid_padding_backward_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv2d_valid_padding_backward_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv2d_valid_padding_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv2d_valid_padding_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv2d_vs_scipy_mode_same_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv2d_vs_scipy_mode_same_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv2d_vs_scipy_mode_valid_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv2d_vs_scipy_mode_valid_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv3d_64bit_indexing_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv3d_same_padding_backward_cpu_complex128, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv3d_same_padding_backward_cpu_float64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv3d_same_padding_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv3d_same_padding_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv3d_valid_padding_backward_cpu_complex128, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv3d_valid_padding_backward_cpu_float64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv3d_valid_padding_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv3d_valid_padding_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv3d_vs_scipy_mode_same_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv3d_vs_scipy_mode_same_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv3d_vs_scipy_mode_valid_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv3d_vs_scipy_mode_valid_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_convTranspose_empty_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise1d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise1d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise1d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise1d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise1d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise1d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise1d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise1d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise2d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise2d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise2d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise2d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise2d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise2d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise2d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise2d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise3d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise3d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise3d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise3d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise3d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise3d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise3d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise3d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn1d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn1d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn1d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn1d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn1d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn1d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn1d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn1d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn1d_transposed_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn1d_transposed_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn1d_transposed_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn1d_transposed_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn1d_transposed_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn1d_transposed_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn1d_transposed_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn1d_transposed_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn2d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn2d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn2d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn2d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn2d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn2d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn2d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn2d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn2d_transposed_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn2d_transposed_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn2d_transposed_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn2d_transposed_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn2d_transposed_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn2d_transposed_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn2d_transposed_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn2d_transposed_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn3d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn3d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn3d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn3d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn3d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn3d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn3d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn3d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch1d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch1d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch1d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch1d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch1d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch1d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch1d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch1d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch2d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch2d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch2d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch2d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch2d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch2d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch2d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch2d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch3d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch3d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch3d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch3d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch3d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch3d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch3d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch3d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel1d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel1d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel1d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel1d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel1d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel1d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel1d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel1d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel2d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel2d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel2d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel2d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel2d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel2d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel2d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel2d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel3d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel3d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel3d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel3d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel3d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel3d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel3d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel3d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel1d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel1d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel1d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel1d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel1d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel1d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel1d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel1d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel2d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel2d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel2d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel2d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel2d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel2d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel2d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel2d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel3d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel3d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel3d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel3d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel3d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel3d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel3d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel3d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen1d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen1d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen1d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen1d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen1d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen1d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen1d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen1d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen1d_transposed_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen1d_transposed_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen1d_transposed_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen1d_transposed_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen1d_transposed_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen1d_transposed_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen1d_transposed_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen1d_transposed_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen2d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen2d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen2d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen2d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen2d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen2d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen2d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen2d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen2d_transposed_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen2d_transposed_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen2d_transposed_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen2d_transposed_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen2d_transposed_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen2d_transposed_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen2d_transposed_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen2d_transposed_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen3d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen3d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen3d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen3d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen3d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen3d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen3d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen3d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen3d_transposed_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen3d_transposed_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen3d_transposed_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen3d_transposed_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen3d_transposed_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen3d_transposed_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen3d_transposed_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen3d_transposed_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise1d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise1d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise1d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise1d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise1d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise1d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise1d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise1d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise2d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise2d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise2d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise2d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise2d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise2d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise2d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise2d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise3d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise3d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise3d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise3d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise3d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise3d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise3d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise3d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_cpu_input_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_cpu_input_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_cpu_input_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_cpu_input_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_cpu_input_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_cpu_input_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_cpu_input_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_cpu_input_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_transposed_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_transposed_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_transposed_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_transposed_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_transposed_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_transposed_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_transposed_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_transposed_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_cpu_input_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_cpu_input_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_cpu_input_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_cpu_input_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_cpu_input_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_cpu_input_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_cpu_input_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_cpu_input_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_transposed_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_transposed_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_transposed_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_transposed_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_transposed_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_transposed_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_transposed_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_transposed_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_cpu_input_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_cpu_input_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_cpu_input_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_cpu_input_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_cpu_input_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_cpu_input_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_cpu_input_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_cpu_input_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_transposed_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_transposed_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_transposed_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_transposed_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_transposed_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_transposed_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_transposed_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_transposed_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch1d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch1d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch1d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch1d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch1d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch1d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch1d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch1d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch2d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch2d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch2d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch2d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch2d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch2d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch2d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch2d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch3d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch3d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch3d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch3d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch3d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch3d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch3d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch3d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel1d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel1d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel1d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel1d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel1d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel1d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel1d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel1d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel2d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel2d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel2d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel2d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel2d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel2d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel2d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel2d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel3d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel3d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel3d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel3d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel3d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel3d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel3d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel3d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel1d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel1d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel1d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel1d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel1d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel1d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel1d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel1d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel2d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel2d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel2d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel2d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel2d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel2d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel2d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel2d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel3d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel3d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel3d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel3d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel3d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel3d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel3d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel3d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_dilated_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_dilated_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_dilated_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_dilated_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_dilated_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_dilated_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_dilated_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_dilated_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_dilated_transposed_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_dilated_transposed_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_dilated_transposed_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_dilated_transposed_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_dilated_transposed_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_dilated_transposed_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_dilated_transposed_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_dilated_transposed_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_transposed_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_transposed_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_transposed_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_transposed_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_transposed_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_transposed_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_transposed_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_transposed_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_dilated_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_dilated_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_dilated_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_dilated_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_dilated_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_dilated_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_dilated_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_dilated_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_dilated_transposed_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_dilated_transposed_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_dilated_transposed_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_dilated_transposed_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_dilated_transposed_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_dilated_transposed_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_dilated_transposed_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_dilated_transposed_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_transposed_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_transposed_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_transposed_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_transposed_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_transposed_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_transposed_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_transposed_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_transposed_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_cpu_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_cpu_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_cpu_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_cpu_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_cpu_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_cpu_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_cpu_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_cpu_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_cuda_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_cuda_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_cuda_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_cuda_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_cuda_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_cuda_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_cuda_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_cuda_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_dilated_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_dilated_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_dilated_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_dilated_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_dilated_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_dilated_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_dilated_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_dilated_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_contiguous_for_oneDNN_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_cudnn_mismatch_memory_format_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_cudnn_ndhwc_cpu_float16, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_cudnn_ndhwc_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_cudnn_nhwc_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_cudnn_nhwc_cpu_float16, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_cudnn_nhwc_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_cudnn_nhwc_support_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_cudnn_nhwc_support_cpu_float64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_double_backward_cpu_float64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_double_backward_groups_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_double_backward_no_bias_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_double_backward_stride_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_double_backward_strided_with_3D_input_and_weight_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_empty_channel_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_empty_channel_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_ic1_channels_last_for_oneDNN_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_large_batch_1_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_large_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_large_nosplit_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_noncontig_weights_and_bias_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_noncontig_weights_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_thnn_nhwc_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_thnn_nhwc_cpu_float64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_transpose_with_output_size_and_no_batch_dim_ConvTranspose2d_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_transpose_with_output_size_and_no_batch_dim_ConvTranspose3d_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_transposed_large_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_convert_conv2d_weight_memory_format_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_convert_conv3d_weight_memory_format_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_cudnn_convolution_add_relu_cpu_float16, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_cudnn_convolution_add_relu_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_cudnn_convolution_relu_cpu_float16, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_cudnn_convolution_relu_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_depthwise_conv_64bit_indexing_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_group_convTranspose_empty_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_group_conv_empty_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_noncontig_conv_grad_cpu_float16, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_noncontig_conv_grad_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_noncontig_conv_grad_cpu_float64 2025-08-26T21:31:07.4085895Z 2025-08-26T21:31:07.4086133Z Running test_multiprocessing_spawn 1/1 ... [2025-08-26 21:31:07.343727] 2025-08-26T21:31:07.4086570Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:31:07.4087603Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_multiprocessing_spawn.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:31:07.344298] 2025-08-26T21:32:55.4519895Z 2025-08-26T21:32:55.4520826Z test_multiprocessing_spawn 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_multiprocessing_spawn_1.1_a004e47174bed40a_.log 2025-08-26T21:32:55.4532014Z Running 31 items in this shard: test/test_multiprocessing_spawn.py::SpawnTest::test_exception_all, test/test_multiprocessing_spawn.py::SpawnTest::test_exception_raises, test/test_multiprocessing_spawn.py::SpawnTest::test_exception_single, test/test_multiprocessing_spawn.py::SpawnTest::test_first_argument_index, test/test_multiprocessing_spawn.py::SpawnTest::test_signal_raises, test/test_multiprocessing_spawn.py::SpawnTest::test_success, test/test_multiprocessing_spawn.py::SpawnTest::test_success_first_then_exception, test/test_multiprocessing_spawn.py::SpawnTest::test_success_non_blocking, test/test_multiprocessing_spawn.py::SpawnTest::test_terminate_exit_grace_period0, test/test_multiprocessing_spawn.py::SpawnTest::test_terminate_exit_grace_period_20, test/test_multiprocessing_spawn.py::SpawnTest::test_terminate_signal, test/test_multiprocessing_spawn.py::ForkTest::test_exception_all, test/test_multiprocessing_spawn.py::ForkTest::test_exception_single, test/test_multiprocessing_spawn.py::ForkTest::test_first_argument_index, test/test_multiprocessing_spawn.py::ForkTest::test_success, test/test_multiprocessing_spawn.py::ForkTest::test_success_first_then_exception, test/test_multiprocessing_spawn.py::ForkTest::test_success_non_blocking, test/test_multiprocessing_spawn.py::ForkTest::test_terminate_exit_grace_period0, test/test_multiprocessing_spawn.py::ForkTest::test_terminate_exit_grace_period_20, test/test_multiprocessing_spawn.py::ForkTest::test_terminate_signal, test/test_multiprocessing_spawn.py::ParallelForkServerShouldWorkTest::test_exception_all, test/test_multiprocessing_spawn.py::ParallelForkServerShouldWorkTest::test_exception_single, test/test_multiprocessing_spawn.py::ParallelForkServerShouldWorkTest::test_first_argument_index, test/test_multiprocessing_spawn.py::ParallelForkServerShouldWorkTest::test_success, test/test_multiprocessing_spawn.py::ParallelForkServerShouldWorkTest::test_success_first_then_exception, test/test_multiprocessing_spawn.py::ParallelForkServerShouldWorkTest::test_success_non_blocking, test/test_multiprocessing_spawn.py::ParallelForkServerShouldWorkTest::test_terminate_exit_grace_period0, test/test_multiprocessing_spawn.py::ParallelForkServerShouldWorkTest::test_terminate_exit_grace_period_20, test/test_multiprocessing_spawn.py::ParallelForkServerShouldWorkTest::test_terminate_signal, test/test_multiprocessing_spawn.py::ParallelForkServerPerfTest::test_forkserver_perf, test/test_multiprocessing_spawn.py::ErrorTest::test_errors_pickleable 2025-08-26T21:32:55.4542214Z 2025-08-26T21:32:55.4542399Z Running test_cuda_primary_ctx 1/1 ... [2025-08-26 21:32:55.452445] 2025-08-26T21:32:55.4542796Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:32:55.4544318Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_cuda_primary_ctx.py', '--shard-id=1', '--num-shards=1', '-v', '--subprocess', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:32:55.452445] 2025-08-26T21:33:00.3162251Z 2025-08-26T21:33:00.3163129Z test_cuda_primary_ctx 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_cuda_primary_ctx_1.1_e64952ae30a06b95_.log 2025-08-26T21:33:00.3163876Z Running 0 items in this shard: 2025-08-26T21:33:00.3164053Z 2025-08-26T21:33:00.3168231Z Running test_mobile_optimizer 1/1 ... [2025-08-26 21:33:00.313505] 2025-08-26T21:33:00.3168650Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:33:00.3174705Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_mobile_optimizer.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:33:00.313505] 2025-08-26T21:33:06.6129195Z 2025-08-26T21:33:06.6130101Z test_mobile_optimizer 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_mobile_optimizer_1.1_a22753c8f955d32e_.log 2025-08-26T21:33:06.6133001Z Running 7 items in this shard: test/test_mobile_optimizer.py::TestOptimizer::test_clone_module_with_class, test/test_mobile_optimizer.py::TestOptimizer::test_generate_mobile_module_lints, test/test_mobile_optimizer.py::TestOptimizer::test_hoist_conv_packed_params, test/test_mobile_optimizer.py::TestOptimizer::test_mobilenet_optimize_for_mobile, test/test_mobile_optimizer.py::TestOptimizer::test_optimize_for_mobile, test/test_mobile_optimizer.py::TestOptimizer::test_preserve_bundled_inputs_methods, test/test_mobile_optimizer.py::TestOptimizer::test_quantized_conv_no_asan_failures 2025-08-26T21:33:06.6135499Z 2025-08-26T21:33:06.6135749Z Running test_cuda_trace 1/1 ... [2025-08-26 21:33:06.612610] 2025-08-26T21:33:06.6136214Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:33:06.6142548Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_cuda_trace.py', '--shard-id=1', '--num-shards=1', '-v', '--subprocess', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:33:06.612610] 2025-08-26T21:33:11.0710276Z 2025-08-26T21:33:11.0711064Z test_cuda_trace 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_cuda_trace_1.1_5254698d86a2a69a_.log 2025-08-26T21:33:11.0711787Z Running 0 items in this shard: 2025-08-26T21:33:11.0712011Z 2025-08-26T21:33:11.0716103Z Running test_cuda_nvml_based_avail 1/1 ... [2025-08-26 21:33:11.068787] 2025-08-26T21:33:11.0716593Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:33:11.0722950Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_cuda_nvml_based_avail.py', '--shard-id=1', '--num-shards=1', '-v', '--subprocess', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:33:11.071904] 2025-08-26T21:33:15.4503040Z 2025-08-26T21:33:15.4504224Z test_cuda_nvml_based_avail 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_cuda_nvml_based_avail_1.1_7a1eea40262dad07_.log 2025-08-26T21:33:15.4505090Z Running 0 items in this shard: 2025-08-26T21:33:15.4505287Z 2025-08-26T21:33:15.4510671Z Running test_spectral_ops 1/1 ... [2025-08-26 21:33:15.450957] 2025-08-26T21:33:15.4511125Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:33:15.4518012Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_spectral_ops.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:33:15.450957] 2025-08-26T21:33:46.9298763Z 2025-08-26T21:33:46.9299808Z test_spectral_ops 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_spectral_ops_1.1_9532ec3ad7e98e82_.log 2025-08-26T21:33:46.9393214Z Running 281 items in this shard: test/test_spectral_ops.py::TestFFTCPU::test_batch_istft_cpu, test/test_spectral_ops.py::TestFFTCPU::test_complex_istft_real_equiv_cpu_complex128, test/test_spectral_ops.py::TestFFTCPU::test_complex_stft_definition_cpu_complex128, test/test_spectral_ops.py::TestFFTCPU::test_complex_stft_onesided_cpu, test/test_spectral_ops.py::TestFFTCPU::test_complex_stft_real_equiv_cpu_complex128, test/test_spectral_ops.py::TestFFTCPU::test_complex_stft_roundtrip_cpu_complex128, test/test_spectral_ops.py::TestFFTCPU::test_complex_stft_roundtrip_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_cufft_context_cpu_complex128, test/test_spectral_ops.py::TestFFTCPU::test_cufft_context_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_cufft_plan_cache_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_fft2_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_fft2_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_fft_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_fft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_fftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_fftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_hfft2_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_hfft2_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_hfft_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_hfft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_hfftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_hfftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_ifft2_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_ifft2_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_ifft_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_ifft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_ifftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_ifftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_ihfft2_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_ihfft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_ihfftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_irfft2_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_irfft2_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_irfft_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_irfft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_irfftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_irfftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_rfft2_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_rfft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_rfftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_fft2_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_fft2_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_fft_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_fft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_fftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_fftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_hfft2_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_hfft2_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_hfft_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_hfft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_hfftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_hfftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_ifft2_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_ifft2_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_ifft_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_ifft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_ifftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_ifftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_ihfft2_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_ihfft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_ihfftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_irfft2_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_irfft2_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_irfft_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_irfft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_irfftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_irfftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_rfft2_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_rfft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_rfftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_ifft_cpu, test/test_spectral_ops.py::TestFFTCPU::test_fft2_fftn_equivalence_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_fft2_fftn_equivalence_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fft2_invalid_cpu, test/test_spectral_ops.py::TestFFTCPU::test_fft2_numpy_cpu_complex128, test/test_spectral_ops.py::TestFFTCPU::test_fft2_numpy_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_fft2_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_fft2_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_fft_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_fft_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_fftn_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_fftn_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_hfft2_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_hfft2_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_hfft_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_hfft_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_hfftn_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_hfftn_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_ifft2_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_ifft2_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_ifft_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_ifft_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_ifftn_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_ifftn_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_ihfft2_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_ihfft2_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_ihfft_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_ihfft_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_ihfftn_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_ihfftn_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_irfft2_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_irfft2_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_irfft_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_irfft_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_irfftn_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_irfftn_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_rfft2_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_rfft2_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_rfft_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_rfft_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_rfftn_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_rfftn_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_fft2_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_fft2_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_fft_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_fft_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_fftn_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_fftn_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_hfft2_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_hfft2_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_hfft_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_hfft_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_hfftn_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_hfftn_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_ifft2_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_ifft2_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_ifft_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_ifft_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_ifftn_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_ifftn_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_ihfft2_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_ihfft2_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_ihfft_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_ihfft_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_ihfftn_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_ihfftn_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_irfft2_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_irfft2_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_irfft_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_irfft_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_irfftn_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_irfftn_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_rfft2_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_rfft2_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_rfft_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_rfft_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_rfftn_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_rfftn_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_ifft_rfft_irfft_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_fft_input_modification_cpu, test/test_spectral_ops.py::TestFFTCPU::test_fft_invalid_dtypes_cpu, test/test_spectral_ops.py::TestFFTCPU::test_fft_plan_repeatable_cpu, test/test_spectral_ops.py::TestFFTCPU::test_fft_round_trip_cpu_complex128, test/test_spectral_ops.py::TestFFTCPU::test_fft_round_trip_cpu_complex32, test/test_spectral_ops.py::TestFFTCPU::test_fft_round_trip_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_fft_round_trip_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_round_trip_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fft_round_trip_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_fft_type_promotion_cpu_complex128, test/test_spectral_ops.py::TestFFTCPU::test_fft_type_promotion_cpu_complex32, test/test_spectral_ops.py::TestFFTCPU::test_fft_type_promotion_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_fft_type_promotion_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_type_promotion_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fft_type_promotion_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_fft_type_promotion_cpu_int8, test/test_spectral_ops.py::TestFFTCPU::test_fftfreq_numpy_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fftfreq_numpy_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_fftfreq_out_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fftfreq_out_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_fftn_invalid__refs_fft_fftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_fftn_invalid__refs_fft_fftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fftn_invalid__refs_fft_hfftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_fftn_invalid__refs_fft_hfftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fftn_invalid__refs_fft_ifftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_fftn_invalid__refs_fft_ifftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fftn_invalid__refs_fft_ihfftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fftn_invalid__refs_fft_irfftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_fftn_invalid__refs_fft_irfftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fftn_invalid__refs_fft_rfftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fftn_invalid_fft_fftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_fftn_invalid_fft_fftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fftn_invalid_fft_hfftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_fftn_invalid_fft_hfftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fftn_invalid_fft_ifftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_fftn_invalid_fft_ifftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fftn_invalid_fft_ihfftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fftn_invalid_fft_irfftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_fftn_invalid_fft_irfftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fftn_invalid_fft_rfftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fftn_noop_transform_cpu_complex128, test/test_spectral_ops.py::TestFFTCPU::test_fftn_noop_transform_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_fftn_noop_transform_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fftn_noop_transform_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fftn_noop_transform_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_fftn_round_trip_cpu_complex128, test/test_spectral_ops.py::TestFFTCPU::test_fftn_round_trip_cpu_complex32, test/test_spectral_ops.py::TestFFTCPU::test_fftn_round_trip_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_fftn_round_trip_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fftn_round_trip_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fftn_round_trip_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_fftshift_frequencies_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fftshift_frequencies_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_fftshift_numpy_cpu_complex128, test/test_spectral_ops.py::TestFFTCPU::test_fftshift_numpy_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_fftshift_numpy_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fftshift_numpy_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_hfftn_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_hfftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_hfftn_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_ihfftn_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_ihfftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_ihfftn_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_istft_against_librosa_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_istft_linearity_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_istft_of_sine_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_istft_requires_window_cpu, test/test_spectral_ops.py::TestFFTCPU::test_istft_round_trip_simple_cases_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_istft_round_trip_various_params_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_istft_round_trip_with_padding_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_istft_throws_cpu, test/test_spectral_ops.py::TestFFTCPU::test_reference_1d__refs_fft_fft_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_reference_1d__refs_fft_fft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_reference_1d__refs_fft_hfft_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_reference_1d__refs_fft_hfft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_reference_1d__refs_fft_ifft_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_reference_1d__refs_fft_ifft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_reference_1d__refs_fft_ihfft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_reference_1d__refs_fft_irfft_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_reference_1d__refs_fft_irfft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_reference_1d__refs_fft_rfft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_reference_1d_fft_fft_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_reference_1d_fft_fft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_reference_1d_fft_hfft_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_reference_1d_fft_hfft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_reference_1d_fft_ifft_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_reference_1d_fft_ifft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_reference_1d_fft_ihfft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_reference_1d_fft_irfft_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_reference_1d_fft_irfft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_reference_1d_fft_rfft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_reference_nd__refs_fft_fftn_cpu_complex128, test/test_spectral_ops.py::TestFFTCPU::test_reference_nd__refs_fft_fftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_reference_nd__refs_fft_hfftn_cpu_complex128, test/test_spectral_ops.py::TestFFTCPU::test_reference_nd__refs_fft_hfftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_reference_nd__refs_fft_ifftn_cpu_complex128, test/test_spectral_ops.py::TestFFTCPU::test_reference_nd__refs_fft_ifftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_reference_nd__refs_fft_irfftn_cpu_complex128, test/test_spectral_ops.py::TestFFTCPU::test_reference_nd__refs_fft_irfftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_reference_nd_fft_fftn_cpu_complex128, test/test_spectral_ops.py::TestFFTCPU::test_reference_nd_fft_fftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_reference_nd_fft_hfftn_cpu_complex128, test/test_spectral_ops.py::TestFFTCPU::test_reference_nd_fft_hfftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_reference_nd_fft_ifftn_cpu_complex128, test/test_spectral_ops.py::TestFFTCPU::test_reference_nd_fft_ifftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_reference_nd_fft_irfftn_cpu_complex128, test/test_spectral_ops.py::TestFFTCPU::test_reference_nd_fft_irfftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_stft_align_to_window_only_requires_non_center_cpu, test/test_spectral_ops.py::TestFFTCPU::test_stft_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_stft_requires_complex_cpu, test/test_spectral_ops.py::TestFFTCPU::test_stft_requires_window_cpu, test/test_spectral_ops.py::TestFFTCPU::test_stft_roundtrip_complex_window_cpu_complex128, test/test_spectral_ops.py::TestFFTCPU::test_stft_roundtrip_complex_window_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_stft_window_device_cpu, test/test_spectral_ops.py::TestFFTDocExamplesCPU::test_fft2_cpu, test/test_spectral_ops.py::TestFFTDocExamplesCPU::test_fft_cpu, test/test_spectral_ops.py::TestFFTDocExamplesCPU::test_fftfreq_cpu, test/test_spectral_ops.py::TestFFTDocExamplesCPU::test_fftn_cpu, test/test_spectral_ops.py::TestFFTDocExamplesCPU::test_fftshift_cpu, test/test_spectral_ops.py::TestFFTDocExamplesCPU::test_hfft_cpu, test/test_spectral_ops.py::TestFFTDocExamplesCPU::test_ifft2_cpu, test/test_spectral_ops.py::TestFFTDocExamplesCPU::test_ifft_cpu, test/test_spectral_ops.py::TestFFTDocExamplesCPU::test_ifftn_cpu, test/test_spectral_ops.py::TestFFTDocExamplesCPU::test_ifftshift_cpu, test/test_spectral_ops.py::TestFFTDocExamplesCPU::test_ihfft_cpu, test/test_spectral_ops.py::TestFFTDocExamplesCPU::test_irfft2_cpu, test/test_spectral_ops.py::TestFFTDocExamplesCPU::test_irfft_cpu, test/test_spectral_ops.py::TestFFTDocExamplesCPU::test_irfftn_cpu, test/test_spectral_ops.py::TestFFTDocExamplesCPU::test_rfft2_cpu, test/test_spectral_ops.py::TestFFTDocExamplesCPU::test_rfft_cpu, test/test_spectral_ops.py::TestFFTDocExamplesCPU::test_rfftfreq_cpu, test/test_spectral_ops.py::TestFFTDocExamplesCPU::test_rfftn_cpu 2025-08-26T21:33:46.9480213Z 2025-08-26T21:33:46.9480479Z Running distributions/test_distributions 1/1 ... [2025-08-26 21:33:46.925429] 2025-08-26T21:33:46.9480960Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:33:46.9482150Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'distributions/test_distributions.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:33:46.931022] 2025-08-26T21:33:46.9483416Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T21:33:46.9483952Z Uploading artifacts took 0.00 seconds 2025-08-26T21:35:15.4711593Z 2025-08-26T21:35:15.4712670Z distributions/test_distributions 1/1 was successful, full logs can be found in artifacts with path test/test-reports/distributions.test_distributions_1.1_3caaae9b0108427f_.log 2025-08-26T21:35:15.4801775Z Running 230 items in this shard: test/distributions/test_distributions.py::TestDistributions::test_argmax_relaxed_categorical, test/distributions/test_distributions.py::TestDistributions::test_bernoulli, test/distributions/test_distributions.py::TestDistributions::test_bernoulli_3d, test/distributions/test_distributions.py::TestDistributions::test_bernoulli_enumerate_support, test/distributions/test_distributions.py::TestDistributions::test_beta_log_prob, test/distributions/test_distributions.py::TestDistributions::test_beta_sample, test/distributions/test_distributions.py::TestDistributions::test_beta_shape, test/distributions/test_distributions.py::TestDistributions::test_beta_underflow, test/distributions/test_distributions.py::TestDistributions::test_beta_underflow_gpu, test/distributions/test_distributions.py::TestDistributions::test_binomial, test/distributions/test_distributions.py::TestDistributions::test_binomial_bfloat16, test/distributions/test_distributions.py::TestDistributions::test_binomial_enumerate_support, test/distributions/test_distributions.py::TestDistributions::test_binomial_extreme_vals, test/distributions/test_distributions.py::TestDistributions::test_binomial_half, test/distributions/test_distributions.py::TestDistributions::test_binomial_log_prob_and_entropy, test/distributions/test_distributions.py::TestDistributions::test_binomial_log_prob_vectorized_count, test/distributions/test_distributions.py::TestDistributions::test_binomial_sample, test/distributions/test_distributions.py::TestDistributions::test_binomial_stable, test/distributions/test_distributions.py::TestDistributions::test_binomial_vectorized_count, test/distributions/test_distributions.py::TestDistributions::test_categorical_1d, test/distributions/test_distributions.py::TestDistributions::test_categorical_2d, test/distributions/test_distributions.py::TestDistributions::test_categorical_enumerate_support, test/distributions/test_distributions.py::TestDistributions::test_cauchy, test/distributions/test_distributions.py::TestDistributions::test_cdf_icdf_inverse, test/distributions/test_distributions.py::TestDistributions::test_cdf_log_prob, test/distributions/test_distributions.py::TestDistributions::test_chi2_sample, test/distributions/test_distributions.py::TestDistributions::test_chi2_shape, test/distributions/test_distributions.py::TestDistributions::test_continuous_bernoulli, test/distributions/test_distributions.py::TestDistributions::test_continuous_bernoulli_3d, test/distributions/test_distributions.py::TestDistributions::test_dirichlet_log_prob, test/distributions/test_distributions.py::TestDistributions::test_dirichlet_log_prob_zero, test/distributions/test_distributions.py::TestDistributions::test_dirichlet_mode, test/distributions/test_distributions.py::TestDistributions::test_dirichlet_sample, test/distributions/test_distributions.py::TestDistributions::test_dirichlet_shape, test/distributions/test_distributions.py::TestDistributions::test_distribution_expand, test/distributions/test_distributions.py::TestDistributions::test_distribution_subclass_expand, test/distributions/test_distributions.py::TestDistributions::test_enumerate_support_type, test/distributions/test_distributions.py::TestDistributions::test_exponential, test/distributions/test_distributions.py::TestDistributions::test_exponential_sample, test/distributions/test_distributions.py::TestDistributions::test_fishersnedecor, test/distributions/test_distributions.py::TestDistributions::test_fishersnedecor_sample, test/distributions/test_distributions.py::TestDistributions::test_gamma_gpu_sample, test/distributions/test_distributions.py::TestDistributions::test_gamma_gpu_shape, test/distributions/test_distributions.py::TestDistributions::test_gamma_log_prob_at_boundary, test/distributions/test_distributions.py::TestDistributions::test_gamma_sample, test/distributions/test_distributions.py::TestDistributions::test_gamma_shape, test/distributions/test_distributions.py::TestDistributions::test_generalized_pareto, test/distributions/test_distributions.py::TestDistributions::test_generalized_pareto_sample, test/distributions/test_distributions.py::TestDistributions::test_geometric, test/distributions/test_distributions.py::TestDistributions::test_geometric_log_prob_and_entropy, test/distributions/test_distributions.py::TestDistributions::test_geometric_sample, test/distributions/test_distributions.py::TestDistributions::test_gumbel, test/distributions/test_distributions.py::TestDistributions::test_gumbel_sample, test/distributions/test_distributions.py::TestDistributions::test_halfcauchy, test/distributions/test_distributions.py::TestDistributions::test_halfnormal, test/distributions/test_distributions.py::TestDistributions::test_halfnormal_logprob, test/distributions/test_distributions.py::TestDistributions::test_halfnormal_sample, test/distributions/test_distributions.py::TestDistributions::test_has_examples, test/distributions/test_distributions.py::TestDistributions::test_independent_expand, test/distributions/test_distributions.py::TestDistributions::test_independent_shape, test/distributions/test_distributions.py::TestDistributions::test_invalid_parameter_broadcasting, test/distributions/test_distributions.py::TestDistributions::test_inversegamma, test/distributions/test_distributions.py::TestDistributions::test_inversegamma_sample, test/distributions/test_distributions.py::TestDistributions::test_kumaraswamy_mean_variance, test/distributions/test_distributions.py::TestDistributions::test_kumaraswamy_shape, test/distributions/test_distributions.py::TestDistributions::test_laplace, test/distributions/test_distributions.py::TestDistributions::test_laplace_sample, test/distributions/test_distributions.py::TestDistributions::test_lazy_property_grad, test/distributions/test_distributions.py::TestDistributions::test_lkj_cholesky_log_prob, test/distributions/test_distributions.py::TestDistributions::test_logisticnormal, test/distributions/test_distributions.py::TestDistributions::test_logisticnormal_logprob, test/distributions/test_distributions.py::TestDistributions::test_logisticnormal_sample, test/distributions/test_distributions.py::TestDistributions::test_lognormal, test/distributions/test_distributions.py::TestDistributions::test_lognormal_logprob, test/distributions/test_distributions.py::TestDistributions::test_lognormal_sample, test/distributions/test_distributions.py::TestDistributions::test_lowrank_multivariate_normal_log_prob, test/distributions/test_distributions.py::TestDistributions::test_lowrank_multivariate_normal_moments, test/distributions/test_distributions.py::TestDistributions::test_lowrank_multivariate_normal_properties, test/distributions/test_distributions.py::TestDistributions::test_lowrank_multivariate_normal_sample, test/distributions/test_distributions.py::TestDistributions::test_lowrank_multivariate_normal_shape, test/distributions/test_distributions.py::TestDistributions::test_mixture_same_family_binomial_log_prob, test/distributions/test_distributions.py::TestDistributions::test_mixture_same_family_normal_log_prob, test/distributions/test_distributions.py::TestDistributions::test_mixture_same_family_sample, test/distributions/test_distributions.py::TestDistributions::test_mixture_same_family_shape, test/distributions/test_distributions.py::TestDistributions::test_mode, test/distributions/test_distributions.py::TestDistributions::test_multinomial_1d, test/distributions/test_distributions.py::TestDistributions::test_multinomial_1d_log_prob_and_entropy, test/distributions/test_distributions.py::TestDistributions::test_multinomial_2d, test/distributions/test_distributions.py::TestDistributions::test_multinomial_sequential_draw, test/distributions/test_distributions.py::TestDistributions::test_multivariate_normal_log_prob, test/distributions/test_distributions.py::TestDistributions::test_multivariate_normal_moments, test/distributions/test_distributions.py::TestDistributions::test_multivariate_normal_properties, test/distributions/test_distributions.py::TestDistributions::test_multivariate_normal_sample, test/distributions/test_distributions.py::TestDistributions::test_multivariate_normal_shape, test/distributions/test_distributions.py::TestDistributions::test_multivariate_normal_stable_with_precision_matrix, test/distributions/test_distributions.py::TestDistributions::test_negative_binomial, test/distributions/test_distributions.py::TestDistributions::test_negative_binomial_log_prob, test/distributions/test_distributions.py::TestDistributions::test_negative_binomial_log_prob_vectorized_count, test/distributions/test_distributions.py::TestDistributions::test_normal, test/distributions/test_distributions.py::TestDistributions::test_normal_sample, test/distributions/test_distributions.py::TestDistributions::test_one_hot_categorical_1d, test/distributions/test_distributions.py::TestDistributions::test_one_hot_categorical_2d, test/distributions/test_distributions.py::TestDistributions::test_one_hot_categorical_enumerate_support, test/distributions/test_distributions.py::TestDistributions::test_pareto, test/distributions/test_distributions.py::TestDistributions::test_pareto_sample, test/distributions/test_distributions.py::TestDistributions::test_poisson_forward_ad, test/distributions/test_distributions.py::TestDistributions::test_poisson_gpu_sample, test/distributions/test_distributions.py::TestDistributions::test_poisson_log_prob, test/distributions/test_distributions.py::TestDistributions::test_poisson_sample, test/distributions/test_distributions.py::TestDistributions::test_poisson_shape, test/distributions/test_distributions.py::TestDistributions::test_relaxed_bernoulli, test/distributions/test_distributions.py::TestDistributions::test_relaxed_one_hot_categorical_1d, test/distributions/test_distributions.py::TestDistributions::test_relaxed_one_hot_categorical_2d, test/distributions/test_distributions.py::TestDistributions::test_repr, test/distributions/test_distributions.py::TestDistributions::test_rounded_relaxed_bernoulli, test/distributions/test_distributions.py::TestDistributions::test_rsample_requires_grad, test/distributions/test_distributions.py::TestDistributions::test_sample_detached, test/distributions/test_distributions.py::TestDistributions::test_studentT, test/distributions/test_distributions.py::TestDistributions::test_studentT_log_prob, test/distributions/test_distributions.py::TestDistributions::test_studentT_sample, test/distributions/test_distributions.py::TestDistributions::test_support_attributes, test/distributions/test_distributions.py::TestDistributions::test_torch_binomial_dtype_errors, test/distributions/test_distributions.py::TestDistributions::test_uniform, test/distributions/test_distributions.py::TestDistributions::test_valid_parameter_broadcasting, test/distributions/test_distributions.py::TestDistributions::test_vonmises_logprob, test/distributions/test_distributions.py::TestDistributions::test_vonmises_sample, test/distributions/test_distributions.py::TestDistributions::test_wishart_log_prob, test/distributions/test_distributions.py::TestDistributions::test_wishart_moments, test/distributions/test_distributions.py::TestDistributions::test_wishart_properties, test/distributions/test_distributions.py::TestDistributions::test_wishart_sample, test/distributions/test_distributions.py::TestDistributions::test_wishart_shape, test/distributions/test_distributions.py::TestDistributions::test_wishart_stable_with_precision_matrix, test/distributions/test_distributions.py::TestDistributions::test_zero_excluded_binomial, test/distributions/test_distributions.py::TestRsample::test_beta_wrt_alpha, test/distributions/test_distributions.py::TestRsample::test_beta_wrt_beta, test/distributions/test_distributions.py::TestRsample::test_chi2, test/distributions/test_distributions.py::TestRsample::test_dirichlet_multivariate, test/distributions/test_distributions.py::TestRsample::test_dirichlet_on_diagonal, test/distributions/test_distributions.py::TestRsample::test_dirichlet_tangent_field, test/distributions/test_distributions.py::TestRsample::test_gamma, test/distributions/test_distributions.py::TestDistributionShapes::test_bernoulli_shape_scalar_params, test/distributions/test_distributions.py::TestDistributionShapes::test_bernoulli_shape_tensor_params, test/distributions/test_distributions.py::TestDistributionShapes::test_beta_shape_scalar_params, test/distributions/test_distributions.py::TestDistributionShapes::test_beta_shape_tensor_params, test/distributions/test_distributions.py::TestDistributionShapes::test_binomial_shape, test/distributions/test_distributions.py::TestDistributionShapes::test_binomial_shape_vectorized_n, test/distributions/test_distributions.py::TestDistributionShapes::test_categorical_shape, test/distributions/test_distributions.py::TestDistributionShapes::test_cauchy_shape_scalar_params, test/distributions/test_distributions.py::TestDistributionShapes::test_cauchy_shape_tensor_params, test/distributions/test_distributions.py::TestDistributionShapes::test_chi2_shape_scalar_params, test/distributions/test_distributions.py::TestDistributionShapes::test_chi2_shape_tensor_params, test/distributions/test_distributions.py::TestDistributionShapes::test_continuous_bernoulli_shape_scalar_params, test/distributions/test_distributions.py::TestDistributionShapes::test_continuous_bernoulli_shape_tensor_params, test/distributions/test_distributions.py::TestDistributionShapes::test_dirichlet_shape, test/distributions/test_distributions.py::TestDistributionShapes::test_entropy_shape, test/distributions/test_distributions.py::TestDistributionShapes::test_exponential_shape_scalar_param, test/distributions/test_distributions.py::TestDistributionShapes::test_exponential_shape_tensor_param, test/distributions/test_distributions.py::TestDistributionShapes::test_gamma_shape_scalar_params, test/distributions/test_distributions.py::TestDistributionShapes::test_gamma_shape_tensor_params, test/distributions/test_distributions.py::TestDistributionShapes::test_geometric_shape_scalar_params, test/distributions/test_distributions.py::TestDistributionShapes::test_geometric_shape_tensor_params, test/distributions/test_distributions.py::TestDistributionShapes::test_gumbel_shape_scalar_params, test/distributions/test_distributions.py::TestDistributionShapes::test_halfcauchy_shape_scalar_params, test/distributions/test_distributions.py::TestDistributionShapes::test_halfcauchy_shape_tensor_params, test/distributions/test_distributions.py::TestDistributionShapes::test_kumaraswamy_shape_scalar_params, test/distributions/test_distributions.py::TestDistributionShapes::test_laplace_shape_scalar_params, test/distributions/test_distributions.py::TestDistributionShapes::test_laplace_shape_tensor_params, test/distributions/test_distributions.py::TestDistributionShapes::test_mixture_same_family_mean_shape, test/distributions/test_distributions.py::TestDistributionShapes::test_mixture_same_family_shape, test/distributions/test_distributions.py::TestDistributionShapes::test_multinomial_shape, test/distributions/test_distributions.py::TestDistributionShapes::test_normal_shape_scalar_params, test/distributions/test_distributions.py::TestDistributionShapes::test_normal_shape_tensor_params, test/distributions/test_distributions.py::TestDistributionShapes::test_one_hot_categorical_shape, test/distributions/test_distributions.py::TestDistributionShapes::test_pareto_shape_scalar_params, test/distributions/test_distributions.py::TestDistributionShapes::test_studentT_shape_scalar_params, test/distributions/test_distributions.py::TestDistributionShapes::test_studentT_shape_tensor_params, test/distributions/test_distributions.py::TestDistributionShapes::test_uniform_shape_scalar_params, test/distributions/test_distributions.py::TestDistributionShapes::test_uniform_shape_tensor_params, test/distributions/test_distributions.py::TestDistributionShapes::test_vonmises_shape_scalar_params, test/distributions/test_distributions.py::TestDistributionShapes::test_vonmises_shape_tensor_params, test/distributions/test_distributions.py::TestDistributionShapes::test_weibull_scale_scalar_params, test/distributions/test_distributions.py::TestDistributionShapes::test_wishart_shape_scalar_params, test/distributions/test_distributions.py::TestDistributionShapes::test_wishart_shape_tensor_params, test/distributions/test_distributions.py::TestKL::test_entropy_exponential_family, test/distributions/test_distributions.py::TestKL::test_entropy_monte_carlo, test/distributions/test_distributions.py::TestKL::test_kl_edgecases, test/distributions/test_distributions.py::TestKL::test_kl_exponential_family, test/distributions/test_distributions.py::TestKL::test_kl_infinite, test/distributions/test_distributions.py::TestKL::test_kl_lowrank_multivariate_normal, test/distributions/test_distributions.py::TestKL::test_kl_lowrank_multivariate_normal_batched, test/distributions/test_distributions.py::TestKL::test_kl_monte_carlo, test/distributions/test_distributions.py::TestKL::test_kl_multivariate_normal, test/distributions/test_distributions.py::TestKL::test_kl_multivariate_normal_batched, test/distributions/test_distributions.py::TestKL::test_kl_multivariate_normal_batched_broadcasted, test/distributions/test_distributions.py::TestKL::test_kl_shape, test/distributions/test_distributions.py::TestKL::test_kl_transformed, test/distributions/test_distributions.py::TestConstraints::test_params_constraints, test/distributions/test_distributions.py::TestConstraints::test_support_constraints, test/distributions/test_distributions.py::TestNumericalStability::test_bernoulli_gradient, test/distributions/test_distributions.py::TestNumericalStability::test_bernoulli_with_logits_overflow, test/distributions/test_distributions.py::TestNumericalStability::test_bernoulli_with_logits_underflow, test/distributions/test_distributions.py::TestNumericalStability::test_categorical_log_prob, test/distributions/test_distributions.py::TestNumericalStability::test_categorical_log_prob_with_logits, test/distributions/test_distributions.py::TestNumericalStability::test_continuous_bernoulli_gradient, test/distributions/test_distributions.py::TestNumericalStability::test_continuous_bernoulli_with_logits_overflow, test/distributions/test_distributions.py::TestNumericalStability::test_continuous_bernoulli_with_logits_underflow, test/distributions/test_distributions.py::TestNumericalStability::test_multinomial_log_prob, test/distributions/test_distributions.py::TestNumericalStability::test_multinomial_log_prob_with_logits, test/distributions/test_distributions.py::TestLazyLogitsInitialization::test_lazy_logits_initialization, test/distributions/test_distributions.py::TestLazyLogitsInitialization::test_lazy_probs_initialization, test/distributions/test_distributions.py::TestAgainstScipy::test_cdf, test/distributions/test_distributions.py::TestAgainstScipy::test_icdf, test/distributions/test_distributions.py::TestAgainstScipy::test_mean, test/distributions/test_distributions.py::TestAgainstScipy::test_variance_stddev, test/distributions/test_distributions.py::TestFunctors::test_cat_event_dim, test/distributions/test_distributions.py::TestFunctors::test_cat_transform, test/distributions/test_distributions.py::TestFunctors::test_cat_transform_non_uniform, test/distributions/test_distributions.py::TestFunctors::test_stack_transform, test/distributions/test_distributions.py::TestValidation::test_invalid, test/distributions/test_distributions.py::TestValidation::test_invalid_log_probs_arg, test/distributions/test_distributions.py::TestValidation::test_valid, test/distributions/test_distributions.py::TestValidation::test_warning_unimplemented_constraints, test/distributions/test_distributions.py::TestJit::test_cdf, test/distributions/test_distributions.py::TestJit::test_entropy, test/distributions/test_distributions.py::TestJit::test_enumerate_support, test/distributions/test_distributions.py::TestJit::test_log_prob, test/distributions/test_distributions.py::TestJit::test_mean, test/distributions/test_distributions.py::TestJit::test_rsample, test/distributions/test_distributions.py::TestJit::test_sample, test/distributions/test_distributions.py::TestJit::test_variance 2025-08-26T21:35:15.4888604Z 2025-08-26T21:35:15.4888850Z Running test_cpp_extensions_aot_no_ninja 1/1 ... [2025-08-26 21:35:15.466564] 2025-08-26T21:35:19.3346943Z running install 2025-08-26T21:35:19.3350153Z C:\Jenkins\Miniconda3\lib\site-packages\setuptools\_distutils\cmd.py:90: SetuptoolsDeprecationWarning: setup.py install is deprecated. 2025-08-26T21:35:19.3350865Z !! 2025-08-26T21:35:19.3350980Z 2025-08-26T21:35:19.3351155Z ******************************************************************************** 2025-08-26T21:35:19.3351528Z Please avoid running ``setup.py`` directly. 2025-08-26T21:35:19.3351933Z Instead, use pypa/build, pypa/installer or other 2025-08-26T21:35:19.3352317Z standards-based tools. 2025-08-26T21:35:19.3352525Z 2025-08-26T21:35:19.3352821Z See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details. 2025-08-26T21:35:19.3353330Z ******************************************************************************** 2025-08-26T21:35:19.3353599Z 2025-08-26T21:35:19.3353682Z !! 2025-08-26T21:35:19.3353914Z self.initialize_options() 2025-08-26T21:35:19.3468454Z running build 2025-08-26T21:35:19.3468762Z running build_py 2025-08-26T21:35:19.3577965Z creating build\lib.win-amd64-cpython-39\torch_test_cpp_extension 2025-08-26T21:35:19.3584536Z copying torch_test_cpp_extension\__init__.py -> build\lib.win-amd64-cpython-39\torch_test_cpp_extension 2025-08-26T21:35:19.3592582Z running build_ext 2025-08-26T21:35:19.3612483Z building 'torch_test_cpp_extension.cpp' extension 2025-08-26T21:35:19.3624839Z creating build\temp.win-amd64-cpython-39\Release 2025-08-26T21:35:19.3640222Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64\cl.exe" /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include -IC:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\api\include -Iself_compiler_include_dirs_test -IC:\Jenkins\Miniconda3\include -IC:\Jenkins\Miniconda3\Include "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" /EHsc /Tpextension.cpp /Fobuild\temp.win-amd64-cpython-39\Release\extension.obj /MD /wd4819 /wd4251 /wd4244 /wd4267 /wd4275 /wd4018 /wd4190 /wd4624 /wd4067 /wd4068 /EHsc /sdl /permissive- -DTORCH_API_INCLUDE_EXTENSION_H -DTORCH_EXTENSION_NAME=cpp /std:c++17 2025-08-26T21:35:19.3749324Z extension.cpp 2025-08-26T21:35:35.3806146Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64\link.exe" /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib /LIBPATH:C:\Jenkins\Miniconda3\libs /LIBPATH:C:\Jenkins\Miniconda3 /LIBPATH:C:\Jenkins\Miniconda3\PCbuild\amd64 "/LIBPATH:C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64" c10.lib torch.lib torch_cpu.lib torch_python.lib sleef.lib /EXPORT:PyInit_cpp build\temp.win-amd64-cpython-39\Release\extension.obj /OUT:build\lib.win-amd64-cpython-39\torch_test_cpp_extension\cpp.cp39-win_amd64.pyd /IMPLIB:build\temp.win-amd64-cpython-39\Release\cpp.cp39-win_amd64.lib 2025-08-26T21:35:35.6432214Z Creating library build\temp.win-amd64-cpython-39\Release\cpp.cp39-win_amd64.lib and object build\temp.win-amd64-cpython-39\Release\cpp.cp39-win_amd64.exp 2025-08-26T21:35:35.6565628Z Generating code 2025-08-26T21:35:37.5339956Z Finished generating code 2025-08-26T21:35:37.6641302Z building 'torch_test_cpp_extension.maia' extension 2025-08-26T21:35:37.6652351Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64\cl.exe" /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include -IC:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\api\include -Iself_compiler_include_dirs_test -IC:\Jenkins\Miniconda3\include -IC:\Jenkins\Miniconda3\Include "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" /EHsc /Tpmaia_extension.cpp /Fobuild\temp.win-amd64-cpython-39\Release\maia_extension.obj /MD /wd4819 /wd4251 /wd4244 /wd4267 /wd4275 /wd4018 /wd4190 /wd4624 /wd4067 /wd4068 /EHsc /sdl /permissive- -DTORCH_API_INCLUDE_EXTENSION_H -DTORCH_EXTENSION_NAME=maia /std:c++17 2025-08-26T21:35:37.6758469Z maia_extension.cpp 2025-08-26T21:35:53.6245999Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64\link.exe" /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib /LIBPATH:C:\Jenkins\Miniconda3\libs /LIBPATH:C:\Jenkins\Miniconda3 /LIBPATH:C:\Jenkins\Miniconda3\PCbuild\amd64 "/LIBPATH:C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64" c10.lib torch.lib torch_cpu.lib torch_python.lib sleef.lib /EXPORT:PyInit_maia build\temp.win-amd64-cpython-39\Release\maia_extension.obj /OUT:build\lib.win-amd64-cpython-39\torch_test_cpp_extension\maia.cp39-win_amd64.pyd /IMPLIB:build\temp.win-amd64-cpython-39\Release\maia.cp39-win_amd64.lib 2025-08-26T21:35:53.8989401Z Creating library build\temp.win-amd64-cpython-39\Release\maia.cp39-win_amd64.lib and object build\temp.win-amd64-cpython-39\Release\maia.cp39-win_amd64.exp 2025-08-26T21:35:53.9082248Z Generating code 2025-08-26T21:35:55.4387407Z Finished generating code 2025-08-26T21:35:55.5831458Z building 'torch_test_cpp_extension.rng' extension 2025-08-26T21:35:55.5842716Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64\cl.exe" /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include -IC:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\api\include -Iself_compiler_include_dirs_test -IC:\Jenkins\Miniconda3\include -IC:\Jenkins\Miniconda3\Include "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" /EHsc /Tprng_extension.cpp /Fobuild\temp.win-amd64-cpython-39\Release\rng_extension.obj /MD /wd4819 /wd4251 /wd4244 /wd4267 /wd4275 /wd4018 /wd4190 /wd4624 /wd4067 /wd4068 /EHsc /sdl /permissive- -DTORCH_API_INCLUDE_EXTENSION_H -DTORCH_EXTENSION_NAME=rng /std:c++17 2025-08-26T21:35:55.5947605Z rng_extension.cpp 2025-08-26T21:36:08.2155288Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1158): warning C4305: 'initializing': truncation from 'double' to 'float' 2025-08-26T21:36:08.2156630Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1158): note: the template instantiation context (the oldest one first) is 2025-08-26T21:36:08.2158140Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1209): note: see reference to function template instantiation 'scalar_t calc_igamma(scalar_t,scalar_t)' being compiled 2025-08-26T21:36:08.2159093Z with 2025-08-26T21:36:08.2159329Z [ 2025-08-26T21:36:08.2159549Z scalar_t=float 2025-08-26T21:36:08.2159875Z ] 2025-08-26T21:36:08.2160653Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1079): warning C4305: 'initializing': truncation from 'double' to 'float' 2025-08-26T21:36:08.2162089Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1079): note: the template instantiation context (the oldest one first) is 2025-08-26T21:36:08.2163555Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1223): note: see reference to function template instantiation 'scalar_t calc_igammac(scalar_t,scalar_t)' being compiled 2025-08-26T21:36:08.2164520Z with 2025-08-26T21:36:08.2164746Z [ 2025-08-26T21:36:08.2164945Z scalar_t=float 2025-08-26T21:36:08.2165208Z ] 2025-08-26T21:36:09.8096743Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(716): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8097648Z with 2025-08-26T21:36:09.8097851Z [ 2025-08-26T21:36:09.8098093Z scalar_t=float 2025-08-26T21:36:09.8098421Z ] 2025-08-26T21:36:09.8099149Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(716): note: the template instantiation context (the oldest one first) is 2025-08-26T21:36:09.8100612Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1209): note: see reference to function template instantiation 'scalar_t calc_igamma(scalar_t,scalar_t)' being compiled 2025-08-26T21:36:09.8101621Z with 2025-08-26T21:36:09.8101862Z [ 2025-08-26T21:36:09.8102093Z scalar_t=float 2025-08-26T21:36:09.8102368Z ] 2025-08-26T21:36:09.8103772Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1192): note: see reference to function template instantiation 'scalar_t _igam_helper_asymptotic_series(scalar_t,scalar_t,bool)' being compiled 2025-08-26T21:36:09.8105259Z with 2025-08-26T21:36:09.8105493Z [ 2025-08-26T21:36:09.8105725Z scalar_t=float 2025-08-26T21:36:09.8106002Z ] 2025-08-26T21:36:09.8106816Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(716): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8107649Z with 2025-08-26T21:36:09.8107862Z [ 2025-08-26T21:36:09.8108090Z scalar_t=float 2025-08-26T21:36:09.8108356Z ] 2025-08-26T21:36:09.8109111Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(716): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8110530Z with 2025-08-26T21:36:09.8110745Z [ 2025-08-26T21:36:09.8111068Z scalar_t=float 2025-08-26T21:36:09.8111318Z ] 2025-08-26T21:36:09.8112051Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(717): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8112861Z with 2025-08-26T21:36:09.8113086Z [ 2025-08-26T21:36:09.8113293Z scalar_t=float 2025-08-26T21:36:09.8113560Z ] 2025-08-26T21:36:09.8114271Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(717): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8115114Z with 2025-08-26T21:36:09.8115518Z [ 2025-08-26T21:36:09.8115861Z scalar_t=float 2025-08-26T21:36:09.8116317Z ] 2025-08-26T21:36:09.8117132Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(717): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8117968Z with 2025-08-26T21:36:09.8118170Z [ 2025-08-26T21:36:09.8118398Z scalar_t=float 2025-08-26T21:36:09.8118637Z ] 2025-08-26T21:36:09.8119385Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(718): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8120302Z with 2025-08-26T21:36:09.8120506Z [ 2025-08-26T21:36:09.8120734Z scalar_t=float 2025-08-26T21:36:09.8120978Z ] 2025-08-26T21:36:09.8122259Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(718): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8123116Z with 2025-08-26T21:36:09.8123345Z [ 2025-08-26T21:36:09.8123573Z scalar_t=float 2025-08-26T21:36:09.8123822Z ] 2025-08-26T21:36:09.8124558Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(718): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8125350Z with 2025-08-26T21:36:09.8125588Z [ 2025-08-26T21:36:09.8125785Z scalar_t=float 2025-08-26T21:36:09.8126052Z ] 2025-08-26T21:36:09.8126763Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(719): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8128074Z with 2025-08-26T21:36:09.8128402Z [ 2025-08-26T21:36:09.8128606Z scalar_t=float 2025-08-26T21:36:09.8128875Z ] 2025-08-26T21:36:09.8129584Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(719): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8130397Z with 2025-08-26T21:36:09.8130598Z [ 2025-08-26T21:36:09.8130832Z scalar_t=float 2025-08-26T21:36:09.8131491Z ] 2025-08-26T21:36:09.8132254Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(719): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8133159Z with 2025-08-26T21:36:09.8133620Z [ 2025-08-26T21:36:09.8134002Z scalar_t=float 2025-08-26T21:36:09.8134397Z ] 2025-08-26T21:36:09.8135129Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(720): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8135918Z with 2025-08-26T21:36:09.8136156Z [ 2025-08-26T21:36:09.8136351Z scalar_t=float 2025-08-26T21:36:09.8136620Z ] 2025-08-26T21:36:09.8137345Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(720): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8138202Z with 2025-08-26T21:36:09.8138426Z [ 2025-08-26T21:36:09.8138637Z scalar_t=float 2025-08-26T21:36:09.8138900Z ] 2025-08-26T21:36:09.8140009Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(720): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8141070Z with 2025-08-26T21:36:09.8141294Z [ 2025-08-26T21:36:09.8141500Z scalar_t=float 2025-08-26T21:36:09.8141771Z ] 2025-08-26T21:36:09.8142551Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(721): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8143375Z with 2025-08-26T21:36:09.8143584Z [ 2025-08-26T21:36:09.8143810Z scalar_t=float 2025-08-26T21:36:09.8144139Z ] 2025-08-26T21:36:09.8144867Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(721): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8146134Z with 2025-08-26T21:36:09.8146460Z [ 2025-08-26T21:36:09.8146682Z scalar_t=float 2025-08-26T21:36:09.8147021Z ] 2025-08-26T21:36:09.8147773Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(721): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8148585Z with 2025-08-26T21:36:09.8148779Z [ 2025-08-26T21:36:09.8149016Z scalar_t=float 2025-08-26T21:36:09.8149253Z ] 2025-08-26T21:36:09.8149986Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(722): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8150775Z with 2025-08-26T21:36:09.8151012Z [ 2025-08-26T21:36:09.8151367Z scalar_t=float 2025-08-26T21:36:09.8151819Z ] 2025-08-26T21:36:09.8152820Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(722): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8153620Z with 2025-08-26T21:36:09.8153840Z [ 2025-08-26T21:36:09.8154046Z scalar_t=float 2025-08-26T21:36:09.8154316Z ] 2025-08-26T21:36:09.8155028Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(722): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8155848Z with 2025-08-26T21:36:09.8156083Z [ 2025-08-26T21:36:09.8156282Z scalar_t=float 2025-08-26T21:36:09.8156543Z ] 2025-08-26T21:36:09.8157450Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(723): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8158754Z with 2025-08-26T21:36:09.8158959Z [ 2025-08-26T21:36:09.8159184Z scalar_t=float 2025-08-26T21:36:09.8159425Z ] 2025-08-26T21:36:09.8160203Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(723): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8161023Z with 2025-08-26T21:36:09.8161227Z [ 2025-08-26T21:36:09.8161455Z scalar_t=float 2025-08-26T21:36:09.8161698Z ] 2025-08-26T21:36:09.8162428Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(723): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8163436Z with 2025-08-26T21:36:09.8163779Z [ 2025-08-26T21:36:09.8164151Z scalar_t=float 2025-08-26T21:36:09.8164472Z ] 2025-08-26T21:36:09.8165280Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(724): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8166065Z with 2025-08-26T21:36:09.8166290Z [ 2025-08-26T21:36:09.8166489Z scalar_t=float 2025-08-26T21:36:09.8166769Z ] 2025-08-26T21:36:09.8167473Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(725): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8168288Z with 2025-08-26T21:36:09.8168481Z [ 2025-08-26T21:36:09.8168707Z scalar_t=float 2025-08-26T21:36:09.8169018Z ] 2025-08-26T21:36:09.8170305Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(725): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8171118Z with 2025-08-26T21:36:09.8171315Z [ 2025-08-26T21:36:09.8171547Z scalar_t=float 2025-08-26T21:36:09.8171785Z ] 2025-08-26T21:36:09.8172506Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(725): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8173375Z with 2025-08-26T21:36:09.8173601Z [ 2025-08-26T21:36:09.8173821Z scalar_t=float 2025-08-26T21:36:09.8174059Z ] 2025-08-26T21:36:09.8174791Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(726): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8176186Z with 2025-08-26T21:36:09.8176411Z [ 2025-08-26T21:36:09.8176619Z scalar_t=float 2025-08-26T21:36:09.8176879Z ] 2025-08-26T21:36:09.8177587Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(726): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8178405Z with 2025-08-26T21:36:09.8178619Z [ 2025-08-26T21:36:09.8178820Z scalar_t=float 2025-08-26T21:36:09.8179077Z ] 2025-08-26T21:36:09.8179783Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(726): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8180582Z with 2025-08-26T21:36:09.8180804Z [ 2025-08-26T21:36:09.8181205Z scalar_t=float 2025-08-26T21:36:09.8181584Z ] 2025-08-26T21:36:09.8182579Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(727): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8183399Z with 2025-08-26T21:36:09.8183597Z [ 2025-08-26T21:36:09.8183825Z scalar_t=float 2025-08-26T21:36:09.8184067Z ] 2025-08-26T21:36:09.8184881Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(727): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8185671Z with 2025-08-26T21:36:09.8185896Z [ 2025-08-26T21:36:09.8186097Z scalar_t=float 2025-08-26T21:36:09.8186413Z ] 2025-08-26T21:36:09.8187512Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(727): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8188572Z with 2025-08-26T21:36:09.8188796Z [ 2025-08-26T21:36:09.8188997Z scalar_t=float 2025-08-26T21:36:09.8189261Z ] 2025-08-26T21:36:09.8189969Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(728): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8190780Z with 2025-08-26T21:36:09.8191065Z [ 2025-08-26T21:36:09.8191283Z scalar_t=float 2025-08-26T21:36:09.8192350Z ] 2025-08-26T21:36:09.8193413Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(728): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8194507Z with 2025-08-26T21:36:09.8194707Z [ 2025-08-26T21:36:09.8194933Z scalar_t=float 2025-08-26T21:36:09.8195166Z ] 2025-08-26T21:36:09.8195895Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(728): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8196699Z with 2025-08-26T21:36:09.8196888Z [ 2025-08-26T21:36:09.8197115Z scalar_t=float 2025-08-26T21:36:09.8197355Z ] 2025-08-26T21:36:09.8198084Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(729): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8199117Z with 2025-08-26T21:36:09.8199476Z [ 2025-08-26T21:36:09.8199815Z scalar_t=float 2025-08-26T21:36:09.8200115Z ] 2025-08-26T21:36:09.8200846Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(729): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8201721Z with 2025-08-26T21:36:09.8201947Z [ 2025-08-26T21:36:09.8202146Z scalar_t=float 2025-08-26T21:36:09.8202411Z ] 2025-08-26T21:36:09.8203114Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(729): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8203931Z with 2025-08-26T21:36:09.8204122Z [ 2025-08-26T21:36:09.8204343Z scalar_t=float 2025-08-26T21:36:09.8204651Z ] 2025-08-26T21:36:09.8205912Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(730): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8206717Z with 2025-08-26T21:36:09.8206909Z [ 2025-08-26T21:36:09.8207130Z scalar_t=float 2025-08-26T21:36:09.8207368Z ] 2025-08-26T21:36:09.8208098Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(730): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8208908Z with 2025-08-26T21:36:09.8209104Z [ 2025-08-26T21:36:09.8209326Z scalar_t=float 2025-08-26T21:36:09.8209565Z ] 2025-08-26T21:36:09.8210287Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(730): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8211604Z with 2025-08-26T21:36:09.8211890Z [ 2025-08-26T21:36:09.8212177Z scalar_t=float 2025-08-26T21:36:09.8212450Z ] 2025-08-26T21:36:09.8213153Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(731): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8214007Z with 2025-08-26T21:36:09.8214235Z [ 2025-08-26T21:36:09.8214440Z scalar_t=float 2025-08-26T21:36:09.8214703Z ] 2025-08-26T21:36:09.8215435Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(731): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8216255Z with 2025-08-26T21:36:09.8216519Z [ 2025-08-26T21:36:09.8216920Z scalar_t=float 2025-08-26T21:36:09.8217330Z ] 2025-08-26T21:36:09.8218215Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(731): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8219414Z with 2025-08-26T21:36:09.8219611Z [ 2025-08-26T21:36:09.8219837Z scalar_t=float 2025-08-26T21:36:09.8220076Z ] 2025-08-26T21:36:09.8220812Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(732): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8221597Z with 2025-08-26T21:36:09.8221870Z [ 2025-08-26T21:36:09.8222096Z scalar_t=float 2025-08-26T21:36:09.8222355Z ] 2025-08-26T21:36:09.8223663Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(732): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8224454Z with 2025-08-26T21:36:09.8224677Z [ 2025-08-26T21:36:09.8224877Z scalar_t=float 2025-08-26T21:36:09.8225130Z ] 2025-08-26T21:36:09.8225835Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(732): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8226639Z with 2025-08-26T21:36:09.8226858Z [ 2025-08-26T21:36:09.8227132Z scalar_t=float 2025-08-26T21:36:09.8227399Z ] 2025-08-26T21:36:09.8228103Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(733): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8229443Z with 2025-08-26T21:36:09.8229727Z [ 2025-08-26T21:36:09.8229953Z scalar_t=float 2025-08-26T21:36:09.8230190Z ] 2025-08-26T21:36:09.8230914Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(734): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8231721Z with 2025-08-26T21:36:09.8231921Z [ 2025-08-26T21:36:09.8232146Z scalar_t=float 2025-08-26T21:36:09.8232386Z ] 2025-08-26T21:36:09.8233117Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(734): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8233902Z with 2025-08-26T21:36:09.8234130Z [ 2025-08-26T21:36:09.8234394Z scalar_t=float 2025-08-26T21:36:09.8234876Z ] 2025-08-26T21:36:09.8235911Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(734): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8236696Z with 2025-08-26T21:36:09.8236916Z [ 2025-08-26T21:36:09.8237111Z scalar_t=float 2025-08-26T21:36:09.8237372Z ] 2025-08-26T21:36:09.8238152Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(735): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8238973Z with 2025-08-26T21:36:09.8239175Z [ 2025-08-26T21:36:09.8239405Z scalar_t=float 2025-08-26T21:36:09.8239722Z ] 2025-08-26T21:36:09.8240734Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(735): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8241911Z with 2025-08-26T21:36:09.8242118Z [ 2025-08-26T21:36:09.8242349Z scalar_t=float 2025-08-26T21:36:09.8242589Z ] 2025-08-26T21:36:09.8243335Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(735): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8244131Z with 2025-08-26T21:36:09.8244362Z [ 2025-08-26T21:36:09.8244597Z scalar_t=float 2025-08-26T21:36:09.8244905Z ] 2025-08-26T21:36:09.8245653Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(736): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8246758Z with 2025-08-26T21:36:09.8247033Z [ 2025-08-26T21:36:09.8247368Z scalar_t=float 2025-08-26T21:36:09.8247747Z ] 2025-08-26T21:36:09.8248457Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(736): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8249277Z with 2025-08-26T21:36:09.8249505Z [ 2025-08-26T21:36:09.8249710Z scalar_t=float 2025-08-26T21:36:09.8249979Z ] 2025-08-26T21:36:09.8250690Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(736): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8251507Z with 2025-08-26T21:36:09.8251717Z [ 2025-08-26T21:36:09.8251951Z scalar_t=float 2025-08-26T21:36:09.8252190Z ] 2025-08-26T21:36:09.8253519Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(737): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8254436Z with 2025-08-26T21:36:09.8254640Z [ 2025-08-26T21:36:09.8254870Z scalar_t=float 2025-08-26T21:36:09.8255116Z ] 2025-08-26T21:36:09.8255844Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(737): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8256640Z with 2025-08-26T21:36:09.8256867Z [ 2025-08-26T21:36:09.8257070Z scalar_t=float 2025-08-26T21:36:09.8257337Z ] 2025-08-26T21:36:09.8258073Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(737): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8259468Z with 2025-08-26T21:36:09.8259702Z [ 2025-08-26T21:36:09.8259911Z scalar_t=float 2025-08-26T21:36:09.8260179Z ] 2025-08-26T21:36:09.8260890Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(738): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8261709Z with 2025-08-26T21:36:09.8261987Z [ 2025-08-26T21:36:09.8262195Z scalar_t=float 2025-08-26T21:36:09.8262462Z ] 2025-08-26T21:36:09.8263180Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(738): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8263997Z with 2025-08-26T21:36:09.8264271Z [ 2025-08-26T21:36:09.8264677Z scalar_t=float 2025-08-26T21:36:09.8265110Z ] 2025-08-26T21:36:09.8266070Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(738): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8266907Z with 2025-08-26T21:36:09.8267112Z [ 2025-08-26T21:36:09.8267386Z scalar_t=float 2025-08-26T21:36:09.8267635Z ] 2025-08-26T21:36:09.8268373Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(739): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8269169Z with 2025-08-26T21:36:09.8269389Z [ 2025-08-26T21:36:09.8269593Z scalar_t=float 2025-08-26T21:36:09.8269854Z ] 2025-08-26T21:36:09.8271062Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(739): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8272048Z with 2025-08-26T21:36:09.8272280Z [ 2025-08-26T21:36:09.8272484Z scalar_t=float 2025-08-26T21:36:09.8272750Z ] 2025-08-26T21:36:09.8273457Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(739): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8274274Z with 2025-08-26T21:36:09.8274472Z [ 2025-08-26T21:36:09.8274697Z scalar_t=float 2025-08-26T21:36:09.8274939Z ] 2025-08-26T21:36:09.8275674Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(740): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8276938Z with 2025-08-26T21:36:09.8277289Z [ 2025-08-26T21:36:09.8277531Z scalar_t=float 2025-08-26T21:36:09.8277776Z ] 2025-08-26T21:36:09.8278514Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(740): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8279303Z with 2025-08-26T21:36:09.8279535Z [ 2025-08-26T21:36:09.8279775Z scalar_t=float 2025-08-26T21:36:09.8280017Z ] 2025-08-26T21:36:09.8280830Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(740): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8281621Z with 2025-08-26T21:36:09.8281846Z [ 2025-08-26T21:36:09.8282152Z scalar_t=float 2025-08-26T21:36:09.8282638Z ] 2025-08-26T21:36:09.8283624Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(741): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8284461Z with 2025-08-26T21:36:09.8284692Z [ 2025-08-26T21:36:09.8284922Z scalar_t=float 2025-08-26T21:36:09.8285200Z ] 2025-08-26T21:36:09.8285913Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(741): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8286737Z with 2025-08-26T21:36:09.8286937Z [ 2025-08-26T21:36:09.8287166Z scalar_t=float 2025-08-26T21:36:09.8287407Z ] 2025-08-26T21:36:09.8288399Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(741): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8289564Z with 2025-08-26T21:36:09.8289769Z [ 2025-08-26T21:36:09.8289996Z scalar_t=float 2025-08-26T21:36:09.8290260Z ] 2025-08-26T21:36:09.8291003Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(742): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8291803Z with 2025-08-26T21:36:09.8292101Z [ 2025-08-26T21:36:09.8292305Z scalar_t=float 2025-08-26T21:36:09.8292581Z ] 2025-08-26T21:36:09.8314797Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(743): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8315630Z with 2025-08-26T21:36:09.8315869Z [ 2025-08-26T21:36:09.8316074Z scalar_t=float 2025-08-26T21:36:09.8316352Z ] 2025-08-26T21:36:09.8317062Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(743): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8317880Z with 2025-08-26T21:36:09.8318168Z [ 2025-08-26T21:36:09.8318583Z scalar_t=float 2025-08-26T21:36:09.8319001Z ] 2025-08-26T21:36:09.8319891Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(743): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8320779Z with 2025-08-26T21:36:09.8320980Z [ 2025-08-26T21:36:09.8321204Z scalar_t=float 2025-08-26T21:36:09.8321442Z ] 2025-08-26T21:36:09.8322178Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(744): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8322970Z with 2025-08-26T21:36:09.8323173Z [ 2025-08-26T21:36:09.8323401Z scalar_t=float 2025-08-26T21:36:09.8323620Z ] 2025-08-26T21:36:09.8324581Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(744): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8325697Z with 2025-08-26T21:36:09.8325889Z [ 2025-08-26T21:36:09.8326074Z scalar_t=float 2025-08-26T21:36:09.8326312Z ] 2025-08-26T21:36:09.8326998Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(744): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8327769Z with 2025-08-26T21:36:09.8328039Z [ 2025-08-26T21:36:09.8328216Z scalar_t=float 2025-08-26T21:36:09.8328454Z ] 2025-08-26T21:36:09.8329133Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(745): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8329918Z with 2025-08-26T21:36:09.8330197Z [ 2025-08-26T21:36:09.8330557Z scalar_t=float 2025-08-26T21:36:09.8330905Z ] 2025-08-26T21:36:09.8331797Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(745): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8332572Z with 2025-08-26T21:36:09.8332747Z [ 2025-08-26T21:36:09.8332939Z scalar_t=float 2025-08-26T21:36:09.8333155Z ] 2025-08-26T21:36:09.8333853Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(745): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8334617Z with 2025-08-26T21:36:09.8334809Z [ 2025-08-26T21:36:09.8334985Z scalar_t=float 2025-08-26T21:36:09.8335218Z ] 2025-08-26T21:36:09.8335910Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(746): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8337279Z with 2025-08-26T21:36:09.8337487Z [ 2025-08-26T21:36:09.8337674Z scalar_t=float 2025-08-26T21:36:09.8337904Z ] 2025-08-26T21:36:09.8338661Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(746): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8339477Z with 2025-08-26T21:36:09.8339665Z [ 2025-08-26T21:36:09.8339866Z scalar_t=float 2025-08-26T21:36:09.8340110Z ] 2025-08-26T21:36:09.8340836Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(746): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8341612Z with 2025-08-26T21:36:09.8341840Z [ 2025-08-26T21:36:09.8342135Z scalar_t=float 2025-08-26T21:36:09.8342545Z ] 2025-08-26T21:36:09.8343551Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(747): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8344320Z with 2025-08-26T21:36:09.8344494Z [ 2025-08-26T21:36:09.8344682Z scalar_t=float 2025-08-26T21:36:09.8344962Z ] 2025-08-26T21:36:09.8345665Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(747): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8346428Z with 2025-08-26T21:36:09.8346622Z [ 2025-08-26T21:36:09.8346805Z scalar_t=float 2025-08-26T21:36:09.8347036Z ] 2025-08-26T21:36:09.8347729Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(747): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8349047Z with 2025-08-26T21:36:09.8349286Z [ 2025-08-26T21:36:09.8349464Z scalar_t=float 2025-08-26T21:36:09.8349693Z ] 2025-08-26T21:36:09.8350375Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(748): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8351150Z with 2025-08-26T21:36:09.8351326Z [ 2025-08-26T21:36:09.8351519Z scalar_t=float 2025-08-26T21:36:09.8351742Z ] 2025-08-26T21:36:09.8352422Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(748): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8353258Z with 2025-08-26T21:36:09.8353432Z [ 2025-08-26T21:36:09.8353624Z scalar_t=float 2025-08-26T21:36:09.8353889Z ] 2025-08-26T21:36:09.8355140Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(748): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8355915Z with 2025-08-26T21:36:09.8356090Z [ 2025-08-26T21:36:09.8356279Z scalar_t=float 2025-08-26T21:36:09.8356491Z ] 2025-08-26T21:36:09.8357189Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(749): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8357952Z with 2025-08-26T21:36:09.8358137Z [ 2025-08-26T21:36:09.8358309Z scalar_t=float 2025-08-26T21:36:09.8358532Z ] 2025-08-26T21:36:09.8359212Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(749): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8360223Z with 2025-08-26T21:36:09.8360508Z [ 2025-08-26T21:36:09.8360839Z scalar_t=float 2025-08-26T21:36:09.8361143Z ] 2025-08-26T21:36:09.8361822Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(749): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8362624Z with 2025-08-26T21:36:09.8362799Z [ 2025-08-26T21:36:09.8362990Z scalar_t=float 2025-08-26T21:36:09.8363209Z ] 2025-08-26T21:36:09.8364267Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(750): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8365051Z with 2025-08-26T21:36:09.8365231Z [ 2025-08-26T21:36:09.8365471Z scalar_t=float 2025-08-26T21:36:09.8365736Z ] 2025-08-26T21:36:09.8366842Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(750): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8367796Z with 2025-08-26T21:36:09.8367991Z [ 2025-08-26T21:36:09.8368168Z scalar_t=float 2025-08-26T21:36:09.8368394Z ] 2025-08-26T21:36:09.8369080Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(750): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8369897Z with 2025-08-26T21:36:09.8370088Z [ 2025-08-26T21:36:09.8370270Z scalar_t=float 2025-08-26T21:36:09.8370508Z ] 2025-08-26T21:36:09.8371191Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(751): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8372053Z with 2025-08-26T21:36:09.8372399Z [ 2025-08-26T21:36:09.8372667Z scalar_t=float 2025-08-26T21:36:09.8373083Z ] 2025-08-26T21:36:09.8373814Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(752): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8374585Z with 2025-08-26T21:36:09.8374757Z [ 2025-08-26T21:36:09.8374942Z scalar_t=float 2025-08-26T21:36:09.8375158Z ] 2025-08-26T21:36:09.8375850Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(752): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8376634Z with 2025-08-26T21:36:09.8376809Z [ 2025-08-26T21:36:09.8376998Z scalar_t=float 2025-08-26T21:36:09.8377289Z ] 2025-08-26T21:36:09.8378165Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(752): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8379366Z with 2025-08-26T21:36:09.8379553Z [ 2025-08-26T21:36:09.8379730Z scalar_t=float 2025-08-26T21:36:09.8379963Z ] 2025-08-26T21:36:09.8380657Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(753): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8381421Z with 2025-08-26T21:36:09.8381606Z [ 2025-08-26T21:36:09.8381779Z scalar_t=float 2025-08-26T21:36:09.8382069Z ] 2025-08-26T21:36:09.8382743Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(753): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8383520Z with 2025-08-26T21:36:09.8383699Z [ 2025-08-26T21:36:09.8384043Z scalar_t=float 2025-08-26T21:36:09.8384430Z ] 2025-08-26T21:36:09.8385394Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(753): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8386167Z with 2025-08-26T21:36:09.8386339Z [ 2025-08-26T21:36:09.8386528Z scalar_t=float 2025-08-26T21:36:09.8386742Z ] 2025-08-26T21:36:09.8387437Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(754): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8388206Z with 2025-08-26T21:36:09.8388709Z [ 2025-08-26T21:36:09.8388911Z scalar_t=float 2025-08-26T21:36:09.8389131Z ] 2025-08-26T21:36:09.8390588Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(754): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8391622Z with 2025-08-26T21:36:09.8391821Z [ 2025-08-26T21:36:09.8391999Z scalar_t=float 2025-08-26T21:36:09.8392229Z ] 2025-08-26T21:36:09.8392908Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(754): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8393671Z with 2025-08-26T21:36:09.8393844Z [ 2025-08-26T21:36:09.8394022Z scalar_t=float 2025-08-26T21:36:09.8394226Z ] 2025-08-26T21:36:09.8394903Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(755): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8395821Z with 2025-08-26T21:36:09.8396149Z [ 2025-08-26T21:36:09.8396416Z scalar_t=float 2025-08-26T21:36:09.8396815Z ] 2025-08-26T21:36:09.8397553Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(755): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8398294Z with 2025-08-26T21:36:09.8398469Z [ 2025-08-26T21:36:09.8398641Z scalar_t=float 2025-08-26T21:36:09.8398840Z ] 2025-08-26T21:36:09.8399514Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(755): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8400275Z with 2025-08-26T21:36:09.8400444Z [ 2025-08-26T21:36:09.8400611Z scalar_t=float 2025-08-26T21:36:09.8400824Z ] 2025-08-26T21:36:09.8401493Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(756): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8402928Z with 2025-08-26T21:36:09.8403111Z [ 2025-08-26T21:36:09.8403283Z scalar_t=float 2025-08-26T21:36:09.8403496Z ] 2025-08-26T21:36:09.8404156Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(756): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8404912Z with 2025-08-26T21:36:09.8405072Z [ 2025-08-26T21:36:09.8405247Z scalar_t=float 2025-08-26T21:36:09.8405449Z ] 2025-08-26T21:36:09.8406124Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(756): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8406890Z with 2025-08-26T21:36:09.8407058Z [ 2025-08-26T21:36:09.8407233Z scalar_t=float 2025-08-26T21:36:09.8407435Z ] 2025-08-26T21:36:09.8408675Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(757): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8409472Z with 2025-08-26T21:36:09.8409651Z [ 2025-08-26T21:36:09.8409819Z scalar_t=float 2025-08-26T21:36:09.8410026Z ] 2025-08-26T21:36:09.8410707Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(757): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8411455Z with 2025-08-26T21:36:09.8411628Z [ 2025-08-26T21:36:09.8411790Z scalar_t=float 2025-08-26T21:36:09.8412005Z ] 2025-08-26T21:36:09.8412981Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(757): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8414094Z with 2025-08-26T21:36:09.8414384Z [ 2025-08-26T21:36:09.8414695Z scalar_t=float 2025-08-26T21:36:09.8414946Z ] 2025-08-26T21:36:09.8415677Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(758): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8416441Z with 2025-08-26T21:36:09.8416610Z [ 2025-08-26T21:36:09.8416789Z scalar_t=float 2025-08-26T21:36:09.8416993Z ] 2025-08-26T21:36:09.8417679Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(758): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8418446Z with 2025-08-26T21:36:09.8418603Z [ 2025-08-26T21:36:09.8418814Z scalar_t=float 2025-08-26T21:36:09.8419021Z ] 2025-08-26T21:36:09.8420006Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(758): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8421078Z with 2025-08-26T21:36:09.8421248Z [ 2025-08-26T21:36:09.8421412Z scalar_t=float 2025-08-26T21:36:09.8421626Z ] 2025-08-26T21:36:09.8422352Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(759): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8423117Z with 2025-08-26T21:36:09.8423292Z [ 2025-08-26T21:36:09.8423454Z scalar_t=float 2025-08-26T21:36:09.8423664Z ] 2025-08-26T21:36:09.8424342Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(759): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8425099Z with 2025-08-26T21:36:09.8425259Z [ 2025-08-26T21:36:09.8425524Z scalar_t=float 2025-08-26T21:36:09.8425917Z ] 2025-08-26T21:36:09.8426929Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(759): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8427766Z with 2025-08-26T21:36:09.8427931Z [ 2025-08-26T21:36:09.8428108Z scalar_t=float 2025-08-26T21:36:09.8428321Z ] 2025-08-26T21:36:09.8429000Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(760): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8429742Z with 2025-08-26T21:36:09.8429911Z [ 2025-08-26T21:36:09.8430073Z scalar_t=float 2025-08-26T21:36:09.8430285Z ] 2025-08-26T21:36:09.8430964Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(761): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8432098Z with 2025-08-26T21:36:09.8432429Z [ 2025-08-26T21:36:09.8432658Z scalar_t=float 2025-08-26T21:36:09.8432874Z ] 2025-08-26T21:36:09.8433540Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(761): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8434299Z with 2025-08-26T21:36:09.8434476Z [ 2025-08-26T21:36:09.8434639Z scalar_t=float 2025-08-26T21:36:09.8434847Z ] 2025-08-26T21:36:09.8435509Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(761): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8436259Z with 2025-08-26T21:36:09.8436423Z [ 2025-08-26T21:36:09.8436603Z scalar_t=float 2025-08-26T21:36:09.8436874Z ] 2025-08-26T21:36:09.8437895Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(762): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8438929Z with 2025-08-26T21:36:09.8439144Z [ 2025-08-26T21:36:09.8439325Z scalar_t=float 2025-08-26T21:36:09.8439534Z ] 2025-08-26T21:36:09.8440223Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(762): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8440977Z with 2025-08-26T21:36:09.8441152Z [ 2025-08-26T21:36:09.8441356Z scalar_t=float 2025-08-26T21:36:09.8441630Z ] 2025-08-26T21:36:09.8442361Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(762): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8443267Z with 2025-08-26T21:36:09.8443677Z [ 2025-08-26T21:36:09.8444025Z scalar_t=float 2025-08-26T21:36:09.8444467Z ] 2025-08-26T21:36:09.8445189Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(763): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8446006Z with 2025-08-26T21:36:09.8446201Z [ 2025-08-26T21:36:09.8446463Z scalar_t=float 2025-08-26T21:36:09.8446724Z ] 2025-08-26T21:36:09.8447427Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(763): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8448233Z with 2025-08-26T21:36:09.8448428Z [ 2025-08-26T21:36:09.8448658Z scalar_t=float 2025-08-26T21:36:09.8448899Z ] 2025-08-26T21:36:09.8450186Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(763): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8451288Z with 2025-08-26T21:36:09.8451510Z [ 2025-08-26T21:36:09.8451739Z scalar_t=float 2025-08-26T21:36:09.8452056Z ] 2025-08-26T21:36:09.8452784Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(764): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8453579Z with 2025-08-26T21:36:09.8453815Z [ 2025-08-26T21:36:09.8454020Z scalar_t=float 2025-08-26T21:36:09.8454298Z ] 2025-08-26T21:36:09.8455005Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(764): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8456156Z with 2025-08-26T21:36:09.8456566Z [ 2025-08-26T21:36:09.8456945Z scalar_t=float 2025-08-26T21:36:09.8457319Z ] 2025-08-26T21:36:09.8458040Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(764): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8458863Z with 2025-08-26T21:36:09.8459065Z [ 2025-08-26T21:36:09.8459294Z scalar_t=float 2025-08-26T21:36:09.8459532Z ] 2025-08-26T21:36:09.8460261Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(765): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8461078Z with 2025-08-26T21:36:09.8461280Z [ 2025-08-26T21:36:09.8461511Z scalar_t=float 2025-08-26T21:36:09.8461753Z ] 2025-08-26T21:36:09.8463180Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(765): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8464238Z with 2025-08-26T21:36:09.8464492Z [ 2025-08-26T21:36:09.8464699Z scalar_t=float 2025-08-26T21:36:09.8464968Z ] 2025-08-26T21:36:09.8465743Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(765): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8466538Z with 2025-08-26T21:36:09.8466770Z [ 2025-08-26T21:36:09.8466974Z scalar_t=float 2025-08-26T21:36:09.8467239Z ] 2025-08-26T21:36:09.8467946Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(766): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8468761Z with 2025-08-26T21:36:09.8468959Z [ 2025-08-26T21:36:09.8469185Z scalar_t=float 2025-08-26T21:36:09.8469445Z ] 2025-08-26T21:36:09.8470197Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(766): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8471017Z with 2025-08-26T21:36:09.8471222Z [ 2025-08-26T21:36:09.8471448Z scalar_t=float 2025-08-26T21:36:09.8471698Z ] 2025-08-26T21:36:09.8472428Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(766): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8473272Z with 2025-08-26T21:36:09.8473642Z [ 2025-08-26T21:36:09.8474025Z scalar_t=float 2025-08-26T21:36:09.8474463Z ] 2025-08-26T21:36:09.8475475Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(767): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8476260Z with 2025-08-26T21:36:09.8476479Z [ 2025-08-26T21:36:09.8476680Z scalar_t=float 2025-08-26T21:36:09.8476940Z ] 2025-08-26T21:36:09.8477637Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(767): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8478512Z with 2025-08-26T21:36:09.8478736Z [ 2025-08-26T21:36:09.8478946Z scalar_t=float 2025-08-26T21:36:09.8479216Z ] 2025-08-26T21:36:09.8479914Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(767): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8480723Z with 2025-08-26T21:36:09.8480923Z [ 2025-08-26T21:36:09.8481142Z scalar_t=float 2025-08-26T21:36:09.8481376Z ] 2025-08-26T21:36:09.8482099Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(768): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8482910Z with 2025-08-26T21:36:09.8483106Z [ 2025-08-26T21:36:09.8483327Z scalar_t=float 2025-08-26T21:36:09.8483566Z ] 2025-08-26T21:36:09.8484290Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(768): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8485082Z with 2025-08-26T21:36:09.8485299Z [ 2025-08-26T21:36:09.8485516Z scalar_t=float 2025-08-26T21:36:09.8485755Z ] 2025-08-26T21:36:09.8486474Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(768): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8487262Z with 2025-08-26T21:36:09.8487466Z [ 2025-08-26T21:36:09.8487625Z scalar_t=float 2025-08-26T21:36:09.8487836Z ] 2025-08-26T21:36:09.8488547Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(769): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8489320Z with 2025-08-26T21:36:09.8489493Z [ 2025-08-26T21:36:09.8489671Z scalar_t=float 2025-08-26T21:36:09.8490147Z ] 2025-08-26T21:36:09.8491439Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(770): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8492245Z with 2025-08-26T21:36:09.8492416Z [ 2025-08-26T21:36:09.8492591Z scalar_t=float 2025-08-26T21:36:09.8492794Z ] 2025-08-26T21:36:09.8493474Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(770): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8494232Z with 2025-08-26T21:36:09.8494443Z [ 2025-08-26T21:36:09.8494616Z scalar_t=float 2025-08-26T21:36:09.8494820Z ] 2025-08-26T21:36:09.8495495Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(770): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8496236Z with 2025-08-26T21:36:09.8496410Z [ 2025-08-26T21:36:09.8496570Z scalar_t=float 2025-08-26T21:36:09.8496780Z ] 2025-08-26T21:36:09.8497448Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(771): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8498193Z with 2025-08-26T21:36:09.8498358Z [ 2025-08-26T21:36:09.8498528Z scalar_t=float 2025-08-26T21:36:09.8498731Z ] 2025-08-26T21:36:09.8499394Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(771): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8500150Z with 2025-08-26T21:36:09.8500312Z [ 2025-08-26T21:36:09.8500479Z scalar_t=float 2025-08-26T21:36:09.8500684Z ] 2025-08-26T21:36:09.8501354Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(771): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8502921Z with 2025-08-26T21:36:09.8503091Z [ 2025-08-26T21:36:09.8503277Z scalar_t=float 2025-08-26T21:36:09.8503482Z ] 2025-08-26T21:36:09.8504164Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(772): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8504915Z with 2025-08-26T21:36:09.8505095Z [ 2025-08-26T21:36:09.8505262Z scalar_t=float 2025-08-26T21:36:09.8505464Z ] 2025-08-26T21:36:09.8506145Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(772): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8506887Z with 2025-08-26T21:36:09.8507058Z [ 2025-08-26T21:36:09.8507224Z scalar_t=float 2025-08-26T21:36:09.8507435Z ] 2025-08-26T21:36:09.8508106Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(772): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8508857Z with 2025-08-26T21:36:09.8509027Z [ 2025-08-26T21:36:09.8509187Z scalar_t=float 2025-08-26T21:36:09.8509397Z ] 2025-08-26T21:36:09.8510058Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(773): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8510818Z with 2025-08-26T21:36:09.8510979Z [ 2025-08-26T21:36:09.8511204Z scalar_t=float 2025-08-26T21:36:09.8511411Z ] 2025-08-26T21:36:09.8512090Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(773): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8512887Z with 2025-08-26T21:36:09.8513052Z [ 2025-08-26T21:36:09.8513221Z scalar_t=float 2025-08-26T21:36:09.8513424Z ] 2025-08-26T21:36:09.8514099Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(773): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8514851Z with 2025-08-26T21:36:09.8515024Z [ 2025-08-26T21:36:09.8515186Z scalar_t=float 2025-08-26T21:36:09.8515399Z ] 2025-08-26T21:36:09.8516073Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(774): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8516848Z with 2025-08-26T21:36:09.8517019Z [ 2025-08-26T21:36:09.8517182Z scalar_t=float 2025-08-26T21:36:09.8517389Z ] 2025-08-26T21:36:09.8518065Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(774): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8518825Z with 2025-08-26T21:36:09.8518992Z [ 2025-08-26T21:36:09.8519155Z scalar_t=float 2025-08-26T21:36:09.8519367Z ] 2025-08-26T21:36:09.8520029Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(774): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8520782Z with 2025-08-26T21:36:09.8520947Z [ 2025-08-26T21:36:09.8521125Z scalar_t=float 2025-08-26T21:36:09.8521451Z ] 2025-08-26T21:36:09.8522789Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(775): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8523713Z with 2025-08-26T21:36:09.8523877Z [ 2025-08-26T21:36:09.8524120Z scalar_t=float 2025-08-26T21:36:09.8524336Z ] 2025-08-26T21:36:09.8525015Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(775): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8525766Z with 2025-08-26T21:36:09.8525938Z [ 2025-08-26T21:36:09.8526101Z scalar_t=float 2025-08-26T21:36:09.8526318Z ] 2025-08-26T21:36:09.8526985Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(775): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8527747Z with 2025-08-26T21:36:09.8527923Z [ 2025-08-26T21:36:09.8528087Z scalar_t=float 2025-08-26T21:36:09.8528296Z ] 2025-08-26T21:36:09.8528968Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(776): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8529724Z with 2025-08-26T21:36:09.8529889Z [ 2025-08-26T21:36:09.8530065Z scalar_t=float 2025-08-26T21:36:09.8530266Z ] 2025-08-26T21:36:09.8530934Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(776): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8531682Z with 2025-08-26T21:36:09.8531845Z [ 2025-08-26T21:36:09.8532016Z scalar_t=float 2025-08-26T21:36:09.8532219Z ] 2025-08-26T21:36:09.8532932Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(776): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8533685Z with 2025-08-26T21:36:09.8533860Z [ 2025-08-26T21:36:09.8534044Z scalar_t=float 2025-08-26T21:36:09.8534253Z ] 2025-08-26T21:36:09.8534970Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(777): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8535732Z with 2025-08-26T21:36:09.8535906Z [ 2025-08-26T21:36:09.8536074Z scalar_t=float 2025-08-26T21:36:09.8536285Z ] 2025-08-26T21:36:09.8536955Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(777): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8537720Z with 2025-08-26T21:36:09.8537885Z [ 2025-08-26T21:36:09.8538049Z scalar_t=float 2025-08-26T21:36:09.8538258Z ] 2025-08-26T21:36:09.8538968Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(777): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8539726Z with 2025-08-26T21:36:09.8539889Z [ 2025-08-26T21:36:09.8540061Z scalar_t=float 2025-08-26T21:36:09.8540262Z ] 2025-08-26T21:36:09.8540946Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(778): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8541715Z with 2025-08-26T21:36:09.8541946Z [ 2025-08-26T21:36:09.8542120Z scalar_t=float 2025-08-26T21:36:09.8542328Z ] 2025-08-26T21:36:09.8543010Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(779): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8543754Z with 2025-08-26T21:36:09.8543927Z [ 2025-08-26T21:36:09.8544090Z scalar_t=float 2025-08-26T21:36:09.8544303Z ] 2025-08-26T21:36:09.8544982Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(779): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8545780Z with 2025-08-26T21:36:09.8545967Z [ 2025-08-26T21:36:09.8546134Z scalar_t=float 2025-08-26T21:36:09.8546349Z ] 2025-08-26T21:36:09.8547017Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(779): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8547789Z with 2025-08-26T21:36:09.8547951Z [ 2025-08-26T21:36:09.8548128Z scalar_t=float 2025-08-26T21:36:09.8548335Z ] 2025-08-26T21:36:09.8549005Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(780): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8549763Z with 2025-08-26T21:36:09.8549926Z [ 2025-08-26T21:36:09.8550098Z scalar_t=float 2025-08-26T21:36:09.8550298Z ] 2025-08-26T21:36:09.8550975Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(780): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8551723Z with 2025-08-26T21:36:09.8551884Z [ 2025-08-26T21:36:09.8552052Z scalar_t=float 2025-08-26T21:36:09.8552254Z ] 2025-08-26T21:36:09.8552928Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(780): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8553670Z with 2025-08-26T21:36:09.8553842Z [ 2025-08-26T21:36:09.8554005Z scalar_t=float 2025-08-26T21:36:09.8554215Z ] 2025-08-26T21:36:09.8554921Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(781): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8555679Z with 2025-08-26T21:36:09.8555850Z [ 2025-08-26T21:36:09.8556047Z scalar_t=float 2025-08-26T21:36:09.8556260Z ] 2025-08-26T21:36:09.8556929Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(781): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8557699Z with 2025-08-26T21:36:09.8557865Z [ 2025-08-26T21:36:09.8558039Z scalar_t=float 2025-08-26T21:36:09.8558251Z ] 2025-08-26T21:36:09.8558932Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(781): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8559685Z with 2025-08-26T21:36:09.8559886Z [ 2025-08-26T21:36:09.8560058Z scalar_t=float 2025-08-26T21:36:09.8560263Z ] 2025-08-26T21:36:09.8560936Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(782): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8561698Z with 2025-08-26T21:36:09.8561870Z [ 2025-08-26T21:36:09.8562033Z scalar_t=float 2025-08-26T21:36:09.8562250Z ] 2025-08-26T21:36:09.8562922Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(782): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8563677Z with 2025-08-26T21:36:09.8563846Z [ 2025-08-26T21:36:09.8564009Z scalar_t=float 2025-08-26T21:36:09.8564221Z ] 2025-08-26T21:36:09.8564907Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(782): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8565673Z with 2025-08-26T21:36:09.8565841Z [ 2025-08-26T21:36:09.8566009Z scalar_t=float 2025-08-26T21:36:09.8566220Z ] 2025-08-26T21:36:09.8566886Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(783): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8567692Z with 2025-08-26T21:36:09.8567854Z [ 2025-08-26T21:36:09.8568028Z scalar_t=float 2025-08-26T21:36:09.8568231Z ] 2025-08-26T21:36:09.8568910Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(783): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8569682Z with 2025-08-26T21:36:09.8569845Z [ 2025-08-26T21:36:09.8570046Z scalar_t=float 2025-08-26T21:36:09.8570272Z ] 2025-08-26T21:36:09.8570947Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(783): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8571695Z with 2025-08-26T21:36:09.8571867Z [ 2025-08-26T21:36:09.8572039Z scalar_t=float 2025-08-26T21:36:09.8572255Z ] 2025-08-26T21:36:09.8572930Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(784): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8573674Z with 2025-08-26T21:36:09.8573852Z [ 2025-08-26T21:36:09.8574016Z scalar_t=float 2025-08-26T21:36:09.8574223Z ] 2025-08-26T21:36:09.8574886Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(784): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8575637Z with 2025-08-26T21:36:09.8575802Z [ 2025-08-26T21:36:09.8576014Z scalar_t=float 2025-08-26T21:36:09.8576223Z ] 2025-08-26T21:36:09.8576933Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(784): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8577693Z with 2025-08-26T21:36:09.8577943Z [ 2025-08-26T21:36:09.8578267Z scalar_t=float 2025-08-26T21:36:09.8578633Z ] 2025-08-26T21:36:09.8579578Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(785): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8580325Z with 2025-08-26T21:36:09.8580492Z [ 2025-08-26T21:36:09.8580667Z scalar_t=float 2025-08-26T21:36:09.8580867Z ] 2025-08-26T21:36:09.8581539Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(785): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8582403Z with 2025-08-26T21:36:09.8582585Z [ 2025-08-26T21:36:09.8582752Z scalar_t=float 2025-08-26T21:36:09.8582966Z ] 2025-08-26T21:36:09.8583632Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(785): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8584389Z with 2025-08-26T21:36:09.8584563Z [ 2025-08-26T21:36:09.8584728Z scalar_t=float 2025-08-26T21:36:09.8584945Z ] 2025-08-26T21:36:09.8585606Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(786): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8586360Z with 2025-08-26T21:36:09.8586523Z [ 2025-08-26T21:36:09.8586700Z scalar_t=float 2025-08-26T21:36:09.8586907Z ] 2025-08-26T21:36:09.8587585Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(786): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8588338Z with 2025-08-26T21:36:09.8588548Z [ 2025-08-26T21:36:09.8588726Z scalar_t=float 2025-08-26T21:36:09.8588929Z ] 2025-08-26T21:36:09.8589616Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(786): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8590373Z with 2025-08-26T21:36:09.8590548Z [ 2025-08-26T21:36:09.8590721Z scalar_t=float 2025-08-26T21:36:09.8590936Z ] 2025-08-26T21:36:09.8591615Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(787): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8592361Z with 2025-08-26T21:36:09.8592533Z [ 2025-08-26T21:36:09.8592703Z scalar_t=float 2025-08-26T21:36:09.8592916Z ] 2025-08-26T21:36:09.8593582Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(788): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8594344Z with 2025-08-26T21:36:09.8594506Z [ 2025-08-26T21:36:09.8594679Z scalar_t=float 2025-08-26T21:36:09.8594889Z ] 2025-08-26T21:36:09.8595558Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(788): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8596312Z with 2025-08-26T21:36:09.8596471Z [ 2025-08-26T21:36:09.8596641Z scalar_t=float 2025-08-26T21:36:09.8596838Z ] 2025-08-26T21:36:09.8597550Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(788): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8598314Z with 2025-08-26T21:36:09.8598476Z [ 2025-08-26T21:36:09.8598653Z scalar_t=float 2025-08-26T21:36:09.8598718Z ] 2025-08-26T21:36:09.8599334Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(789): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8599415Z with 2025-08-26T21:36:09.8599481Z [ 2025-08-26T21:36:09.8599554Z scalar_t=float 2025-08-26T21:36:09.8599624Z ] 2025-08-26T21:36:09.8600219Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(789): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8600289Z with 2025-08-26T21:36:09.8600360Z [ 2025-08-26T21:36:09.8600447Z scalar_t=float 2025-08-26T21:36:09.8600552Z ] 2025-08-26T21:36:09.8601131Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(789): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8601197Z with 2025-08-26T21:36:09.8601271Z [ 2025-08-26T21:36:09.8601348Z scalar_t=float 2025-08-26T21:36:09.8601414Z ] 2025-08-26T21:36:09.8601993Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(790): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8602060Z with 2025-08-26T21:36:09.8602128Z [ 2025-08-26T21:36:09.8602206Z scalar_t=float 2025-08-26T21:36:09.8602280Z ] 2025-08-26T21:36:09.8602849Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(790): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8602914Z with 2025-08-26T21:36:09.8602988Z [ 2025-08-26T21:36:09.8603066Z scalar_t=float 2025-08-26T21:36:09.8603128Z ] 2025-08-26T21:36:09.8603707Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(790): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8603833Z with 2025-08-26T21:36:09.8603933Z [ 2025-08-26T21:36:09.8604050Z scalar_t=float 2025-08-26T21:36:09.8604168Z ] 2025-08-26T21:36:09.8605005Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(791): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8605075Z with 2025-08-26T21:36:09.8605152Z [ 2025-08-26T21:36:09.8605230Z scalar_t=float 2025-08-26T21:36:09.8605292Z ] 2025-08-26T21:36:09.8605891Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(791): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8605964Z with 2025-08-26T21:36:09.8606030Z [ 2025-08-26T21:36:09.8606104Z scalar_t=float 2025-08-26T21:36:09.8606182Z ] 2025-08-26T21:36:09.8606753Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(791): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8606821Z with 2025-08-26T21:36:09.8606895Z [ 2025-08-26T21:36:09.8606969Z scalar_t=float 2025-08-26T21:36:09.8607036Z ] 2025-08-26T21:36:09.8607607Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(792): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8607684Z with 2025-08-26T21:36:09.8607749Z [ 2025-08-26T21:36:09.8607820Z scalar_t=float 2025-08-26T21:36:09.8607901Z ] 2025-08-26T21:36:09.8608532Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(792): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8608601Z with 2025-08-26T21:36:09.8608674Z [ 2025-08-26T21:36:09.8608789Z scalar_t=float 2025-08-26T21:36:09.8608851Z ] 2025-08-26T21:36:09.8609426Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(792): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8609495Z with 2025-08-26T21:36:09.8609558Z [ 2025-08-26T21:36:09.8609630Z scalar_t=float 2025-08-26T21:36:09.8609699Z ] 2025-08-26T21:36:09.8610270Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(793): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8610651Z with 2025-08-26T21:36:09.8610719Z [ 2025-08-26T21:36:09.8610808Z scalar_t=float 2025-08-26T21:36:09.8610870Z ] 2025-08-26T21:36:09.8611440Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(793): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8611513Z with 2025-08-26T21:36:09.8611578Z [ 2025-08-26T21:36:09.8611658Z scalar_t=float 2025-08-26T21:36:09.8611719Z ] 2025-08-26T21:36:09.8612308Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(793): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8612375Z with 2025-08-26T21:36:09.8612441Z [ 2025-08-26T21:36:09.8612522Z scalar_t=float 2025-08-26T21:36:09.8612585Z ] 2025-08-26T21:36:09.8613160Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(794): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8613233Z with 2025-08-26T21:36:09.8613295Z [ 2025-08-26T21:36:09.8613370Z scalar_t=float 2025-08-26T21:36:09.8613430Z ] 2025-08-26T21:36:09.8614055Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(794): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8614122Z with 2025-08-26T21:36:09.8614185Z [ 2025-08-26T21:36:09.8614270Z scalar_t=float 2025-08-26T21:36:09.8614334Z ] 2025-08-26T21:36:09.8614905Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(794): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8614980Z with 2025-08-26T21:36:09.8615043Z [ 2025-08-26T21:36:09.8615117Z scalar_t=float 2025-08-26T21:36:09.8615184Z ] 2025-08-26T21:36:09.8615769Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(795): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8615834Z with 2025-08-26T21:36:09.8615900Z [ 2025-08-26T21:36:09.8615984Z scalar_t=float 2025-08-26T21:36:09.8616045Z ] 2025-08-26T21:36:09.8616617Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(795): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8616681Z with 2025-08-26T21:36:09.8616750Z [ 2025-08-26T21:36:09.8616829Z scalar_t=float 2025-08-26T21:36:09.8616898Z ] 2025-08-26T21:36:09.8617473Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(795): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8617539Z with 2025-08-26T21:36:09.8617634Z [ 2025-08-26T21:36:09.8617716Z scalar_t=float 2025-08-26T21:36:09.8617776Z ] 2025-08-26T21:36:09.8618377Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(796): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8618450Z with 2025-08-26T21:36:09.8618523Z [ 2025-08-26T21:36:09.8618598Z scalar_t=float 2025-08-26T21:36:09.8618659Z ] 2025-08-26T21:36:09.8619241Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(797): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8619306Z with 2025-08-26T21:36:09.8619368Z [ 2025-08-26T21:36:09.8619440Z scalar_t=float 2025-08-26T21:36:09.8619510Z ] 2025-08-26T21:36:09.8620082Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(797): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8620184Z with 2025-08-26T21:36:09.8620249Z [ 2025-08-26T21:36:09.8620322Z scalar_t=float 2025-08-26T21:36:09.8620384Z ] 2025-08-26T21:36:09.8620965Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(797): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8621028Z with 2025-08-26T21:36:09.8621097Z [ 2025-08-26T21:36:09.8621169Z scalar_t=float 2025-08-26T21:36:09.8621240Z ] 2025-08-26T21:36:09.8621873Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(798): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8621941Z with 2025-08-26T21:36:09.8622016Z [ 2025-08-26T21:36:09.8622091Z scalar_t=float 2025-08-26T21:36:09.8622163Z ] 2025-08-26T21:36:09.8622737Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(798): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8622820Z with 2025-08-26T21:36:09.8622922Z [ 2025-08-26T21:36:09.8622999Z scalar_t=float 2025-08-26T21:36:09.8623077Z ] 2025-08-26T21:36:09.8623650Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(798): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8623714Z with 2025-08-26T21:36:09.8623789Z [ 2025-08-26T21:36:09.8623862Z scalar_t=float 2025-08-26T21:36:09.8623925Z ] 2025-08-26T21:36:09.8624500Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(799): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8624577Z with 2025-08-26T21:36:09.8624647Z [ 2025-08-26T21:36:09.8624723Z scalar_t=float 2025-08-26T21:36:09.8624796Z ] 2025-08-26T21:36:09.8625374Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(799): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8625446Z with 2025-08-26T21:36:09.8625516Z [ 2025-08-26T21:36:09.8625590Z scalar_t=float 2025-08-26T21:36:09.8625653Z ] 2025-08-26T21:36:09.8626227Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(799): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8626304Z with 2025-08-26T21:36:09.8626370Z [ 2025-08-26T21:36:09.8626445Z scalar_t=float 2025-08-26T21:36:09.8626521Z ] 2025-08-26T21:36:09.8627129Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(800): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8627195Z with 2025-08-26T21:36:09.8627263Z [ 2025-08-26T21:36:09.8627342Z scalar_t=float 2025-08-26T21:36:09.8627408Z ] 2025-08-26T21:36:09.8628017Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(800): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8628091Z with 2025-08-26T21:36:09.8628156Z [ 2025-08-26T21:36:09.8628228Z scalar_t=float 2025-08-26T21:36:09.8628293Z ] 2025-08-26T21:36:09.8628875Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(800): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8628939Z with 2025-08-26T21:36:09.8629001Z [ 2025-08-26T21:36:09.8629086Z scalar_t=float 2025-08-26T21:36:09.8629187Z ] 2025-08-26T21:36:09.8629757Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(801): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8629834Z with 2025-08-26T21:36:09.8629901Z [ 2025-08-26T21:36:09.8629973Z scalar_t=float 2025-08-26T21:36:09.8630038Z ] 2025-08-26T21:36:09.8630624Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(801): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8630689Z with 2025-08-26T21:36:09.8630752Z [ 2025-08-26T21:36:09.8630833Z scalar_t=float 2025-08-26T21:36:09.8630900Z ] 2025-08-26T21:36:09.8631469Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(801): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8631544Z with 2025-08-26T21:36:09.8631612Z [ 2025-08-26T21:36:09.8631690Z scalar_t=float 2025-08-26T21:36:09.8631757Z ] 2025-08-26T21:36:09.8632350Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(802): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8632456Z with 2025-08-26T21:36:09.8632521Z [ 2025-08-26T21:36:09.8632604Z scalar_t=float 2025-08-26T21:36:09.8632668Z ] 2025-08-26T21:36:09.8633237Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(802): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8633303Z with 2025-08-26T21:36:09.8633378Z [ 2025-08-26T21:36:09.8633451Z scalar_t=float 2025-08-26T21:36:09.8633518Z ] 2025-08-26T21:36:09.8634110Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(802): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8634179Z with 2025-08-26T21:36:09.8634241Z [ 2025-08-26T21:36:09.8634330Z scalar_t=float 2025-08-26T21:36:09.8634395Z ] 2025-08-26T21:36:09.8634974Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(803): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8635042Z with 2025-08-26T21:36:09.8635118Z [ 2025-08-26T21:36:09.8635192Z scalar_t=float 2025-08-26T21:36:09.8635255Z ] 2025-08-26T21:36:09.8635838Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(803): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8635904Z with 2025-08-26T21:36:09.8635967Z [ 2025-08-26T21:36:09.8636044Z scalar_t=float 2025-08-26T21:36:09.8636150Z ] 2025-08-26T21:36:09.8636726Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(803): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8636793Z with 2025-08-26T21:36:09.8636903Z [ 2025-08-26T21:36:09.8636980Z scalar_t=float 2025-08-26T21:36:09.8637046Z ] 2025-08-26T21:36:09.8637630Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(804): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8637694Z with 2025-08-26T21:36:09.8637758Z [ 2025-08-26T21:36:09.8637831Z scalar_t=float 2025-08-26T21:36:09.8637910Z ] 2025-08-26T21:36:09.8638488Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(804): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8638592Z with 2025-08-26T21:36:09.8638663Z [ 2025-08-26T21:36:09.8638737Z scalar_t=float 2025-08-26T21:36:09.8638799Z ] 2025-08-26T21:36:09.8639374Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(804): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8639449Z with 2025-08-26T21:36:09.8639514Z [ 2025-08-26T21:36:09.8639587Z scalar_t=float 2025-08-26T21:36:09.8639666Z ] 2025-08-26T21:36:09.8640240Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(805): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8640310Z with 2025-08-26T21:36:09.8640387Z [ 2025-08-26T21:36:09.8640463Z scalar_t=float 2025-08-26T21:36:09.8640532Z ] 2025-08-26T21:36:09.8641116Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(806): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8641187Z with 2025-08-26T21:36:09.8641255Z [ 2025-08-26T21:36:09.8641331Z scalar_t=float 2025-08-26T21:36:09.8641441Z ] 2025-08-26T21:36:09.8642013Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(806): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8642083Z with 2025-08-26T21:36:09.8642146Z [ 2025-08-26T21:36:09.8642228Z scalar_t=float 2025-08-26T21:36:09.8642291Z ] 2025-08-26T21:36:09.8642863Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(806): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8642941Z with 2025-08-26T21:36:09.8643006Z [ 2025-08-26T21:36:09.8643083Z scalar_t=float 2025-08-26T21:36:09.8643158Z ] 2025-08-26T21:36:09.8643782Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(807): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8643869Z with 2025-08-26T21:36:09.8643956Z [ 2025-08-26T21:36:09.8644072Z scalar_t=float 2025-08-26T21:36:09.8644157Z ] 2025-08-26T21:36:09.8644749Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(807): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8644857Z with 2025-08-26T21:36:09.8644937Z [ 2025-08-26T21:36:09.8645019Z scalar_t=float 2025-08-26T21:36:09.8645101Z ] 2025-08-26T21:36:09.8645723Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(807): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8645842Z with 2025-08-26T21:36:09.8645923Z [ 2025-08-26T21:36:09.8646038Z scalar_t=float 2025-08-26T21:36:09.8646117Z ] 2025-08-26T21:36:09.8646744Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(808): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8646853Z with 2025-08-26T21:36:09.8646935Z [ 2025-08-26T21:36:09.8647026Z scalar_t=float 2025-08-26T21:36:09.8647108Z ] 2025-08-26T21:36:09.8647718Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(808): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8647808Z with 2025-08-26T21:36:09.8647886Z [ 2025-08-26T21:36:09.8647999Z scalar_t=float 2025-08-26T21:36:09.8648074Z ] 2025-08-26T21:36:09.8648664Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(808): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8648804Z with 2025-08-26T21:36:09.8648887Z [ 2025-08-26T21:36:09.8648980Z scalar_t=float 2025-08-26T21:36:09.8649065Z ] 2025-08-26T21:36:09.8649677Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(809): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8649760Z with 2025-08-26T21:36:09.8649842Z [ 2025-08-26T21:36:09.8649957Z scalar_t=float 2025-08-26T21:36:09.8650038Z ] 2025-08-26T21:36:09.8650627Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(809): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8650711Z with 2025-08-26T21:36:09.8650811Z [ 2025-08-26T21:36:09.8650896Z scalar_t=float 2025-08-26T21:36:09.8650981Z ] 2025-08-26T21:36:09.8651576Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(809): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8651678Z with 2025-08-26T21:36:09.8651745Z [ 2025-08-26T21:36:09.8651827Z scalar_t=float 2025-08-26T21:36:09.8651888Z ] 2025-08-26T21:36:09.8652467Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(810): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8652532Z with 2025-08-26T21:36:09.8652603Z [ 2025-08-26T21:36:09.8652697Z scalar_t=float 2025-08-26T21:36:09.8652779Z ] 2025-08-26T21:36:09.8653389Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(810): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8653466Z with 2025-08-26T21:36:09.8653536Z [ 2025-08-26T21:36:09.8653616Z scalar_t=float 2025-08-26T21:36:09.8653697Z ] 2025-08-26T21:36:09.8654274Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(810): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8654347Z with 2025-08-26T21:36:09.8654431Z [ 2025-08-26T21:36:09.8654514Z scalar_t=float 2025-08-26T21:36:09.8654585Z ] 2025-08-26T21:36:09.8655179Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(811): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8655252Z with 2025-08-26T21:36:09.8655319Z [ 2025-08-26T21:36:09.8655400Z scalar_t=float 2025-08-26T21:36:09.8655487Z ] 2025-08-26T21:36:09.8656099Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(811): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8656171Z with 2025-08-26T21:36:09.8656254Z [ 2025-08-26T21:36:09.8656331Z scalar_t=float 2025-08-26T21:36:09.8656435Z ] 2025-08-26T21:36:09.8657017Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(811): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8657101Z with 2025-08-26T21:36:09.8657169Z [ 2025-08-26T21:36:09.8657252Z scalar_t=float 2025-08-26T21:36:09.8657337Z ] 2025-08-26T21:36:09.8657914Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(812): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8657985Z with 2025-08-26T21:36:09.8658070Z [ 2025-08-26T21:36:09.8658190Z scalar_t=float 2025-08-26T21:36:09.8658264Z ] 2025-08-26T21:36:09.8658843Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(812): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8658930Z with 2025-08-26T21:36:09.8658994Z [ 2025-08-26T21:36:09.8659071Z scalar_t=float 2025-08-26T21:36:09.8659155Z ] 2025-08-26T21:36:09.8659722Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(812): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8659793Z with 2025-08-26T21:36:09.8659863Z [ 2025-08-26T21:36:09.8659957Z scalar_t=float 2025-08-26T21:36:09.8660029Z ] 2025-08-26T21:36:09.8660612Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(813): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8660699Z with 2025-08-26T21:36:09.8660767Z [ 2025-08-26T21:36:09.8660845Z scalar_t=float 2025-08-26T21:36:09.8660932Z ] 2025-08-26T21:36:09.8661512Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(813): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8661621Z with 2025-08-26T21:36:09.8661688Z [ 2025-08-26T21:36:09.8661861Z scalar_t=float 2025-08-26T21:36:09.8661936Z ] 2025-08-26T21:36:09.8662513Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(813): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8662600Z with 2025-08-26T21:36:09.8662672Z [ 2025-08-26T21:36:09.8662753Z scalar_t=float 2025-08-26T21:36:09.8662818Z ] 2025-08-26T21:36:09.8663419Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(814): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8663491Z with 2025-08-26T21:36:09.8663560Z [ 2025-08-26T21:36:09.8663655Z scalar_t=float 2025-08-26T21:36:09.8663723Z ] 2025-08-26T21:36:09.8664300Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(815): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8664383Z with 2025-08-26T21:36:09.8664449Z [ 2025-08-26T21:36:09.8664527Z scalar_t=float 2025-08-26T21:36:09.8664596Z ] 2025-08-26T21:36:09.8665191Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(815): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8665261Z with 2025-08-26T21:36:09.8665328Z [ 2025-08-26T21:36:09.8665464Z scalar_t=float 2025-08-26T21:36:09.8665533Z ] 2025-08-26T21:36:09.8666114Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(815): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8666606Z with 2025-08-26T21:36:09.8666672Z [ 2025-08-26T21:36:09.8666755Z scalar_t=float 2025-08-26T21:36:09.8666820Z ] 2025-08-26T21:36:09.8667417Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(816): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8667484Z with 2025-08-26T21:36:09.8667549Z [ 2025-08-26T21:36:09.8667643Z scalar_t=float 2025-08-26T21:36:09.8667714Z ] 2025-08-26T21:36:09.8668288Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(816): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8668397Z with 2025-08-26T21:36:09.8668474Z [ 2025-08-26T21:36:09.8668554Z scalar_t=float 2025-08-26T21:36:09.8668623Z ] 2025-08-26T21:36:09.8669208Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(816): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8669281Z with 2025-08-26T21:36:09.8669350Z [ 2025-08-26T21:36:09.8669446Z scalar_t=float 2025-08-26T21:36:09.8669514Z ] 2025-08-26T21:36:09.8670095Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(817): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8670167Z with 2025-08-26T21:36:09.8670247Z [ 2025-08-26T21:36:09.8670324Z scalar_t=float 2025-08-26T21:36:09.8670385Z ] 2025-08-26T21:36:09.8670987Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(817): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8671060Z with 2025-08-26T21:36:09.8671128Z [ 2025-08-26T21:36:09.8671209Z scalar_t=float 2025-08-26T21:36:09.8671332Z ] 2025-08-26T21:36:09.8671912Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(817): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8671985Z with 2025-08-26T21:36:09.8672069Z [ 2025-08-26T21:36:09.8672146Z scalar_t=float 2025-08-26T21:36:09.8672214Z ] 2025-08-26T21:36:09.8672812Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(818): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8672883Z with 2025-08-26T21:36:09.8672951Z [ 2025-08-26T21:36:09.8673039Z scalar_t=float 2025-08-26T21:36:09.8673116Z ] 2025-08-26T21:36:09.8673693Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(818): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8673762Z with 2025-08-26T21:36:09.8673841Z [ 2025-08-26T21:36:09.8673923Z scalar_t=float 2025-08-26T21:36:09.8673992Z ] 2025-08-26T21:36:09.8674565Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(818): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8674652Z with 2025-08-26T21:36:09.8674723Z [ 2025-08-26T21:36:09.8674801Z scalar_t=float 2025-08-26T21:36:09.8674882Z ] 2025-08-26T21:36:09.8675504Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(819): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8675578Z with 2025-08-26T21:36:09.8675665Z [ 2025-08-26T21:36:09.8675745Z scalar_t=float 2025-08-26T21:36:09.8675814Z ] 2025-08-26T21:36:09.8676425Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(819): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8676512Z with 2025-08-26T21:36:09.8676584Z [ 2025-08-26T21:36:09.8676666Z scalar_t=float 2025-08-26T21:36:09.8676751Z ] 2025-08-26T21:36:09.8677328Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(819): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8677403Z with 2025-08-26T21:36:09.8677476Z [ 2025-08-26T21:36:09.8677573Z scalar_t=float 2025-08-26T21:36:09.8677643Z ] 2025-08-26T21:36:09.8678255Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(820): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8678338Z with 2025-08-26T21:36:09.8678411Z [ 2025-08-26T21:36:09.8678494Z scalar_t=float 2025-08-26T21:36:09.8678585Z ] 2025-08-26T21:36:09.8679161Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(820): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8679234Z with 2025-08-26T21:36:09.8679302Z [ 2025-08-26T21:36:09.8679396Z scalar_t=float 2025-08-26T21:36:09.8679467Z ] 2025-08-26T21:36:09.8680042Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(820): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8680129Z with 2025-08-26T21:36:09.8680202Z [ 2025-08-26T21:36:09.8680280Z scalar_t=float 2025-08-26T21:36:09.8680352Z ] 2025-08-26T21:36:09.8680951Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(821): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8681060Z with 2025-08-26T21:36:09.8681127Z [ 2025-08-26T21:36:09.8681220Z scalar_t=float 2025-08-26T21:36:09.8681286Z ] 2025-08-26T21:36:09.8681860Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(821): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8681943Z with 2025-08-26T21:36:09.8682009Z [ 2025-08-26T21:36:09.8682087Z scalar_t=float 2025-08-26T21:36:09.8682154Z ] 2025-08-26T21:36:09.8682746Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(821): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8682817Z with 2025-08-26T21:36:09.8682885Z [ 2025-08-26T21:36:09.8682975Z scalar_t=float 2025-08-26T21:36:09.8683043Z ] 2025-08-26T21:36:09.8683623Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(822): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8683709Z with 2025-08-26T21:36:09.8683776Z [ 2025-08-26T21:36:09.8683856Z scalar_t=float 2025-08-26T21:36:09.8683928Z ] 2025-08-26T21:36:09.8684521Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(822): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8684593Z with 2025-08-26T21:36:09.8684660Z [ 2025-08-26T21:36:09.8684753Z scalar_t=float 2025-08-26T21:36:09.8684820Z ] 2025-08-26T21:36:09.8685434Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(822): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8685508Z with 2025-08-26T21:36:09.8685592Z [ 2025-08-26T21:36:09.8685674Z scalar_t=float 2025-08-26T21:36:09.8685779Z ] 2025-08-26T21:36:09.8686368Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(823): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8686438Z with 2025-08-26T21:36:09.8686504Z [ 2025-08-26T21:36:09.8686581Z scalar_t=float 2025-08-26T21:36:09.8686663Z ] 2025-08-26T21:36:09.8687243Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(824): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8687310Z with 2025-08-26T21:36:09.8687433Z [ 2025-08-26T21:36:09.8687516Z scalar_t=float 2025-08-26T21:36:09.8687586Z ] 2025-08-26T21:36:09.8688169Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(824): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8688243Z with 2025-08-26T21:36:09.8688314Z [ 2025-08-26T21:36:09.8688392Z scalar_t=float 2025-08-26T21:36:09.8688476Z ] 2025-08-26T21:36:09.8689049Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(824): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8689119Z with 2025-08-26T21:36:09.8699560Z [ 2025-08-26T21:36:09.8699680Z scalar_t=float 2025-08-26T21:36:09.8699748Z ] 2025-08-26T21:36:09.8700381Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(825): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8700454Z with 2025-08-26T21:36:09.8700520Z [ 2025-08-26T21:36:09.8700597Z scalar_t=float 2025-08-26T21:36:09.8700678Z ] 2025-08-26T21:36:09.8701271Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(825): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8701442Z with 2025-08-26T21:36:09.8701519Z [ 2025-08-26T21:36:09.8701605Z scalar_t=float 2025-08-26T21:36:09.8701675Z ] 2025-08-26T21:36:09.8702339Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(825): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8702418Z with 2025-08-26T21:36:09.8702484Z [ 2025-08-26T21:36:09.8702563Z scalar_t=float 2025-08-26T21:36:09.8702637Z ] 2025-08-26T21:36:09.8703216Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(826): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8703287Z with 2025-08-26T21:36:09.8703364Z [ 2025-08-26T21:36:09.8703446Z scalar_t=float 2025-08-26T21:36:09.8703511Z ] 2025-08-26T21:36:09.8704089Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(826): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8704166Z with 2025-08-26T21:36:09.8704231Z [ 2025-08-26T21:36:09.8704307Z scalar_t=float 2025-08-26T21:36:09.8704376Z ] 2025-08-26T21:36:09.8704948Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(826): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8705012Z with 2025-08-26T21:36:09.8705079Z [ 2025-08-26T21:36:09.8705216Z scalar_t=float 2025-08-26T21:36:09.8705285Z ] 2025-08-26T21:36:09.8705852Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(827): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8705981Z with 2025-08-26T21:36:09.8706047Z [ 2025-08-26T21:36:09.8706121Z scalar_t=float 2025-08-26T21:36:09.8706199Z ] 2025-08-26T21:36:09.8706779Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(827): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8706843Z with 2025-08-26T21:36:09.8706910Z [ 2025-08-26T21:36:09.8706997Z scalar_t=float 2025-08-26T21:36:09.8707063Z ] 2025-08-26T21:36:09.8707646Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(827): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8707766Z with 2025-08-26T21:36:09.8707835Z [ 2025-08-26T21:36:09.8707916Z scalar_t=float 2025-08-26T21:36:09.8707979Z ] 2025-08-26T21:36:09.8708568Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(828): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8708640Z with 2025-08-26T21:36:09.8708710Z [ 2025-08-26T21:36:09.8708805Z scalar_t=float 2025-08-26T21:36:09.8708875Z ] 2025-08-26T21:36:09.8709447Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(828): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8709534Z with 2025-08-26T21:36:09.8709600Z [ 2025-08-26T21:36:09.8709680Z scalar_t=float 2025-08-26T21:36:09.8709752Z ] 2025-08-26T21:36:09.8710345Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(828): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8710413Z with 2025-08-26T21:36:09.8710482Z [ 2025-08-26T21:36:09.8710612Z scalar_t=float 2025-08-26T21:36:09.8710679Z ] 2025-08-26T21:36:09.8711253Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(829): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8711342Z with 2025-08-26T21:36:09.8711411Z [ 2025-08-26T21:36:09.8711487Z scalar_t=float 2025-08-26T21:36:09.8711553Z ] 2025-08-26T21:36:09.8712139Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(829): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8712209Z with 2025-08-26T21:36:09.8712279Z [ 2025-08-26T21:36:09.8712370Z scalar_t=float 2025-08-26T21:36:09.8712441Z ] 2025-08-26T21:36:09.8713016Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(829): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8713085Z with 2025-08-26T21:36:09.8713170Z [ 2025-08-26T21:36:09.8713248Z scalar_t=float 2025-08-26T21:36:09.8713310Z ] 2025-08-26T21:36:09.8713893Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(830): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8713961Z with 2025-08-26T21:36:09.8714028Z [ 2025-08-26T21:36:09.8714105Z scalar_t=float 2025-08-26T21:36:09.8714176Z ] 2025-08-26T21:36:09.8714788Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(830): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8714861Z with 2025-08-26T21:36:09.8714943Z [ 2025-08-26T21:36:09.8715017Z scalar_t=float 2025-08-26T21:36:09.8715086Z ] 2025-08-26T21:36:09.8715703Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(830): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8715777Z with 2025-08-26T21:36:09.8715842Z [ 2025-08-26T21:36:09.8715918Z scalar_t=float 2025-08-26T21:36:09.8715993Z ] 2025-08-26T21:36:09.8716563Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(831): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8716628Z with 2025-08-26T21:36:09.8716704Z [ 2025-08-26T21:36:09.8716777Z scalar_t=float 2025-08-26T21:36:09.8716878Z ] 2025-08-26T21:36:09.8717461Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(831): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8717528Z with 2025-08-26T21:36:09.8717590Z [ 2025-08-26T21:36:09.8717667Z scalar_t=float 2025-08-26T21:36:09.8717737Z ] 2025-08-26T21:36:09.8718310Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(831): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8718376Z with 2025-08-26T21:36:09.8718451Z [ 2025-08-26T21:36:09.8718525Z scalar_t=float 2025-08-26T21:36:09.8718593Z ] 2025-08-26T21:36:09.8719167Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(832): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8719241Z with 2025-08-26T21:36:09.8719306Z [ 2025-08-26T21:36:09.8719383Z scalar_t=float 2025-08-26T21:36:09.8719459Z ] 2025-08-26T21:36:09.8720034Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(833): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8720557Z with 2025-08-26T21:36:09.8720635Z [ 2025-08-26T21:36:09.8720716Z scalar_t=float 2025-08-26T21:36:09.8720783Z ] 2025-08-26T21:36:09.8721358Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(833): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8721444Z with 2025-08-26T21:36:09.8721513Z [ 2025-08-26T21:36:09.8721600Z scalar_t=float 2025-08-26T21:36:09.8721667Z ] 2025-08-26T21:36:09.8722251Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(833): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8722322Z with 2025-08-26T21:36:09.8722386Z [ 2025-08-26T21:36:09.8722459Z scalar_t=float 2025-08-26T21:36:09.8722535Z ] 2025-08-26T21:36:09.8723116Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(834): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8723183Z with 2025-08-26T21:36:09.8723255Z [ 2025-08-26T21:36:09.8723332Z scalar_t=float 2025-08-26T21:36:09.8723396Z ] 2025-08-26T21:36:09.8723975Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(834): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8724042Z with 2025-08-26T21:36:09.8724108Z [ 2025-08-26T21:36:09.8724183Z scalar_t=float 2025-08-26T21:36:09.8724256Z ] 2025-08-26T21:36:09.8724864Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(834): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8724932Z with 2025-08-26T21:36:09.8725002Z [ 2025-08-26T21:36:09.8725116Z scalar_t=float 2025-08-26T21:36:09.8725180Z ] 2025-08-26T21:36:09.8725750Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(835): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8725827Z with 2025-08-26T21:36:09.8725893Z [ 2025-08-26T21:36:09.8725966Z scalar_t=float 2025-08-26T21:36:09.8726043Z ] 2025-08-26T21:36:09.8726611Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(835): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8726714Z with 2025-08-26T21:36:09.8726787Z [ 2025-08-26T21:36:09.8726862Z scalar_t=float 2025-08-26T21:36:09.8726923Z ] 2025-08-26T21:36:09.8727492Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(835): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8727565Z with 2025-08-26T21:36:09.8727628Z [ 2025-08-26T21:36:09.8727700Z scalar_t=float 2025-08-26T21:36:09.8727775Z ] 2025-08-26T21:36:09.8728345Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(836): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8728409Z with 2025-08-26T21:36:09.8728479Z [ 2025-08-26T21:36:09.8728551Z scalar_t=float 2025-08-26T21:36:09.8728613Z ] 2025-08-26T21:36:09.8729190Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(836): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8729268Z with 2025-08-26T21:36:09.8729332Z [ 2025-08-26T21:36:09.8729403Z scalar_t=float 2025-08-26T21:36:09.8729476Z ] 2025-08-26T21:36:09.8730088Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(836): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8730153Z with 2025-08-26T21:36:09.8730217Z [ 2025-08-26T21:36:09.8730301Z scalar_t=float 2025-08-26T21:36:09.8730369Z ] 2025-08-26T21:36:09.8730940Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(837): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8731010Z with 2025-08-26T21:36:09.8731073Z [ 2025-08-26T21:36:09.8731145Z scalar_t=float 2025-08-26T21:36:09.8731213Z ] 2025-08-26T21:36:09.8731801Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(837): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8731866Z with 2025-08-26T21:36:09.8731930Z [ 2025-08-26T21:36:09.8732013Z scalar_t=float 2025-08-26T21:36:09.8732075Z ] 2025-08-26T21:36:09.8732646Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(837): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8732719Z with 2025-08-26T21:36:09.8732787Z [ 2025-08-26T21:36:09.8732859Z scalar_t=float 2025-08-26T21:36:09.8732920Z ] 2025-08-26T21:36:09.8733506Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(838): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8733572Z with 2025-08-26T21:36:09.8733669Z [ 2025-08-26T21:36:09.8733757Z scalar_t=float 2025-08-26T21:36:09.8733819Z ] 2025-08-26T21:36:09.8734424Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(838): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8734497Z with 2025-08-26T21:36:09.8734560Z [ 2025-08-26T21:36:09.8734637Z scalar_t=float 2025-08-26T21:36:09.8734701Z ] 2025-08-26T21:36:09.8735287Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(838): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8735352Z with 2025-08-26T21:36:09.8735415Z [ 2025-08-26T21:36:09.8735496Z scalar_t=float 2025-08-26T21:36:09.8735562Z ] 2025-08-26T21:36:09.8736140Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(839): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8736240Z with 2025-08-26T21:36:09.8736317Z [ 2025-08-26T21:36:09.8736389Z scalar_t=float 2025-08-26T21:36:09.8736451Z ] 2025-08-26T21:36:09.8737042Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(839): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8737106Z with 2025-08-26T21:36:09.8737171Z [ 2025-08-26T21:36:09.8737253Z scalar_t=float 2025-08-26T21:36:09.8737317Z ] 2025-08-26T21:36:09.8737887Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(839): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8737951Z with 2025-08-26T21:36:09.8738020Z [ 2025-08-26T21:36:09.8738091Z scalar_t=float 2025-08-26T21:36:09.8738157Z ] 2025-08-26T21:36:09.8738739Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(840): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8738804Z with 2025-08-26T21:36:09.8738898Z [ 2025-08-26T21:36:09.8738976Z scalar_t=float 2025-08-26T21:36:09.8739052Z ] 2025-08-26T21:36:09.8739620Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(840): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8739684Z with 2025-08-26T21:36:09.8739756Z [ 2025-08-26T21:36:09.8739831Z scalar_t=float 2025-08-26T21:36:09.8739896Z ] 2025-08-26T21:36:09.8740466Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(840): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8740534Z with 2025-08-26T21:36:09.8740599Z [ 2025-08-26T21:36:09.8740670Z scalar_t=float 2025-08-26T21:36:09.8740740Z ] 2025-08-26T21:36:09.8741312Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(841): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8741378Z with 2025-08-26T21:36:09.8741448Z [ 2025-08-26T21:36:09.8741521Z scalar_t=float 2025-08-26T21:36:09.8741583Z ] 2025-08-26T21:36:09.8742233Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(842): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8742313Z with 2025-08-26T21:36:09.8742378Z [ 2025-08-26T21:36:09.8742452Z scalar_t=float 2025-08-26T21:36:09.8742530Z ] 2025-08-26T21:36:09.8743161Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(842): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8743236Z with 2025-08-26T21:36:09.8743313Z [ 2025-08-26T21:36:09.8743391Z scalar_t=float 2025-08-26T21:36:09.8743462Z ] 2025-08-26T21:36:09.8744075Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(842): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8744153Z with 2025-08-26T21:36:09.8744215Z [ 2025-08-26T21:36:09.8744291Z scalar_t=float 2025-08-26T21:36:09.8744363Z ] 2025-08-26T21:36:09.8744936Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(843): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8745001Z with 2025-08-26T21:36:09.8745068Z [ 2025-08-26T21:36:09.8745150Z scalar_t=float 2025-08-26T21:36:09.8745250Z ] 2025-08-26T21:36:09.8745823Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(843): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8745897Z with 2025-08-26T21:36:09.8745965Z [ 2025-08-26T21:36:09.8746041Z scalar_t=float 2025-08-26T21:36:09.8746114Z ] 2025-08-26T21:36:09.8746685Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(843): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8746751Z with 2025-08-26T21:36:09.8746814Z [ 2025-08-26T21:36:09.8746900Z scalar_t=float 2025-08-26T21:36:09.8746963Z ] 2025-08-26T21:36:09.8747532Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(844): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8747618Z with 2025-08-26T21:36:09.8747683Z [ 2025-08-26T21:36:09.8747757Z scalar_t=float 2025-08-26T21:36:09.8747821Z ] 2025-08-26T21:36:09.8748406Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(844): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8748508Z with 2025-08-26T21:36:09.8748573Z [ 2025-08-26T21:36:09.8748656Z scalar_t=float 2025-08-26T21:36:09.8748717Z ] 2025-08-26T21:36:09.8749295Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(844): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8749369Z with 2025-08-26T21:36:09.8749432Z [ 2025-08-26T21:36:09.8749505Z scalar_t=float 2025-08-26T21:36:09.8749570Z ] 2025-08-26T21:36:09.8750162Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(845): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8750234Z with 2025-08-26T21:36:09.8750301Z [ 2025-08-26T21:36:09.8750391Z scalar_t=float 2025-08-26T21:36:09.8750459Z ] 2025-08-26T21:36:09.8751030Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(845): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8751107Z with 2025-08-26T21:36:09.8751170Z [ 2025-08-26T21:36:09.8751243Z scalar_t=float 2025-08-26T21:36:09.8751305Z ] 2025-08-26T21:36:09.8751890Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(845): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8751957Z with 2025-08-26T21:36:09.8752021Z [ 2025-08-26T21:36:09.8752108Z scalar_t=float 2025-08-26T21:36:09.8752208Z ] 2025-08-26T21:36:09.8752786Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(846): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8752851Z with 2025-08-26T21:36:09.8752958Z [ 2025-08-26T21:36:09.8753035Z scalar_t=float 2025-08-26T21:36:09.8753101Z ] 2025-08-26T21:36:09.8753683Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(846): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8753751Z with 2025-08-26T21:36:09.8753814Z [ 2025-08-26T21:36:09.8753901Z scalar_t=float 2025-08-26T21:36:09.8753967Z ] 2025-08-26T21:36:09.8754536Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(846): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8754643Z with 2025-08-26T21:36:09.8754721Z [ 2025-08-26T21:36:09.8754793Z scalar_t=float 2025-08-26T21:36:09.8754857Z ] 2025-08-26T21:36:09.8755440Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(847): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8755514Z with 2025-08-26T21:36:09.8755581Z [ 2025-08-26T21:36:09.8755654Z scalar_t=float 2025-08-26T21:36:09.8755729Z ] 2025-08-26T21:36:09.8756295Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(847): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8756360Z with 2025-08-26T21:36:09.8756437Z [ 2025-08-26T21:36:09.8756510Z scalar_t=float 2025-08-26T21:36:09.8756572Z ] 2025-08-26T21:36:09.8757157Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(847): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8757224Z with 2025-08-26T21:36:09.8757287Z [ 2025-08-26T21:36:09.8757359Z scalar_t=float 2025-08-26T21:36:09.8757466Z ] 2025-08-26T21:36:09.8758040Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(848): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8758114Z with 2025-08-26T21:36:09.8758177Z [ 2025-08-26T21:36:09.8758262Z scalar_t=float 2025-08-26T21:36:09.8758328Z ] 2025-08-26T21:36:09.8758899Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(848): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8758977Z with 2025-08-26T21:36:09.8759045Z [ 2025-08-26T21:36:09.8759123Z scalar_t=float 2025-08-26T21:36:09.8759189Z ] 2025-08-26T21:36:09.8759762Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(848): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8759830Z with 2025-08-26T21:36:09.8759893Z [ 2025-08-26T21:36:09.8759971Z scalar_t=float 2025-08-26T21:36:09.8760036Z ] 2025-08-26T21:36:09.8760656Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(849): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8760768Z with 2025-08-26T21:36:09.8760874Z [ 2025-08-26T21:36:09.8760992Z scalar_t=float 2025-08-26T21:36:09.8761103Z ] 2025-08-26T21:36:09.8762270Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(849): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8762476Z with 2025-08-26T21:36:09.8762573Z [ 2025-08-26T21:36:09.8762656Z scalar_t=float 2025-08-26T21:36:09.8762717Z ] 2025-08-26T21:36:09.8763335Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(849): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8763415Z with 2025-08-26T21:36:09.8763477Z [ 2025-08-26T21:36:09.8763553Z scalar_t=float 2025-08-26T21:36:09.8763617Z ] 2025-08-26T21:36:09.8764207Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(850): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8764275Z with 2025-08-26T21:36:09.8764339Z [ 2025-08-26T21:36:09.8764427Z scalar_t=float 2025-08-26T21:36:09.8764491Z ] 2025-08-26T21:36:09.8765060Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(851): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8765163Z with 2025-08-26T21:36:09.8765235Z [ 2025-08-26T21:36:09.8765310Z scalar_t=float 2025-08-26T21:36:09.8765378Z ] 2025-08-26T21:36:09.8765954Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(851): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8766023Z with 2025-08-26T21:36:09.8766087Z [ 2025-08-26T21:36:09.8766162Z scalar_t=float 2025-08-26T21:36:09.8766231Z ] 2025-08-26T21:36:09.8766802Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(851): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8766867Z with 2025-08-26T21:36:09.8766941Z [ 2025-08-26T21:36:09.8767016Z scalar_t=float 2025-08-26T21:36:09.8767080Z ] 2025-08-26T21:36:09.8767656Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(852): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8767763Z with 2025-08-26T21:36:09.8767829Z [ 2025-08-26T21:36:09.8767902Z scalar_t=float 2025-08-26T21:36:09.8767978Z ] 2025-08-26T21:36:09.8768553Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(852): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8768617Z with 2025-08-26T21:36:09.8768683Z [ 2025-08-26T21:36:09.8768759Z scalar_t=float 2025-08-26T21:36:09.8768825Z ] 2025-08-26T21:36:09.8769414Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(852): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8769489Z with 2025-08-26T21:36:09.8769555Z [ 2025-08-26T21:36:09.8769627Z scalar_t=float 2025-08-26T21:36:09.8769703Z ] 2025-08-26T21:36:09.8770279Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(853): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8770346Z with 2025-08-26T21:36:09.8770419Z [ 2025-08-26T21:36:09.8770496Z scalar_t=float 2025-08-26T21:36:09.8770559Z ] 2025-08-26T21:36:09.8771122Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(853): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8771196Z with 2025-08-26T21:36:09.8771260Z [ 2025-08-26T21:36:09.8771338Z scalar_t=float 2025-08-26T21:36:09.8771409Z ] 2025-08-26T21:36:09.8772012Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(853): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8772082Z with 2025-08-26T21:36:09.8772150Z [ 2025-08-26T21:36:09.8772229Z scalar_t=float 2025-08-26T21:36:09.8772296Z ] 2025-08-26T21:36:09.8772899Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(854): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8772978Z with 2025-08-26T21:36:09.8773043Z [ 2025-08-26T21:36:09.8773116Z scalar_t=float 2025-08-26T21:36:09.8773196Z ] 2025-08-26T21:36:09.8773767Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(854): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8773835Z with 2025-08-26T21:36:09.8773899Z [ 2025-08-26T21:36:09.8774298Z scalar_t=float 2025-08-26T21:36:09.8774364Z ] 2025-08-26T21:36:09.8774940Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(854): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8775016Z with 2025-08-26T21:36:09.8775081Z [ 2025-08-26T21:36:09.8775157Z scalar_t=float 2025-08-26T21:36:09.8775233Z ] 2025-08-26T21:36:09.8775811Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(855): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8775879Z with 2025-08-26T21:36:09.8775942Z [ 2025-08-26T21:36:09.8776026Z scalar_t=float 2025-08-26T21:36:09.8776091Z ] 2025-08-26T21:36:09.8776662Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(855): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8776736Z with 2025-08-26T21:36:09.8776800Z [ 2025-08-26T21:36:09.8776872Z scalar_t=float 2025-08-26T21:36:09.8776933Z ] 2025-08-26T21:36:09.8777518Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(855): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8777624Z with 2025-08-26T21:36:09.8777688Z [ 2025-08-26T21:36:09.8777771Z scalar_t=float 2025-08-26T21:36:09.8777831Z ] 2025-08-26T21:36:09.8778401Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(856): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8778481Z with 2025-08-26T21:36:09.8778546Z [ 2025-08-26T21:36:09.8778617Z scalar_t=float 2025-08-26T21:36:09.8778680Z ] 2025-08-26T21:36:09.8779263Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(856): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8779330Z with 2025-08-26T21:36:09.8779394Z [ 2025-08-26T21:36:09.8779477Z scalar_t=float 2025-08-26T21:36:09.8779544Z ] 2025-08-26T21:36:09.8780117Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(856): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8780197Z with 2025-08-26T21:36:09.8780262Z [ 2025-08-26T21:36:09.8780334Z scalar_t=float 2025-08-26T21:36:09.8780396Z ] 2025-08-26T21:36:09.8780977Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(857): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8781042Z with 2025-08-26T21:36:09.8781104Z [ 2025-08-26T21:36:09.8781185Z scalar_t=float 2025-08-26T21:36:09.8781279Z ] 2025-08-26T21:36:09.8781923Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(857): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8781998Z with 2025-08-26T21:36:09.8782113Z [ 2025-08-26T21:36:09.8782193Z scalar_t=float 2025-08-26T21:36:09.8782256Z ] 2025-08-26T21:36:09.8782834Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(857): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8782898Z with 2025-08-26T21:36:09.8782960Z [ 2025-08-26T21:36:09.8783036Z scalar_t=float 2025-08-26T21:36:09.8783109Z ] 2025-08-26T21:36:09.8783684Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(858): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8783786Z with 2025-08-26T21:36:09.8783857Z [ 2025-08-26T21:36:09.8783930Z scalar_t=float 2025-08-26T21:36:09.8783993Z ] 2025-08-26T21:36:09.8784584Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(858): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8784653Z with 2025-08-26T21:36:09.8784720Z [ 2025-08-26T21:36:09.8784792Z scalar_t=float 2025-08-26T21:36:09.8784870Z ] 2025-08-26T21:36:09.8785443Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(858): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8785509Z with 2025-08-26T21:36:09.8785586Z [ 2025-08-26T21:36:09.8785664Z scalar_t=float 2025-08-26T21:36:09.8785728Z ] 2025-08-26T21:36:09.8786312Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(859): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8786376Z with 2025-08-26T21:36:09.8786440Z [ 2025-08-26T21:36:09.8786515Z scalar_t=float 2025-08-26T21:36:09.8786626Z ] 2025-08-26T21:36:09.8787196Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(860): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8787265Z with 2025-08-26T21:36:09.8787340Z [ 2025-08-26T21:36:09.8787415Z scalar_t=float 2025-08-26T21:36:09.8787480Z ] 2025-08-26T21:36:09.8788055Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(860): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8788129Z with 2025-08-26T21:36:09.8788195Z [ 2025-08-26T21:36:09.8788273Z scalar_t=float 2025-08-26T21:36:09.8788353Z ] 2025-08-26T21:36:09.8788924Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(860): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8788994Z with 2025-08-26T21:36:09.8789071Z [ 2025-08-26T21:36:09.8789144Z scalar_t=float 2025-08-26T21:36:09.8789206Z ] 2025-08-26T21:36:09.8789773Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(861): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8789849Z with 2025-08-26T21:36:09.8789914Z [ 2025-08-26T21:36:09.8789985Z scalar_t=float 2025-08-26T21:36:09.8790060Z ] 2025-08-26T21:36:09.8790632Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(861): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8790730Z with 2025-08-26T21:36:09.8790794Z [ 2025-08-26T21:36:09.8790876Z scalar_t=float 2025-08-26T21:36:09.8790938Z ] 2025-08-26T21:36:09.8791546Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(861): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8791620Z with 2025-08-26T21:36:09.8791682Z [ 2025-08-26T21:36:09.8791757Z scalar_t=float 2025-08-26T21:36:09.8791827Z ] 2025-08-26T21:36:09.8792397Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(862): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8792461Z with 2025-08-26T21:36:09.8792524Z [ 2025-08-26T21:36:09.8792609Z scalar_t=float 2025-08-26T21:36:09.8792675Z ] 2025-08-26T21:36:09.8793281Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(862): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8793354Z with 2025-08-26T21:36:09.8793418Z [ 2025-08-26T21:36:09.8793492Z scalar_t=float 2025-08-26T21:36:09.8793561Z ] 2025-08-26T21:36:09.8794141Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(862): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8794205Z with 2025-08-26T21:36:09.8794267Z [ 2025-08-26T21:36:09.8794349Z scalar_t=float 2025-08-26T21:36:09.8794412Z ] 2025-08-26T21:36:09.8794985Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(863): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8795063Z with 2025-08-26T21:36:09.8795129Z [ 2025-08-26T21:36:09.8795204Z scalar_t=float 2025-08-26T21:36:09.8795268Z ] 2025-08-26T21:36:09.8795854Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(863): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8795957Z with 2025-08-26T21:36:09.8796020Z [ 2025-08-26T21:36:09.8796102Z scalar_t=float 2025-08-26T21:36:09.8796164Z ] 2025-08-26T21:36:09.8796736Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(863): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8796810Z with 2025-08-26T21:36:09.8796875Z [ 2025-08-26T21:36:09.8796948Z scalar_t=float 2025-08-26T21:36:09.8797017Z ] 2025-08-26T21:36:09.8797602Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(864): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8797669Z with 2025-08-26T21:36:09.8797735Z [ 2025-08-26T21:36:09.8797814Z scalar_t=float 2025-08-26T21:36:09.8797878Z ] 2025-08-26T21:36:09.8798455Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(864): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8798523Z with 2025-08-26T21:36:09.8798596Z [ 2025-08-26T21:36:09.8798673Z scalar_t=float 2025-08-26T21:36:09.8798742Z ] 2025-08-26T21:36:09.8799321Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(864): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8799385Z with 2025-08-26T21:36:09.8799446Z [ 2025-08-26T21:36:09.8799525Z scalar_t=float 2025-08-26T21:36:09.8799598Z ] 2025-08-26T21:36:09.8800218Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(865): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8800286Z with 2025-08-26T21:36:09.8800360Z [ 2025-08-26T21:36:09.8800436Z scalar_t=float 2025-08-26T21:36:09.8800536Z ] 2025-08-26T21:36:09.8801117Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(865): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8801180Z with 2025-08-26T21:36:09.8801242Z [ 2025-08-26T21:36:09.8801316Z scalar_t=float 2025-08-26T21:36:09.8801385Z ] 2025-08-26T21:36:09.8801956Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(865): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8802018Z with 2025-08-26T21:36:09.8802132Z [ 2025-08-26T21:36:09.8802244Z scalar_t=float 2025-08-26T21:36:09.8802343Z ] 2025-08-26T21:36:09.8803289Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(866): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8803382Z with 2025-08-26T21:36:09.8803457Z [ 2025-08-26T21:36:09.8803535Z scalar_t=float 2025-08-26T21:36:09.8803613Z ] 2025-08-26T21:36:09.8804194Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(866): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8804264Z with 2025-08-26T21:36:09.8804342Z [ 2025-08-26T21:36:09.8804421Z scalar_t=float 2025-08-26T21:36:09.8804487Z ] 2025-08-26T21:36:09.8805061Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(866): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8805150Z with 2025-08-26T21:36:09.8805217Z [ 2025-08-26T21:36:09.8805296Z scalar_t=float 2025-08-26T21:36:09.8805378Z ] 2025-08-26T21:36:09.8805960Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(867): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8806124Z with 2025-08-26T21:36:09.8806232Z [ 2025-08-26T21:36:09.8806314Z scalar_t=float 2025-08-26T21:36:09.8806382Z ] 2025-08-26T21:36:09.8806956Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(867): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8807035Z with 2025-08-26T21:36:09.8807106Z [ 2025-08-26T21:36:09.8807185Z scalar_t=float 2025-08-26T21:36:09.8807268Z ] 2025-08-26T21:36:09.8807856Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(867): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8807931Z with 2025-08-26T21:36:09.8807998Z [ 2025-08-26T21:36:09.8808096Z scalar_t=float 2025-08-26T21:36:09.8808165Z ] 2025-08-26T21:36:09.8808742Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(868): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8808826Z with 2025-08-26T21:36:09.8808899Z [ 2025-08-26T21:36:09.8808978Z scalar_t=float 2025-08-26T21:36:09.8809047Z ] 2025-08-26T21:36:09.8809643Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(869): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8809716Z with 2025-08-26T21:36:09.8809793Z [ 2025-08-26T21:36:09.8809920Z scalar_t=float 2025-08-26T21:36:09.8809988Z ] 2025-08-26T21:36:09.8810560Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(869): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8810677Z with 2025-08-26T21:36:09.8810746Z [ 2025-08-26T21:36:09.8810826Z scalar_t=float 2025-08-26T21:36:09.8810898Z ] 2025-08-26T21:36:09.8811487Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(869): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8811559Z with 2025-08-26T21:36:09.8811630Z [ 2025-08-26T21:36:09.8811725Z scalar_t=float 2025-08-26T21:36:09.8811790Z ] 2025-08-26T21:36:09.8812372Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(870): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8812492Z with 2025-08-26T21:36:09.8812557Z [ 2025-08-26T21:36:09.8812632Z scalar_t=float 2025-08-26T21:36:09.8812693Z ] 2025-08-26T21:36:09.8813272Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(870): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8813341Z with 2025-08-26T21:36:09.8813410Z [ 2025-08-26T21:36:09.8813507Z scalar_t=float 2025-08-26T21:36:09.8813571Z ] 2025-08-26T21:36:09.8814149Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(870): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8814220Z with 2025-08-26T21:36:09.8814296Z [ 2025-08-26T21:36:09.8814368Z scalar_t=float 2025-08-26T21:36:09.8814429Z ] 2025-08-26T21:36:09.8815028Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(871): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8815098Z with 2025-08-26T21:36:09.8815166Z [ 2025-08-26T21:36:09.8815294Z scalar_t=float 2025-08-26T21:36:09.8815363Z ] 2025-08-26T21:36:09.8815936Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(871): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8816005Z with 2025-08-26T21:36:09.8816081Z [ 2025-08-26T21:36:09.8816160Z scalar_t=float 2025-08-26T21:36:09.8816235Z ] 2025-08-26T21:36:09.8816820Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(871): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8816890Z with 2025-08-26T21:36:09.8816958Z [ 2025-08-26T21:36:09.8817036Z scalar_t=float 2025-08-26T21:36:09.8817117Z ] 2025-08-26T21:36:09.8817692Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(872): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8817764Z with 2025-08-26T21:36:09.8817845Z [ 2025-08-26T21:36:09.8817928Z scalar_t=float 2025-08-26T21:36:09.8817997Z ] 2025-08-26T21:36:09.8818583Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(872): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8818654Z with 2025-08-26T21:36:09.8818726Z [ 2025-08-26T21:36:09.8818805Z scalar_t=float 2025-08-26T21:36:09.8818881Z ] 2025-08-26T21:36:09.8819718Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(872): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8819798Z with 2025-08-26T21:36:09.8819880Z [ 2025-08-26T21:36:09.8819957Z scalar_t=float 2025-08-26T21:36:09.8820025Z ] 2025-08-26T21:36:09.8820641Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(873): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8820718Z with 2025-08-26T21:36:09.8820783Z [ 2025-08-26T21:36:09.8820863Z scalar_t=float 2025-08-26T21:36:09.8820939Z ] 2025-08-26T21:36:09.8821514Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(873): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8821584Z with 2025-08-26T21:36:09.8821665Z [ 2025-08-26T21:36:09.8821739Z scalar_t=float 2025-08-26T21:36:09.8821918Z ] 2025-08-26T21:36:09.8822499Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(873): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8822572Z with 2025-08-26T21:36:09.8822640Z [ 2025-08-26T21:36:09.8822720Z scalar_t=float 2025-08-26T21:36:09.8822802Z ] 2025-08-26T21:36:09.8823374Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(874): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8823440Z with 2025-08-26T21:36:09.8823504Z [ 2025-08-26T21:36:09.8823588Z scalar_t=float 2025-08-26T21:36:09.8823654Z ] 2025-08-26T21:36:09.8824229Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(874): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8824306Z with 2025-08-26T21:36:09.8824372Z [ 2025-08-26T21:36:09.8824447Z scalar_t=float 2025-08-26T21:36:09.8824516Z ] 2025-08-26T21:36:09.8825091Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(874): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8825202Z with 2025-08-26T21:36:09.8825266Z [ 2025-08-26T21:36:09.8825353Z scalar_t=float 2025-08-26T21:36:09.8825417Z ] 2025-08-26T21:36:09.8825992Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(875): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8826067Z with 2025-08-26T21:36:09.8826135Z [ 2025-08-26T21:36:09.8826212Z scalar_t=float 2025-08-26T21:36:09.8826275Z ] 2025-08-26T21:36:09.8826864Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(875): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8826932Z with 2025-08-26T21:36:09.8826999Z [ 2025-08-26T21:36:09.8827088Z scalar_t=float 2025-08-26T21:36:09.8827154Z ] 2025-08-26T21:36:09.8827730Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(875): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8827805Z with 2025-08-26T21:36:09.8827870Z [ 2025-08-26T21:36:09.8827942Z scalar_t=float 2025-08-26T21:36:09.8828008Z ] 2025-08-26T21:36:09.8828593Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(876): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8828660Z with 2025-08-26T21:36:09.8828723Z [ 2025-08-26T21:36:09.8828867Z scalar_t=float 2025-08-26T21:36:09.8828957Z ] 2025-08-26T21:36:09.8829574Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(876): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8829648Z with 2025-08-26T21:36:09.8829711Z [ 2025-08-26T21:36:09.8830183Z scalar_t=float 2025-08-26T21:36:09.8830253Z ] 2025-08-26T21:36:09.8830845Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(876): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8830909Z with 2025-08-26T21:36:09.8830976Z [ 2025-08-26T21:36:09.8831061Z scalar_t=float 2025-08-26T21:36:09.8831127Z ] 2025-08-26T21:36:09.8831702Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(877): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8831810Z with 2025-08-26T21:36:09.8831880Z [ 2025-08-26T21:36:09.8831954Z scalar_t=float 2025-08-26T21:36:09.8832019Z ] 2025-08-26T21:36:09.8832601Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(878): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8832670Z with 2025-08-26T21:36:09.8832738Z [ 2025-08-26T21:36:09.8832818Z scalar_t=float 2025-08-26T21:36:09.8832879Z ] 2025-08-26T21:36:09.8833449Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(878): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8833514Z with 2025-08-26T21:36:09.8833585Z [ 2025-08-26T21:36:09.8833662Z scalar_t=float 2025-08-26T21:36:09.8833726Z ] 2025-08-26T21:36:09.8834306Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(878): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8834371Z with 2025-08-26T21:36:09.8834433Z [ 2025-08-26T21:36:09.8834506Z scalar_t=float 2025-08-26T21:36:09.8834576Z ] 2025-08-26T21:36:09.8835185Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(879): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8835251Z with 2025-08-26T21:36:09.8835333Z [ 2025-08-26T21:36:09.8835414Z scalar_t=float 2025-08-26T21:36:09.8835479Z ] 2025-08-26T21:36:09.8836052Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(879): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8836119Z with 2025-08-26T21:36:09.8836182Z [ 2025-08-26T21:36:09.8836255Z scalar_t=float 2025-08-26T21:36:09.8836334Z ] 2025-08-26T21:36:09.8836914Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(879): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8836979Z with 2025-08-26T21:36:09.8837051Z [ 2025-08-26T21:36:09.8837126Z scalar_t=float 2025-08-26T21:36:09.8837193Z ] 2025-08-26T21:36:09.8837767Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(880): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8837838Z with 2025-08-26T21:36:09.8837900Z [ 2025-08-26T21:36:09.8837975Z scalar_t=float 2025-08-26T21:36:09.8838050Z ] 2025-08-26T21:36:09.8838617Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(880): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8838682Z with 2025-08-26T21:36:09.8838787Z [ 2025-08-26T21:36:09.8838861Z scalar_t=float 2025-08-26T21:36:09.8838923Z ] 2025-08-26T21:36:09.8839842Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(880): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8839924Z with 2025-08-26T21:36:09.8839991Z [ 2025-08-26T21:36:09.8840069Z scalar_t=float 2025-08-26T21:36:09.8840141Z ] 2025-08-26T21:36:09.8840722Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(881): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8840791Z with 2025-08-26T21:36:09.8840862Z [ 2025-08-26T21:36:09.8840946Z scalar_t=float 2025-08-26T21:36:09.8841011Z ] 2025-08-26T21:36:09.8841587Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(881): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8841697Z with 2025-08-26T21:36:09.8841760Z [ 2025-08-26T21:36:09.8841836Z scalar_t=float 2025-08-26T21:36:09.8841920Z ] 2025-08-26T21:36:09.8842498Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(881): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8842565Z with 2025-08-26T21:36:09.8842629Z [ 2025-08-26T21:36:09.8842714Z scalar_t=float 2025-08-26T21:36:09.8842779Z ] 2025-08-26T21:36:09.8843350Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(882): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8843430Z with 2025-08-26T21:36:09.8843499Z [ 2025-08-26T21:36:09.8843575Z scalar_t=float 2025-08-26T21:36:09.8843641Z ] 2025-08-26T21:36:09.8844221Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(882): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8844289Z with 2025-08-26T21:36:09.8844387Z [ 2025-08-26T21:36:09.8844476Z scalar_t=float 2025-08-26T21:36:09.8844540Z ] 2025-08-26T21:36:09.8845114Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(882): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8845184Z with 2025-08-26T21:36:09.8845247Z [ 2025-08-26T21:36:09.8845322Z scalar_t=float 2025-08-26T21:36:09.8845384Z ] 2025-08-26T21:36:09.8845960Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(883): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8846027Z with 2025-08-26T21:36:09.8846092Z [ 2025-08-26T21:36:09.8846176Z scalar_t=float 2025-08-26T21:36:09.8846242Z ] 2025-08-26T21:36:09.8846816Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(883): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8846891Z with 2025-08-26T21:36:09.8846953Z [ 2025-08-26T21:36:09.8847030Z scalar_t=float 2025-08-26T21:36:09.8847094Z ] 2025-08-26T21:36:09.8847675Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(883): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8847740Z with 2025-08-26T21:36:09.8847803Z [ 2025-08-26T21:36:09.8847883Z scalar_t=float 2025-08-26T21:36:09.8847945Z ] 2025-08-26T21:36:09.8848551Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(884): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8848621Z with 2025-08-26T21:36:09.8848692Z [ 2025-08-26T21:36:09.8848767Z scalar_t=float 2025-08-26T21:36:09.8848827Z ] 2025-08-26T21:36:09.8849753Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(884): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8849827Z with 2025-08-26T21:36:09.8849896Z [ 2025-08-26T21:36:09.8849985Z scalar_t=float 2025-08-26T21:36:09.8850047Z ] 2025-08-26T21:36:09.8850618Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(884): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8850682Z with 2025-08-26T21:36:09.8850752Z [ 2025-08-26T21:36:09.8850830Z scalar_t=float 2025-08-26T21:36:09.8850929Z ] 2025-08-26T21:36:09.8851522Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(885): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8851592Z with 2025-08-26T21:36:09.8851659Z [ 2025-08-26T21:36:09.8851737Z scalar_t=float 2025-08-26T21:36:09.8851811Z ] 2025-08-26T21:36:09.8852380Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(885): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8852444Z with 2025-08-26T21:36:09.8852522Z [ 2025-08-26T21:36:09.8852599Z scalar_t=float 2025-08-26T21:36:09.8852661Z ] 2025-08-26T21:36:09.8853246Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(885): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8853318Z with 2025-08-26T21:36:09.8853384Z [ 2025-08-26T21:36:09.8853459Z scalar_t=float 2025-08-26T21:36:09.8853536Z ] 2025-08-26T21:36:09.8854105Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(886): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8854205Z with 2025-08-26T21:36:09.8854276Z [ 2025-08-26T21:36:09.8854351Z scalar_t=float 2025-08-26T21:36:09.8854419Z ] 2025-08-26T21:36:09.8854994Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(887): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8855074Z with 2025-08-26T21:36:09.8855138Z [ 2025-08-26T21:36:09.8855211Z scalar_t=float 2025-08-26T21:36:09.8855283Z ] 2025-08-26T21:36:09.8855855Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(887): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8855923Z with 2025-08-26T21:36:09.8855998Z [ 2025-08-26T21:36:09.8856071Z scalar_t=float 2025-08-26T21:36:09.8856135Z ] 2025-08-26T21:36:09.8856712Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(887): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8856788Z with 2025-08-26T21:36:09.8856855Z [ 2025-08-26T21:36:09.8856928Z scalar_t=float 2025-08-26T21:36:09.8857001Z ] 2025-08-26T21:36:09.8857579Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(888): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8857649Z with 2025-08-26T21:36:09.8857714Z [ 2025-08-26T21:36:09.8857798Z scalar_t=float 2025-08-26T21:36:09.8857864Z ] 2025-08-26T21:36:09.8858474Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(888): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8858548Z with 2025-08-26T21:36:09.8858615Z [ 2025-08-26T21:36:09.8858733Z scalar_t=float 2025-08-26T21:36:09.8858808Z ] 2025-08-26T21:36:09.8859386Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(888): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8859450Z with 2025-08-26T21:36:09.8859519Z [ 2025-08-26T21:36:09.8859603Z scalar_t=float 2025-08-26T21:36:09.8859667Z ] 2025-08-26T21:36:09.8860241Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(889): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8860356Z with 2025-08-26T21:36:09.8860420Z [ 2025-08-26T21:36:09.8860493Z scalar_t=float 2025-08-26T21:36:09.8860556Z ] 2025-08-26T21:36:09.8861141Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(889): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8861210Z with 2025-08-26T21:36:09.8861274Z [ 2025-08-26T21:36:09.8861358Z scalar_t=float 2025-08-26T21:36:09.8861423Z ] 2025-08-26T21:36:09.8862063Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(889): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8862144Z with 2025-08-26T21:36:09.8862210Z [ 2025-08-26T21:36:09.8862285Z scalar_t=float 2025-08-26T21:36:09.8862351Z ] 2025-08-26T21:36:09.8862934Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(890): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8863002Z with 2025-08-26T21:36:09.8863069Z [ 2025-08-26T21:36:09.8863154Z scalar_t=float 2025-08-26T21:36:09.8863257Z ] 2025-08-26T21:36:09.8863833Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(890): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8863906Z with 2025-08-26T21:36:09.8863968Z [ 2025-08-26T21:36:09.8864046Z scalar_t=float 2025-08-26T21:36:09.8864110Z ] 2025-08-26T21:36:09.8864696Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(890): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8864760Z with 2025-08-26T21:36:09.8864822Z [ 2025-08-26T21:36:09.8864911Z scalar_t=float 2025-08-26T21:36:09.8864977Z ] 2025-08-26T21:36:09.8865558Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(891): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8865624Z with 2025-08-26T21:36:09.8865699Z [ 2025-08-26T21:36:09.8865774Z scalar_t=float 2025-08-26T21:36:09.8865838Z ] 2025-08-26T21:36:09.8866414Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(891): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8866482Z with 2025-08-26T21:36:09.8866545Z [ 2025-08-26T21:36:09.8866616Z scalar_t=float 2025-08-26T21:36:09.8866685Z ] 2025-08-26T21:36:09.8867259Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(891): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8867326Z with 2025-08-26T21:36:09.8867430Z [ 2025-08-26T21:36:09.8867504Z scalar_t=float 2025-08-26T21:36:09.8867566Z ] 2025-08-26T21:36:09.8868176Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(892): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8868245Z with 2025-08-26T21:36:09.8868310Z [ 2025-08-26T21:36:09.8868384Z scalar_t=float 2025-08-26T21:36:09.8868452Z ] 2025-08-26T21:36:09.8869025Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(892): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8869091Z with 2025-08-26T21:36:09.8869160Z [ 2025-08-26T21:36:09.8869232Z scalar_t=float 2025-08-26T21:36:09.8869300Z ] 2025-08-26T21:36:09.8869877Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(892): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8869975Z with 2025-08-26T21:36:09.8870038Z [ 2025-08-26T21:36:09.8870114Z scalar_t=float 2025-08-26T21:36:09.8870186Z ] 2025-08-26T21:36:09.8870766Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(893): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8870829Z with 2025-08-26T21:36:09.8870903Z [ 2025-08-26T21:36:09.8870977Z scalar_t=float 2025-08-26T21:36:09.8871039Z ] 2025-08-26T21:36:09.8871616Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(893): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8871693Z with 2025-08-26T21:36:09.8871757Z [ 2025-08-26T21:36:09.8871832Z scalar_t=float 2025-08-26T21:36:09.8871906Z ] 2025-08-26T21:36:09.8872474Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(893): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8872538Z with 2025-08-26T21:36:09.8873007Z [ 2025-08-26T21:36:09.8873084Z scalar_t=float 2025-08-26T21:36:09.8873148Z ] 2025-08-26T21:36:09.8873723Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(894): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8873799Z with 2025-08-26T21:36:09.8873866Z [ 2025-08-26T21:36:09.8873941Z scalar_t=float 2025-08-26T21:36:09.8874015Z ] 2025-08-26T21:36:09.8874586Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(894): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8874656Z with 2025-08-26T21:36:09.8874722Z [ 2025-08-26T21:36:09.8874807Z scalar_t=float 2025-08-26T21:36:09.8874868Z ] 2025-08-26T21:36:09.8875440Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(894): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8875522Z with 2025-08-26T21:36:09.8875589Z [ 2025-08-26T21:36:09.8875662Z scalar_t=float 2025-08-26T21:36:09.8875728Z ] 2025-08-26T21:36:09.8876300Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(895): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8876364Z with 2025-08-26T21:36:09.8876426Z [ 2025-08-26T21:36:09.8876507Z scalar_t=float 2025-08-26T21:36:09.8876573Z ] 2025-08-26T21:36:09.8877184Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(896): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8877260Z with 2025-08-26T21:36:09.8877325Z [ 2025-08-26T21:36:09.8877397Z scalar_t=float 2025-08-26T21:36:09.8877460Z ] 2025-08-26T21:36:09.8878084Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(896): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8878150Z with 2025-08-26T21:36:09.8878219Z [ 2025-08-26T21:36:09.8878297Z scalar_t=float 2025-08-26T21:36:09.8878360Z ] 2025-08-26T21:36:09.8878932Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(896): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8879005Z with 2025-08-26T21:36:09.8879067Z [ 2025-08-26T21:36:09.8879176Z scalar_t=float 2025-08-26T21:36:09.8879241Z ] 2025-08-26T21:36:09.8879816Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(897): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8879888Z with 2025-08-26T21:36:09.8879955Z [ 2025-08-26T21:36:09.8880034Z scalar_t=float 2025-08-26T21:36:09.8880098Z ] 2025-08-26T21:36:09.8880668Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(897): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8880739Z with 2025-08-26T21:36:09.8880801Z [ 2025-08-26T21:36:09.8880876Z scalar_t=float 2025-08-26T21:36:09.8880941Z ] 2025-08-26T21:36:09.8881516Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(897): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8881584Z with 2025-08-26T21:36:09.8881648Z [ 2025-08-26T21:36:09.8881727Z scalar_t=float 2025-08-26T21:36:09.8881789Z ] 2025-08-26T21:36:09.8882364Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(898): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8882465Z with 2025-08-26T21:36:09.8882533Z [ 2025-08-26T21:36:09.8882605Z scalar_t=float 2025-08-26T21:36:09.8882671Z ] 2025-08-26T21:36:09.8883247Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(898): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8883311Z with 2025-08-26T21:36:09.8883380Z [ 2025-08-26T21:36:09.8883454Z scalar_t=float 2025-08-26T21:36:09.8883535Z ] 2025-08-26T21:36:09.8884113Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(898): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8884181Z with 2025-08-26T21:36:09.8884251Z [ 2025-08-26T21:36:09.8884326Z scalar_t=float 2025-08-26T21:36:09.8884390Z ] 2025-08-26T21:36:09.8884967Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(899): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8885035Z with 2025-08-26T21:36:09.8885098Z [ 2025-08-26T21:36:09.8885170Z scalar_t=float 2025-08-26T21:36:09.8885240Z ] 2025-08-26T21:36:09.8885807Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(899): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8885870Z with 2025-08-26T21:36:09.8885938Z [ 2025-08-26T21:36:09.8886011Z scalar_t=float 2025-08-26T21:36:09.8886110Z ] 2025-08-26T21:36:09.8886689Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(899): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8886755Z with 2025-08-26T21:36:09.8886853Z [ 2025-08-26T21:36:09.8886930Z scalar_t=float 2025-08-26T21:36:09.8887003Z ] 2025-08-26T21:36:09.8887572Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(900): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8887636Z with 2025-08-26T21:36:09.8887705Z [ 2025-08-26T21:36:09.8887780Z scalar_t=float 2025-08-26T21:36:09.8887843Z ] 2025-08-26T21:36:09.8888414Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(900): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8888524Z with 2025-08-26T21:36:09.8888591Z [ 2025-08-26T21:36:09.8888670Z scalar_t=float 2025-08-26T21:36:09.8888742Z ] 2025-08-26T21:36:09.8889312Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(900): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8889380Z with 2025-08-26T21:36:09.8889448Z [ 2025-08-26T21:36:09.8889523Z scalar_t=float 2025-08-26T21:36:09.8889584Z ] 2025-08-26T21:36:09.8890163Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(901): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8890235Z with 2025-08-26T21:36:09.8890301Z [ 2025-08-26T21:36:09.8890374Z scalar_t=float 2025-08-26T21:36:09.8890448Z ] 2025-08-26T21:36:09.8891022Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(901): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8891091Z with 2025-08-26T21:36:09.8891154Z [ 2025-08-26T21:36:09.8891237Z scalar_t=float 2025-08-26T21:36:09.8891334Z ] 2025-08-26T21:36:09.8891905Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(901): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8891981Z with 2025-08-26T21:36:09.8892045Z [ 2025-08-26T21:36:09.8892124Z scalar_t=float 2025-08-26T21:36:09.8892191Z ] 2025-08-26T21:36:09.8892778Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(902): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8892847Z with 2025-08-26T21:36:09.8892914Z [ 2025-08-26T21:36:09.8893002Z scalar_t=float 2025-08-26T21:36:09.8893068Z ] 2025-08-26T21:36:09.8893644Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(902): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8893723Z with 2025-08-26T21:36:09.8893787Z [ 2025-08-26T21:36:09.8893861Z scalar_t=float 2025-08-26T21:36:09.8893925Z ] 2025-08-26T21:36:09.8894513Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(902): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8894577Z with 2025-08-26T21:36:09.8894640Z [ 2025-08-26T21:36:09.8894720Z scalar_t=float 2025-08-26T21:36:09.8894784Z ] 2025-08-26T21:36:09.8895352Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(903): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8895461Z with 2025-08-26T21:36:09.8895525Z [ 2025-08-26T21:36:09.8895605Z scalar_t=float 2025-08-26T21:36:09.8895668Z ] 2025-08-26T21:36:09.8896281Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(903): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8896349Z with 2025-08-26T21:36:09.8896413Z [ 2025-08-26T21:36:09.8896498Z scalar_t=float 2025-08-26T21:36:09.8896563Z ] 2025-08-26T21:36:09.8897136Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(903): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8897202Z with 2025-08-26T21:36:09.8897273Z [ 2025-08-26T21:36:09.8897344Z scalar_t=float 2025-08-26T21:36:09.8897406Z ] 2025-08-26T21:36:09.8897993Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(904): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8898097Z with 2025-08-26T21:36:09.8898162Z [ 2025-08-26T21:36:09.8898244Z scalar_t=float 2025-08-26T21:36:09.8898311Z ] 2025-08-26T21:36:09.8898885Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(905): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8898952Z with 2025-08-26T21:36:09.8899031Z [ 2025-08-26T21:36:09.8899105Z scalar_t=float 2025-08-26T21:36:09.8899177Z ] 2025-08-26T21:36:09.8899752Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(905): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8899820Z with 2025-08-26T21:36:09.8899885Z [ 2025-08-26T21:36:09.8899960Z scalar_t=float 2025-08-26T21:36:09.8900037Z ] 2025-08-26T21:36:09.8900607Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(905): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8900707Z with 2025-08-26T21:36:09.8900783Z [ 2025-08-26T21:36:09.8900855Z scalar_t=float 2025-08-26T21:36:09.8900922Z ] 2025-08-26T21:36:09.8901502Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(906): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8901565Z with 2025-08-26T21:36:09.8901627Z [ 2025-08-26T21:36:09.8901701Z scalar_t=float 2025-08-26T21:36:09.8901773Z ] 2025-08-26T21:36:09.8902417Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(906): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8902490Z with 2025-08-26T21:36:09.8902572Z [ 2025-08-26T21:36:09.8902644Z scalar_t=float 2025-08-26T21:36:09.8902708Z ] 2025-08-26T21:36:09.8903282Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(906): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8903360Z with 2025-08-26T21:36:09.8903423Z [ 2025-08-26T21:36:09.8903497Z scalar_t=float 2025-08-26T21:36:09.8903569Z ] 2025-08-26T21:36:09.8904141Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(907): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8904207Z with 2025-08-26T21:36:09.8904279Z [ 2025-08-26T21:36:09.8904357Z scalar_t=float 2025-08-26T21:36:09.8904420Z ] 2025-08-26T21:36:09.8905047Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(907): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8905124Z with 2025-08-26T21:36:09.8905186Z [ 2025-08-26T21:36:09.8905259Z scalar_t=float 2025-08-26T21:36:09.8905365Z ] 2025-08-26T21:36:09.8905944Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(907): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8906008Z with 2025-08-26T21:36:09.8906088Z [ 2025-08-26T21:36:09.8906164Z scalar_t=float 2025-08-26T21:36:09.8906227Z ] 2025-08-26T21:36:09.8906809Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(908): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8906882Z with 2025-08-26T21:36:09.8906981Z [ 2025-08-26T21:36:09.8907061Z scalar_t=float 2025-08-26T21:36:09.8907135Z ] 2025-08-26T21:36:09.8907708Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(908): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8907776Z with 2025-08-26T21:36:09.8907843Z [ 2025-08-26T21:36:09.8907923Z scalar_t=float 2025-08-26T21:36:09.8907986Z ] 2025-08-26T21:36:09.8908563Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(908): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8908642Z with 2025-08-26T21:36:09.8908703Z [ 2025-08-26T21:36:09.8908778Z scalar_t=float 2025-08-26T21:36:09.8908840Z ] 2025-08-26T21:36:09.8909416Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(909): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8909489Z with 2025-08-26T21:36:09.8909554Z [ 2025-08-26T21:36:09.8909637Z scalar_t=float 2025-08-26T21:36:09.8909698Z ] 2025-08-26T21:36:09.8910267Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(909): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8910374Z with 2025-08-26T21:36:09.8910436Z [ 2025-08-26T21:36:09.8910508Z scalar_t=float 2025-08-26T21:36:09.8910571Z ] 2025-08-26T21:36:09.8911151Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(909): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8911215Z with 2025-08-26T21:36:09.8911277Z [ 2025-08-26T21:36:09.8911360Z scalar_t=float 2025-08-26T21:36:09.8911426Z ] 2025-08-26T21:36:09.8912006Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(910): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8912082Z with 2025-08-26T21:36:09.8912147Z [ 2025-08-26T21:36:09.8912224Z scalar_t=float 2025-08-26T21:36:09.8912291Z ] 2025-08-26T21:36:09.8912870Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(910): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8912935Z with 2025-08-26T21:36:09.8912997Z [ 2025-08-26T21:36:09.8913083Z scalar_t=float 2025-08-26T21:36:09.8913149Z ] 2025-08-26T21:36:09.8913717Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(910): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8913782Z with 2025-08-26T21:36:09.8913857Z [ 2025-08-26T21:36:09.8913964Z scalar_t=float 2025-08-26T21:36:09.8914031Z ] 2025-08-26T21:36:09.8914609Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(911): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8914707Z with 2025-08-26T21:36:09.8914774Z [ 2025-08-26T21:36:09.8914855Z scalar_t=float 2025-08-26T21:36:09.8914919Z ] 2025-08-26T21:36:09.8915491Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(911): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8915557Z with 2025-08-26T21:36:09.8915628Z [ 2025-08-26T21:36:09.8915702Z scalar_t=float 2025-08-26T21:36:09.8915765Z ] 2025-08-26T21:36:09.8916348Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(911): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8916447Z with 2025-08-26T21:36:09.8916512Z [ 2025-08-26T21:36:09.8916586Z scalar_t=float 2025-08-26T21:36:09.8916664Z ] 2025-08-26T21:36:09.8917239Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(912): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8917310Z with 2025-08-26T21:36:09.8917379Z [ 2025-08-26T21:36:09.8917454Z scalar_t=float 2025-08-26T21:36:09.8917516Z ] 2025-08-26T21:36:09.8918099Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(912): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8918165Z with 2025-08-26T21:36:09.8918229Z [ 2025-08-26T21:36:09.8918304Z scalar_t=float 2025-08-26T21:36:09.8918375Z ] 2025-08-26T21:36:09.8918953Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(912): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8919018Z with 2025-08-26T21:36:09.8919087Z [ 2025-08-26T21:36:09.8919198Z scalar_t=float 2025-08-26T21:36:09.8919261Z ] 2025-08-26T21:36:09.8919832Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(913): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8919904Z with 2025-08-26T21:36:09.8919971Z [ 2025-08-26T21:36:09.8920043Z scalar_t=float 2025-08-26T21:36:09.8920115Z ] 2025-08-26T21:36:09.8920684Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(914): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8920750Z with 2025-08-26T21:36:09.8920820Z [ 2025-08-26T21:36:09.8920894Z scalar_t=float 2025-08-26T21:36:09.8920957Z ] 2025-08-26T21:36:09.8921533Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(914): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8921611Z with 2025-08-26T21:36:09.8921679Z [ 2025-08-26T21:36:09.8921755Z scalar_t=float 2025-08-26T21:36:09.8921823Z ] 2025-08-26T21:36:09.8922393Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(914): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8922458Z with 2025-08-26T21:36:09.8922527Z [ 2025-08-26T21:36:09.8922599Z scalar_t=float 2025-08-26T21:36:09.8922664Z ] 2025-08-26T21:36:09.8923269Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(915): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8923346Z with 2025-08-26T21:36:09.8923408Z [ 2025-08-26T21:36:09.8923484Z scalar_t=float 2025-08-26T21:36:09.8923553Z ] 2025-08-26T21:36:09.8924155Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(915): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8924226Z with 2025-08-26T21:36:09.8924291Z [ 2025-08-26T21:36:09.8924376Z scalar_t=float 2025-08-26T21:36:09.8924439Z ] 2025-08-26T21:36:09.8925011Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(915): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8925082Z with 2025-08-26T21:36:09.8925150Z [ 2025-08-26T21:36:09.8925222Z scalar_t=float 2025-08-26T21:36:09.8925283Z ] 2025-08-26T21:36:09.8926140Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(916): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8926206Z with 2025-08-26T21:36:09.8926275Z [ 2025-08-26T21:36:09.8926365Z scalar_t=float 2025-08-26T21:36:09.8926431Z ] 2025-08-26T21:36:09.8927003Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(916): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8927078Z with 2025-08-26T21:36:09.8927149Z [ 2025-08-26T21:36:09.8927223Z scalar_t=float 2025-08-26T21:36:09.8927286Z ] 2025-08-26T21:36:09.8927874Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(916): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8927939Z with 2025-08-26T21:36:09.8928006Z [ 2025-08-26T21:36:09.8928088Z scalar_t=float 2025-08-26T21:36:09.8928151Z ] 2025-08-26T21:36:09.8928725Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(917): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8928839Z with 2025-08-26T21:36:09.8928906Z [ 2025-08-26T21:36:09.8928979Z scalar_t=float 2025-08-26T21:36:09.8929042Z ] 2025-08-26T21:36:09.8929623Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(917): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8929689Z with 2025-08-26T21:36:09.8929755Z [ 2025-08-26T21:36:09.8929842Z scalar_t=float 2025-08-26T21:36:09.8929906Z ] 2025-08-26T21:36:09.8930478Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(917): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8930551Z with 2025-08-26T21:36:09.8930629Z [ 2025-08-26T21:36:09.8930704Z scalar_t=float 2025-08-26T21:36:09.8930767Z ] 2025-08-26T21:36:09.8931350Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(918): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8931420Z with 2025-08-26T21:36:09.8931488Z [ 2025-08-26T21:36:09.8931571Z scalar_t=float 2025-08-26T21:36:09.8931632Z ] 2025-08-26T21:36:09.8932210Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(918): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8932274Z with 2025-08-26T21:36:09.8932348Z [ 2025-08-26T21:36:09.8932420Z scalar_t=float 2025-08-26T21:36:09.8932486Z ] 2025-08-26T21:36:09.8933104Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(918): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8933173Z with 2025-08-26T21:36:09.8933241Z [ 2025-08-26T21:36:09.8933355Z scalar_t=float 2025-08-26T21:36:09.8933427Z ] 2025-08-26T21:36:09.8933999Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(919): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8934065Z with 2025-08-26T21:36:09.8934139Z [ 2025-08-26T21:36:09.8934214Z scalar_t=float 2025-08-26T21:36:09.8934278Z ] 2025-08-26T21:36:09.8934853Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(919): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8934917Z with 2025-08-26T21:36:09.8935179Z [ 2025-08-26T21:36:09.8935259Z scalar_t=float 2025-08-26T21:36:09.8935332Z ] 2025-08-26T21:36:09.8935907Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(919): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8935976Z with 2025-08-26T21:36:09.8936048Z [ 2025-08-26T21:36:09.8936128Z scalar_t=float 2025-08-26T21:36:09.8936191Z ] 2025-08-26T21:36:09.8936764Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(920): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8936841Z with 2025-08-26T21:36:09.8936906Z [ 2025-08-26T21:36:09.8936980Z scalar_t=float 2025-08-26T21:36:09.8937052Z ] 2025-08-26T21:36:09.8937624Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(920): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8937691Z with 2025-08-26T21:36:09.8937760Z [ 2025-08-26T21:36:09.8937830Z scalar_t=float 2025-08-26T21:36:09.8937892Z ] 2025-08-26T21:36:09.8938469Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(920): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8938582Z with 2025-08-26T21:36:09.8938647Z [ 2025-08-26T21:36:09.8938722Z scalar_t=float 2025-08-26T21:36:09.8938789Z ] 2025-08-26T21:36:09.8939360Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(921): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8939424Z with 2025-08-26T21:36:09.8939487Z [ 2025-08-26T21:36:09.8939567Z scalar_t=float 2025-08-26T21:36:09.8939635Z ] 2025-08-26T21:36:09.8940305Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(921): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8940384Z with 2025-08-26T21:36:09.8940447Z [ 2025-08-26T21:36:09.8940524Z scalar_t=float 2025-08-26T21:36:09.8940597Z ] 2025-08-26T21:36:09.8941172Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(921): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8941241Z with 2025-08-26T21:36:09.8941304Z [ 2025-08-26T21:36:09.8941387Z scalar_t=float 2025-08-26T21:36:09.8941449Z ] 2025-08-26T21:36:09.8942065Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(922): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8942142Z with 2025-08-26T21:36:09.8942207Z [ 2025-08-26T21:36:09.8942328Z scalar_t=float 2025-08-26T21:36:09.8942389Z ] 2025-08-26T21:36:09.8943001Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(923): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8943070Z with 2025-08-26T21:36:09.8943134Z [ 2025-08-26T21:36:09.8943215Z scalar_t=float 2025-08-26T21:36:09.8943280Z ] 2025-08-26T21:36:09.8943854Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(923): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8943926Z with 2025-08-26T21:36:09.8943987Z [ 2025-08-26T21:36:09.8944059Z scalar_t=float 2025-08-26T21:36:09.8944123Z ] 2025-08-26T21:36:09.8944701Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(923): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8945007Z with 2025-08-26T21:36:09.8945073Z [ 2025-08-26T21:36:09.8945154Z scalar_t=float 2025-08-26T21:36:09.8945219Z ] 2025-08-26T21:36:09.8945796Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(924): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8945875Z with 2025-08-26T21:36:09.8945939Z [ 2025-08-26T21:36:09.8946014Z scalar_t=float 2025-08-26T21:36:09.8946079Z ] 2025-08-26T21:36:09.8946659Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(924): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8946724Z with 2025-08-26T21:36:09.8946787Z [ 2025-08-26T21:36:09.8946873Z scalar_t=float 2025-08-26T21:36:09.8946939Z ] 2025-08-26T21:36:09.8947512Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(924): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8947578Z with 2025-08-26T21:36:09.8947652Z [ 2025-08-26T21:36:09.8947770Z scalar_t=float 2025-08-26T21:36:09.8947835Z ] 2025-08-26T21:36:09.8948418Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(925): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8948483Z with 2025-08-26T21:36:09.8948549Z [ 2025-08-26T21:36:09.8948633Z scalar_t=float 2025-08-26T21:36:09.8948695Z ] 2025-08-26T21:36:09.8949270Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(925): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8949338Z with 2025-08-26T21:36:09.8949410Z [ 2025-08-26T21:36:09.8949487Z scalar_t=float 2025-08-26T21:36:09.8949551Z ] 2025-08-26T21:36:09.8950137Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(925): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8950206Z with 2025-08-26T21:36:09.8950269Z [ 2025-08-26T21:36:09.8950342Z scalar_t=float 2025-08-26T21:36:09.8950409Z ] 2025-08-26T21:36:09.8950978Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(926): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8951046Z with 2025-08-26T21:36:09.8951117Z [ 2025-08-26T21:36:09.8951194Z scalar_t=float 2025-08-26T21:36:09.8951255Z ] 2025-08-26T21:36:09.8951871Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(926): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8951939Z with 2025-08-26T21:36:09.8952006Z [ 2025-08-26T21:36:09.8952079Z scalar_t=float 2025-08-26T21:36:09.8952150Z ] 2025-08-26T21:36:09.8952761Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(926): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8952828Z with 2025-08-26T21:36:09.8952897Z [ 2025-08-26T21:36:09.8952970Z scalar_t=float 2025-08-26T21:36:09.8953034Z ] 2025-08-26T21:36:09.8953607Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(927): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8953686Z with 2025-08-26T21:36:09.8953749Z [ 2025-08-26T21:36:09.8953824Z scalar_t=float 2025-08-26T21:36:09.8954102Z ] 2025-08-26T21:36:09.8954678Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(927): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8954745Z with 2025-08-26T21:36:09.8954818Z [ 2025-08-26T21:36:09.8954899Z scalar_t=float 2025-08-26T21:36:09.8954968Z ] 2025-08-26T21:36:09.8955538Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(927): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8955610Z with 2025-08-26T21:36:09.8955673Z [ 2025-08-26T21:36:09.8955750Z scalar_t=float 2025-08-26T21:36:09.8955819Z ] 2025-08-26T21:36:09.8956387Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(928): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8956458Z with 2025-08-26T21:36:09.8956523Z [ 2025-08-26T21:36:09.8956604Z scalar_t=float 2025-08-26T21:36:09.8956666Z ] 2025-08-26T21:36:09.8957242Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(928): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8957350Z with 2025-08-26T21:36:09.8957414Z [ 2025-08-26T21:36:09.8957490Z scalar_t=float 2025-08-26T21:36:09.8957560Z ] 2025-08-26T21:36:09.8958132Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(928): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8958202Z with 2025-08-26T21:36:09.8958263Z [ 2025-08-26T21:36:09.8958341Z scalar_t=float 2025-08-26T21:36:09.8958408Z ] 2025-08-26T21:36:09.8959001Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(929): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8959121Z with 2025-08-26T21:36:09.8959224Z [ 2025-08-26T21:36:09.8959335Z scalar_t=float 2025-08-26T21:36:09.8959447Z ] 2025-08-26T21:36:09.8960620Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(929): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8960742Z with 2025-08-26T21:36:09.8960856Z [ 2025-08-26T21:36:09.8961000Z scalar_t=float 2025-08-26T21:36:09.8961139Z ] 2025-08-26T21:36:09.8962263Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(929): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8962387Z with 2025-08-26T21:36:09.8962499Z [ 2025-08-26T21:36:09.8962655Z scalar_t=float 2025-08-26T21:36:09.8962780Z ] 2025-08-26T21:36:09.8963978Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(930): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8964124Z with 2025-08-26T21:36:09.8964243Z [ 2025-08-26T21:36:09.8964449Z scalar_t=float 2025-08-26T21:36:09.8964559Z ] 2025-08-26T21:36:09.8965707Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(930): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8965838Z with 2025-08-26T21:36:09.8965960Z [ 2025-08-26T21:36:09.8966080Z scalar_t=float 2025-08-26T21:36:09.8966148Z ] 2025-08-26T21:36:09.8966734Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(930): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8967070Z with 2025-08-26T21:36:09.8967140Z [ 2025-08-26T21:36:09.8967233Z scalar_t=float 2025-08-26T21:36:09.8967299Z ] 2025-08-26T21:36:09.8967873Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(931): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8967941Z with 2025-08-26T21:36:09.8968011Z [ 2025-08-26T21:36:09.8968087Z scalar_t=float 2025-08-26T21:36:09.8968150Z ] 2025-08-26T21:36:09.8968735Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(932): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8968803Z with 2025-08-26T21:36:09.8968865Z [ 2025-08-26T21:36:09.8968939Z scalar_t=float 2025-08-26T21:36:09.8969009Z ] 2025-08-26T21:36:09.8969581Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(932): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8969649Z with 2025-08-26T21:36:09.8969724Z [ 2025-08-26T21:36:09.8969797Z scalar_t=float 2025-08-26T21:36:09.8969858Z ] 2025-08-26T21:36:09.8970482Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(932): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8970549Z with 2025-08-26T21:36:09.8970612Z [ 2025-08-26T21:36:09.8970708Z scalar_t=float 2025-08-26T21:36:09.8970818Z ] 2025-08-26T21:36:09.8971937Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(933): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8972080Z with 2025-08-26T21:36:09.8972201Z [ 2025-08-26T21:36:09.8972333Z scalar_t=float 2025-08-26T21:36:09.8972458Z ] 2025-08-26T21:36:09.8973592Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(933): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8973736Z with 2025-08-26T21:36:09.8973854Z [ 2025-08-26T21:36:09.8973995Z scalar_t=float 2025-08-26T21:36:09.8974152Z ] 2025-08-26T21:36:09.8975269Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(933): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8975388Z with 2025-08-26T21:36:09.8975509Z [ 2025-08-26T21:36:09.8975637Z scalar_t=float 2025-08-26T21:36:09.8975779Z ] 2025-08-26T21:36:09.8976899Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(934): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8977032Z with 2025-08-26T21:36:09.8977541Z [ 2025-08-26T21:36:09.8977713Z scalar_t=float 2025-08-26T21:36:09.8977833Z ] 2025-08-26T21:36:09.8979022Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(934): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8979144Z with 2025-08-26T21:36:09.8979288Z [ 2025-08-26T21:36:09.8979424Z scalar_t=float 2025-08-26T21:36:09.8979538Z ] 2025-08-26T21:36:09.8980663Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(934): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8980810Z with 2025-08-26T21:36:09.8980927Z [ 2025-08-26T21:36:09.8981062Z scalar_t=float 2025-08-26T21:36:09.8981189Z ] 2025-08-26T21:36:09.8982381Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(935): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8982839Z with 2025-08-26T21:36:09.8982957Z [ 2025-08-26T21:36:09.8983104Z scalar_t=float 2025-08-26T21:36:09.8983216Z ] 2025-08-26T21:36:09.8984377Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(935): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8984511Z with 2025-08-26T21:36:09.8984629Z [ 2025-08-26T21:36:09.8984760Z scalar_t=float 2025-08-26T21:36:09.8984908Z ] 2025-08-26T21:36:09.8986031Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(935): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8986159Z with 2025-08-26T21:36:09.8986274Z [ 2025-08-26T21:36:09.8986436Z scalar_t=float 2025-08-26T21:36:09.8986551Z ] 2025-08-26T21:36:09.8987674Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(936): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8987796Z with 2025-08-26T21:36:09.8987998Z [ 2025-08-26T21:36:09.8988139Z scalar_t=float 2025-08-26T21:36:09.8988259Z ] 2025-08-26T21:36:09.8989390Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(936): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8989532Z with 2025-08-26T21:36:09.8989648Z [ 2025-08-26T21:36:09.8989789Z scalar_t=float 2025-08-26T21:36:09.8989902Z ] 2025-08-26T21:36:09.8991042Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(936): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8991171Z with 2025-08-26T21:36:09.8991289Z [ 2025-08-26T21:36:09.8991419Z scalar_t=float 2025-08-26T21:36:09.8991557Z ] 2025-08-26T21:36:09.8992694Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(937): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8992819Z with 2025-08-26T21:36:09.8992938Z [ 2025-08-26T21:36:09.8993097Z scalar_t=float 2025-08-26T21:36:09.8993215Z ] 2025-08-26T21:36:09.8994332Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(937): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8994454Z with 2025-08-26T21:36:09.8994589Z [ 2025-08-26T21:36:09.8994721Z scalar_t=float 2025-08-26T21:36:09.8994838Z ] 2025-08-26T21:36:09.8996025Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(937): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8996175Z with 2025-08-26T21:36:09.8996295Z [ 2025-08-26T21:36:09.8996446Z scalar_t=float 2025-08-26T21:36:09.8996560Z ] 2025-08-26T21:36:09.8997751Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(938): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8997870Z with 2025-08-26T21:36:09.8997992Z [ 2025-08-26T21:36:09.8998144Z scalar_t=float 2025-08-26T21:36:09.8998262Z ] 2025-08-26T21:36:09.8999387Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(938): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.8999505Z with 2025-08-26T21:36:09.8999619Z [ 2025-08-26T21:36:09.8999778Z scalar_t=float 2025-08-26T21:36:09.9000251Z ] 2025-08-26T21:36:09.9001379Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(938): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.9001500Z with 2025-08-26T21:36:09.9001636Z [ 2025-08-26T21:36:09.9001794Z scalar_t=float 2025-08-26T21:36:09.9001914Z ] 2025-08-26T21:36:09.9003052Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(939): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.9003169Z with 2025-08-26T21:36:09.9003304Z [ 2025-08-26T21:36:09.9003434Z scalar_t=float 2025-08-26T21:36:09.9003555Z ] 2025-08-26T21:36:09.9004673Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(939): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.9004818Z with 2025-08-26T21:36:09.9004947Z [ 2025-08-26T21:36:09.9005082Z scalar_t=float 2025-08-26T21:36:09.9005193Z ] 2025-08-26T21:36:09.9006379Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(939): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.9006557Z with 2025-08-26T21:36:09.9006673Z [ 2025-08-26T21:36:09.9006832Z scalar_t=float 2025-08-26T21:36:09.9006955Z ] 2025-08-26T21:36:09.9008071Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(940): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:09.9008191Z with 2025-08-26T21:36:09.9008331Z [ 2025-08-26T21:36:09.9008463Z scalar_t=float 2025-08-26T21:36:09.9008576Z ] 2025-08-26T21:36:09.9009692Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1328): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9010781Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1328): note: the template instantiation context (the oldest one first) is 2025-08-26T21:36:09.9012109Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1488): note: see reference to function template instantiation 'float calc_i0(T)' being compiled 2025-08-26T21:36:09.9012228Z with 2025-08-26T21:36:09.9012347Z [ 2025-08-26T21:36:09.9012495Z T=float 2025-08-26T21:36:09.9012612Z ] 2025-08-26T21:36:09.9014338Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1479): note: see reference to function template instantiation 'std::tuple chebyshev_coefficients_i0e_A(void)' being compiled 2025-08-26T21:36:09.9015544Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1328): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9016706Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1329): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9017824Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1329): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9018960Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1330): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9020065Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1330): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9021533Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1331): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9022685Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1331): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9023622Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1332): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9024186Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1332): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9024755Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1333): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9025332Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1333): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9025900Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1334): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9026517Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1334): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9027087Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1335): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9027654Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1335): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9028392Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1336): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9029512Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1336): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9030241Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1337): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9030804Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1337): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9031374Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1338): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9031986Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1338): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9032595Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1339): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9033173Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1339): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9033742Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1340): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9034312Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1340): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9035299Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1341): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9036479Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1341): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9037067Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1342): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9037640Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1342): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9038263Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1354): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9038828Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1354): note: the template instantiation context (the oldest one first) is 2025-08-26T21:36:09.9039696Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1483): note: see reference to function template instantiation 'std::tuple chebyshev_coefficients_i0e_B(void)' being compiled 2025-08-26T21:36:09.9040335Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1354): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9040993Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1355): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9042133Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1355): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9042910Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1356): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9043473Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1356): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9044041Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1357): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9044620Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1357): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9045188Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1358): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9045808Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1358): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9046421Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1359): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9046996Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1359): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9047563Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1360): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9048149Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1360): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9048966Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1361): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9049547Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1361): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9050113Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1362): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9050690Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1362): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9051260Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1363): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9051826Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1363): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9052615Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1364): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9053799Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1364): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9054438Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1365): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9055001Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1365): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:09.9055587Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1366): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:36:10.7885005Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(627): warning C4305: 'initializing': truncation from 'double' to 'scalar_t' 2025-08-26T21:36:10.7885801Z with 2025-08-26T21:36:10.7885981Z [ 2025-08-26T21:36:10.7886169Z scalar_t=float 2025-08-26T21:36:10.7886396Z ] 2025-08-26T21:36:10.7887054Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(627): note: the template instantiation context (the oldest one first) is 2025-08-26T21:36:10.7888512Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1202): note: see reference to function template instantiation 'scalar_t _igam_helper_series(scalar_t,scalar_t)' being compiled 2025-08-26T21:36:10.7889506Z with 2025-08-26T21:36:10.7889681Z [ 2025-08-26T21:36:10.7890003Z scalar_t=float 2025-08-26T21:36:10.7890227Z ] 2025-08-26T21:36:10.7891185Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(664): note: see reference to function template instantiation 'scalar_t _igam_helper_fac(scalar_t,scalar_t)' being compiled 2025-08-26T21:36:10.7892136Z with 2025-08-26T21:36:10.7892308Z [ 2025-08-26T21:36:10.7892482Z scalar_t=float 2025-08-26T21:36:10.7892699Z ] 2025-08-26T21:36:10.7893345Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(629): warning C4305: 'initializing': truncation from 'double' to 'scalar_t' 2025-08-26T21:36:10.7894076Z with 2025-08-26T21:36:10.7894244Z [ 2025-08-26T21:36:10.7894419Z scalar_t=float 2025-08-26T21:36:10.7894622Z ] 2025-08-26T21:36:10.7895277Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(630): warning C4305: 'initializing': truncation from 'double' to 'scalar_t' 2025-08-26T21:36:10.7896068Z with 2025-08-26T21:36:10.7896241Z [ 2025-08-26T21:36:10.7896412Z scalar_t=float 2025-08-26T21:36:10.7896619Z ] 2025-08-26T21:36:11.3469799Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(585): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:11.3470612Z with 2025-08-26T21:36:11.3470783Z [ 2025-08-26T21:36:11.3470958Z scalar_t=float 2025-08-26T21:36:11.3478449Z ] 2025-08-26T21:36:11.3479374Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(585): note: the template instantiation context (the oldest one first) is 2025-08-26T21:36:11.3481376Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(664): note: see reference to function template instantiation 'scalar_t _igam_helper_fac(scalar_t,scalar_t)' being compiled 2025-08-26T21:36:11.3482359Z with 2025-08-26T21:36:11.3482532Z [ 2025-08-26T21:36:11.3482700Z scalar_t=float 2025-08-26T21:36:11.3483554Z ] 2025-08-26T21:36:11.3484452Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(641): note: see reference to function template instantiation 'scalar_t lanczos_sum_expg_scaled(scalar_t)' being compiled 2025-08-26T21:36:11.3485674Z with 2025-08-26T21:36:11.3485953Z [ 2025-08-26T21:36:11.3486135Z scalar_t=float 2025-08-26T21:36:11.3486514Z ] 2025-08-26T21:36:11.3487292Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(586): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:11.3488058Z with 2025-08-26T21:36:11.3488237Z [ 2025-08-26T21:36:11.3488411Z scalar_t=float 2025-08-26T21:36:11.3488621Z ] 2025-08-26T21:36:11.3489293Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(587): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:11.3490058Z with 2025-08-26T21:36:11.3490230Z [ 2025-08-26T21:36:11.3490398Z scalar_t=float 2025-08-26T21:36:11.3490606Z ] 2025-08-26T21:36:11.3491274Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(588): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:11.3492647Z with 2025-08-26T21:36:11.3492820Z [ 2025-08-26T21:36:11.3493003Z scalar_t=float 2025-08-26T21:36:11.3493212Z ] 2025-08-26T21:36:11.3494011Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(589): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:11.3494776Z with 2025-08-26T21:36:11.3494942Z [ 2025-08-26T21:36:11.3495122Z scalar_t=float 2025-08-26T21:36:11.3495333Z ] 2025-08-26T21:36:11.3496089Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(590): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:11.3496859Z with 2025-08-26T21:36:11.3497034Z [ 2025-08-26T21:36:11.3497218Z scalar_t=float 2025-08-26T21:36:11.3497618Z ] 2025-08-26T21:36:11.3498727Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(591): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:11.3499484Z with 2025-08-26T21:36:11.3499660Z [ 2025-08-26T21:36:11.3499826Z scalar_t=float 2025-08-26T21:36:11.3500050Z ] 2025-08-26T21:36:11.3500806Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(592): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:11.3501570Z with 2025-08-26T21:36:11.3501754Z [ 2025-08-26T21:36:11.3501953Z scalar_t=float 2025-08-26T21:36:11.3502222Z ] 2025-08-26T21:36:11.3502907Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(593): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:11.3504114Z with 2025-08-26T21:36:11.3504414Z [ 2025-08-26T21:36:11.3504634Z scalar_t=float 2025-08-26T21:36:11.3504835Z ] 2025-08-26T21:36:11.3505505Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(594): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:11.3506249Z with 2025-08-26T21:36:11.3506431Z [ 2025-08-26T21:36:11.3506606Z scalar_t=float 2025-08-26T21:36:11.3506815Z ] 2025-08-26T21:36:11.3507492Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(595): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:11.3508319Z with 2025-08-26T21:36:11.3508502Z [ 2025-08-26T21:36:11.3508677Z scalar_t=float 2025-08-26T21:36:11.3508892Z ] 2025-08-26T21:36:11.3509934Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(596): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:11.3510953Z with 2025-08-26T21:36:11.3511129Z [ 2025-08-26T21:36:11.3511295Z scalar_t=float 2025-08-26T21:36:11.3511515Z ] 2025-08-26T21:36:11.3512191Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(597): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:11.3512961Z with 2025-08-26T21:36:11.3513122Z [ 2025-08-26T21:36:11.3513301Z scalar_t=float 2025-08-26T21:36:11.3513506Z ] 2025-08-26T21:36:11.3514183Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(607): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:11.3514951Z with 2025-08-26T21:36:11.3515158Z [ 2025-08-26T21:36:11.3515489Z scalar_t=float 2025-08-26T21:36:11.3515840Z ] 2025-08-26T21:36:11.3516772Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(608): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:11.3517523Z with 2025-08-26T21:36:11.3517700Z [ 2025-08-26T21:36:11.3517864Z scalar_t=float 2025-08-26T21:36:11.3518085Z ] 2025-08-26T21:36:11.3518876Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(609): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:36:11.3519639Z with 2025-08-26T21:36:11.3519837Z [ 2025-08-26T21:36:11.3520009Z scalar_t=float 2025-08-26T21:36:11.3520275Z ] 2025-08-26T21:36:12.7993841Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64\link.exe" /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib /LIBPATH:C:\Jenkins\Miniconda3\libs /LIBPATH:C:\Jenkins\Miniconda3 /LIBPATH:C:\Jenkins\Miniconda3\PCbuild\amd64 "/LIBPATH:C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64" c10.lib torch.lib torch_cpu.lib torch_python.lib sleef.lib /EXPORT:PyInit_rng build\temp.win-amd64-cpython-39\Release\rng_extension.obj /OUT:build\lib.win-amd64-cpython-39\torch_test_cpp_extension\rng.cp39-win_amd64.pyd /IMPLIB:build\temp.win-amd64-cpython-39\Release\rng.cp39-win_amd64.lib 2025-08-26T21:36:13.0800555Z Creating library build\temp.win-amd64-cpython-39\Release\rng.cp39-win_amd64.lib and object build\temp.win-amd64-cpython-39\Release\rng.cp39-win_amd64.exp 2025-08-26T21:36:13.0883405Z Generating code 2025-08-26T21:36:14.7835462Z Finished generating code 2025-08-26T21:36:14.9296744Z running install_lib 2025-08-26T21:36:14.9420202Z creating install\Jenkins\Miniconda3\Lib\site-packages 2025-08-26T21:36:14.9428299Z creating install\Jenkins\Miniconda3\Lib\site-packages\torch_test_cpp_extension 2025-08-26T21:36:14.9432284Z copying build\lib.win-amd64-cpython-39\torch_test_cpp_extension\cpp.cp39-win_amd64.pyd -> ./install\Jenkins\Miniconda3\Lib\site-packages\torch_test_cpp_extension 2025-08-26T21:36:14.9440895Z copying build\lib.win-amd64-cpython-39\torch_test_cpp_extension\maia.cp39-win_amd64.pyd -> ./install\Jenkins\Miniconda3\Lib\site-packages\torch_test_cpp_extension 2025-08-26T21:36:14.9449160Z copying build\lib.win-amd64-cpython-39\torch_test_cpp_extension\rng.cp39-win_amd64.pyd -> ./install\Jenkins\Miniconda3\Lib\site-packages\torch_test_cpp_extension 2025-08-26T21:36:14.9468333Z copying build\lib.win-amd64-cpython-39\torch_test_cpp_extension\__init__.py -> ./install\Jenkins\Miniconda3\Lib\site-packages\torch_test_cpp_extension 2025-08-26T21:36:14.9481885Z byte-compiling ./install\Jenkins\Miniconda3\Lib\site-packages\torch_test_cpp_extension\__init__.py to __init__.cpython-39.pyc 2025-08-26T21:36:14.9489420Z running install_egg_info 2025-08-26T21:36:14.9818014Z running egg_info 2025-08-26T21:36:14.9910043Z creating torch_test_cpp_extension.egg-info 2025-08-26T21:36:14.9913006Z writing torch_test_cpp_extension.egg-info\PKG-INFO 2025-08-26T21:36:14.9921497Z writing dependency_links to torch_test_cpp_extension.egg-info\dependency_links.txt 2025-08-26T21:36:14.9925594Z writing entry points to torch_test_cpp_extension.egg-info\entry_points.txt 2025-08-26T21:36:14.9940765Z writing top-level names to torch_test_cpp_extension.egg-info\top_level.txt 2025-08-26T21:36:14.9943898Z writing manifest file 'torch_test_cpp_extension.egg-info\SOURCES.txt' 2025-08-26T21:36:15.0054011Z reading manifest file 'torch_test_cpp_extension.egg-info\SOURCES.txt' 2025-08-26T21:36:15.0070689Z writing manifest file 'torch_test_cpp_extension.egg-info\SOURCES.txt' 2025-08-26T21:36:15.0074353Z Copying torch_test_cpp_extension.egg-info to ./install\Jenkins\Miniconda3\Lib\site-packages\torch_test_cpp_extension-0.0.0-py3.9.egg-info 2025-08-26T21:36:15.0112747Z running install_scripts 2025-08-26T21:36:15.6532491Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:36:15.6538860Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_cpp_extensions_aot_no_ninja.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:36:15.653652] 2025-08-26T21:36:20.6339519Z 2025-08-26T21:36:20.6340628Z test_cpp_extensions_aot_no_ninja 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_cpp_extensions_aot_no_ninja_1.1_4d1c83ea81e7f890_.log 2025-08-26T21:36:20.6348300Z Running 21 items in this shard: test/test_cpp_extensions_aot_no_ninja.py::TestCppExtensionAOT::test_backward, test/test_cpp_extensions_aot_no_ninja.py::TestCppExtensionAOT::test_cublas_extension, test/test_cpp_extensions_aot_no_ninja.py::TestCppExtensionAOT::test_cuda_dlink_libs, test/test_cpp_extensions_aot_no_ninja.py::TestCppExtensionAOT::test_cuda_extension, test/test_cpp_extensions_aot_no_ninja.py::TestCppExtensionAOT::test_cusolver_extension, test/test_cpp_extensions_aot_no_ninja.py::TestCppExtensionAOT::test_extension_function, test/test_cpp_extensions_aot_no_ninja.py::TestCppExtensionAOT::test_extension_module, test/test_cpp_extensions_aot_no_ninja.py::TestCppExtensionAOT::test_mps_extension, test/test_cpp_extensions_aot_no_ninja.py::TestCppExtensionAOT::test_no_python_abi_suffix_sets_the_correct_library_name, test/test_cpp_extensions_aot_no_ninja.py::TestCppExtensionAOT::test_optional, test/test_cpp_extensions_aot_no_ninja.py::TestCppExtensionAOT::test_sycl_extension, test/test_cpp_extensions_aot_no_ninja.py::TestPybindTypeCasters::test_pybind_return_types, test/test_cpp_extensions_aot_no_ninja.py::TestMAIATensor::test_add, test/test_cpp_extensions_aot_no_ninja.py::TestMAIATensor::test_autocast_apis_for_maia_device, test/test_cpp_extensions_aot_no_ninja.py::TestMAIATensor::test_conv_backend_override, test/test_cpp_extensions_aot_no_ninja.py::TestMAIATensor::test_matmul_autocast_default_precision, test/test_cpp_extensions_aot_no_ninja.py::TestMAIATensor::test_matmul_autocast_float16_precision, test/test_cpp_extensions_aot_no_ninja.py::TestMAIATensor::test_unregistered, test/test_cpp_extensions_aot_no_ninja.py::TestMAIATensor::test_zeros, test/test_cpp_extensions_aot_no_ninja.py::TestRNGExtension::test_rng, test/test_cpp_extensions_aot_no_ninja.py::TestTorchLibrary::test_torch_library 2025-08-26T21:36:20.6355584Z 2025-08-26T21:36:20.6355763Z Running test_autoload_disable 1/1 ... [2025-08-26 21:36:20.625806] 2025-08-26T21:36:24.2889563Z C:\Jenkins\Miniconda3\lib\site-packages\setuptools\_distutils\cmd.py:90: SetuptoolsDeprecationWarning: setup.py install is deprecated. 2025-08-26T21:36:24.2890266Z !! 2025-08-26T21:36:24.2890364Z 2025-08-26T21:36:24.2890481Z ******************************************************************************** 2025-08-26T21:36:24.2890827Z Please avoid running ``setup.py`` directly. 2025-08-26T21:36:24.2891132Z running install 2025-08-26T21:36:24.2891387Z Instead, use pypa/build, pypa/installer or other 2025-08-26T21:36:24.2891718Z standards-based tools. 2025-08-26T21:36:24.2891909Z 2025-08-26T21:36:24.2892207Z See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details. 2025-08-26T21:36:24.2892690Z ******************************************************************************** 2025-08-26T21:36:24.2892919Z 2025-08-26T21:36:24.2932918Z !! 2025-08-26T21:36:24.2933123Z self.initialize_options() 2025-08-26T21:36:24.3015061Z running build 2025-08-26T21:36:24.3015301Z running build_py 2025-08-26T21:36:24.3123037Z creating build\lib.win-amd64-cpython-39\torch_test_cpp_extension 2025-08-26T21:36:24.3128122Z copying torch_test_cpp_extension\__init__.py -> build\lib.win-amd64-cpython-39\torch_test_cpp_extension 2025-08-26T21:36:24.3135574Z running build_ext 2025-08-26T21:36:24.3155632Z building 'torch_test_cpp_extension.cpp' extension 2025-08-26T21:36:24.3167765Z creating build\temp.win-amd64-cpython-39\Release 2025-08-26T21:36:24.3182519Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64\cl.exe" /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include -IC:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\api\include -Iself_compiler_include_dirs_test -IC:\Jenkins\Miniconda3\include -IC:\Jenkins\Miniconda3\Include "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" /EHsc /Tpextension.cpp /Fobuild\temp.win-amd64-cpython-39\Release\extension.obj /MD /wd4819 /wd4251 /wd4244 /wd4267 /wd4275 /wd4018 /wd4190 /wd4624 /wd4067 /wd4068 /EHsc /sdl /permissive- -DTORCH_API_INCLUDE_EXTENSION_H -DTORCH_EXTENSION_NAME=cpp /std:c++17 2025-08-26T21:36:24.3289245Z extension.cpp 2025-08-26T21:36:40.2239392Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64\link.exe" /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib /LIBPATH:C:\Jenkins\Miniconda3\libs /LIBPATH:C:\Jenkins\Miniconda3 /LIBPATH:C:\Jenkins\Miniconda3\PCbuild\amd64 "/LIBPATH:C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64" c10.lib torch.lib torch_cpu.lib torch_python.lib sleef.lib /EXPORT:PyInit_cpp build\temp.win-amd64-cpython-39\Release\extension.obj /OUT:build\lib.win-amd64-cpython-39\torch_test_cpp_extension\cpp.cp39-win_amd64.pyd /IMPLIB:build\temp.win-amd64-cpython-39\Release\cpp.cp39-win_amd64.lib 2025-08-26T21:36:40.4667616Z Creating library build\temp.win-amd64-cpython-39\Release\cpp.cp39-win_amd64.lib and object build\temp.win-amd64-cpython-39\Release\cpp.cp39-win_amd64.exp 2025-08-26T21:36:40.4817693Z Generating code 2025-08-26T21:36:42.3213893Z Finished generating code 2025-08-26T21:36:42.4509621Z building 'torch_test_cpp_extension.maia' extension 2025-08-26T21:36:42.4521203Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64\cl.exe" /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include -IC:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\api\include -Iself_compiler_include_dirs_test -IC:\Jenkins\Miniconda3\include -IC:\Jenkins\Miniconda3\Include "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" /EHsc /Tpmaia_extension.cpp /Fobuild\temp.win-amd64-cpython-39\Release\maia_extension.obj /MD /wd4819 /wd4251 /wd4244 /wd4267 /wd4275 /wd4018 /wd4190 /wd4624 /wd4067 /wd4068 /EHsc /sdl /permissive- -DTORCH_API_INCLUDE_EXTENSION_H -DTORCH_EXTENSION_NAME=maia /std:c++17 2025-08-26T21:36:42.4623912Z maia_extension.cpp 2025-08-26T21:36:58.2977441Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64\link.exe" /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib /LIBPATH:C:\Jenkins\Miniconda3\libs /LIBPATH:C:\Jenkins\Miniconda3 /LIBPATH:C:\Jenkins\Miniconda3\PCbuild\amd64 "/LIBPATH:C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64" c10.lib torch.lib torch_cpu.lib torch_python.lib sleef.lib /EXPORT:PyInit_maia build\temp.win-amd64-cpython-39\Release\maia_extension.obj /OUT:build\lib.win-amd64-cpython-39\torch_test_cpp_extension\maia.cp39-win_amd64.pyd /IMPLIB:build\temp.win-amd64-cpython-39\Release\maia.cp39-win_amd64.lib 2025-08-26T21:36:58.5340771Z Creating library build\temp.win-amd64-cpython-39\Release\maia.cp39-win_amd64.lib and object build\temp.win-amd64-cpython-39\Release\maia.cp39-win_amd64.exp 2025-08-26T21:36:58.5445663Z Generating code 2025-08-26T21:37:00.0658976Z Finished generating code 2025-08-26T21:37:00.2092748Z building 'torch_test_cpp_extension.rng' extension 2025-08-26T21:37:00.2106772Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64\cl.exe" /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include -IC:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\api\include -Iself_compiler_include_dirs_test -IC:\Jenkins\Miniconda3\include -IC:\Jenkins\Miniconda3\Include "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" /EHsc /Tprng_extension.cpp /Fobuild\temp.win-amd64-cpython-39\Release\rng_extension.obj /MD /wd4819 /wd4251 /wd4244 /wd4267 /wd4275 /wd4018 /wd4190 /wd4624 /wd4067 /wd4068 /EHsc /sdl /permissive- -DTORCH_API_INCLUDE_EXTENSION_H -DTORCH_EXTENSION_NAME=rng /std:c++17 2025-08-26T21:37:00.2218773Z rng_extension.cpp 2025-08-26T21:37:12.0132768Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1158): warning C4305: 'initializing': truncation from 'double' to 'float' 2025-08-26T21:37:12.0134079Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1158): note: the template instantiation context (the oldest one first) is 2025-08-26T21:37:12.0135526Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1209): note: see reference to function template instantiation 'scalar_t calc_igamma(scalar_t,scalar_t)' being compiled 2025-08-26T21:37:12.0136497Z with 2025-08-26T21:37:12.0136681Z [ 2025-08-26T21:37:12.0136878Z scalar_t=float 2025-08-26T21:37:12.0137091Z ] 2025-08-26T21:37:12.0137817Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1079): warning C4305: 'initializing': truncation from 'double' to 'float' 2025-08-26T21:37:12.0139055Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1079): note: the template instantiation context (the oldest one first) is 2025-08-26T21:37:12.0140612Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1223): note: see reference to function template instantiation 'scalar_t calc_igammac(scalar_t,scalar_t)' being compiled 2025-08-26T21:37:12.0141583Z with 2025-08-26T21:37:12.0141760Z [ 2025-08-26T21:37:12.0141952Z scalar_t=float 2025-08-26T21:37:12.0142191Z ] 2025-08-26T21:37:13.5923177Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(716): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.5924243Z with 2025-08-26T21:37:13.5924540Z [ 2025-08-26T21:37:13.5924948Z scalar_t=float 2025-08-26T21:37:13.5925252Z ] 2025-08-26T21:37:13.5925922Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(716): note: the template instantiation context (the oldest one first) is 2025-08-26T21:37:13.5927384Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1209): note: see reference to function template instantiation 'scalar_t calc_igamma(scalar_t,scalar_t)' being compiled 2025-08-26T21:37:13.5928438Z with 2025-08-26T21:37:13.5928650Z [ 2025-08-26T21:37:13.5928835Z scalar_t=float 2025-08-26T21:37:13.5929080Z ] 2025-08-26T21:37:13.5930419Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1192): note: see reference to function template instantiation 'scalar_t _igam_helper_asymptotic_series(scalar_t,scalar_t,bool)' being compiled 2025-08-26T21:37:13.5931776Z with 2025-08-26T21:37:13.5931971Z [ 2025-08-26T21:37:13.5932164Z scalar_t=float 2025-08-26T21:37:13.5932398Z ] 2025-08-26T21:37:13.5933098Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(716): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.5933886Z with 2025-08-26T21:37:13.5934086Z [ 2025-08-26T21:37:13.5934269Z scalar_t=float 2025-08-26T21:37:13.5934503Z ] 2025-08-26T21:37:13.5935192Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(716): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.5936392Z with 2025-08-26T21:37:13.5936681Z [ 2025-08-26T21:37:13.5937007Z scalar_t=float 2025-08-26T21:37:13.5937241Z ] 2025-08-26T21:37:13.5937943Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(717): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.5938719Z with 2025-08-26T21:37:13.5938898Z [ 2025-08-26T21:37:13.5939088Z scalar_t=float 2025-08-26T21:37:13.5939316Z ] 2025-08-26T21:37:13.5940020Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(717): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.5940787Z with 2025-08-26T21:37:13.5940978Z [ 2025-08-26T21:37:13.5941166Z scalar_t=float 2025-08-26T21:37:13.5941380Z ] 2025-08-26T21:37:13.5942445Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(717): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.5943480Z with 2025-08-26T21:37:13.5943668Z [ 2025-08-26T21:37:13.5943847Z scalar_t=float 2025-08-26T21:37:13.5944084Z ] 2025-08-26T21:37:13.5944769Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(718): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.5945561Z with 2025-08-26T21:37:13.5945753Z [ 2025-08-26T21:37:13.5945934Z scalar_t=float 2025-08-26T21:37:13.5946163Z ] 2025-08-26T21:37:13.5946959Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(718): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.5947886Z with 2025-08-26T21:37:13.5948194Z [ 2025-08-26T21:37:13.5948465Z scalar_t=float 2025-08-26T21:37:13.5948944Z ] 2025-08-26T21:37:13.5949657Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(718): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.5950444Z with 2025-08-26T21:37:13.5950630Z [ 2025-08-26T21:37:13.5950830Z scalar_t=float 2025-08-26T21:37:13.5951044Z ] 2025-08-26T21:37:13.5951742Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(719): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.5952509Z with 2025-08-26T21:37:13.5952758Z [ 2025-08-26T21:37:13.5952945Z scalar_t=float 2025-08-26T21:37:13.5953192Z ] 2025-08-26T21:37:13.5954244Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(719): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.5955341Z with 2025-08-26T21:37:13.5955532Z [ 2025-08-26T21:37:13.5955716Z scalar_t=float 2025-08-26T21:37:13.5955947Z ] 2025-08-26T21:37:13.5956630Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(719): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.5957412Z with 2025-08-26T21:37:13.5957600Z [ 2025-08-26T21:37:13.5957775Z scalar_t=float 2025-08-26T21:37:13.5958006Z ] 2025-08-26T21:37:13.5958701Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(720): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.5959481Z with 2025-08-26T21:37:13.5959724Z [ 2025-08-26T21:37:13.5960077Z scalar_t=float 2025-08-26T21:37:13.5960425Z ] 2025-08-26T21:37:13.5961356Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(720): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.5962226Z with 2025-08-26T21:37:13.5962404Z [ 2025-08-26T21:37:13.5962600Z scalar_t=float 2025-08-26T21:37:13.5962813Z ] 2025-08-26T21:37:13.5963516Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(720): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.5964278Z with 2025-08-26T21:37:13.5964470Z [ 2025-08-26T21:37:13.5964652Z scalar_t=float 2025-08-26T21:37:13.5964891Z ] 2025-08-26T21:37:13.5965652Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(721): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.5966975Z with 2025-08-26T21:37:13.5967170Z [ 2025-08-26T21:37:13.5967356Z scalar_t=float 2025-08-26T21:37:13.5967592Z ] 2025-08-26T21:37:13.5968270Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(721): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.5969049Z with 2025-08-26T21:37:13.5969235Z [ 2025-08-26T21:37:13.5969424Z scalar_t=float 2025-08-26T21:37:13.5969655Z ] 2025-08-26T21:37:13.5970339Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(721): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.5971123Z with 2025-08-26T21:37:13.5971303Z [ 2025-08-26T21:37:13.5971634Z scalar_t=float 2025-08-26T21:37:13.5972055Z ] 2025-08-26T21:37:13.5973084Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(722): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.5973926Z with 2025-08-26T21:37:13.5974114Z [ 2025-08-26T21:37:13.5974319Z scalar_t=float 2025-08-26T21:37:13.5974537Z ] 2025-08-26T21:37:13.5975242Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(722): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.5976015Z with 2025-08-26T21:37:13.5976213Z [ 2025-08-26T21:37:13.5976390Z scalar_t=float 2025-08-26T21:37:13.5976620Z ] 2025-08-26T21:37:13.5977315Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(722): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.5978732Z with 2025-08-26T21:37:13.5978930Z [ 2025-08-26T21:37:13.5979118Z scalar_t=float 2025-08-26T21:37:13.5979350Z ] 2025-08-26T21:37:13.5980038Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(723): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.5980817Z with 2025-08-26T21:37:13.5980995Z [ 2025-08-26T21:37:13.5981186Z scalar_t=float 2025-08-26T21:37:13.5981419Z ] 2025-08-26T21:37:13.5982101Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(723): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.5982879Z with 2025-08-26T21:37:13.5983056Z [ 2025-08-26T21:37:13.5983251Z scalar_t=float 2025-08-26T21:37:13.5983637Z ] 2025-08-26T21:37:13.5984779Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(723): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.5985559Z with 2025-08-26T21:37:13.5985733Z [ 2025-08-26T21:37:13.5986014Z scalar_t=float 2025-08-26T21:37:13.5986235Z ] 2025-08-26T21:37:13.5986936Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(724): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.5987694Z with 2025-08-26T21:37:13.5987890Z [ 2025-08-26T21:37:13.5988066Z scalar_t=float 2025-08-26T21:37:13.5988296Z ] 2025-08-26T21:37:13.5988979Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(725): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.5990121Z with 2025-08-26T21:37:13.5990383Z [ 2025-08-26T21:37:13.5990701Z scalar_t=float 2025-08-26T21:37:13.5990964Z ] 2025-08-26T21:37:13.5992277Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(725): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.5993052Z with 2025-08-26T21:37:13.5993228Z [ 2025-08-26T21:37:13.5993413Z scalar_t=float 2025-08-26T21:37:13.5993694Z ] 2025-08-26T21:37:13.5994377Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(725): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.5995154Z with 2025-08-26T21:37:13.5995335Z [ 2025-08-26T21:37:13.5995634Z scalar_t=float 2025-08-26T21:37:13.5996043Z ] 2025-08-26T21:37:13.5997136Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(726): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.5997910Z with 2025-08-26T21:37:13.5998101Z [ 2025-08-26T21:37:13.5998292Z scalar_t=float 2025-08-26T21:37:13.5998509Z ] 2025-08-26T21:37:13.5999241Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(726): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6000005Z with 2025-08-26T21:37:13.6000191Z [ 2025-08-26T21:37:13.6000364Z scalar_t=float 2025-08-26T21:37:13.6000596Z ] 2025-08-26T21:37:13.6001278Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(726): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6002667Z with 2025-08-26T21:37:13.6002858Z [ 2025-08-26T21:37:13.6003033Z scalar_t=float 2025-08-26T21:37:13.6003327Z ] 2025-08-26T21:37:13.6004016Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(727): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6004794Z with 2025-08-26T21:37:13.6004969Z [ 2025-08-26T21:37:13.6005171Z scalar_t=float 2025-08-26T21:37:13.6005394Z ] 2025-08-26T21:37:13.6006089Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(727): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6006856Z with 2025-08-26T21:37:13.6007029Z [ 2025-08-26T21:37:13.6007219Z scalar_t=float 2025-08-26T21:37:13.6007580Z ] 2025-08-26T21:37:13.6008726Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(727): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6009486Z with 2025-08-26T21:37:13.6009673Z [ 2025-08-26T21:37:13.6009858Z scalar_t=float 2025-08-26T21:37:13.6010083Z ] 2025-08-26T21:37:13.6010776Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(728): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6011601Z with 2025-08-26T21:37:13.6011791Z [ 2025-08-26T21:37:13.6011972Z scalar_t=float 2025-08-26T21:37:13.6012204Z ] 2025-08-26T21:37:13.6012893Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(728): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6014033Z with 2025-08-26T21:37:13.6014356Z [ 2025-08-26T21:37:13.6014611Z scalar_t=float 2025-08-26T21:37:13.6014835Z ] 2025-08-26T21:37:13.6015513Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(728): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6016276Z with 2025-08-26T21:37:13.6016453Z [ 2025-08-26T21:37:13.6016641Z scalar_t=float 2025-08-26T21:37:13.6016854Z ] 2025-08-26T21:37:13.6017551Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(729): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6018323Z with 2025-08-26T21:37:13.6018497Z [ 2025-08-26T21:37:13.6018685Z scalar_t=float 2025-08-26T21:37:13.6018899Z ] 2025-08-26T21:37:13.6020005Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(729): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6020960Z with 2025-08-26T21:37:13.6021151Z [ 2025-08-26T21:37:13.6021322Z scalar_t=float 2025-08-26T21:37:13.6021549Z ] 2025-08-26T21:37:13.6022301Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(729): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6023070Z with 2025-08-26T21:37:13.6023253Z [ 2025-08-26T21:37:13.6023474Z scalar_t=float 2025-08-26T21:37:13.6023702Z ] 2025-08-26T21:37:13.6024376Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(730): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6025250Z with 2025-08-26T21:37:13.6025593Z [ 2025-08-26T21:37:13.6025871Z scalar_t=float 2025-08-26T21:37:13.6026277Z ] 2025-08-26T21:37:13.6026991Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(730): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6027828Z with 2025-08-26T21:37:13.6028006Z [ 2025-08-26T21:37:13.6028208Z scalar_t=float 2025-08-26T21:37:13.6028421Z ] 2025-08-26T21:37:13.6029119Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(730): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6029881Z with 2025-08-26T21:37:13.6030070Z [ 2025-08-26T21:37:13.6030247Z scalar_t=float 2025-08-26T21:37:13.6030474Z ] 2025-08-26T21:37:13.6031353Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(731): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6032832Z with 2025-08-26T21:37:13.6033150Z [ 2025-08-26T21:37:13.6033472Z scalar_t=float 2025-08-26T21:37:13.6033929Z ] 2025-08-26T21:37:13.6035235Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(731): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6036728Z with 2025-08-26T21:37:13.6037065Z [ 2025-08-26T21:37:13.6037401Z scalar_t=float 2025-08-26T21:37:13.6037793Z ] 2025-08-26T21:37:13.6039211Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(731): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6040708Z with 2025-08-26T21:37:13.6041037Z [ 2025-08-26T21:37:13.6041361Z scalar_t=float 2025-08-26T21:37:13.6041768Z ] 2025-08-26T21:37:13.6043101Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(732): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6044591Z with 2025-08-26T21:37:13.6044895Z [ 2025-08-26T21:37:13.6045242Z scalar_t=float 2025-08-26T21:37:13.6045653Z ] 2025-08-26T21:37:13.6046480Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(732): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6047245Z with 2025-08-26T21:37:13.6047441Z [ 2025-08-26T21:37:13.6047618Z scalar_t=float 2025-08-26T21:37:13.6047842Z ] 2025-08-26T21:37:13.6048530Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(732): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6049286Z with 2025-08-26T21:37:13.6049474Z [ 2025-08-26T21:37:13.6049649Z scalar_t=float 2025-08-26T21:37:13.6049875Z ] 2025-08-26T21:37:13.6050544Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(733): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6052021Z with 2025-08-26T21:37:13.6052794Z [ 2025-08-26T21:37:13.6053005Z scalar_t=float 2025-08-26T21:37:13.6053237Z ] 2025-08-26T21:37:13.6053982Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(734): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6054770Z with 2025-08-26T21:37:13.6054945Z [ 2025-08-26T21:37:13.6055132Z scalar_t=float 2025-08-26T21:37:13.6055346Z ] 2025-08-26T21:37:13.6056039Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(734): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6056800Z with 2025-08-26T21:37:13.6057003Z [ 2025-08-26T21:37:13.6057301Z scalar_t=float 2025-08-26T21:37:13.6057717Z ] 2025-08-26T21:37:13.6058945Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(734): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6059769Z with 2025-08-26T21:37:13.6059961Z [ 2025-08-26T21:37:13.6060137Z scalar_t=float 2025-08-26T21:37:13.6060366Z ] 2025-08-26T21:37:13.6061048Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(735): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6061824Z with 2025-08-26T21:37:13.6062013Z [ 2025-08-26T21:37:13.6062183Z scalar_t=float 2025-08-26T21:37:13.6062409Z ] 2025-08-26T21:37:13.6063082Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(735): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6064262Z with 2025-08-26T21:37:13.6064566Z [ 2025-08-26T21:37:13.6064900Z scalar_t=float 2025-08-26T21:37:13.6065240Z ] 2025-08-26T21:37:13.6065938Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(735): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6066704Z with 2025-08-26T21:37:13.6066936Z [ 2025-08-26T21:37:13.6067133Z scalar_t=float 2025-08-26T21:37:13.6067350Z ] 2025-08-26T21:37:13.6068035Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(736): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6068796Z with 2025-08-26T21:37:13.6068989Z [ 2025-08-26T21:37:13.6069163Z scalar_t=float 2025-08-26T21:37:13.6069394Z ] 2025-08-26T21:37:13.6070095Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(736): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6070854Z with 2025-08-26T21:37:13.6071046Z [ 2025-08-26T21:37:13.6071222Z scalar_t=float 2025-08-26T21:37:13.6071447Z ] 2025-08-26T21:37:13.6072127Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(736): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6072905Z with 2025-08-26T21:37:13.6073076Z [ 2025-08-26T21:37:13.6073267Z scalar_t=float 2025-08-26T21:37:13.6073490Z ] 2025-08-26T21:37:13.6074225Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(737): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6075114Z with 2025-08-26T21:37:13.6075454Z [ 2025-08-26T21:37:13.6075795Z scalar_t=float 2025-08-26T21:37:13.6076200Z ] 2025-08-26T21:37:13.6077155Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(737): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6077937Z with 2025-08-26T21:37:13.6078110Z [ 2025-08-26T21:37:13.6078301Z scalar_t=float 2025-08-26T21:37:13.6078515Z ] 2025-08-26T21:37:13.6079719Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(737): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6080498Z with 2025-08-26T21:37:13.6080690Z [ 2025-08-26T21:37:13.6080873Z scalar_t=float 2025-08-26T21:37:13.6081109Z ] 2025-08-26T21:37:13.6081794Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(738): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6082579Z with 2025-08-26T21:37:13.6082775Z [ 2025-08-26T21:37:13.6082951Z scalar_t=float 2025-08-26T21:37:13.6083232Z ] 2025-08-26T21:37:13.6083917Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(738): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6084702Z with 2025-08-26T21:37:13.6084879Z [ 2025-08-26T21:37:13.6085078Z scalar_t=float 2025-08-26T21:37:13.6085291Z ] 2025-08-26T21:37:13.6085990Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(738): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6086841Z with 2025-08-26T21:37:13.6087016Z [ 2025-08-26T21:37:13.6087203Z scalar_t=float 2025-08-26T21:37:13.6087418Z ] 2025-08-26T21:37:13.6088108Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(739): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6088876Z with 2025-08-26T21:37:13.6089066Z [ 2025-08-26T21:37:13.6089252Z scalar_t=float 2025-08-26T21:37:13.6089467Z ] 2025-08-26T21:37:13.6090158Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(739): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6090981Z with 2025-08-26T21:37:13.6091168Z [ 2025-08-26T21:37:13.6091411Z scalar_t=float 2025-08-26T21:37:13.6091832Z ] 2025-08-26T21:37:13.6093114Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(739): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6093891Z with 2025-08-26T21:37:13.6094088Z [ 2025-08-26T21:37:13.6094268Z scalar_t=float 2025-08-26T21:37:13.6094495Z ] 2025-08-26T21:37:13.6095180Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(740): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6095952Z with 2025-08-26T21:37:13.6096124Z [ 2025-08-26T21:37:13.6096316Z scalar_t=float 2025-08-26T21:37:13.6096526Z ] 2025-08-26T21:37:13.6097218Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(740): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6097994Z with 2025-08-26T21:37:13.6098167Z [ 2025-08-26T21:37:13.6098354Z scalar_t=float 2025-08-26T21:37:13.6098562Z ] 2025-08-26T21:37:13.6099244Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(740): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6099988Z with 2025-08-26T21:37:13.6100174Z [ 2025-08-26T21:37:13.6100348Z scalar_t=float 2025-08-26T21:37:13.6100578Z ] 2025-08-26T21:37:13.6101341Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(741): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6102110Z with 2025-08-26T21:37:13.6102298Z [ 2025-08-26T21:37:13.6102516Z scalar_t=float 2025-08-26T21:37:13.6102747Z ] 2025-08-26T21:37:13.6103417Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(741): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6104198Z with 2025-08-26T21:37:13.6104376Z [ 2025-08-26T21:37:13.6104568Z scalar_t=float 2025-08-26T21:37:13.6104795Z ] 2025-08-26T21:37:13.6105470Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(741): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6106281Z with 2025-08-26T21:37:13.6106454Z [ 2025-08-26T21:37:13.6106640Z scalar_t=float 2025-08-26T21:37:13.6106863Z ] 2025-08-26T21:37:13.6107560Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(742): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6108330Z with 2025-08-26T21:37:13.6108506Z [ 2025-08-26T21:37:13.6108691Z scalar_t=float 2025-08-26T21:37:13.6108905Z ] 2025-08-26T21:37:13.6109601Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(743): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6110360Z with 2025-08-26T21:37:13.6110551Z [ 2025-08-26T21:37:13.6110730Z scalar_t=float 2025-08-26T21:37:13.6110962Z ] 2025-08-26T21:37:13.6111647Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(743): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6112419Z with 2025-08-26T21:37:13.6112605Z [ 2025-08-26T21:37:13.6112788Z scalar_t=float 2025-08-26T21:37:13.6113065Z ] 2025-08-26T21:37:13.6113815Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(743): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6114599Z with 2025-08-26T21:37:13.6114776Z [ 2025-08-26T21:37:13.6114967Z scalar_t=float 2025-08-26T21:37:13.6115185Z ] 2025-08-26T21:37:13.6115877Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(744): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6116649Z with 2025-08-26T21:37:13.6116827Z [ 2025-08-26T21:37:13.6117011Z scalar_t=float 2025-08-26T21:37:13.6117228Z ] 2025-08-26T21:37:13.6117913Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(744): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6118668Z with 2025-08-26T21:37:13.6118858Z [ 2025-08-26T21:37:13.6119037Z scalar_t=float 2025-08-26T21:37:13.6119263Z ] 2025-08-26T21:37:13.6119950Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(744): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6120715Z with 2025-08-26T21:37:13.6120903Z [ 2025-08-26T21:37:13.6121075Z scalar_t=float 2025-08-26T21:37:13.6121301Z ] 2025-08-26T21:37:13.6121977Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(745): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6122786Z with 2025-08-26T21:37:13.6123185Z [ 2025-08-26T21:37:13.6123497Z scalar_t=float 2025-08-26T21:37:13.6123909Z ] 2025-08-26T21:37:13.6124981Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(745): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6125772Z with 2025-08-26T21:37:13.6125951Z [ 2025-08-26T21:37:13.6126148Z scalar_t=float 2025-08-26T21:37:13.6126373Z ] 2025-08-26T21:37:13.6127068Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(745): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6127843Z with 2025-08-26T21:37:13.6128014Z [ 2025-08-26T21:37:13.6128199Z scalar_t=float 2025-08-26T21:37:13.6128411Z ] 2025-08-26T21:37:13.6129107Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(746): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6129903Z with 2025-08-26T21:37:13.6130095Z [ 2025-08-26T21:37:13.6130269Z scalar_t=float 2025-08-26T21:37:13.6130505Z ] 2025-08-26T21:37:13.6131207Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(746): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6131968Z with 2025-08-26T21:37:13.6132159Z [ 2025-08-26T21:37:13.6132339Z scalar_t=float 2025-08-26T21:37:13.6132564Z ] 2025-08-26T21:37:13.6133241Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(746): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6134016Z with 2025-08-26T21:37:13.6134193Z [ 2025-08-26T21:37:13.6134384Z scalar_t=float 2025-08-26T21:37:13.6134621Z ] 2025-08-26T21:37:13.6135295Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(747): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6136116Z with 2025-08-26T21:37:13.6136298Z [ 2025-08-26T21:37:13.6136494Z scalar_t=float 2025-08-26T21:37:13.6136718Z ] 2025-08-26T21:37:13.6137416Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(747): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6138172Z with 2025-08-26T21:37:13.6138353Z [ 2025-08-26T21:37:13.6138540Z scalar_t=float 2025-08-26T21:37:13.6138751Z ] 2025-08-26T21:37:13.6139442Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(747): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6140200Z with 2025-08-26T21:37:13.6140382Z [ 2025-08-26T21:37:13.6140554Z scalar_t=float 2025-08-26T21:37:13.6140778Z ] 2025-08-26T21:37:13.6141460Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(748): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6142231Z with 2025-08-26T21:37:13.6142420Z [ 2025-08-26T21:37:13.6142597Z scalar_t=float 2025-08-26T21:37:13.6142824Z ] 2025-08-26T21:37:13.6143496Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(748): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6144264Z with 2025-08-26T21:37:13.6144437Z [ 2025-08-26T21:37:13.6144628Z scalar_t=float 2025-08-26T21:37:13.6144839Z ] 2025-08-26T21:37:13.6145567Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(748): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6146367Z with 2025-08-26T21:37:13.6146545Z [ 2025-08-26T21:37:13.6146735Z scalar_t=float 2025-08-26T21:37:13.6146952Z ] 2025-08-26T21:37:13.6147688Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(749): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6148450Z with 2025-08-26T21:37:13.6148641Z [ 2025-08-26T21:37:13.6148812Z scalar_t=float 2025-08-26T21:37:13.6149037Z ] 2025-08-26T21:37:13.6149725Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(749): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6150487Z with 2025-08-26T21:37:13.6150679Z [ 2025-08-26T21:37:13.6150892Z scalar_t=float 2025-08-26T21:37:13.6151125Z ] 2025-08-26T21:37:13.6151800Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(749): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6152586Z with 2025-08-26T21:37:13.6152762Z [ 2025-08-26T21:37:13.6152949Z scalar_t=float 2025-08-26T21:37:13.6153178Z ] 2025-08-26T21:37:13.6153939Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(750): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6154717Z with 2025-08-26T21:37:13.6154895Z [ 2025-08-26T21:37:13.6155081Z scalar_t=float 2025-08-26T21:37:13.6155299Z ] 2025-08-26T21:37:13.6155992Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(750): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6156776Z with 2025-08-26T21:37:13.6156948Z [ 2025-08-26T21:37:13.6157133Z scalar_t=float 2025-08-26T21:37:13.6157347Z ] 2025-08-26T21:37:13.6158041Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(750): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6158859Z with 2025-08-26T21:37:13.6159047Z [ 2025-08-26T21:37:13.6159224Z scalar_t=float 2025-08-26T21:37:13.6159453Z ] 2025-08-26T21:37:13.6160129Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(751): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6160902Z with 2025-08-26T21:37:13.6161084Z [ 2025-08-26T21:37:13.6161255Z scalar_t=float 2025-08-26T21:37:13.6161480Z ] 2025-08-26T21:37:13.6162163Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(752): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6162931Z with 2025-08-26T21:37:13.6163106Z [ 2025-08-26T21:37:13.6163289Z scalar_t=float 2025-08-26T21:37:13.6163505Z ] 2025-08-26T21:37:13.6164192Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(752): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6164967Z with 2025-08-26T21:37:13.6165139Z [ 2025-08-26T21:37:13.6165330Z scalar_t=float 2025-08-26T21:37:13.6165548Z ] 2025-08-26T21:37:13.6166244Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(752): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6167003Z with 2025-08-26T21:37:13.6167190Z [ 2025-08-26T21:37:13.6167383Z scalar_t=float 2025-08-26T21:37:13.6167644Z ] 2025-08-26T21:37:13.6168335Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(753): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6169100Z with 2025-08-26T21:37:13.6169330Z [ 2025-08-26T21:37:13.6169507Z scalar_t=float 2025-08-26T21:37:13.6169734Z ] 2025-08-26T21:37:13.6170413Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(753): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6171199Z with 2025-08-26T21:37:13.6171392Z [ 2025-08-26T21:37:13.6171571Z scalar_t=float 2025-08-26T21:37:13.6171801Z ] 2025-08-26T21:37:13.6172478Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(753): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6173294Z with 2025-08-26T21:37:13.6173470Z [ 2025-08-26T21:37:13.6173656Z scalar_t=float 2025-08-26T21:37:13.6173874Z ] 2025-08-26T21:37:13.6174575Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(754): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6175357Z with 2025-08-26T21:37:13.6175542Z [ 2025-08-26T21:37:13.6175729Z scalar_t=float 2025-08-26T21:37:13.6175945Z ] 2025-08-26T21:37:13.6176642Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(754): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6177414Z with 2025-08-26T21:37:13.6177599Z [ 2025-08-26T21:37:13.6177780Z scalar_t=float 2025-08-26T21:37:13.6178010Z ] 2025-08-26T21:37:13.6178705Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(754): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6179602Z with 2025-08-26T21:37:13.6179966Z [ 2025-08-26T21:37:13.6180292Z scalar_t=float 2025-08-26T21:37:13.6195892Z ] 2025-08-26T21:37:13.6196628Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(755): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6197416Z with 2025-08-26T21:37:13.6197595Z [ 2025-08-26T21:37:13.6197785Z scalar_t=float 2025-08-26T21:37:13.6198057Z ] 2025-08-26T21:37:13.6198809Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(755): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6199597Z with 2025-08-26T21:37:13.6199775Z [ 2025-08-26T21:37:13.6199970Z scalar_t=float 2025-08-26T21:37:13.6200187Z ] 2025-08-26T21:37:13.6200889Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(755): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6201655Z with 2025-08-26T21:37:13.6201844Z [ 2025-08-26T21:37:13.6202033Z scalar_t=float 2025-08-26T21:37:13.6202246Z ] 2025-08-26T21:37:13.6202937Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(756): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6203735Z with 2025-08-26T21:37:13.6203919Z [ 2025-08-26T21:37:13.6204126Z scalar_t=float 2025-08-26T21:37:13.6204350Z ] 2025-08-26T21:37:13.6205033Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(756): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6205956Z with 2025-08-26T21:37:13.6206152Z [ 2025-08-26T21:37:13.6206328Z scalar_t=float 2025-08-26T21:37:13.6206560Z ] 2025-08-26T21:37:13.6207296Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(756): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6208083Z with 2025-08-26T21:37:13.6208263Z [ 2025-08-26T21:37:13.6208456Z scalar_t=float 2025-08-26T21:37:13.6208668Z ] 2025-08-26T21:37:13.6209398Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(757): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6210217Z with 2025-08-26T21:37:13.6210391Z [ 2025-08-26T21:37:13.6210586Z scalar_t=float 2025-08-26T21:37:13.6210795Z ] 2025-08-26T21:37:13.6211592Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(757): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6212356Z with 2025-08-26T21:37:13.6212553Z [ 2025-08-26T21:37:13.6212734Z scalar_t=float 2025-08-26T21:37:13.6212969Z ] 2025-08-26T21:37:13.6213662Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(757): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6214420Z with 2025-08-26T21:37:13.6214606Z [ 2025-08-26T21:37:13.6214776Z scalar_t=float 2025-08-26T21:37:13.6215007Z ] 2025-08-26T21:37:13.6215759Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(758): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6216537Z with 2025-08-26T21:37:13.6216719Z [ 2025-08-26T21:37:13.6216901Z scalar_t=float 2025-08-26T21:37:13.6217132Z ] 2025-08-26T21:37:13.6217799Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(758): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6218623Z with 2025-08-26T21:37:13.6218792Z [ 2025-08-26T21:37:13.6218982Z scalar_t=float 2025-08-26T21:37:13.6219196Z ] 2025-08-26T21:37:13.6219925Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(758): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6220697Z with 2025-08-26T21:37:13.6220908Z [ 2025-08-26T21:37:13.6221092Z scalar_t=float 2025-08-26T21:37:13.6221344Z ] 2025-08-26T21:37:13.6222040Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(759): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6222802Z with 2025-08-26T21:37:13.6222987Z [ 2025-08-26T21:37:13.6223168Z scalar_t=float 2025-08-26T21:37:13.6223395Z ] 2025-08-26T21:37:13.6224096Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(759): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6224863Z with 2025-08-26T21:37:13.6225046Z [ 2025-08-26T21:37:13.6225221Z scalar_t=float 2025-08-26T21:37:13.6225443Z ] 2025-08-26T21:37:13.6226117Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(759): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6226933Z with 2025-08-26T21:37:13.6227151Z [ 2025-08-26T21:37:13.6227376Z scalar_t=float 2025-08-26T21:37:13.6227587Z ] 2025-08-26T21:37:13.6228336Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(760): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6229110Z with 2025-08-26T21:37:13.6229284Z [ 2025-08-26T21:37:13.6229475Z scalar_t=float 2025-08-26T21:37:13.6229740Z ] 2025-08-26T21:37:13.6230432Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(761): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6231203Z with 2025-08-26T21:37:13.6231395Z [ 2025-08-26T21:37:13.6231587Z scalar_t=float 2025-08-26T21:37:13.6231805Z ] 2025-08-26T21:37:13.6232536Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(761): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6233339Z with 2025-08-26T21:37:13.6233573Z [ 2025-08-26T21:37:13.6233813Z scalar_t=float 2025-08-26T21:37:13.6234045Z ] 2025-08-26T21:37:13.6234763Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(761): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6235527Z with 2025-08-26T21:37:13.6235697Z [ 2025-08-26T21:37:13.6235866Z scalar_t=float 2025-08-26T21:37:13.6236075Z ] 2025-08-26T21:37:13.6252326Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(762): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6253148Z with 2025-08-26T21:37:13.6253347Z [ 2025-08-26T21:37:13.6253529Z scalar_t=float 2025-08-26T21:37:13.6253759Z ] 2025-08-26T21:37:13.6254463Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(762): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6255244Z with 2025-08-26T21:37:13.6255481Z [ 2025-08-26T21:37:13.6255692Z scalar_t=float 2025-08-26T21:37:13.6255953Z ] 2025-08-26T21:37:13.6256670Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(762): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6257602Z with 2025-08-26T21:37:13.6257781Z [ 2025-08-26T21:37:13.6257985Z scalar_t=float 2025-08-26T21:37:13.6258203Z ] 2025-08-26T21:37:13.6258903Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(763): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6259668Z with 2025-08-26T21:37:13.6259859Z [ 2025-08-26T21:37:13.6260035Z scalar_t=float 2025-08-26T21:37:13.6260265Z ] 2025-08-26T21:37:13.6260967Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(763): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6261811Z with 2025-08-26T21:37:13.6262001Z [ 2025-08-26T21:37:13.6262184Z scalar_t=float 2025-08-26T21:37:13.6262414Z ] 2025-08-26T21:37:13.6263097Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(763): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6263915Z with 2025-08-26T21:37:13.6264100Z [ 2025-08-26T21:37:13.6264282Z scalar_t=float 2025-08-26T21:37:13.6264508Z ] 2025-08-26T21:37:13.6265184Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(764): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6265970Z with 2025-08-26T21:37:13.6266146Z [ 2025-08-26T21:37:13.6266395Z scalar_t=float 2025-08-26T21:37:13.6266612Z ] 2025-08-26T21:37:13.6267375Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(764): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6268201Z with 2025-08-26T21:37:13.6268378Z [ 2025-08-26T21:37:13.6268571Z scalar_t=float 2025-08-26T21:37:13.6268786Z ] 2025-08-26T21:37:13.6269477Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(764): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6270251Z with 2025-08-26T21:37:13.6270477Z [ 2025-08-26T21:37:13.6270657Z scalar_t=float 2025-08-26T21:37:13.6270889Z ] 2025-08-26T21:37:13.6271569Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(765): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6272394Z with 2025-08-26T21:37:13.6272622Z [ 2025-08-26T21:37:13.6272809Z scalar_t=float 2025-08-26T21:37:13.6273072Z ] 2025-08-26T21:37:13.6273814Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(765): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6274591Z with 2025-08-26T21:37:13.6274771Z [ 2025-08-26T21:37:13.6274957Z scalar_t=float 2025-08-26T21:37:13.6275172Z ] 2025-08-26T21:37:13.6275869Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(765): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6276656Z with 2025-08-26T21:37:13.6276827Z [ 2025-08-26T21:37:13.6277022Z scalar_t=float 2025-08-26T21:37:13.6277235Z ] 2025-08-26T21:37:13.6277969Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(766): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6278809Z with 2025-08-26T21:37:13.6278980Z [ 2025-08-26T21:37:13.6279216Z scalar_t=float 2025-08-26T21:37:13.6279436Z ] 2025-08-26T21:37:13.6280132Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(766): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6280908Z with 2025-08-26T21:37:13.6281085Z [ 2025-08-26T21:37:13.6281282Z scalar_t=float 2025-08-26T21:37:13.6281496Z ] 2025-08-26T21:37:13.6282179Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(766): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6282937Z with 2025-08-26T21:37:13.6283124Z [ 2025-08-26T21:37:13.6283301Z scalar_t=float 2025-08-26T21:37:13.6283527Z ] 2025-08-26T21:37:13.6284256Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(767): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6285057Z with 2025-08-26T21:37:13.6285246Z [ 2025-08-26T21:37:13.6285420Z scalar_t=float 2025-08-26T21:37:13.6285647Z ] 2025-08-26T21:37:13.6286367Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(767): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6287145Z with 2025-08-26T21:37:13.6287322Z [ 2025-08-26T21:37:13.6287507Z scalar_t=float 2025-08-26T21:37:13.6287732Z ] 2025-08-26T21:37:13.6288462Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(767): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6289241Z with 2025-08-26T21:37:13.6289415Z [ 2025-08-26T21:37:13.6289603Z scalar_t=float 2025-08-26T21:37:13.6289864Z ] 2025-08-26T21:37:13.6290638Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(768): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6291417Z with 2025-08-26T21:37:13.6291590Z [ 2025-08-26T21:37:13.6291775Z scalar_t=float 2025-08-26T21:37:13.6291985Z ] 2025-08-26T21:37:13.6292679Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(768): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6293482Z with 2025-08-26T21:37:13.6293660Z [ 2025-08-26T21:37:13.6293822Z scalar_t=float 2025-08-26T21:37:13.6294044Z ] 2025-08-26T21:37:13.6294767Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(768): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6295567Z with 2025-08-26T21:37:13.6295755Z [ 2025-08-26T21:37:13.6295969Z scalar_t=float 2025-08-26T21:37:13.6296195Z ] 2025-08-26T21:37:13.6296868Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(769): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6297636Z with 2025-08-26T21:37:13.6297805Z [ 2025-08-26T21:37:13.6297988Z scalar_t=float 2025-08-26T21:37:13.6298201Z ] 2025-08-26T21:37:13.6298882Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(770): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6299651Z with 2025-08-26T21:37:13.6299821Z [ 2025-08-26T21:37:13.6300011Z scalar_t=float 2025-08-26T21:37:13.6300226Z ] 2025-08-26T21:37:13.6300956Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(770): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6301844Z with 2025-08-26T21:37:13.6302033Z [ 2025-08-26T21:37:13.6302212Z scalar_t=float 2025-08-26T21:37:13.6302438Z ] 2025-08-26T21:37:13.6303120Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(770): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6303871Z with 2025-08-26T21:37:13.6304059Z [ 2025-08-26T21:37:13.6304232Z scalar_t=float 2025-08-26T21:37:13.6304457Z ] 2025-08-26T21:37:13.6305131Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(771): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6305907Z with 2025-08-26T21:37:13.6306091Z [ 2025-08-26T21:37:13.6306266Z scalar_t=float 2025-08-26T21:37:13.6306491Z ] 2025-08-26T21:37:13.6307205Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(771): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6308019Z with 2025-08-26T21:37:13.6308189Z [ 2025-08-26T21:37:13.6308368Z scalar_t=float 2025-08-26T21:37:13.6308585Z ] 2025-08-26T21:37:13.6309265Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(771): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6310038Z with 2025-08-26T21:37:13.6310217Z [ 2025-08-26T21:37:13.6310404Z scalar_t=float 2025-08-26T21:37:13.6310617Z ] 2025-08-26T21:37:13.6311349Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(772): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6312101Z with 2025-08-26T21:37:13.6312289Z [ 2025-08-26T21:37:13.6312534Z scalar_t=float 2025-08-26T21:37:13.6312765Z ] 2025-08-26T21:37:13.6313492Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(772): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6314303Z with 2025-08-26T21:37:13.6314495Z [ 2025-08-26T21:37:13.6314665Z scalar_t=float 2025-08-26T21:37:13.6314889Z ] 2025-08-26T21:37:13.6315571Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(772): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6316344Z with 2025-08-26T21:37:13.6316566Z [ 2025-08-26T21:37:13.6316753Z scalar_t=float 2025-08-26T21:37:13.6316971Z ] 2025-08-26T21:37:13.6317636Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(773): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6318439Z with 2025-08-26T21:37:13.6318603Z [ 2025-08-26T21:37:13.6318814Z scalar_t=float 2025-08-26T21:37:13.6319016Z ] 2025-08-26T21:37:13.6319684Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(773): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6320437Z with 2025-08-26T21:37:13.6320607Z [ 2025-08-26T21:37:13.6320777Z scalar_t=float 2025-08-26T21:37:13.6320979Z ] 2025-08-26T21:37:13.6321651Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(773): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6322411Z with 2025-08-26T21:37:13.6322576Z [ 2025-08-26T21:37:13.6322738Z scalar_t=float 2025-08-26T21:37:13.6322947Z ] 2025-08-26T21:37:13.6323675Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(774): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6324504Z with 2025-08-26T21:37:13.6324662Z [ 2025-08-26T21:37:13.6324830Z scalar_t=float 2025-08-26T21:37:13.6325035Z ] 2025-08-26T21:37:13.6325703Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(774): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6326454Z with 2025-08-26T21:37:13.6326615Z [ 2025-08-26T21:37:13.6326780Z scalar_t=float 2025-08-26T21:37:13.6326985Z ] 2025-08-26T21:37:13.6327650Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(774): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6328396Z with 2025-08-26T21:37:13.6328567Z [ 2025-08-26T21:37:13.6328746Z scalar_t=float 2025-08-26T21:37:13.6328951Z ] 2025-08-26T21:37:13.6329619Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(775): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6330441Z with 2025-08-26T21:37:13.6330619Z [ 2025-08-26T21:37:13.6330781Z scalar_t=float 2025-08-26T21:37:13.6330988Z ] 2025-08-26T21:37:13.6331655Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(775): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6332406Z with 2025-08-26T21:37:13.6332573Z [ 2025-08-26T21:37:13.6332783Z scalar_t=float 2025-08-26T21:37:13.6332998Z ] 2025-08-26T21:37:13.6333703Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(775): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6334463Z with 2025-08-26T21:37:13.6334630Z [ 2025-08-26T21:37:13.6334807Z scalar_t=float 2025-08-26T21:37:13.6335015Z ] 2025-08-26T21:37:13.6335722Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(776): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6336587Z with 2025-08-26T21:37:13.6336758Z [ 2025-08-26T21:37:13.6336938Z scalar_t=float 2025-08-26T21:37:13.6337143Z ] 2025-08-26T21:37:13.6337814Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(776): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6338946Z with 2025-08-26T21:37:13.6339120Z [ 2025-08-26T21:37:13.6339294Z scalar_t=float 2025-08-26T21:37:13.6339504Z ] 2025-08-26T21:37:13.6340182Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(776): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6340936Z with 2025-08-26T21:37:13.6341158Z [ 2025-08-26T21:37:13.6341329Z scalar_t=float 2025-08-26T21:37:13.6341575Z ] 2025-08-26T21:37:13.6342244Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(777): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6343009Z with 2025-08-26T21:37:13.6343175Z [ 2025-08-26T21:37:13.6343350Z scalar_t=float 2025-08-26T21:37:13.6343560Z ] 2025-08-26T21:37:13.6344222Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(777): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6344981Z with 2025-08-26T21:37:13.6345196Z [ 2025-08-26T21:37:13.6345370Z scalar_t=float 2025-08-26T21:37:13.6345573Z ] 2025-08-26T21:37:13.6346249Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(777): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6347044Z with 2025-08-26T21:37:13.6347207Z [ 2025-08-26T21:37:13.6347415Z scalar_t=float 2025-08-26T21:37:13.6347619Z ] 2025-08-26T21:37:13.6348294Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(778): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6349051Z with 2025-08-26T21:37:13.6349221Z [ 2025-08-26T21:37:13.6349392Z scalar_t=float 2025-08-26T21:37:13.6349599Z ] 2025-08-26T21:37:13.6350269Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(779): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6351033Z with 2025-08-26T21:37:13.6351200Z [ 2025-08-26T21:37:13.6351367Z scalar_t=float 2025-08-26T21:37:13.6351581Z ] 2025-08-26T21:37:13.6352252Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(779): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6353084Z with 2025-08-26T21:37:13.6353251Z [ 2025-08-26T21:37:13.6353423Z scalar_t=float 2025-08-26T21:37:13.6353676Z ] 2025-08-26T21:37:13.6354411Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(779): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6355177Z with 2025-08-26T21:37:13.6355349Z [ 2025-08-26T21:37:13.6355522Z scalar_t=float 2025-08-26T21:37:13.6355724Z ] 2025-08-26T21:37:13.6356445Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(780): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6357194Z with 2025-08-26T21:37:13.6357366Z [ 2025-08-26T21:37:13.6357531Z scalar_t=float 2025-08-26T21:37:13.6357748Z ] 2025-08-26T21:37:13.6358463Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(780): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6359253Z with 2025-08-26T21:37:13.6359423Z [ 2025-08-26T21:37:13.6359587Z scalar_t=float 2025-08-26T21:37:13.6359843Z ] 2025-08-26T21:37:13.6360517Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(780): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6361279Z with 2025-08-26T21:37:13.6361454Z [ 2025-08-26T21:37:13.6361624Z scalar_t=float 2025-08-26T21:37:13.6361833Z ] 2025-08-26T21:37:13.6362501Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(781): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6363251Z with 2025-08-26T21:37:13.6363412Z [ 2025-08-26T21:37:13.6363581Z scalar_t=float 2025-08-26T21:37:13.6363782Z ] 2025-08-26T21:37:13.6364539Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(781): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6365301Z with 2025-08-26T21:37:13.6365471Z [ 2025-08-26T21:37:13.6365644Z scalar_t=float 2025-08-26T21:37:13.6365843Z ] 2025-08-26T21:37:13.6366513Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(781): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6367310Z with 2025-08-26T21:37:13.6367480Z [ 2025-08-26T21:37:13.6367643Z scalar_t=float 2025-08-26T21:37:13.6367866Z ] 2025-08-26T21:37:13.6368549Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(782): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6369307Z with 2025-08-26T21:37:13.6369484Z [ 2025-08-26T21:37:13.6369685Z scalar_t=float 2025-08-26T21:37:13.6369899Z ] 2025-08-26T21:37:13.6370615Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(782): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6371371Z with 2025-08-26T21:37:13.6371540Z [ 2025-08-26T21:37:13.6371716Z scalar_t=float 2025-08-26T21:37:13.6371924Z ] 2025-08-26T21:37:13.6372592Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(782): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6373352Z with 2025-08-26T21:37:13.6373514Z [ 2025-08-26T21:37:13.6373692Z scalar_t=float 2025-08-26T21:37:13.6373896Z ] 2025-08-26T21:37:13.6374563Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(783): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6375347Z with 2025-08-26T21:37:13.6375523Z [ 2025-08-26T21:37:13.6375694Z scalar_t=float 2025-08-26T21:37:13.6375945Z ] 2025-08-26T21:37:13.6376667Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(783): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6377420Z with 2025-08-26T21:37:13.6377602Z [ 2025-08-26T21:37:13.6377812Z scalar_t=float 2025-08-26T21:37:13.6378023Z ] 2025-08-26T21:37:13.6378698Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(783): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6379459Z with 2025-08-26T21:37:13.6379636Z [ 2025-08-26T21:37:13.6379799Z scalar_t=float 2025-08-26T21:37:13.6380018Z ] 2025-08-26T21:37:13.6380685Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(784): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6381560Z with 2025-08-26T21:37:13.6381728Z [ 2025-08-26T21:37:13.6381915Z scalar_t=float 2025-08-26T21:37:13.6382120Z ] 2025-08-26T21:37:13.6382802Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(784): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6383555Z with 2025-08-26T21:37:13.6383715Z [ 2025-08-26T21:37:13.6383884Z scalar_t=float 2025-08-26T21:37:13.6384091Z ] 2025-08-26T21:37:13.6384771Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(784): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6385517Z with 2025-08-26T21:37:13.6385690Z [ 2025-08-26T21:37:13.6385852Z scalar_t=float 2025-08-26T21:37:13.6386064Z ] 2025-08-26T21:37:13.6386771Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(785): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6387561Z with 2025-08-26T21:37:13.6387728Z [ 2025-08-26T21:37:13.6387891Z scalar_t=float 2025-08-26T21:37:13.6388102Z ] 2025-08-26T21:37:13.6388826Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(785): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6389591Z with 2025-08-26T21:37:13.6389753Z [ 2025-08-26T21:37:13.6389932Z scalar_t=float 2025-08-26T21:37:13.6390151Z ] 2025-08-26T21:37:13.6390815Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(785): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6391576Z with 2025-08-26T21:37:13.6391738Z [ 2025-08-26T21:37:13.6391914Z scalar_t=float 2025-08-26T21:37:13.6392124Z ] 2025-08-26T21:37:13.6392839Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(786): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6393690Z with 2025-08-26T21:37:13.6393864Z [ 2025-08-26T21:37:13.6394048Z scalar_t=float 2025-08-26T21:37:13.6394263Z ] 2025-08-26T21:37:13.6394945Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(786): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6395706Z with 2025-08-26T21:37:13.6395890Z [ 2025-08-26T21:37:13.6396060Z scalar_t=float 2025-08-26T21:37:13.6396273Z ] 2025-08-26T21:37:13.6396937Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(786): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6397701Z with 2025-08-26T21:37:13.6397928Z [ 2025-08-26T21:37:13.6398100Z scalar_t=float 2025-08-26T21:37:13.6398319Z ] 2025-08-26T21:37:13.6399123Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(787): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6399894Z with 2025-08-26T21:37:13.6400060Z [ 2025-08-26T21:37:13.6400245Z scalar_t=float 2025-08-26T21:37:13.6400454Z ] 2025-08-26T21:37:13.6401138Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(788): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6401899Z with 2025-08-26T21:37:13.6402075Z [ 2025-08-26T21:37:13.6402253Z scalar_t=float 2025-08-26T21:37:13.6402461Z ] 2025-08-26T21:37:13.6403146Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(788): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6403938Z with 2025-08-26T21:37:13.6404108Z [ 2025-08-26T21:37:13.6404329Z scalar_t=float 2025-08-26T21:37:13.6404537Z ] 2025-08-26T21:37:13.6405258Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(788): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6406010Z with 2025-08-26T21:37:13.6406176Z [ 2025-08-26T21:37:13.6406341Z scalar_t=float 2025-08-26T21:37:13.6406410Z ] 2025-08-26T21:37:13.6406994Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(789): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6407062Z with 2025-08-26T21:37:13.6407128Z [ 2025-08-26T21:37:13.6407215Z scalar_t=float 2025-08-26T21:37:13.6407278Z ] 2025-08-26T21:37:13.6407856Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(789): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6407931Z with 2025-08-26T21:37:13.6408040Z [ 2025-08-26T21:37:13.6408121Z scalar_t=float 2025-08-26T21:37:13.6408193Z ] 2025-08-26T21:37:13.6408772Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(789): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6408837Z with 2025-08-26T21:37:13.6408899Z [ 2025-08-26T21:37:13.6408983Z scalar_t=float 2025-08-26T21:37:13.6409046Z ] 2025-08-26T21:37:13.6409622Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(790): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6409701Z with 2025-08-26T21:37:13.6409770Z [ 2025-08-26T21:37:13.6409842Z scalar_t=float 2025-08-26T21:37:13.6409944Z ] 2025-08-26T21:37:13.6410565Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(790): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6410633Z with 2025-08-26T21:37:13.6410698Z [ 2025-08-26T21:37:13.6410779Z scalar_t=float 2025-08-26T21:37:13.6410844Z ] 2025-08-26T21:37:13.6411420Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(790): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6411493Z with 2025-08-26T21:37:13.6411556Z [ 2025-08-26T21:37:13.6411629Z scalar_t=float 2025-08-26T21:37:13.6411693Z ] 2025-08-26T21:37:13.6412308Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(791): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6412378Z with 2025-08-26T21:37:13.6412443Z [ 2025-08-26T21:37:13.6412525Z scalar_t=float 2025-08-26T21:37:13.6412589Z ] 2025-08-26T21:37:13.6413199Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(791): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6413270Z with 2025-08-26T21:37:13.6413334Z [ 2025-08-26T21:37:13.6413406Z scalar_t=float 2025-08-26T21:37:13.6413467Z ] 2025-08-26T21:37:13.6414053Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(791): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6414119Z with 2025-08-26T21:37:13.6414181Z [ 2025-08-26T21:37:13.6414303Z scalar_t=float 2025-08-26T21:37:13.6414368Z ] 2025-08-26T21:37:13.6414940Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(792): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6415006Z with 2025-08-26T21:37:13.6415083Z [ 2025-08-26T21:37:13.6415155Z scalar_t=float 2025-08-26T21:37:13.6415217Z ] 2025-08-26T21:37:13.6415832Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(792): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6415897Z with 2025-08-26T21:37:13.6415963Z [ 2025-08-26T21:37:13.6416044Z scalar_t=float 2025-08-26T21:37:13.6416148Z ] 2025-08-26T21:37:13.6416724Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(792): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6416795Z with 2025-08-26T21:37:13.6416873Z [ 2025-08-26T21:37:13.6416948Z scalar_t=float 2025-08-26T21:37:13.6417014Z ] 2025-08-26T21:37:13.6417595Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(793): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6417705Z with 2025-08-26T21:37:13.6417772Z [ 2025-08-26T21:37:13.6417847Z scalar_t=float 2025-08-26T21:37:13.6417920Z ] 2025-08-26T21:37:13.6418494Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(793): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6418560Z with 2025-08-26T21:37:13.6418645Z [ 2025-08-26T21:37:13.6418725Z scalar_t=float 2025-08-26T21:37:13.6418790Z ] 2025-08-26T21:37:13.6419371Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(793): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6419437Z with 2025-08-26T21:37:13.6419511Z [ 2025-08-26T21:37:13.6419585Z scalar_t=float 2025-08-26T21:37:13.6419654Z ] 2025-08-26T21:37:13.6420231Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(794): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6420298Z with 2025-08-26T21:37:13.6420373Z [ 2025-08-26T21:37:13.6420446Z scalar_t=float 2025-08-26T21:37:13.6420509Z ] 2025-08-26T21:37:13.6421079Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(794): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6421151Z with 2025-08-26T21:37:13.6421214Z [ 2025-08-26T21:37:13.6421292Z scalar_t=float 2025-08-26T21:37:13.6421696Z ] 2025-08-26T21:37:13.6422321Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(794): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6422393Z with 2025-08-26T21:37:13.6422504Z [ 2025-08-26T21:37:13.6422579Z scalar_t=float 2025-08-26T21:37:13.6422642Z ] 2025-08-26T21:37:13.6423211Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(795): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6423281Z with 2025-08-26T21:37:13.6423347Z [ 2025-08-26T21:37:13.6423423Z scalar_t=float 2025-08-26T21:37:13.6423492Z ] 2025-08-26T21:37:13.6424065Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(795): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6424165Z with 2025-08-26T21:37:13.6424227Z [ 2025-08-26T21:37:13.6424305Z scalar_t=float 2025-08-26T21:37:13.6424367Z ] 2025-08-26T21:37:13.6424940Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(795): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6425014Z with 2025-08-26T21:37:13.6425077Z [ 2025-08-26T21:37:13.6425149Z scalar_t=float 2025-08-26T21:37:13.6425222Z ] 2025-08-26T21:37:13.6425795Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(796): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6425866Z with 2025-08-26T21:37:13.6425935Z [ 2025-08-26T21:37:13.6426021Z scalar_t=float 2025-08-26T21:37:13.6426089Z ] 2025-08-26T21:37:13.6426664Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(797): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6426741Z with 2025-08-26T21:37:13.6426806Z [ 2025-08-26T21:37:13.6426884Z scalar_t=float 2025-08-26T21:37:13.6426987Z ] 2025-08-26T21:37:13.6427652Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(797): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6427722Z with 2025-08-26T21:37:13.6427789Z [ 2025-08-26T21:37:13.6427878Z scalar_t=float 2025-08-26T21:37:13.6427940Z ] 2025-08-26T21:37:13.6428511Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(797): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6428595Z with 2025-08-26T21:37:13.6428662Z [ 2025-08-26T21:37:13.6428736Z scalar_t=float 2025-08-26T21:37:13.6428799Z ] 2025-08-26T21:37:13.6429379Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(798): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6429447Z with 2025-08-26T21:37:13.6429514Z [ 2025-08-26T21:37:13.6429603Z scalar_t=float 2025-08-26T21:37:13.6429667Z ] 2025-08-26T21:37:13.6430236Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(798): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6430313Z with 2025-08-26T21:37:13.6430380Z [ 2025-08-26T21:37:13.6430454Z scalar_t=float 2025-08-26T21:37:13.6430516Z ] 2025-08-26T21:37:13.6431100Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(798): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6431205Z with 2025-08-26T21:37:13.6431272Z [ 2025-08-26T21:37:13.6431356Z scalar_t=float 2025-08-26T21:37:13.6431422Z ] 2025-08-26T21:37:13.6432391Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(799): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6432473Z with 2025-08-26T21:37:13.6432553Z [ 2025-08-26T21:37:13.6432631Z scalar_t=float 2025-08-26T21:37:13.6432737Z ] 2025-08-26T21:37:13.6433371Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(799): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6433441Z with 2025-08-26T21:37:13.6433509Z [ 2025-08-26T21:37:13.6433585Z scalar_t=float 2025-08-26T21:37:13.6433713Z ] 2025-08-26T21:37:13.6434291Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(799): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6434405Z with 2025-08-26T21:37:13.6434478Z [ 2025-08-26T21:37:13.6434551Z scalar_t=float 2025-08-26T21:37:13.6434617Z ] 2025-08-26T21:37:13.6435208Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(800): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6435278Z with 2025-08-26T21:37:13.6435344Z [ 2025-08-26T21:37:13.6435420Z scalar_t=float 2025-08-26T21:37:13.6435493Z ] 2025-08-26T21:37:13.6436069Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(800): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6436140Z with 2025-08-26T21:37:13.6436217Z [ 2025-08-26T21:37:13.6436297Z scalar_t=float 2025-08-26T21:37:13.6436363Z ] 2025-08-26T21:37:13.6436943Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(800): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6437049Z with 2025-08-26T21:37:13.6437114Z [ 2025-08-26T21:37:13.6437189Z scalar_t=float 2025-08-26T21:37:13.6437263Z ] 2025-08-26T21:37:13.6437840Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(801): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6437907Z with 2025-08-26T21:37:13.6437978Z [ 2025-08-26T21:37:13.6438051Z scalar_t=float 2025-08-26T21:37:13.6438114Z ] 2025-08-26T21:37:13.6438724Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(801): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6438806Z with 2025-08-26T21:37:13.6438869Z [ 2025-08-26T21:37:13.6438979Z scalar_t=float 2025-08-26T21:37:13.6439054Z ] 2025-08-26T21:37:13.6439638Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(801): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6439705Z with 2025-08-26T21:37:13.6439779Z [ 2025-08-26T21:37:13.6439855Z scalar_t=float 2025-08-26T21:37:13.6439920Z ] 2025-08-26T21:37:13.6440490Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(802): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6440566Z with 2025-08-26T21:37:13.6440627Z [ 2025-08-26T21:37:13.6440701Z scalar_t=float 2025-08-26T21:37:13.6440777Z ] 2025-08-26T21:37:13.6441385Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(802): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6441455Z with 2025-08-26T21:37:13.6441518Z [ 2025-08-26T21:37:13.6441602Z scalar_t=float 2025-08-26T21:37:13.6441702Z ] 2025-08-26T21:37:13.6442275Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(802): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6442354Z with 2025-08-26T21:37:13.6442417Z [ 2025-08-26T21:37:13.6442491Z scalar_t=float 2025-08-26T21:37:13.6442560Z ] 2025-08-26T21:37:13.6443129Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(803): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6443194Z with 2025-08-26T21:37:13.6443256Z [ 2025-08-26T21:37:13.6443376Z scalar_t=float 2025-08-26T21:37:13.6443441Z ] 2025-08-26T21:37:13.6444015Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(803): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6444087Z with 2025-08-26T21:37:13.6444191Z [ 2025-08-26T21:37:13.6444265Z scalar_t=float 2025-08-26T21:37:13.6444330Z ] 2025-08-26T21:37:13.6444946Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(803): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6445010Z with 2025-08-26T21:37:13.6445076Z [ 2025-08-26T21:37:13.6445158Z scalar_t=float 2025-08-26T21:37:13.6445220Z ] 2025-08-26T21:37:13.6445792Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(804): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6445868Z with 2025-08-26T21:37:13.6445932Z [ 2025-08-26T21:37:13.6446006Z scalar_t=float 2025-08-26T21:37:13.6446071Z ] 2025-08-26T21:37:13.6446645Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(804): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6446750Z with 2025-08-26T21:37:13.6446814Z [ 2025-08-26T21:37:13.6446894Z scalar_t=float 2025-08-26T21:37:13.6446959Z ] 2025-08-26T21:37:13.6447533Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(804): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6447607Z with 2025-08-26T21:37:13.6447671Z [ 2025-08-26T21:37:13.6447748Z scalar_t=float 2025-08-26T21:37:13.6447814Z ] 2025-08-26T21:37:13.6448405Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(805): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6448473Z with 2025-08-26T21:37:13.6448540Z [ 2025-08-26T21:37:13.6448634Z scalar_t=float 2025-08-26T21:37:13.6448700Z ] 2025-08-26T21:37:13.6449271Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(806): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6449338Z with 2025-08-26T21:37:13.6449416Z [ 2025-08-26T21:37:13.6449490Z scalar_t=float 2025-08-26T21:37:13.6449552Z ] 2025-08-26T21:37:13.6450177Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(806): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6450247Z with 2025-08-26T21:37:13.6450346Z [ 2025-08-26T21:37:13.6450465Z scalar_t=float 2025-08-26T21:37:13.6450543Z ] 2025-08-26T21:37:13.6451115Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(806): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6451217Z with 2025-08-26T21:37:13.6451296Z [ 2025-08-26T21:37:13.6451370Z scalar_t=float 2025-08-26T21:37:13.6451432Z ] 2025-08-26T21:37:13.6452015Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(807): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6452082Z with 2025-08-26T21:37:13.6452146Z [ 2025-08-26T21:37:13.6452218Z scalar_t=float 2025-08-26T21:37:13.6452291Z ] 2025-08-26T21:37:13.6452864Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(807): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6452977Z with 2025-08-26T21:37:13.6453053Z [ 2025-08-26T21:37:13.6453133Z scalar_t=float 2025-08-26T21:37:13.6453197Z ] 2025-08-26T21:37:13.6453776Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(807): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6453842Z with 2025-08-26T21:37:13.6453907Z [ 2025-08-26T21:37:13.6453980Z scalar_t=float 2025-08-26T21:37:13.6454055Z ] 2025-08-26T21:37:13.6454633Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(808): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6454703Z with 2025-08-26T21:37:13.6454782Z [ 2025-08-26T21:37:13.6454853Z scalar_t=float 2025-08-26T21:37:13.6454914Z ] 2025-08-26T21:37:13.6455487Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(808): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6455595Z with 2025-08-26T21:37:13.6455661Z [ 2025-08-26T21:37:13.6455735Z scalar_t=float 2025-08-26T21:37:13.6455861Z ] 2025-08-26T21:37:13.6456471Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(808): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6456546Z with 2025-08-26T21:37:13.6456623Z [ 2025-08-26T21:37:13.6456697Z scalar_t=float 2025-08-26T21:37:13.6456761Z ] 2025-08-26T21:37:13.6457337Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(809): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6457417Z with 2025-08-26T21:37:13.6457484Z [ 2025-08-26T21:37:13.6457562Z scalar_t=float 2025-08-26T21:37:13.6457633Z ] 2025-08-26T21:37:13.6458206Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(809): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6458275Z with 2025-08-26T21:37:13.6458336Z [ 2025-08-26T21:37:13.6458423Z scalar_t=float 2025-08-26T21:37:13.6458486Z ] 2025-08-26T21:37:13.6459051Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(809): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6459125Z with 2025-08-26T21:37:13.6459187Z [ 2025-08-26T21:37:13.6459257Z scalar_t=float 2025-08-26T21:37:13.6459321Z ] 2025-08-26T21:37:13.6459942Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(810): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6460015Z with 2025-08-26T21:37:13.6460081Z [ 2025-08-26T21:37:13.6460162Z scalar_t=float 2025-08-26T21:37:13.6460225Z ] 2025-08-26T21:37:13.6460828Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(810): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6460909Z with 2025-08-26T21:37:13.6460975Z [ 2025-08-26T21:37:13.6461050Z scalar_t=float 2025-08-26T21:37:13.6461116Z ] 2025-08-26T21:37:13.6461769Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(810): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6461845Z with 2025-08-26T21:37:13.6461910Z [ 2025-08-26T21:37:13.6461994Z scalar_t=float 2025-08-26T21:37:13.6462062Z ] 2025-08-26T21:37:13.6462684Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(811): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6462762Z with 2025-08-26T21:37:13.6462827Z [ 2025-08-26T21:37:13.6462903Z scalar_t=float 2025-08-26T21:37:13.6462972Z ] 2025-08-26T21:37:13.6463555Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(811): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6463622Z with 2025-08-26T21:37:13.6463684Z [ 2025-08-26T21:37:13.6463767Z scalar_t=float 2025-08-26T21:37:13.6463833Z ] 2025-08-26T21:37:13.6464411Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(811): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6464477Z with 2025-08-26T21:37:13.6464553Z [ 2025-08-26T21:37:13.6464627Z scalar_t=float 2025-08-26T21:37:13.6464693Z ] 2025-08-26T21:37:13.6465275Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(812): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6465378Z with 2025-08-26T21:37:13.6465445Z [ 2025-08-26T21:37:13.6465528Z scalar_t=float 2025-08-26T21:37:13.6465601Z ] 2025-08-26T21:37:13.6466172Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(812): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6466239Z with 2025-08-26T21:37:13.6466313Z [ 2025-08-26T21:37:13.6466392Z scalar_t=float 2025-08-26T21:37:13.6466458Z ] 2025-08-26T21:37:13.6467076Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(812): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6467145Z with 2025-08-26T21:37:13.6467207Z [ 2025-08-26T21:37:13.6467281Z scalar_t=float 2025-08-26T21:37:13.6467352Z ] 2025-08-26T21:37:13.6467965Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(813): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6468034Z with 2025-08-26T21:37:13.6468109Z [ 2025-08-26T21:37:13.6468181Z scalar_t=float 2025-08-26T21:37:13.6468247Z ] 2025-08-26T21:37:13.6468822Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(813): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6468889Z with 2025-08-26T21:37:13.6468955Z [ 2025-08-26T21:37:13.6469029Z scalar_t=float 2025-08-26T21:37:13.6469100Z ] 2025-08-26T21:37:13.6469713Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(813): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6469781Z with 2025-08-26T21:37:13.6469854Z [ 2025-08-26T21:37:13.6469932Z scalar_t=float 2025-08-26T21:37:13.6470029Z ] 2025-08-26T21:37:13.6470608Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(814): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6470682Z with 2025-08-26T21:37:13.6470747Z [ 2025-08-26T21:37:13.6470822Z scalar_t=float 2025-08-26T21:37:13.6470901Z ] 2025-08-26T21:37:13.6471474Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(815): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6471540Z with 2025-08-26T21:37:13.6471653Z [ 2025-08-26T21:37:13.6471728Z scalar_t=float 2025-08-26T21:37:13.6471793Z ] 2025-08-26T21:37:13.6472365Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(815): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6472449Z with 2025-08-26T21:37:13.6472513Z [ 2025-08-26T21:37:13.6472586Z scalar_t=float 2025-08-26T21:37:13.6472662Z ] 2025-08-26T21:37:13.6473309Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(815): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6473375Z with 2025-08-26T21:37:13.6473451Z [ 2025-08-26T21:37:13.6473526Z scalar_t=float 2025-08-26T21:37:13.6473589Z ] 2025-08-26T21:37:13.6474223Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(816): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6474299Z with 2025-08-26T21:37:13.6474363Z [ 2025-08-26T21:37:13.6474435Z scalar_t=float 2025-08-26T21:37:13.6474506Z ] 2025-08-26T21:37:13.6475077Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(816): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6475552Z with 2025-08-26T21:37:13.6475617Z [ 2025-08-26T21:37:13.6475701Z scalar_t=float 2025-08-26T21:37:13.6475764Z ] 2025-08-26T21:37:13.6476336Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(816): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6476411Z with 2025-08-26T21:37:13.6476478Z [ 2025-08-26T21:37:13.6476550Z scalar_t=float 2025-08-26T21:37:13.6476616Z ] 2025-08-26T21:37:13.6477200Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(817): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6477264Z with 2025-08-26T21:37:13.6477325Z [ 2025-08-26T21:37:13.6477425Z scalar_t=float 2025-08-26T21:37:13.6477488Z ] 2025-08-26T21:37:13.6478057Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(817): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6478130Z with 2025-08-26T21:37:13.6478193Z [ 2025-08-26T21:37:13.6478267Z scalar_t=float 2025-08-26T21:37:13.6478330Z ] 2025-08-26T21:37:13.6478992Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(817): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6479060Z with 2025-08-26T21:37:13.6479127Z [ 2025-08-26T21:37:13.6479251Z scalar_t=float 2025-08-26T21:37:13.6479320Z ] 2025-08-26T21:37:13.6479898Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(818): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6480009Z with 2025-08-26T21:37:13.6480075Z [ 2025-08-26T21:37:13.6480154Z scalar_t=float 2025-08-26T21:37:13.6480215Z ] 2025-08-26T21:37:13.6480800Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(818): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6480867Z with 2025-08-26T21:37:13.6480932Z [ 2025-08-26T21:37:13.6481017Z scalar_t=float 2025-08-26T21:37:13.6481079Z ] 2025-08-26T21:37:13.6481656Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(818): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6481757Z with 2025-08-26T21:37:13.6481830Z [ 2025-08-26T21:37:13.6481907Z scalar_t=float 2025-08-26T21:37:13.6481969Z ] 2025-08-26T21:37:13.6482555Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(819): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6482623Z with 2025-08-26T21:37:13.6482687Z [ 2025-08-26T21:37:13.6482770Z scalar_t=float 2025-08-26T21:37:13.6482837Z ] 2025-08-26T21:37:13.6483411Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(819): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6483486Z with 2025-08-26T21:37:13.6483561Z [ 2025-08-26T21:37:13.6483636Z scalar_t=float 2025-08-26T21:37:13.6483707Z ] 2025-08-26T21:37:13.6484324Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(819): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6484395Z with 2025-08-26T21:37:13.6484459Z [ 2025-08-26T21:37:13.6484577Z scalar_t=float 2025-08-26T21:37:13.6484681Z ] 2025-08-26T21:37:13.6485245Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(820): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6485312Z with 2025-08-26T21:37:13.6485389Z [ 2025-08-26T21:37:13.6485465Z scalar_t=float 2025-08-26T21:37:13.6485532Z ] 2025-08-26T21:37:13.6486109Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(820): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6486174Z with 2025-08-26T21:37:13.6486240Z [ 2025-08-26T21:37:13.6486315Z scalar_t=float 2025-08-26T21:37:13.6486385Z ] 2025-08-26T21:37:13.6486962Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(820): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6487029Z with 2025-08-26T21:37:13.6487107Z [ 2025-08-26T21:37:13.6487183Z scalar_t=float 2025-08-26T21:37:13.6487248Z ] 2025-08-26T21:37:13.6487814Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(821): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6487885Z with 2025-08-26T21:37:13.6487952Z [ 2025-08-26T21:37:13.6488028Z scalar_t=float 2025-08-26T21:37:13.6488099Z ] 2025-08-26T21:37:13.6488703Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(821): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6488776Z with 2025-08-26T21:37:13.6488853Z [ 2025-08-26T21:37:13.6488926Z scalar_t=float 2025-08-26T21:37:13.6488989Z ] 2025-08-26T21:37:13.6489598Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(821): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6489677Z with 2025-08-26T21:37:13.6489743Z [ 2025-08-26T21:37:13.6489823Z scalar_t=float 2025-08-26T21:37:13.6489932Z ] 2025-08-26T21:37:13.6490550Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(822): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6490621Z with 2025-08-26T21:37:13.6490690Z [ 2025-08-26T21:37:13.6490765Z scalar_t=float 2025-08-26T21:37:13.6490872Z ] 2025-08-26T21:37:13.6491444Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(822): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6491517Z with 2025-08-26T21:37:13.6491585Z [ 2025-08-26T21:37:13.6491662Z scalar_t=float 2025-08-26T21:37:13.6491732Z ] 2025-08-26T21:37:13.6492303Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(822): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6492369Z with 2025-08-26T21:37:13.6492433Z [ 2025-08-26T21:37:13.6492514Z scalar_t=float 2025-08-26T21:37:13.6492577Z ] 2025-08-26T21:37:13.6493152Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(823): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6493236Z with 2025-08-26T21:37:13.6493302Z [ 2025-08-26T21:37:13.6493380Z scalar_t=float 2025-08-26T21:37:13.6493441Z ] 2025-08-26T21:37:13.6494016Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(824): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6494120Z with 2025-08-26T21:37:13.6494185Z [ 2025-08-26T21:37:13.6494271Z scalar_t=float 2025-08-26T21:37:13.6494332Z ] 2025-08-26T21:37:13.6494900Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(824): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6494974Z with 2025-08-26T21:37:13.6495039Z [ 2025-08-26T21:37:13.6495111Z scalar_t=float 2025-08-26T21:37:13.6495178Z ] 2025-08-26T21:37:13.6495801Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(824): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6495871Z with 2025-08-26T21:37:13.6495933Z [ 2025-08-26T21:37:13.6496049Z scalar_t=float 2025-08-26T21:37:13.6496113Z ] 2025-08-26T21:37:13.6496683Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(825): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6496766Z with 2025-08-26T21:37:13.6496832Z [ 2025-08-26T21:37:13.6496908Z scalar_t=float 2025-08-26T21:37:13.6496982Z ] 2025-08-26T21:37:13.6497564Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(825): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6497632Z with 2025-08-26T21:37:13.6497701Z [ 2025-08-26T21:37:13.6497786Z scalar_t=float 2025-08-26T21:37:13.6497853Z ] 2025-08-26T21:37:13.6498468Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(825): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6498542Z with 2025-08-26T21:37:13.6498629Z [ 2025-08-26T21:37:13.6498743Z scalar_t=float 2025-08-26T21:37:13.6498808Z ] 2025-08-26T21:37:13.6499397Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(826): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6499465Z with 2025-08-26T21:37:13.6499535Z [ 2025-08-26T21:37:13.6499620Z scalar_t=float 2025-08-26T21:37:13.6499688Z ] 2025-08-26T21:37:13.6500259Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(826): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6500361Z with 2025-08-26T21:37:13.6500441Z [ 2025-08-26T21:37:13.6500514Z scalar_t=float 2025-08-26T21:37:13.6500579Z ] 2025-08-26T21:37:13.6501164Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(826): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6501232Z with 2025-08-26T21:37:13.6501331Z [ 2025-08-26T21:37:13.6501407Z scalar_t=float 2025-08-26T21:37:13.6501479Z ] 2025-08-26T21:37:13.6502081Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(827): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6502155Z with 2025-08-26T21:37:13.6502231Z [ 2025-08-26T21:37:13.6502305Z scalar_t=float 2025-08-26T21:37:13.6502370Z ] 2025-08-26T21:37:13.6502952Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(827): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6503023Z with 2025-08-26T21:37:13.6503088Z [ 2025-08-26T21:37:13.6503162Z scalar_t=float 2025-08-26T21:37:13.6503237Z ] 2025-08-26T21:37:13.6503854Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(827): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6503923Z with 2025-08-26T21:37:13.6503997Z [ 2025-08-26T21:37:13.6504071Z scalar_t=float 2025-08-26T21:37:13.6504134Z ] 2025-08-26T21:37:13.6504707Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(828): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6504784Z with 2025-08-26T21:37:13.6504848Z [ 2025-08-26T21:37:13.6504922Z scalar_t=float 2025-08-26T21:37:13.6505001Z ] 2025-08-26T21:37:13.6505573Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(828): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6505644Z with 2025-08-26T21:37:13.6505724Z [ 2025-08-26T21:37:13.6505805Z scalar_t=float 2025-08-26T21:37:13.6505869Z ] 2025-08-26T21:37:13.6506441Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(828): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6506525Z with 2025-08-26T21:37:13.6506589Z [ 2025-08-26T21:37:13.6506668Z scalar_t=float 2025-08-26T21:37:13.6506743Z ] 2025-08-26T21:37:13.6507353Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(829): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6507463Z with 2025-08-26T21:37:13.6507570Z [ 2025-08-26T21:37:13.6507657Z scalar_t=float 2025-08-26T21:37:13.6507724Z ] 2025-08-26T21:37:13.6508327Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(829): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6508405Z with 2025-08-26T21:37:13.6508467Z [ 2025-08-26T21:37:13.6508545Z scalar_t=float 2025-08-26T21:37:13.6508619Z ] 2025-08-26T21:37:13.6509196Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(829): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6509261Z with 2025-08-26T21:37:13.6509327Z [ 2025-08-26T21:37:13.6509413Z scalar_t=float 2025-08-26T21:37:13.6509479Z ] 2025-08-26T21:37:13.6510050Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(830): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6510158Z with 2025-08-26T21:37:13.6510227Z [ 2025-08-26T21:37:13.6510300Z scalar_t=float 2025-08-26T21:37:13.6510363Z ] 2025-08-26T21:37:13.6510952Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(830): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6511018Z with 2025-08-26T21:37:13.6511079Z [ 2025-08-26T21:37:13.6511158Z scalar_t=float 2025-08-26T21:37:13.6511225Z ] 2025-08-26T21:37:13.6511798Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(830): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6511870Z with 2025-08-26T21:37:13.6511932Z [ 2025-08-26T21:37:13.6512004Z scalar_t=float 2025-08-26T21:37:13.6512067Z ] 2025-08-26T21:37:13.6512646Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(831): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6512747Z with 2025-08-26T21:37:13.6512849Z [ 2025-08-26T21:37:13.6512931Z scalar_t=float 2025-08-26T21:37:13.6512997Z ] 2025-08-26T21:37:13.6513605Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(831): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6513733Z with 2025-08-26T21:37:13.6513800Z [ 2025-08-26T21:37:13.6513872Z scalar_t=float 2025-08-26T21:37:13.6513934Z ] 2025-08-26T21:37:13.6514521Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(831): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6514593Z with 2025-08-26T21:37:13.6514661Z [ 2025-08-26T21:37:13.6514745Z scalar_t=float 2025-08-26T21:37:13.6514817Z ] 2025-08-26T21:37:13.6515397Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(832): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6515465Z with 2025-08-26T21:37:13.6515542Z [ 2025-08-26T21:37:13.6515616Z scalar_t=float 2025-08-26T21:37:13.6515678Z ] 2025-08-26T21:37:13.6516254Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(833): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6516321Z with 2025-08-26T21:37:13.6516388Z [ 2025-08-26T21:37:13.6516465Z scalar_t=float 2025-08-26T21:37:13.6516527Z ] 2025-08-26T21:37:13.6517135Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(833): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6517201Z with 2025-08-26T21:37:13.6517272Z [ 2025-08-26T21:37:13.6517346Z scalar_t=float 2025-08-26T21:37:13.6517407Z ] 2025-08-26T21:37:13.6518015Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(833): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6518088Z with 2025-08-26T21:37:13.6518151Z [ 2025-08-26T21:37:13.6518226Z scalar_t=float 2025-08-26T21:37:13.6518303Z ] 2025-08-26T21:37:13.6518952Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(834): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6519020Z with 2025-08-26T21:37:13.6519091Z [ 2025-08-26T21:37:13.6519166Z scalar_t=float 2025-08-26T21:37:13.6519271Z ] 2025-08-26T21:37:13.6519853Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(834): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6519918Z with 2025-08-26T21:37:13.6519982Z [ 2025-08-26T21:37:13.6520060Z scalar_t=float 2025-08-26T21:37:13.6520137Z ] 2025-08-26T21:37:13.6520711Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(834): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6520778Z with 2025-08-26T21:37:13.6520854Z [ 2025-08-26T21:37:13.6520934Z scalar_t=float 2025-08-26T21:37:13.6521001Z ] 2025-08-26T21:37:13.6521567Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(835): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6521642Z with 2025-08-26T21:37:13.6521710Z [ 2025-08-26T21:37:13.6521783Z scalar_t=float 2025-08-26T21:37:13.6521860Z ] 2025-08-26T21:37:13.6522435Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(835): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6522536Z with 2025-08-26T21:37:13.6522612Z [ 2025-08-26T21:37:13.6522689Z scalar_t=float 2025-08-26T21:37:13.6522760Z ] 2025-08-26T21:37:13.6523327Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(835): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6523406Z with 2025-08-26T21:37:13.6523473Z [ 2025-08-26T21:37:13.6523553Z scalar_t=float 2025-08-26T21:37:13.6523628Z ] 2025-08-26T21:37:13.6524243Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(836): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6524310Z with 2025-08-26T21:37:13.6524376Z [ 2025-08-26T21:37:13.6524461Z scalar_t=float 2025-08-26T21:37:13.6524527Z ] 2025-08-26T21:37:13.6525140Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(836): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6525217Z with 2025-08-26T21:37:13.6525282Z [ 2025-08-26T21:37:13.6525361Z scalar_t=float 2025-08-26T21:37:13.6525431Z ] 2025-08-26T21:37:13.6526006Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(836): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6526069Z with 2025-08-26T21:37:13.6526132Z [ 2025-08-26T21:37:13.6526215Z scalar_t=float 2025-08-26T21:37:13.6526315Z ] 2025-08-26T21:37:13.6526887Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(837): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6526962Z with 2025-08-26T21:37:13.6527063Z [ 2025-08-26T21:37:13.6527139Z scalar_t=float 2025-08-26T21:37:13.6527203Z ] 2025-08-26T21:37:13.6527788Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(837): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6527853Z with 2025-08-26T21:37:13.6527916Z [ 2025-08-26T21:37:13.6527997Z scalar_t=float 2025-08-26T21:37:13.6528059Z ] 2025-08-26T21:37:13.6528631Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(837): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6528984Z with 2025-08-26T21:37:13.6529050Z [ 2025-08-26T21:37:13.6529128Z scalar_t=float 2025-08-26T21:37:13.6529193Z ] 2025-08-26T21:37:13.6529773Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(838): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6529882Z with 2025-08-26T21:37:13.6529945Z [ 2025-08-26T21:37:13.6530027Z scalar_t=float 2025-08-26T21:37:13.6530091Z ] 2025-08-26T21:37:13.6530700Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(838): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6530774Z with 2025-08-26T21:37:13.6530842Z [ 2025-08-26T21:37:13.6530915Z scalar_t=float 2025-08-26T21:37:13.6530978Z ] 2025-08-26T21:37:13.6531561Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(838): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6531626Z with 2025-08-26T21:37:13.6531691Z [ 2025-08-26T21:37:13.6531774Z scalar_t=float 2025-08-26T21:37:13.6531881Z ] 2025-08-26T21:37:13.6532457Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(839): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6532524Z with 2025-08-26T21:37:13.6532596Z [ 2025-08-26T21:37:13.6532670Z scalar_t=float 2025-08-26T21:37:13.6532733Z ] 2025-08-26T21:37:13.6533312Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(839): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6533382Z with 2025-08-26T21:37:13.6533446Z [ 2025-08-26T21:37:13.6533524Z scalar_t=float 2025-08-26T21:37:13.6533604Z ] 2025-08-26T21:37:13.6534175Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(839): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6534244Z with 2025-08-26T21:37:13.6534318Z [ 2025-08-26T21:37:13.6534393Z scalar_t=float 2025-08-26T21:37:13.6534457Z ] 2025-08-26T21:37:13.6535036Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(840): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6535100Z with 2025-08-26T21:37:13.6535162Z [ 2025-08-26T21:37:13.6535239Z scalar_t=float 2025-08-26T21:37:13.6535309Z ] 2025-08-26T21:37:13.6535960Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(840): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6536066Z with 2025-08-26T21:37:13.6536143Z [ 2025-08-26T21:37:13.6536223Z scalar_t=float 2025-08-26T21:37:13.6536289Z ] 2025-08-26T21:37:13.6536904Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(840): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6536975Z with 2025-08-26T21:37:13.6537041Z [ 2025-08-26T21:37:13.6537114Z scalar_t=float 2025-08-26T21:37:13.6537188Z ] 2025-08-26T21:37:13.6537761Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(841): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6537825Z with 2025-08-26T21:37:13.6537903Z [ 2025-08-26T21:37:13.6537977Z scalar_t=float 2025-08-26T21:37:13.6538045Z ] 2025-08-26T21:37:13.6538631Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(842): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6538954Z with 2025-08-26T21:37:13.6539023Z [ 2025-08-26T21:37:13.6539100Z scalar_t=float 2025-08-26T21:37:13.6539183Z ] 2025-08-26T21:37:13.6539758Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(842): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6539827Z with 2025-08-26T21:37:13.6539904Z [ 2025-08-26T21:37:13.6539980Z scalar_t=float 2025-08-26T21:37:13.6540045Z ] 2025-08-26T21:37:13.6540618Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(842): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6540704Z with 2025-08-26T21:37:13.6540769Z [ 2025-08-26T21:37:13.6540847Z scalar_t=float 2025-08-26T21:37:13.6540921Z ] 2025-08-26T21:37:13.6541489Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(843): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6541592Z with 2025-08-26T21:37:13.6541657Z [ 2025-08-26T21:37:13.6541746Z scalar_t=float 2025-08-26T21:37:13.6541813Z ] 2025-08-26T21:37:13.6542390Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(843): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6542463Z with 2025-08-26T21:37:13.6542528Z [ 2025-08-26T21:37:13.6542605Z scalar_t=float 2025-08-26T21:37:13.6542683Z ] 2025-08-26T21:37:13.6543258Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(843): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6543327Z with 2025-08-26T21:37:13.6543394Z [ 2025-08-26T21:37:13.6543477Z scalar_t=float 2025-08-26T21:37:13.6543542Z ] 2025-08-26T21:37:13.6544110Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(844): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6544187Z with 2025-08-26T21:37:13.6544253Z [ 2025-08-26T21:37:13.6544330Z scalar_t=float 2025-08-26T21:37:13.6544402Z ] 2025-08-26T21:37:13.6544984Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(844): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6545048Z with 2025-08-26T21:37:13.6545115Z [ 2025-08-26T21:37:13.6545198Z scalar_t=float 2025-08-26T21:37:13.6545258Z ] 2025-08-26T21:37:13.6545860Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(844): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6545933Z with 2025-08-26T21:37:13.6545997Z [ 2025-08-26T21:37:13.6546069Z scalar_t=float 2025-08-26T21:37:13.6546135Z ] 2025-08-26T21:37:13.6546850Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(845): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6546919Z with 2025-08-26T21:37:13.6547019Z [ 2025-08-26T21:37:13.6547106Z scalar_t=float 2025-08-26T21:37:13.6547168Z ] 2025-08-26T21:37:13.6547739Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(845): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6547815Z with 2025-08-26T21:37:13.6547878Z [ 2025-08-26T21:37:13.6548186Z scalar_t=float 2025-08-26T21:37:13.6548252Z ] 2025-08-26T21:37:13.6548832Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(845): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6548903Z with 2025-08-26T21:37:13.6548971Z [ 2025-08-26T21:37:13.6549057Z scalar_t=float 2025-08-26T21:37:13.6549123Z ] 2025-08-26T21:37:13.6549698Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(846): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6549765Z with 2025-08-26T21:37:13.6549832Z [ 2025-08-26T21:37:13.6549905Z scalar_t=float 2025-08-26T21:37:13.6549971Z ] 2025-08-26T21:37:13.6550546Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(846): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6550617Z with 2025-08-26T21:37:13.6550684Z [ 2025-08-26T21:37:13.6550759Z scalar_t=float 2025-08-26T21:37:13.6550834Z ] 2025-08-26T21:37:13.6551407Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(846): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6551512Z with 2025-08-26T21:37:13.6551584Z [ 2025-08-26T21:37:13.6551656Z scalar_t=float 2025-08-26T21:37:13.6551722Z ] 2025-08-26T21:37:13.6552310Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(847): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6552374Z with 2025-08-26T21:37:13.6552436Z [ 2025-08-26T21:37:13.6552508Z scalar_t=float 2025-08-26T21:37:13.6552576Z ] 2025-08-26T21:37:13.6553147Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(847): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6553212Z with 2025-08-26T21:37:13.6553283Z [ 2025-08-26T21:37:13.6553359Z scalar_t=float 2025-08-26T21:37:13.6553423Z ] 2025-08-26T21:37:13.6554064Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(847): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6554134Z with 2025-08-26T21:37:13.6554203Z [ 2025-08-26T21:37:13.6554284Z scalar_t=float 2025-08-26T21:37:13.6554363Z ] 2025-08-26T21:37:13.6554935Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(848): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6554998Z with 2025-08-26T21:37:13.6555075Z [ 2025-08-26T21:37:13.6555153Z scalar_t=float 2025-08-26T21:37:13.6555255Z ] 2025-08-26T21:37:13.6555830Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(848): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6555904Z with 2025-08-26T21:37:13.6556002Z [ 2025-08-26T21:37:13.6556082Z scalar_t=float 2025-08-26T21:37:13.6556160Z ] 2025-08-26T21:37:13.6556733Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(848): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6556797Z with 2025-08-26T21:37:13.6556865Z [ 2025-08-26T21:37:13.6556938Z scalar_t=float 2025-08-26T21:37:13.6557004Z ] 2025-08-26T21:37:13.6557582Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(849): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6557880Z with 2025-08-26T21:37:13.6557948Z [ 2025-08-26T21:37:13.6558026Z scalar_t=float 2025-08-26T21:37:13.6558096Z ] 2025-08-26T21:37:13.6558672Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(849): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6558743Z with 2025-08-26T21:37:13.6558806Z [ 2025-08-26T21:37:13.6558891Z scalar_t=float 2025-08-26T21:37:13.6558956Z ] 2025-08-26T21:37:13.6559530Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(849): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6559609Z with 2025-08-26T21:37:13.6559676Z [ 2025-08-26T21:37:13.6559749Z scalar_t=float 2025-08-26T21:37:13.6559822Z ] 2025-08-26T21:37:13.6560403Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(850): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6560467Z with 2025-08-26T21:37:13.6560530Z [ 2025-08-26T21:37:13.6560608Z scalar_t=float 2025-08-26T21:37:13.6560713Z ] 2025-08-26T21:37:13.6561281Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(851): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6561359Z with 2025-08-26T21:37:13.6561423Z [ 2025-08-26T21:37:13.6561496Z scalar_t=float 2025-08-26T21:37:13.6561557Z ] 2025-08-26T21:37:13.6562141Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(851): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6562204Z with 2025-08-26T21:37:13.6562267Z [ 2025-08-26T21:37:13.6562358Z scalar_t=float 2025-08-26T21:37:13.6562424Z ] 2025-08-26T21:37:13.6563087Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(851): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6563168Z with 2025-08-26T21:37:13.6563237Z [ 2025-08-26T21:37:13.6563352Z scalar_t=float 2025-08-26T21:37:13.6563422Z ] 2025-08-26T21:37:13.6564008Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(852): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6564073Z with 2025-08-26T21:37:13.6564136Z [ 2025-08-26T21:37:13.6564221Z scalar_t=float 2025-08-26T21:37:13.6564285Z ] 2025-08-26T21:37:13.6564855Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(852): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6564981Z with 2025-08-26T21:37:13.6565045Z [ 2025-08-26T21:37:13.6565118Z scalar_t=float 2025-08-26T21:37:13.6565180Z ] 2025-08-26T21:37:13.6565803Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(852): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6565870Z with 2025-08-26T21:37:13.6565932Z [ 2025-08-26T21:37:13.6566015Z scalar_t=float 2025-08-26T21:37:13.6566076Z ] 2025-08-26T21:37:13.6566643Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(853): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6566712Z with 2025-08-26T21:37:13.6566789Z [ 2025-08-26T21:37:13.6566864Z scalar_t=float 2025-08-26T21:37:13.6566929Z ] 2025-08-26T21:37:13.6567745Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(853): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6567814Z with 2025-08-26T21:37:13.6567878Z [ 2025-08-26T21:37:13.6567955Z scalar_t=float 2025-08-26T21:37:13.6568037Z ] 2025-08-26T21:37:13.6568608Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(853): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6568678Z with 2025-08-26T21:37:13.6568761Z [ 2025-08-26T21:37:13.6568839Z scalar_t=float 2025-08-26T21:37:13.6568904Z ] 2025-08-26T21:37:13.6569497Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(854): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6569564Z with 2025-08-26T21:37:13.6569630Z [ 2025-08-26T21:37:13.6569709Z scalar_t=float 2025-08-26T21:37:13.6569783Z ] 2025-08-26T21:37:13.6570358Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(854): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6570469Z with 2025-08-26T21:37:13.6570541Z [ 2025-08-26T21:37:13.6570615Z scalar_t=float 2025-08-26T21:37:13.6570676Z ] 2025-08-26T21:37:13.6571245Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(854): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6571319Z with 2025-08-26T21:37:13.6571384Z [ 2025-08-26T21:37:13.6571465Z scalar_t=float 2025-08-26T21:37:13.6571539Z ] 2025-08-26T21:37:13.6572107Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(855): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6572176Z with 2025-08-26T21:37:13.6572250Z [ 2025-08-26T21:37:13.6572330Z scalar_t=float 2025-08-26T21:37:13.6572393Z ] 2025-08-26T21:37:13.6572964Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(855): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6573039Z with 2025-08-26T21:37:13.6573104Z [ 2025-08-26T21:37:13.6573177Z scalar_t=float 2025-08-26T21:37:13.6573247Z ] 2025-08-26T21:37:13.6573816Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(855): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6573881Z with 2025-08-26T21:37:13.6573961Z [ 2025-08-26T21:37:13.6574031Z scalar_t=float 2025-08-26T21:37:13.6574093Z ] 2025-08-26T21:37:13.6574888Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(856): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6574976Z with 2025-08-26T21:37:13.6575041Z [ 2025-08-26T21:37:13.6575121Z scalar_t=float 2025-08-26T21:37:13.6575231Z ] 2025-08-26T21:37:13.6575807Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(856): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6575879Z with 2025-08-26T21:37:13.6575945Z [ 2025-08-26T21:37:13.6576032Z scalar_t=float 2025-08-26T21:37:13.6576096Z ] 2025-08-26T21:37:13.6576667Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(856): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6576748Z with 2025-08-26T21:37:13.6577008Z [ 2025-08-26T21:37:13.6577091Z scalar_t=float 2025-08-26T21:37:13.6577155Z ] 2025-08-26T21:37:13.6577743Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(857): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6577813Z with 2025-08-26T21:37:13.6577879Z [ 2025-08-26T21:37:13.6577968Z scalar_t=float 2025-08-26T21:37:13.6578030Z ] 2025-08-26T21:37:13.6578604Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(857): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6578679Z with 2025-08-26T21:37:13.6578742Z [ 2025-08-26T21:37:13.6578813Z scalar_t=float 2025-08-26T21:37:13.6578878Z ] 2025-08-26T21:37:13.6579461Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(857): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6579530Z with 2025-08-26T21:37:13.6579594Z [ 2025-08-26T21:37:13.6579683Z scalar_t=float 2025-08-26T21:37:13.6579747Z ] 2025-08-26T21:37:13.6580318Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(858): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6580429Z with 2025-08-26T21:37:13.6580493Z [ 2025-08-26T21:37:13.6580566Z scalar_t=float 2025-08-26T21:37:13.6580628Z ] 2025-08-26T21:37:13.6581209Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(858): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6581278Z with 2025-08-26T21:37:13.6581342Z [ 2025-08-26T21:37:13.6581428Z scalar_t=float 2025-08-26T21:37:13.6581491Z ] 2025-08-26T21:37:13.6582062Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(858): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6582133Z with 2025-08-26T21:37:13.6582208Z [ 2025-08-26T21:37:13.6582285Z scalar_t=float 2025-08-26T21:37:13.6582350Z ] 2025-08-26T21:37:13.6582933Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(859): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6582998Z with 2025-08-26T21:37:13.6583061Z [ 2025-08-26T21:37:13.6583142Z scalar_t=float 2025-08-26T21:37:13.6583206Z ] 2025-08-26T21:37:13.6583778Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(860): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6583850Z with 2025-08-26T21:37:13.6583923Z [ 2025-08-26T21:37:13.6584034Z scalar_t=float 2025-08-26T21:37:13.6584098Z ] 2025-08-26T21:37:13.6584675Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(860): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6585112Z with 2025-08-26T21:37:13.6585185Z [ 2025-08-26T21:37:13.6585263Z scalar_t=float 2025-08-26T21:37:13.6585341Z ] 2025-08-26T21:37:13.6585921Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(860): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6585988Z with 2025-08-26T21:37:13.6586067Z [ 2025-08-26T21:37:13.6586144Z scalar_t=float 2025-08-26T21:37:13.6586207Z ] 2025-08-26T21:37:13.6586788Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(861): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6587038Z with 2025-08-26T21:37:13.6587103Z [ 2025-08-26T21:37:13.6587174Z scalar_t=float 2025-08-26T21:37:13.6587244Z ] 2025-08-26T21:37:13.6587820Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(861): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6587887Z with 2025-08-26T21:37:13.6587958Z [ 2025-08-26T21:37:13.6588034Z scalar_t=float 2025-08-26T21:37:13.6588096Z ] 2025-08-26T21:37:13.6588670Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(861): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6588747Z with 2025-08-26T21:37:13.6588812Z [ 2025-08-26T21:37:13.6588889Z scalar_t=float 2025-08-26T21:37:13.6588956Z ] 2025-08-26T21:37:13.6589534Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(862): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6589602Z with 2025-08-26T21:37:13.6589672Z [ 2025-08-26T21:37:13.6589786Z scalar_t=float 2025-08-26T21:37:13.6589851Z ] 2025-08-26T21:37:13.6601410Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(862): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6601550Z with 2025-08-26T21:37:13.6601636Z [ 2025-08-26T21:37:13.6601724Z scalar_t=float 2025-08-26T21:37:13.6601791Z ] 2025-08-26T21:37:13.6602416Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(862): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6602488Z with 2025-08-26T21:37:13.6602562Z [ 2025-08-26T21:37:13.6602641Z scalar_t=float 2025-08-26T21:37:13.6602722Z ] 2025-08-26T21:37:13.6603379Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(863): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6603492Z with 2025-08-26T21:37:13.6603573Z [ 2025-08-26T21:37:13.6603654Z scalar_t=float 2025-08-26T21:37:13.6603717Z ] 2025-08-26T21:37:13.6604382Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(863): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6604447Z with 2025-08-26T21:37:13.6604510Z [ 2025-08-26T21:37:13.6604588Z scalar_t=float 2025-08-26T21:37:13.6604664Z ] 2025-08-26T21:37:13.6605343Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(863): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6605419Z with 2025-08-26T21:37:13.6605500Z [ 2025-08-26T21:37:13.6605575Z scalar_t=float 2025-08-26T21:37:13.6605647Z ] 2025-08-26T21:37:13.6606279Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(864): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6606350Z with 2025-08-26T21:37:13.6606418Z [ 2025-08-26T21:37:13.6606493Z scalar_t=float 2025-08-26T21:37:13.6606567Z ] 2025-08-26T21:37:13.6607146Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(864): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6607212Z with 2025-08-26T21:37:13.6607292Z [ 2025-08-26T21:37:13.6607370Z scalar_t=float 2025-08-26T21:37:13.6607747Z ] 2025-08-26T21:37:13.6608326Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(864): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6608415Z with 2025-08-26T21:37:13.6608482Z [ 2025-08-26T21:37:13.6608565Z scalar_t=float 2025-08-26T21:37:13.6608647Z ] 2025-08-26T21:37:13.6609228Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(865): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6609293Z with 2025-08-26T21:37:13.6609372Z [ 2025-08-26T21:37:13.6609495Z scalar_t=float 2025-08-26T21:37:13.6609560Z ] 2025-08-26T21:37:13.6610182Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(865): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6610299Z with 2025-08-26T21:37:13.6610367Z [ 2025-08-26T21:37:13.6610447Z scalar_t=float 2025-08-26T21:37:13.6610523Z ] 2025-08-26T21:37:13.6611168Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(865): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6611291Z with 2025-08-26T21:37:13.6611361Z [ 2025-08-26T21:37:13.6611483Z scalar_t=float 2025-08-26T21:37:13.6611554Z ] 2025-08-26T21:37:13.6612202Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(866): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6612289Z with 2025-08-26T21:37:13.6612362Z [ 2025-08-26T21:37:13.6612443Z scalar_t=float 2025-08-26T21:37:13.6612556Z ] 2025-08-26T21:37:13.6613182Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(866): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6613257Z with 2025-08-26T21:37:13.6613358Z [ 2025-08-26T21:37:13.6613446Z scalar_t=float 2025-08-26T21:37:13.6613512Z ] 2025-08-26T21:37:13.6614162Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(866): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6614246Z with 2025-08-26T21:37:13.6614311Z [ 2025-08-26T21:37:13.6614386Z scalar_t=float 2025-08-26T21:37:13.6614449Z ] 2025-08-26T21:37:13.6615112Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(867): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6615181Z with 2025-08-26T21:37:13.6615276Z [ 2025-08-26T21:37:13.6615362Z scalar_t=float 2025-08-26T21:37:13.6615427Z ] 2025-08-26T21:37:13.6616131Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(867): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6616206Z with 2025-08-26T21:37:13.6616270Z [ 2025-08-26T21:37:13.6616384Z scalar_t=float 2025-08-26T21:37:13.6616489Z ] 2025-08-26T21:37:13.6617112Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(867): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6617219Z with 2025-08-26T21:37:13.6617288Z [ 2025-08-26T21:37:13.6617374Z scalar_t=float 2025-08-26T21:37:13.6617441Z ] 2025-08-26T21:37:13.6618081Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(868): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6618445Z with 2025-08-26T21:37:13.6618513Z [ 2025-08-26T21:37:13.6618595Z scalar_t=float 2025-08-26T21:37:13.6618658Z ] 2025-08-26T21:37:13.6619322Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(869): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6619393Z with 2025-08-26T21:37:13.6619460Z [ 2025-08-26T21:37:13.6619582Z scalar_t=float 2025-08-26T21:37:13.6619646Z ] 2025-08-26T21:37:13.6620262Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(869): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6620366Z with 2025-08-26T21:37:13.6620441Z [ 2025-08-26T21:37:13.6620515Z scalar_t=float 2025-08-26T21:37:13.6620580Z ] 2025-08-26T21:37:13.6621233Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(869): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6621300Z with 2025-08-26T21:37:13.6621363Z [ 2025-08-26T21:37:13.6621442Z scalar_t=float 2025-08-26T21:37:13.6621550Z ] 2025-08-26T21:37:13.6622210Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(870): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6622316Z with 2025-08-26T21:37:13.6622390Z [ 2025-08-26T21:37:13.6622466Z scalar_t=float 2025-08-26T21:37:13.6622531Z ] 2025-08-26T21:37:13.6623185Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(870): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6623252Z with 2025-08-26T21:37:13.6623315Z [ 2025-08-26T21:37:13.6623425Z scalar_t=float 2025-08-26T21:37:13.6623503Z ] 2025-08-26T21:37:13.6624120Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(870): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6624222Z with 2025-08-26T21:37:13.6624293Z [ 2025-08-26T21:37:13.6624386Z scalar_t=float 2025-08-26T21:37:13.6624448Z ] 2025-08-26T21:37:13.6625092Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(871): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6625167Z with 2025-08-26T21:37:13.6625230Z [ 2025-08-26T21:37:13.6625302Z scalar_t=float 2025-08-26T21:37:13.6625400Z ] 2025-08-26T21:37:13.6625980Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(871): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6626051Z with 2025-08-26T21:37:13.6626157Z [ 2025-08-26T21:37:13.6626245Z scalar_t=float 2025-08-26T21:37:13.6626310Z ] 2025-08-26T21:37:13.6626919Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(871): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6626996Z with 2025-08-26T21:37:13.6627059Z [ 2025-08-26T21:37:13.6627131Z scalar_t=float 2025-08-26T21:37:13.6627194Z ] 2025-08-26T21:37:13.6627774Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(872): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6627839Z with 2025-08-26T21:37:13.6627901Z [ 2025-08-26T21:37:13.6627986Z scalar_t=float 2025-08-26T21:37:13.6628053Z ] 2025-08-26T21:37:13.6628627Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(872): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6628991Z with 2025-08-26T21:37:13.6629068Z [ 2025-08-26T21:37:13.6629148Z scalar_t=float 2025-08-26T21:37:13.6629216Z ] 2025-08-26T21:37:13.6629809Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(872): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6629875Z with 2025-08-26T21:37:13.6629942Z [ 2025-08-26T21:37:13.6630015Z scalar_t=float 2025-08-26T21:37:13.6630087Z ] 2025-08-26T21:37:13.6630708Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(873): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6630773Z with 2025-08-26T21:37:13.6630841Z [ 2025-08-26T21:37:13.6630913Z scalar_t=float 2025-08-26T21:37:13.6631011Z ] 2025-08-26T21:37:13.6631638Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(873): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6631706Z with 2025-08-26T21:37:13.6631849Z [ 2025-08-26T21:37:13.6631927Z scalar_t=float 2025-08-26T21:37:13.6631999Z ] 2025-08-26T21:37:13.6632644Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(873): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6632711Z with 2025-08-26T21:37:13.6632790Z [ 2025-08-26T21:37:13.6632865Z scalar_t=float 2025-08-26T21:37:13.6632966Z ] 2025-08-26T21:37:13.6633585Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(874): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6633754Z with 2025-08-26T21:37:13.6633821Z [ 2025-08-26T21:37:13.6633900Z scalar_t=float 2025-08-26T21:37:13.6633979Z ] 2025-08-26T21:37:13.6634627Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(874): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6634696Z with 2025-08-26T21:37:13.6634771Z [ 2025-08-26T21:37:13.6634844Z scalar_t=float 2025-08-26T21:37:13.6634944Z ] 2025-08-26T21:37:13.6635556Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(874): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6635632Z with 2025-08-26T21:37:13.6635731Z [ 2025-08-26T21:37:13.6635807Z scalar_t=float 2025-08-26T21:37:13.6635875Z ] 2025-08-26T21:37:13.6636525Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(875): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6636628Z with 2025-08-26T21:37:13.6636705Z [ 2025-08-26T21:37:13.6636781Z scalar_t=float 2025-08-26T21:37:13.6636850Z ] 2025-08-26T21:37:13.6637538Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(875): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6637614Z with 2025-08-26T21:37:13.6637676Z [ 2025-08-26T21:37:13.6637790Z scalar_t=float 2025-08-26T21:37:13.6637871Z ] 2025-08-26T21:37:13.6638518Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(875): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6638591Z with 2025-08-26T21:37:13.6638656Z [ 2025-08-26T21:37:13.6638740Z scalar_t=float 2025-08-26T21:37:13.6638849Z ] 2025-08-26T21:37:13.6639497Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(876): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6639582Z with 2025-08-26T21:37:13.6639680Z [ 2025-08-26T21:37:13.6639762Z scalar_t=float 2025-08-26T21:37:13.6639839Z ] 2025-08-26T21:37:13.6640483Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(876): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6640553Z with 2025-08-26T21:37:13.6640619Z [ 2025-08-26T21:37:13.6640700Z scalar_t=float 2025-08-26T21:37:13.6640761Z ] 2025-08-26T21:37:13.6641407Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(876): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6641485Z with 2025-08-26T21:37:13.6641549Z [ 2025-08-26T21:37:13.6641658Z scalar_t=float 2025-08-26T21:37:13.6641722Z ] 2025-08-26T21:37:13.6642374Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(877): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6642907Z with 2025-08-26T21:37:13.6642978Z [ 2025-08-26T21:37:13.6643063Z scalar_t=float 2025-08-26T21:37:13.6643131Z ] 2025-08-26T21:37:13.6643714Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(878): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6643786Z with 2025-08-26T21:37:13.6643851Z [ 2025-08-26T21:37:13.6643928Z scalar_t=float 2025-08-26T21:37:13.6643991Z ] 2025-08-26T21:37:13.6644593Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(878): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6644660Z with 2025-08-26T21:37:13.6644729Z [ 2025-08-26T21:37:13.6644813Z scalar_t=float 2025-08-26T21:37:13.6644874Z ] 2025-08-26T21:37:13.6645453Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(878): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6645525Z with 2025-08-26T21:37:13.6645587Z [ 2025-08-26T21:37:13.6645660Z scalar_t=float 2025-08-26T21:37:13.6645722Z ] 2025-08-26T21:37:13.6646305Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(879): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6646370Z with 2025-08-26T21:37:13.6646433Z [ 2025-08-26T21:37:13.6646514Z scalar_t=float 2025-08-26T21:37:13.6646581Z ] 2025-08-26T21:37:13.6647196Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(879): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6647261Z with 2025-08-26T21:37:13.6647333Z [ 2025-08-26T21:37:13.6647445Z scalar_t=float 2025-08-26T21:37:13.6647512Z ] 2025-08-26T21:37:13.6648128Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(879): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6648195Z with 2025-08-26T21:37:13.6648257Z [ 2025-08-26T21:37:13.6648333Z scalar_t=float 2025-08-26T21:37:13.6648450Z ] 2025-08-26T21:37:13.6649062Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(880): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6649196Z with 2025-08-26T21:37:13.6649269Z [ 2025-08-26T21:37:13.6649343Z scalar_t=float 2025-08-26T21:37:13.6649405Z ] 2025-08-26T21:37:13.6650063Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(880): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6650134Z with 2025-08-26T21:37:13.6650200Z [ 2025-08-26T21:37:13.6650276Z scalar_t=float 2025-08-26T21:37:13.6650385Z ] 2025-08-26T21:37:13.6650999Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(880): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6651066Z with 2025-08-26T21:37:13.6651175Z [ 2025-08-26T21:37:13.6651248Z scalar_t=float 2025-08-26T21:37:13.6651313Z ] 2025-08-26T21:37:13.6651955Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(881): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6652034Z with 2025-08-26T21:37:13.6652097Z [ 2025-08-26T21:37:13.6652171Z scalar_t=float 2025-08-26T21:37:13.6652319Z ] 2025-08-26T21:37:13.6652895Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(881): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6652965Z with 2025-08-26T21:37:13.6653041Z [ 2025-08-26T21:37:13.6653114Z scalar_t=float 2025-08-26T21:37:13.6653182Z ] 2025-08-26T21:37:13.6653753Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(881): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6653833Z with 2025-08-26T21:37:13.6653901Z [ 2025-08-26T21:37:13.6653975Z scalar_t=float 2025-08-26T21:37:13.6654056Z ] 2025-08-26T21:37:13.6654628Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(882): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6654696Z with 2025-08-26T21:37:13.6654770Z [ 2025-08-26T21:37:13.6654848Z scalar_t=float 2025-08-26T21:37:13.6654915Z ] 2025-08-26T21:37:13.6655488Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(882): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6655568Z with 2025-08-26T21:37:13.6655631Z [ 2025-08-26T21:37:13.6655707Z scalar_t=float 2025-08-26T21:37:13.6655783Z ] 2025-08-26T21:37:13.6656360Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(882): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6656429Z with 2025-08-26T21:37:13.6656541Z [ 2025-08-26T21:37:13.6656626Z scalar_t=float 2025-08-26T21:37:13.6656690Z ] 2025-08-26T21:37:13.6657299Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(883): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6657382Z with 2025-08-26T21:37:13.6657449Z [ 2025-08-26T21:37:13.6657558Z scalar_t=float 2025-08-26T21:37:13.6657624Z ] 2025-08-26T21:37:13.6658245Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(883): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6658351Z with 2025-08-26T21:37:13.6658417Z [ 2025-08-26T21:37:13.6658511Z scalar_t=float 2025-08-26T21:37:13.6658577Z ] 2025-08-26T21:37:13.6659228Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(883): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6659347Z with 2025-08-26T21:37:13.6659411Z [ 2025-08-26T21:37:13.6659527Z scalar_t=float 2025-08-26T21:37:13.6659598Z ] 2025-08-26T21:37:13.6660254Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(884): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6660325Z with 2025-08-26T21:37:13.6660396Z [ 2025-08-26T21:37:13.6660480Z scalar_t=float 2025-08-26T21:37:13.6660546Z ] 2025-08-26T21:37:13.6661196Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(884): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6661270Z with 2025-08-26T21:37:13.6661337Z [ 2025-08-26T21:37:13.6661450Z scalar_t=float 2025-08-26T21:37:13.6661519Z ] 2025-08-26T21:37:13.6662107Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(884): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6662209Z with 2025-08-26T21:37:13.6662276Z [ 2025-08-26T21:37:13.6662365Z scalar_t=float 2025-08-26T21:37:13.6662428Z ] 2025-08-26T21:37:13.6662998Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(885): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6663064Z with 2025-08-26T21:37:13.6663139Z [ 2025-08-26T21:37:13.6663213Z scalar_t=float 2025-08-26T21:37:13.6663277Z ] 2025-08-26T21:37:13.6663857Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(885): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6663948Z with 2025-08-26T21:37:13.6664016Z [ 2025-08-26T21:37:13.6664089Z scalar_t=float 2025-08-26T21:37:13.6664157Z ] 2025-08-26T21:37:13.6664730Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(885): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6664795Z with 2025-08-26T21:37:13.6664866Z [ 2025-08-26T21:37:13.6664939Z scalar_t=float 2025-08-26T21:37:13.6665006Z ] 2025-08-26T21:37:13.6665580Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(886): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6665653Z with 2025-08-26T21:37:13.6665715Z [ 2025-08-26T21:37:13.6665790Z scalar_t=float 2025-08-26T21:37:13.6665861Z ] 2025-08-26T21:37:13.6666474Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(887): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6666544Z with 2025-08-26T21:37:13.6666645Z [ 2025-08-26T21:37:13.6666724Z scalar_t=float 2025-08-26T21:37:13.6666789Z ] 2025-08-26T21:37:13.6667471Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(887): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6667545Z with 2025-08-26T21:37:13.6667607Z [ 2025-08-26T21:37:13.6667679Z scalar_t=float 2025-08-26T21:37:13.6667752Z ] 2025-08-26T21:37:13.6668325Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(887): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6668394Z with 2025-08-26T21:37:13.6668456Z [ 2025-08-26T21:37:13.6668572Z scalar_t=float 2025-08-26T21:37:13.6668641Z ] 2025-08-26T21:37:13.6669208Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(888): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6669291Z with 2025-08-26T21:37:13.6669353Z [ 2025-08-26T21:37:13.6669425Z scalar_t=float 2025-08-26T21:37:13.6669493Z ] 2025-08-26T21:37:13.6670072Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(888): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6670139Z with 2025-08-26T21:37:13.6670203Z [ 2025-08-26T21:37:13.6670284Z scalar_t=float 2025-08-26T21:37:13.6670354Z ] 2025-08-26T21:37:13.6670929Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(888): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6671004Z with 2025-08-26T21:37:13.6671069Z [ 2025-08-26T21:37:13.6671141Z scalar_t=float 2025-08-26T21:37:13.6671206Z ] 2025-08-26T21:37:13.6671786Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(889): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6671892Z with 2025-08-26T21:37:13.6671959Z [ 2025-08-26T21:37:13.6672046Z scalar_t=float 2025-08-26T21:37:13.6672114Z ] 2025-08-26T21:37:13.6672729Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(889): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6672799Z with 2025-08-26T21:37:13.6672861Z [ 2025-08-26T21:37:13.6672935Z scalar_t=float 2025-08-26T21:37:13.6672997Z ] 2025-08-26T21:37:13.6673711Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(889): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6673782Z with 2025-08-26T21:37:13.6673852Z [ 2025-08-26T21:37:13.6673934Z scalar_t=float 2025-08-26T21:37:13.6674003Z ] 2025-08-26T21:37:13.6674574Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(890): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6674644Z with 2025-08-26T21:37:13.6674728Z [ 2025-08-26T21:37:13.6674800Z scalar_t=float 2025-08-26T21:37:13.6674865Z ] 2025-08-26T21:37:13.6675451Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(890): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6675518Z with 2025-08-26T21:37:13.6675583Z [ 2025-08-26T21:37:13.6675666Z scalar_t=float 2025-08-26T21:37:13.6675773Z ] 2025-08-26T21:37:13.6676344Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(890): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6676410Z with 2025-08-26T21:37:13.6676517Z [ 2025-08-26T21:37:13.6676590Z scalar_t=float 2025-08-26T21:37:13.6676659Z ] 2025-08-26T21:37:13.6677242Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(891): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6677308Z with 2025-08-26T21:37:13.6677371Z [ 2025-08-26T21:37:13.6677447Z scalar_t=float 2025-08-26T21:37:13.6677515Z ] 2025-08-26T21:37:13.6678089Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(891): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6678190Z with 2025-08-26T21:37:13.6678269Z [ 2025-08-26T21:37:13.6678341Z scalar_t=float 2025-08-26T21:37:13.6678405Z ] 2025-08-26T21:37:13.6679027Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(891): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6679131Z with 2025-08-26T21:37:13.6679196Z [ 2025-08-26T21:37:13.6679269Z scalar_t=float 2025-08-26T21:37:13.6679337Z ] 2025-08-26T21:37:13.6679948Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(892): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6680012Z with 2025-08-26T21:37:13.6680085Z [ 2025-08-26T21:37:13.6680162Z scalar_t=float 2025-08-26T21:37:13.6680224Z ] 2025-08-26T21:37:13.6680802Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(892): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6680876Z with 2025-08-26T21:37:13.6680939Z [ 2025-08-26T21:37:13.6681011Z scalar_t=float 2025-08-26T21:37:13.6681126Z ] 2025-08-26T21:37:13.6681708Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(892): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6681773Z with 2025-08-26T21:37:13.6681841Z [ 2025-08-26T21:37:13.6681917Z scalar_t=float 2025-08-26T21:37:13.6681979Z ] 2025-08-26T21:37:13.6682551Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(893): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6682628Z with 2025-08-26T21:37:13.6682691Z [ 2025-08-26T21:37:13.6682772Z scalar_t=float 2025-08-26T21:37:13.6682846Z ] 2025-08-26T21:37:13.6683422Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(893): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6683488Z with 2025-08-26T21:37:13.6683551Z [ 2025-08-26T21:37:13.6683628Z scalar_t=float 2025-08-26T21:37:13.6683688Z ] 2025-08-26T21:37:13.6684261Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(893): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6684336Z with 2025-08-26T21:37:13.6684398Z [ 2025-08-26T21:37:13.6684474Z scalar_t=float 2025-08-26T21:37:13.6684540Z ] 2025-08-26T21:37:13.6685184Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(894): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6685292Z with 2025-08-26T21:37:13.6685356Z [ 2025-08-26T21:37:13.6685439Z scalar_t=float 2025-08-26T21:37:13.6685503Z ] 2025-08-26T21:37:13.6686112Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(894): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6686190Z with 2025-08-26T21:37:13.6686252Z [ 2025-08-26T21:37:13.6686325Z scalar_t=float 2025-08-26T21:37:13.6686389Z ] 2025-08-26T21:37:13.6686971Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(894): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6687035Z with 2025-08-26T21:37:13.6687101Z [ 2025-08-26T21:37:13.6687185Z scalar_t=float 2025-08-26T21:37:13.6687248Z ] 2025-08-26T21:37:13.6687858Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(895): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6687933Z with 2025-08-26T21:37:13.6687996Z [ 2025-08-26T21:37:13.6688067Z scalar_t=float 2025-08-26T21:37:13.6688143Z ] 2025-08-26T21:37:13.6688723Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(896): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6688788Z with 2025-08-26T21:37:13.6688850Z [ 2025-08-26T21:37:13.6688932Z scalar_t=float 2025-08-26T21:37:13.6689001Z ] 2025-08-26T21:37:13.6689578Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(896): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6689648Z with 2025-08-26T21:37:13.6689710Z [ 2025-08-26T21:37:13.6689785Z scalar_t=float 2025-08-26T21:37:13.6689850Z ] 2025-08-26T21:37:13.6690471Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(896): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6690575Z with 2025-08-26T21:37:13.6690642Z [ 2025-08-26T21:37:13.6690723Z scalar_t=float 2025-08-26T21:37:13.6690787Z ] 2025-08-26T21:37:13.6691356Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(897): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6691422Z with 2025-08-26T21:37:13.6691496Z [ 2025-08-26T21:37:13.6691567Z scalar_t=float 2025-08-26T21:37:13.6691629Z ] 2025-08-26T21:37:13.6692210Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(897): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6692278Z with 2025-08-26T21:37:13.6692341Z [ 2025-08-26T21:37:13.6692424Z scalar_t=float 2025-08-26T21:37:13.6692486Z ] 2025-08-26T21:37:13.6693061Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(897): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6693130Z with 2025-08-26T21:37:13.6693199Z [ 2025-08-26T21:37:13.6693274Z scalar_t=float 2025-08-26T21:37:13.6693339Z ] 2025-08-26T21:37:13.6693920Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(898): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6693985Z with 2025-08-26T21:37:13.6694049Z [ 2025-08-26T21:37:13.6694122Z scalar_t=float 2025-08-26T21:37:13.6694191Z ] 2025-08-26T21:37:13.6694810Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(898): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6694876Z with 2025-08-26T21:37:13.6694948Z [ 2025-08-26T21:37:13.6695022Z scalar_t=float 2025-08-26T21:37:13.6695125Z ] 2025-08-26T21:37:13.6695715Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(898): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6695783Z with 2025-08-26T21:37:13.6695850Z [ 2025-08-26T21:37:13.6695924Z scalar_t=float 2025-08-26T21:37:13.6695992Z ] 2025-08-26T21:37:13.6696562Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(899): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6696626Z with 2025-08-26T21:37:13.6696973Z [ 2025-08-26T21:37:13.6697056Z scalar_t=float 2025-08-26T21:37:13.6697124Z ] 2025-08-26T21:37:13.6697696Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(899): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6697781Z with 2025-08-26T21:37:13.6697848Z [ 2025-08-26T21:37:13.6697924Z scalar_t=float 2025-08-26T21:37:13.6698005Z ] 2025-08-26T21:37:13.6698585Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(899): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6698659Z with 2025-08-26T21:37:13.6698734Z [ 2025-08-26T21:37:13.6698807Z scalar_t=float 2025-08-26T21:37:13.6698870Z ] 2025-08-26T21:37:13.6699443Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(900): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6699522Z with 2025-08-26T21:37:13.6699585Z [ 2025-08-26T21:37:13.6699658Z scalar_t=float 2025-08-26T21:37:13.6699726Z ] 2025-08-26T21:37:13.6700300Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(900): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6700408Z with 2025-08-26T21:37:13.6700470Z [ 2025-08-26T21:37:13.6700552Z scalar_t=float 2025-08-26T21:37:13.6700615Z ] 2025-08-26T21:37:13.6701190Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(900): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6701262Z with 2025-08-26T21:37:13.6701324Z [ 2025-08-26T21:37:13.6701394Z scalar_t=float 2025-08-26T21:37:13.6701465Z ] 2025-08-26T21:37:13.6702050Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(901): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6702118Z with 2025-08-26T21:37:13.6702180Z [ 2025-08-26T21:37:13.6702264Z scalar_t=float 2025-08-26T21:37:13.6702333Z ] 2025-08-26T21:37:13.6702910Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(901): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6702985Z with 2025-08-26T21:37:13.6703049Z [ 2025-08-26T21:37:13.6703121Z scalar_t=float 2025-08-26T21:37:13.6703185Z ] 2025-08-26T21:37:13.6703765Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(901): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6703834Z with 2025-08-26T21:37:13.6703898Z [ 2025-08-26T21:37:13.6704016Z scalar_t=float 2025-08-26T21:37:13.6704081Z ] 2025-08-26T21:37:13.6704654Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(902): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6704768Z with 2025-08-26T21:37:13.6704831Z [ 2025-08-26T21:37:13.6704907Z scalar_t=float 2025-08-26T21:37:13.6704970Z ] 2025-08-26T21:37:13.6705549Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(902): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6705614Z with 2025-08-26T21:37:13.6705677Z [ 2025-08-26T21:37:13.6705757Z scalar_t=float 2025-08-26T21:37:13.6705818Z ] 2025-08-26T21:37:13.6706396Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(902): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6706505Z with 2025-08-26T21:37:13.6706570Z [ 2025-08-26T21:37:13.6706642Z scalar_t=float 2025-08-26T21:37:13.6706706Z ] 2025-08-26T21:37:13.6707293Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(903): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6707363Z with 2025-08-26T21:37:13.6707426Z [ 2025-08-26T21:37:13.6707504Z scalar_t=float 2025-08-26T21:37:13.6707572Z ] 2025-08-26T21:37:13.6708145Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(903): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6708213Z with 2025-08-26T21:37:13.6708290Z [ 2025-08-26T21:37:13.6708363Z scalar_t=float 2025-08-26T21:37:13.6708426Z ] 2025-08-26T21:37:13.6709014Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(903): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6709083Z with 2025-08-26T21:37:13.6709149Z [ 2025-08-26T21:37:13.6709259Z scalar_t=float 2025-08-26T21:37:13.6709332Z ] 2025-08-26T21:37:13.6709904Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(904): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6709970Z with 2025-08-26T21:37:13.6710043Z [ 2025-08-26T21:37:13.6710119Z scalar_t=float 2025-08-26T21:37:13.6710184Z ] 2025-08-26T21:37:13.6710765Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(905): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6710835Z with 2025-08-26T21:37:13.6710900Z [ 2025-08-26T21:37:13.6710979Z scalar_t=float 2025-08-26T21:37:13.6711050Z ] 2025-08-26T21:37:13.6711631Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(905): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6711699Z with 2025-08-26T21:37:13.6711771Z [ 2025-08-26T21:37:13.6711846Z scalar_t=float 2025-08-26T21:37:13.6711910Z ] 2025-08-26T21:37:13.6712490Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(905): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6712556Z with 2025-08-26T21:37:13.6712620Z [ 2025-08-26T21:37:13.6712696Z scalar_t=float 2025-08-26T21:37:13.6712777Z ] 2025-08-26T21:37:13.6713390Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(906): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6713461Z with 2025-08-26T21:37:13.6713529Z [ 2025-08-26T21:37:13.6713602Z scalar_t=float 2025-08-26T21:37:13.6713740Z ] 2025-08-26T21:37:13.6714361Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(906): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6714442Z with 2025-08-26T21:37:13.6714509Z [ 2025-08-26T21:37:13.6714582Z scalar_t=float 2025-08-26T21:37:13.6714653Z ] 2025-08-26T21:37:13.6715235Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(906): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6715301Z with 2025-08-26T21:37:13.6715373Z [ 2025-08-26T21:37:13.6715450Z scalar_t=float 2025-08-26T21:37:13.6715517Z ] 2025-08-26T21:37:13.6716124Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(907): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6716194Z with 2025-08-26T21:37:13.6716257Z [ 2025-08-26T21:37:13.6716336Z scalar_t=float 2025-08-26T21:37:13.6716410Z ] 2025-08-26T21:37:13.6716975Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(907): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6717040Z with 2025-08-26T21:37:13.6717106Z [ 2025-08-26T21:37:13.6717185Z scalar_t=float 2025-08-26T21:37:13.6717251Z ] 2025-08-26T21:37:13.6717826Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(907): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6717896Z with 2025-08-26T21:37:13.6717962Z [ 2025-08-26T21:37:13.6718037Z scalar_t=float 2025-08-26T21:37:13.6718105Z ] 2025-08-26T21:37:13.6718676Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(908): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6718780Z with 2025-08-26T21:37:13.6718845Z [ 2025-08-26T21:37:13.6718924Z scalar_t=float 2025-08-26T21:37:13.6718984Z ] 2025-08-26T21:37:13.6719558Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(908): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6719634Z with 2025-08-26T21:37:13.6719703Z [ 2025-08-26T21:37:13.6719777Z scalar_t=float 2025-08-26T21:37:13.6719839Z ] 2025-08-26T21:37:13.6720416Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(908): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6720481Z with 2025-08-26T21:37:13.6720543Z [ 2025-08-26T21:37:13.6720622Z scalar_t=float 2025-08-26T21:37:13.6720683Z ] 2025-08-26T21:37:13.6721255Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(909): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6721333Z with 2025-08-26T21:37:13.6721402Z [ 2025-08-26T21:37:13.6721478Z scalar_t=float 2025-08-26T21:37:13.6721544Z ] 2025-08-26T21:37:13.6722126Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(909): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6722191Z with 2025-08-26T21:37:13.6722257Z [ 2025-08-26T21:37:13.6722337Z scalar_t=float 2025-08-26T21:37:13.6722406Z ] 2025-08-26T21:37:13.6723025Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(909): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6723099Z with 2025-08-26T21:37:13.6723163Z [ 2025-08-26T21:37:13.6723279Z scalar_t=float 2025-08-26T21:37:13.6723349Z ] 2025-08-26T21:37:13.6723935Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(910): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6724004Z with 2025-08-26T21:37:13.6724067Z [ 2025-08-26T21:37:13.6724146Z scalar_t=float 2025-08-26T21:37:13.6724211Z ] 2025-08-26T21:37:13.6724785Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(910): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6724851Z with 2025-08-26T21:37:13.6724958Z [ 2025-08-26T21:37:13.6725038Z scalar_t=float 2025-08-26T21:37:13.6725104Z ] 2025-08-26T21:37:13.6725685Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(910): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6725755Z with 2025-08-26T21:37:13.6725822Z [ 2025-08-26T21:37:13.6725894Z scalar_t=float 2025-08-26T21:37:13.6725964Z ] 2025-08-26T21:37:13.6726531Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(911): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6726599Z with 2025-08-26T21:37:13.6726673Z [ 2025-08-26T21:37:13.6726748Z scalar_t=float 2025-08-26T21:37:13.6726817Z ] 2025-08-26T21:37:13.6727400Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(911): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6727467Z with 2025-08-26T21:37:13.6727532Z [ 2025-08-26T21:37:13.6727605Z scalar_t=float 2025-08-26T21:37:13.6727677Z ] 2025-08-26T21:37:13.6728252Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(911): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6728354Z with 2025-08-26T21:37:13.6728427Z [ 2025-08-26T21:37:13.6728501Z scalar_t=float 2025-08-26T21:37:13.6728564Z ] 2025-08-26T21:37:13.6729148Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(912): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6729215Z with 2025-08-26T21:37:13.6729280Z [ 2025-08-26T21:37:13.6729355Z scalar_t=float 2025-08-26T21:37:13.6729433Z ] 2025-08-26T21:37:13.6730004Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(912): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6730070Z with 2025-08-26T21:37:13.6730142Z [ 2025-08-26T21:37:13.6730220Z scalar_t=float 2025-08-26T21:37:13.6730284Z ] 2025-08-26T21:37:13.6730857Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(912): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6730931Z with 2025-08-26T21:37:13.6730994Z [ 2025-08-26T21:37:13.6731073Z scalar_t=float 2025-08-26T21:37:13.6731145Z ] 2025-08-26T21:37:13.6731723Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(913): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6731789Z with 2025-08-26T21:37:13.6731859Z [ 2025-08-26T21:37:13.6731969Z scalar_t=float 2025-08-26T21:37:13.6732034Z ] 2025-08-26T21:37:13.6732646Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(914): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6732727Z with 2025-08-26T21:37:13.6732792Z [ 2025-08-26T21:37:13.6732867Z scalar_t=float 2025-08-26T21:37:13.6732946Z ] 2025-08-26T21:37:13.6733516Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(914): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6733580Z with 2025-08-26T21:37:13.6733646Z [ 2025-08-26T21:37:13.6733728Z scalar_t=float 2025-08-26T21:37:13.6733795Z ] 2025-08-26T21:37:13.6734371Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(914): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6734478Z with 2025-08-26T21:37:13.6734544Z [ 2025-08-26T21:37:13.6734616Z scalar_t=float 2025-08-26T21:37:13.6734681Z ] 2025-08-26T21:37:13.6735257Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(915): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6735320Z with 2025-08-26T21:37:13.6735382Z [ 2025-08-26T21:37:13.6735472Z scalar_t=float 2025-08-26T21:37:13.6735536Z ] 2025-08-26T21:37:13.6736117Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(915): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6736194Z with 2025-08-26T21:37:13.6736259Z [ 2025-08-26T21:37:13.6736334Z scalar_t=float 2025-08-26T21:37:13.6736400Z ] 2025-08-26T21:37:13.6736985Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(915): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6737054Z with 2025-08-26T21:37:13.6737153Z [ 2025-08-26T21:37:13.6737237Z scalar_t=float 2025-08-26T21:37:13.6737302Z ] 2025-08-26T21:37:13.6737877Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(916): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6737953Z with 2025-08-26T21:37:13.6738019Z [ 2025-08-26T21:37:13.6738092Z scalar_t=float 2025-08-26T21:37:13.6738153Z ] 2025-08-26T21:37:13.6738733Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(916): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6738802Z with 2025-08-26T21:37:13.6738872Z [ 2025-08-26T21:37:13.6738952Z scalar_t=float 2025-08-26T21:37:13.6739017Z ] 2025-08-26T21:37:13.6739591Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(916): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6739657Z with 2025-08-26T21:37:13.6739729Z [ 2025-08-26T21:37:13.6739808Z scalar_t=float 2025-08-26T21:37:13.6739869Z ] 2025-08-26T21:37:13.6740454Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(917): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6740519Z with 2025-08-26T21:37:13.6740582Z [ 2025-08-26T21:37:13.6740662Z scalar_t=float 2025-08-26T21:37:13.6740724Z ] 2025-08-26T21:37:13.6741599Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(917): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6741676Z with 2025-08-26T21:37:13.6741748Z [ 2025-08-26T21:37:13.6741822Z scalar_t=float 2025-08-26T21:37:13.6741888Z ] 2025-08-26T21:37:13.6742519Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(917): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6742589Z with 2025-08-26T21:37:13.6742650Z [ 2025-08-26T21:37:13.6742722Z scalar_t=float 2025-08-26T21:37:13.6742794Z ] 2025-08-26T21:37:13.6743365Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(918): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6743434Z with 2025-08-26T21:37:13.6743516Z [ 2025-08-26T21:37:13.6743587Z scalar_t=float 2025-08-26T21:37:13.6743691Z ] 2025-08-26T21:37:13.6744269Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(918): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6744332Z with 2025-08-26T21:37:13.6744398Z [ 2025-08-26T21:37:13.6744476Z scalar_t=float 2025-08-26T21:37:13.6744547Z ] 2025-08-26T21:37:13.6745120Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(918): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6745186Z with 2025-08-26T21:37:13.6745257Z [ 2025-08-26T21:37:13.6745328Z scalar_t=float 2025-08-26T21:37:13.6745390Z ] 2025-08-26T21:37:13.6745961Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(919): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6746033Z with 2025-08-26T21:37:13.6746101Z [ 2025-08-26T21:37:13.6746176Z scalar_t=float 2025-08-26T21:37:13.6746248Z ] 2025-08-26T21:37:13.6746825Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(919): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6746926Z with 2025-08-26T21:37:13.6746996Z [ 2025-08-26T21:37:13.6747068Z scalar_t=float 2025-08-26T21:37:13.6747131Z ] 2025-08-26T21:37:13.6747701Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(919): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6747779Z with 2025-08-26T21:37:13.6747841Z [ 2025-08-26T21:37:13.6747915Z scalar_t=float 2025-08-26T21:37:13.6747982Z ] 2025-08-26T21:37:13.6748558Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(920): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6748628Z with 2025-08-26T21:37:13.6748696Z [ 2025-08-26T21:37:13.6748768Z scalar_t=float 2025-08-26T21:37:13.6748834Z ] 2025-08-26T21:37:13.6749419Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(920): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6749496Z with 2025-08-26T21:37:13.6749557Z [ 2025-08-26T21:37:13.6749629Z scalar_t=float 2025-08-26T21:37:13.6749701Z ] 2025-08-26T21:37:13.6750270Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(920): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6750334Z with 2025-08-26T21:37:13.6750397Z [ 2025-08-26T21:37:13.6750479Z scalar_t=float 2025-08-26T21:37:13.6750546Z ] 2025-08-26T21:37:13.6751324Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(921): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6751406Z with 2025-08-26T21:37:13.6751475Z [ 2025-08-26T21:37:13.6752310Z scalar_t=float 2025-08-26T21:37:13.6752379Z ] 2025-08-26T21:37:13.6752968Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(921): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6753036Z with 2025-08-26T21:37:13.6753104Z [ 2025-08-26T21:37:13.6753189Z scalar_t=float 2025-08-26T21:37:13.6753253Z ] 2025-08-26T21:37:13.6753895Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(921): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6754029Z with 2025-08-26T21:37:13.6754094Z [ 2025-08-26T21:37:13.6754170Z scalar_t=float 2025-08-26T21:37:13.6754236Z ] 2025-08-26T21:37:13.6754832Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(922): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6754903Z with 2025-08-26T21:37:13.6754971Z [ 2025-08-26T21:37:13.6755055Z scalar_t=float 2025-08-26T21:37:13.6755120Z ] 2025-08-26T21:37:13.6755695Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(923): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6755767Z with 2025-08-26T21:37:13.6755831Z [ 2025-08-26T21:37:13.6755904Z scalar_t=float 2025-08-26T21:37:13.6755967Z ] 2025-08-26T21:37:13.6756549Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(923): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6756615Z with 2025-08-26T21:37:13.6756677Z [ 2025-08-26T21:37:13.6756756Z scalar_t=float 2025-08-26T21:37:13.6756817Z ] 2025-08-26T21:37:13.6757429Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(923): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6757494Z with 2025-08-26T21:37:13.6757562Z [ 2025-08-26T21:37:13.6757635Z scalar_t=float 2025-08-26T21:37:13.6757699Z ] 2025-08-26T21:37:13.6758285Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(924): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6758352Z with 2025-08-26T21:37:13.6758424Z [ 2025-08-26T21:37:13.6758512Z scalar_t=float 2025-08-26T21:37:13.6758580Z ] 2025-08-26T21:37:13.6759154Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(924): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6759220Z with 2025-08-26T21:37:13.6759301Z [ 2025-08-26T21:37:13.6759380Z scalar_t=float 2025-08-26T21:37:13.6759443Z ] 2025-08-26T21:37:13.6760028Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(924): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6760092Z with 2025-08-26T21:37:13.6760157Z [ 2025-08-26T21:37:13.6760231Z scalar_t=float 2025-08-26T21:37:13.6760304Z ] 2025-08-26T21:37:13.6760878Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(925): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6760948Z with 2025-08-26T21:37:13.6761230Z [ 2025-08-26T21:37:13.6761307Z scalar_t=float 2025-08-26T21:37:13.6761370Z ] 2025-08-26T21:37:13.6762003Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(925): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6762073Z with 2025-08-26T21:37:13.6762138Z [ 2025-08-26T21:37:13.6762218Z scalar_t=float 2025-08-26T21:37:13.6762295Z ] 2025-08-26T21:37:13.6762863Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(925): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6762929Z with 2025-08-26T21:37:13.6763003Z [ 2025-08-26T21:37:13.6763077Z scalar_t=float 2025-08-26T21:37:13.6763147Z ] 2025-08-26T21:37:13.6763720Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(926): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6763830Z with 2025-08-26T21:37:13.6763896Z [ 2025-08-26T21:37:13.6763973Z scalar_t=float 2025-08-26T21:37:13.6764047Z ] 2025-08-26T21:37:13.6764626Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(926): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6764694Z with 2025-08-26T21:37:13.6764766Z [ 2025-08-26T21:37:13.6764839Z scalar_t=float 2025-08-26T21:37:13.6764904Z ] 2025-08-26T21:37:13.6765484Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(926): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6765557Z with 2025-08-26T21:37:13.6765623Z [ 2025-08-26T21:37:13.6765696Z scalar_t=float 2025-08-26T21:37:13.6765770Z ] 2025-08-26T21:37:13.6766341Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(927): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6766407Z with 2025-08-26T21:37:13.6766505Z [ 2025-08-26T21:37:13.6766595Z scalar_t=float 2025-08-26T21:37:13.6766663Z ] 2025-08-26T21:37:13.6767234Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(927): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6767308Z with 2025-08-26T21:37:13.6767372Z [ 2025-08-26T21:37:13.6767446Z scalar_t=float 2025-08-26T21:37:13.6767514Z ] 2025-08-26T21:37:13.6768089Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(927): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6768157Z with 2025-08-26T21:37:13.6768227Z [ 2025-08-26T21:37:13.6768314Z scalar_t=float 2025-08-26T21:37:13.6768381Z ] 2025-08-26T21:37:13.6768951Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(928): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6769026Z with 2025-08-26T21:37:13.6769089Z [ 2025-08-26T21:37:13.6769165Z scalar_t=float 2025-08-26T21:37:13.6769231Z ] 2025-08-26T21:37:13.6769809Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(928): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6769873Z with 2025-08-26T21:37:13.6769936Z [ 2025-08-26T21:37:13.6770017Z scalar_t=float 2025-08-26T21:37:13.6770080Z ] 2025-08-26T21:37:13.6770851Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(928): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6770939Z with 2025-08-26T21:37:13.6771007Z [ 2025-08-26T21:37:13.6771081Z scalar_t=float 2025-08-26T21:37:13.6771148Z ] 2025-08-26T21:37:13.6771774Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(929): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6771841Z with 2025-08-26T21:37:13.6771905Z [ 2025-08-26T21:37:13.6771982Z scalar_t=float 2025-08-26T21:37:13.6772043Z ] 2025-08-26T21:37:13.6772616Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(929): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6772688Z with 2025-08-26T21:37:13.6772750Z [ 2025-08-26T21:37:13.6772860Z scalar_t=float 2025-08-26T21:37:13.6772924Z ] 2025-08-26T21:37:13.6773500Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(929): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6773566Z with 2025-08-26T21:37:13.6773631Z [ 2025-08-26T21:37:13.6773711Z scalar_t=float 2025-08-26T21:37:13.6773774Z ] 2025-08-26T21:37:13.6774346Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(930): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6774410Z with 2025-08-26T21:37:13.6774484Z [ 2025-08-26T21:37:13.6774559Z scalar_t=float 2025-08-26T21:37:13.6774621Z ] 2025-08-26T21:37:13.6775203Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(930): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6775274Z with 2025-08-26T21:37:13.6775337Z [ 2025-08-26T21:37:13.6775420Z scalar_t=float 2025-08-26T21:37:13.6775483Z ] 2025-08-26T21:37:13.6776056Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(930): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6776160Z with 2025-08-26T21:37:13.6776237Z [ 2025-08-26T21:37:13.6776311Z scalar_t=float 2025-08-26T21:37:13.6776373Z ] 2025-08-26T21:37:13.6776944Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(931): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6777009Z with 2025-08-26T21:37:13.6777073Z [ 2025-08-26T21:37:13.6777146Z scalar_t=float 2025-08-26T21:37:13.6777218Z ] 2025-08-26T21:37:13.6777787Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(932): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6777856Z with 2025-08-26T21:37:13.6777927Z [ 2025-08-26T21:37:13.6778003Z scalar_t=float 2025-08-26T21:37:13.6778066Z ] 2025-08-26T21:37:13.6778640Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(932): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6778707Z with 2025-08-26T21:37:13.6778773Z [ 2025-08-26T21:37:13.6778851Z scalar_t=float 2025-08-26T21:37:13.6778921Z ] 2025-08-26T21:37:13.6779493Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(932): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6779558Z with 2025-08-26T21:37:13.6779629Z [ 2025-08-26T21:37:13.6779702Z scalar_t=float 2025-08-26T21:37:13.6779949Z ] 2025-08-26T21:37:13.6780527Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(933): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6780606Z with 2025-08-26T21:37:13.6780703Z [ 2025-08-26T21:37:13.6780776Z scalar_t=float 2025-08-26T21:37:13.6780845Z ] 2025-08-26T21:37:13.6781418Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(933): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6781482Z with 2025-08-26T21:37:13.6781555Z [ 2025-08-26T21:37:13.6781628Z scalar_t=float 2025-08-26T21:37:13.6781690Z ] 2025-08-26T21:37:13.6782264Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(933): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6782375Z with 2025-08-26T21:37:13.6782438Z [ 2025-08-26T21:37:13.6782509Z scalar_t=float 2025-08-26T21:37:13.6782588Z ] 2025-08-26T21:37:13.6783158Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(934): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6783225Z with 2025-08-26T21:37:13.6783290Z [ 2025-08-26T21:37:13.6783374Z scalar_t=float 2025-08-26T21:37:13.6783438Z ] 2025-08-26T21:37:13.6784008Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(934): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6784080Z with 2025-08-26T21:37:13.6784143Z [ 2025-08-26T21:37:13.6784217Z scalar_t=float 2025-08-26T21:37:13.6784286Z ] 2025-08-26T21:37:13.6784854Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(934): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6784926Z with 2025-08-26T21:37:13.6784989Z [ 2025-08-26T21:37:13.6785069Z scalar_t=float 2025-08-26T21:37:13.6785168Z ] 2025-08-26T21:37:13.6785743Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(935): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6785815Z with 2025-08-26T21:37:13.6785880Z [ 2025-08-26T21:37:13.6785955Z scalar_t=float 2025-08-26T21:37:13.6786023Z ] 2025-08-26T21:37:13.6786600Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(935): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6786672Z with 2025-08-26T21:37:13.6786737Z [ 2025-08-26T21:37:13.6786830Z scalar_t=float 2025-08-26T21:37:13.6786897Z ] 2025-08-26T21:37:13.6787471Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(935): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6787545Z with 2025-08-26T21:37:13.6787609Z [ 2025-08-26T21:37:13.6787682Z scalar_t=float 2025-08-26T21:37:13.6787743Z ] 2025-08-26T21:37:13.6788324Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(936): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6788390Z with 2025-08-26T21:37:13.6788453Z [ 2025-08-26T21:37:13.6788533Z scalar_t=float 2025-08-26T21:37:13.6788596Z ] 2025-08-26T21:37:13.6789172Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(936): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6789454Z with 2025-08-26T21:37:13.6789523Z [ 2025-08-26T21:37:13.6789603Z scalar_t=float 2025-08-26T21:37:13.6789664Z ] 2025-08-26T21:37:13.6790279Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(936): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6790349Z with 2025-08-26T21:37:13.6790413Z [ 2025-08-26T21:37:13.6790495Z scalar_t=float 2025-08-26T21:37:13.6790561Z ] 2025-08-26T21:37:13.6791126Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(937): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6791191Z with 2025-08-26T21:37:13.6791262Z [ 2025-08-26T21:37:13.6791334Z scalar_t=float 2025-08-26T21:37:13.6791398Z ] 2025-08-26T21:37:13.6791982Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(937): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6792082Z with 2025-08-26T21:37:13.6792147Z [ 2025-08-26T21:37:13.6792233Z scalar_t=float 2025-08-26T21:37:13.6792299Z ] 2025-08-26T21:37:13.6792869Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(937): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6792936Z with 2025-08-26T21:37:13.6793012Z [ 2025-08-26T21:37:13.6793087Z scalar_t=float 2025-08-26T21:37:13.6793149Z ] 2025-08-26T21:37:13.6793832Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(938): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6793900Z with 2025-08-26T21:37:13.6793965Z [ 2025-08-26T21:37:13.6794043Z scalar_t=float 2025-08-26T21:37:13.6794121Z ] 2025-08-26T21:37:13.6794694Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(938): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6795121Z with 2025-08-26T21:37:13.6795201Z [ 2025-08-26T21:37:13.6795276Z scalar_t=float 2025-08-26T21:37:13.6795339Z ] 2025-08-26T21:37:13.6795921Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(938): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6795994Z with 2025-08-26T21:37:13.6796059Z [ 2025-08-26T21:37:13.6796137Z scalar_t=float 2025-08-26T21:37:13.6796216Z ] 2025-08-26T21:37:13.6796788Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(939): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6796861Z with 2025-08-26T21:37:13.6796935Z [ 2025-08-26T21:37:13.6797009Z scalar_t=float 2025-08-26T21:37:13.6797078Z ] 2025-08-26T21:37:13.6797658Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(939): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6797735Z with 2025-08-26T21:37:13.6797798Z [ 2025-08-26T21:37:13.6797871Z scalar_t=float 2025-08-26T21:37:13.6797949Z ] 2025-08-26T21:37:13.6798520Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(939): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6798583Z with 2025-08-26T21:37:13.6798656Z [ 2025-08-26T21:37:13.6798728Z scalar_t=float 2025-08-26T21:37:13.6798791Z ] 2025-08-26T21:37:13.6799560Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(940): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:13.6799644Z with 2025-08-26T21:37:13.6799712Z [ 2025-08-26T21:37:13.6799792Z scalar_t=float 2025-08-26T21:37:13.6799907Z ] 2025-08-26T21:37:13.6800526Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1328): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6801082Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1328): note: the template instantiation context (the oldest one first) is 2025-08-26T21:37:13.6801765Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1488): note: see reference to function template instantiation 'float calc_i0(T)' being compiled 2025-08-26T21:37:13.6801836Z with 2025-08-26T21:37:13.6801941Z [ 2025-08-26T21:37:13.6802021Z T=float 2025-08-26T21:37:13.6802087Z ] 2025-08-26T21:37:13.6802978Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1479): note: see reference to function template instantiation 'std::tuple chebyshev_coefficients_i0e_A(void)' being compiled 2025-08-26T21:37:13.6803571Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1328): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6804143Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1329): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6804717Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1329): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6805296Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1330): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6805857Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1330): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6806459Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1331): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6807033Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1331): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6807600Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1332): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6808170Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1332): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6808747Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1333): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6809316Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1333): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6809895Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1334): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6810463Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1334): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6811204Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1335): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6811822Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1335): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6812394Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1336): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6812962Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1336): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6813539Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1337): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6814106Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1337): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6814707Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1338): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6815277Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1338): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6815849Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1339): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6816417Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1339): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6817003Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1340): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6817577Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1340): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6818193Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1341): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6818755Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1341): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6819318Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1342): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6819894Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1342): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6820461Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1354): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6821009Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1354): note: the template instantiation context (the oldest one first) is 2025-08-26T21:37:13.6821874Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1483): note: see reference to function template instantiation 'std::tuple chebyshev_coefficients_i0e_B(void)' being compiled 2025-08-26T21:37:13.6822445Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1354): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6823188Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1355): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6823804Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1355): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6824372Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1356): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6824934Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1356): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6825507Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1357): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6826121Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1357): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6826700Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1358): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6827270Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1358): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6827834Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1359): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6828406Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1359): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6828974Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1360): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6829551Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1360): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6830156Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1361): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6830722Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1361): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6831290Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1362): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6831869Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1362): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6832439Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1363): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6833004Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1363): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6833578Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1364): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6834214Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1364): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6834973Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1365): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6835597Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1365): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:13.6836171Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1366): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:37:14.5752176Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(627): warning C4305: 'initializing': truncation from 'double' to 'scalar_t' 2025-08-26T21:37:14.5752947Z with 2025-08-26T21:37:14.5753134Z [ 2025-08-26T21:37:14.5753302Z scalar_t=float 2025-08-26T21:37:14.5753535Z ] 2025-08-26T21:37:14.5754256Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(627): note: the template instantiation context (the oldest one first) is 2025-08-26T21:37:14.5755885Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1202): note: see reference to function template instantiation 'scalar_t _igam_helper_series(scalar_t,scalar_t)' being compiled 2025-08-26T21:37:14.5756899Z with 2025-08-26T21:37:14.5757069Z [ 2025-08-26T21:37:14.5757254Z scalar_t=float 2025-08-26T21:37:14.5757463Z ] 2025-08-26T21:37:14.5758349Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(664): note: see reference to function template instantiation 'scalar_t _igam_helper_fac(scalar_t,scalar_t)' being compiled 2025-08-26T21:37:14.5759318Z with 2025-08-26T21:37:14.5759491Z [ 2025-08-26T21:37:14.5759663Z scalar_t=float 2025-08-26T21:37:14.5759870Z ] 2025-08-26T21:37:14.5760534Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(629): warning C4305: 'initializing': truncation from 'double' to 'scalar_t' 2025-08-26T21:37:14.5761260Z with 2025-08-26T21:37:14.5761435Z [ 2025-08-26T21:37:14.5761610Z scalar_t=float 2025-08-26T21:37:14.5761902Z ] 2025-08-26T21:37:14.5762549Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(630): warning C4305: 'initializing': truncation from 'double' to 'scalar_t' 2025-08-26T21:37:14.5763288Z with 2025-08-26T21:37:14.5763466Z [ 2025-08-26T21:37:14.5763641Z scalar_t=float 2025-08-26T21:37:14.5763857Z ] 2025-08-26T21:37:15.1437162Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(585): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:15.1438006Z with 2025-08-26T21:37:15.1438337Z [ 2025-08-26T21:37:15.1438706Z scalar_t=float 2025-08-26T21:37:15.1439083Z ] 2025-08-26T21:37:15.1439827Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(585): note: the template instantiation context (the oldest one first) is 2025-08-26T21:37:15.1441287Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(664): note: see reference to function template instantiation 'scalar_t _igam_helper_fac(scalar_t,scalar_t)' being compiled 2025-08-26T21:37:15.1442261Z with 2025-08-26T21:37:15.1442426Z [ 2025-08-26T21:37:15.1442603Z scalar_t=float 2025-08-26T21:37:15.1442808Z ] 2025-08-26T21:37:15.1443687Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(641): note: see reference to function template instantiation 'scalar_t lanczos_sum_expg_scaled(scalar_t)' being compiled 2025-08-26T21:37:15.1445242Z with 2025-08-26T21:37:15.1445411Z [ 2025-08-26T21:37:15.1446092Z scalar_t=float 2025-08-26T21:37:15.1446332Z ] 2025-08-26T21:37:15.1447028Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(586): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:15.1447856Z with 2025-08-26T21:37:15.1448040Z [ 2025-08-26T21:37:15.1448215Z scalar_t=float 2025-08-26T21:37:15.1448436Z ] 2025-08-26T21:37:15.1449112Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(587): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:15.1449939Z with 2025-08-26T21:37:15.1450263Z [ 2025-08-26T21:37:15.1450564Z scalar_t=float 2025-08-26T21:37:15.1450934Z ] 2025-08-26T21:37:15.1451743Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(588): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:15.1452583Z with 2025-08-26T21:37:15.1452749Z [ 2025-08-26T21:37:15.1452931Z scalar_t=float 2025-08-26T21:37:15.1453147Z ] 2025-08-26T21:37:15.1453838Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(589): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:15.1454601Z with 2025-08-26T21:37:15.1454767Z [ 2025-08-26T21:37:15.1454944Z scalar_t=float 2025-08-26T21:37:15.1455153Z ] 2025-08-26T21:37:15.1455834Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(590): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:15.1457197Z with 2025-08-26T21:37:15.1457383Z [ 2025-08-26T21:37:15.1457567Z scalar_t=float 2025-08-26T21:37:15.1457785Z ] 2025-08-26T21:37:15.1458469Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(591): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:15.1459219Z with 2025-08-26T21:37:15.1459390Z [ 2025-08-26T21:37:15.1459640Z scalar_t=float 2025-08-26T21:37:15.1459861Z ] 2025-08-26T21:37:15.1460524Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(592): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:15.1461296Z with 2025-08-26T21:37:15.1461469Z [ 2025-08-26T21:37:15.1461634Z scalar_t=float 2025-08-26T21:37:15.1461918Z ] 2025-08-26T21:37:15.1463135Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(593): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:15.1463894Z with 2025-08-26T21:37:15.1464059Z [ 2025-08-26T21:37:15.1464239Z scalar_t=float 2025-08-26T21:37:15.1464442Z ] 2025-08-26T21:37:15.1465125Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(594): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:15.1465916Z with 2025-08-26T21:37:15.1466105Z [ 2025-08-26T21:37:15.1466278Z scalar_t=float 2025-08-26T21:37:15.1466476Z ] 2025-08-26T21:37:15.1467155Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(595): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:15.1468098Z with 2025-08-26T21:37:15.1468397Z [ 2025-08-26T21:37:15.1468685Z scalar_t=float 2025-08-26T21:37:15.1469038Z ] 2025-08-26T21:37:15.1470073Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(596): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:15.1470845Z with 2025-08-26T21:37:15.1471028Z [ 2025-08-26T21:37:15.1471198Z scalar_t=float 2025-08-26T21:37:15.1471408Z ] 2025-08-26T21:37:15.1472133Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(597): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:15.1472897Z with 2025-08-26T21:37:15.1473068Z [ 2025-08-26T21:37:15.1473242Z scalar_t=float 2025-08-26T21:37:15.1473457Z ] 2025-08-26T21:37:15.1474627Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(607): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:15.1475576Z with 2025-08-26T21:37:15.1475745Z [ 2025-08-26T21:37:15.1475928Z scalar_t=float 2025-08-26T21:37:15.1476478Z ] 2025-08-26T21:37:15.1477177Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(608): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:15.1477928Z with 2025-08-26T21:37:15.1478112Z [ 2025-08-26T21:37:15.1478290Z scalar_t=float 2025-08-26T21:37:15.1478496Z ] 2025-08-26T21:37:15.1479182Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(609): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:37:15.1480205Z with 2025-08-26T21:37:15.1480473Z [ 2025-08-26T21:37:15.1480794Z scalar_t=float 2025-08-26T21:37:15.1481096Z ] 2025-08-26T21:37:16.6186589Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64\link.exe" /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib /LIBPATH:C:\Jenkins\Miniconda3\libs /LIBPATH:C:\Jenkins\Miniconda3 /LIBPATH:C:\Jenkins\Miniconda3\PCbuild\amd64 "/LIBPATH:C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64" c10.lib torch.lib torch_cpu.lib torch_python.lib sleef.lib /EXPORT:PyInit_rng build\temp.win-amd64-cpython-39\Release\rng_extension.obj /OUT:build\lib.win-amd64-cpython-39\torch_test_cpp_extension\rng.cp39-win_amd64.pyd /IMPLIB:build\temp.win-amd64-cpython-39\Release\rng.cp39-win_amd64.lib 2025-08-26T21:37:16.8661138Z Creating library build\temp.win-amd64-cpython-39\Release\rng.cp39-win_amd64.lib and object build\temp.win-amd64-cpython-39\Release\rng.cp39-win_amd64.exp 2025-08-26T21:37:16.8750058Z Generating code 2025-08-26T21:37:18.5755463Z Finished generating code 2025-08-26T21:37:18.7173213Z running install_lib 2025-08-26T21:37:18.7308656Z copying build\lib.win-amd64-cpython-39\torch_test_cpp_extension\cpp.cp39-win_amd64.pyd -> ./install\Jenkins\Miniconda3\Lib\site-packages\torch_test_cpp_extension 2025-08-26T21:37:18.7320863Z copying build\lib.win-amd64-cpython-39\torch_test_cpp_extension\maia.cp39-win_amd64.pyd -> ./install\Jenkins\Miniconda3\Lib\site-packages\torch_test_cpp_extension 2025-08-26T21:37:18.7331395Z copying build\lib.win-amd64-cpython-39\torch_test_cpp_extension\rng.cp39-win_amd64.pyd -> ./install\Jenkins\Miniconda3\Lib\site-packages\torch_test_cpp_extension 2025-08-26T21:37:18.7349439Z running install_egg_info 2025-08-26T21:37:18.7599102Z running egg_info 2025-08-26T21:37:18.7697793Z writing torch_test_cpp_extension.egg-info\PKG-INFO 2025-08-26T21:37:18.7707327Z writing dependency_links to torch_test_cpp_extension.egg-info\dependency_links.txt 2025-08-26T21:37:18.7711151Z writing entry points to torch_test_cpp_extension.egg-info\entry_points.txt 2025-08-26T21:37:18.7715609Z writing top-level names to torch_test_cpp_extension.egg-info\top_level.txt 2025-08-26T21:37:18.7826001Z reading manifest file 'torch_test_cpp_extension.egg-info\SOURCES.txt' 2025-08-26T21:37:18.7846871Z writing manifest file 'torch_test_cpp_extension.egg-info\SOURCES.txt' 2025-08-26T21:37:18.7849801Z removing './install\Jenkins\Miniconda3\Lib\site-packages\torch_test_cpp_extension-0.0.0-py3.9.egg-info' (and everything under it) 2025-08-26T21:37:18.7858018Z Copying torch_test_cpp_extension.egg-info to ./install\Jenkins\Miniconda3\Lib\site-packages\torch_test_cpp_extension-0.0.0-py3.9.egg-info 2025-08-26T21:37:18.7897890Z running install_scripts 2025-08-26T21:37:23.1371430Z 2025-08-26T21:37:23.1371970Z Running tests... 2025-08-26T21:37:23.1372297Z ---------------------------------------------------------------------- 2025-08-26T21:37:23.3642386Z . 2025-08-26T21:37:23.3642737Z ---------------------------------------------------------------------- 2025-08-26T21:37:23.3643290Z Ran 1 test in 0.234s 2025-08-26T21:37:23.3643427Z 2025-08-26T21:37:23.3643506Z OK 2025-08-26T21:37:23.3643597Z 2025-08-26T21:37:23.3643685Z Generating XML reports... 2025-08-26T21:37:24.0367499Z Running test_autoload_enable 1/1 ... [2025-08-26 21:37:24.036577] 2025-08-26T21:37:27.7034516Z running install 2025-08-26T21:37:27.7039708Z C:\Jenkins\Miniconda3\lib\site-packages\setuptools\_distutils\cmd.py:90: SetuptoolsDeprecationWarning: setup.py install is deprecated. 2025-08-26T21:37:27.7040409Z !! 2025-08-26T21:37:27.7040508Z 2025-08-26T21:37:27.7040620Z ******************************************************************************** 2025-08-26T21:37:27.7040977Z Please avoid running ``setup.py`` directly. 2025-08-26T21:37:27.7041338Z Instead, use pypa/build, pypa/installer or other 2025-08-26T21:37:27.7041659Z standards-based tools. 2025-08-26T21:37:27.7041830Z 2025-08-26T21:37:27.7042145Z See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details. 2025-08-26T21:37:27.7042632Z ******************************************************************************** 2025-08-26T21:37:27.7042865Z 2025-08-26T21:37:27.7042929Z !! 2025-08-26T21:37:27.7043247Z self.initialize_options() 2025-08-26T21:37:27.7158952Z running build 2025-08-26T21:37:27.7159193Z running build_py 2025-08-26T21:37:27.7266284Z creating build\lib.win-amd64-cpython-39\torch_test_cpp_extension 2025-08-26T21:37:27.7272251Z copying torch_test_cpp_extension\__init__.py -> build\lib.win-amd64-cpython-39\torch_test_cpp_extension 2025-08-26T21:37:27.7280198Z running build_ext 2025-08-26T21:37:27.7300450Z building 'torch_test_cpp_extension.cpp' extension 2025-08-26T21:37:27.7313843Z creating build\temp.win-amd64-cpython-39\Release 2025-08-26T21:37:27.7328593Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64\cl.exe" /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include -IC:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\api\include -Iself_compiler_include_dirs_test -IC:\Jenkins\Miniconda3\include -IC:\Jenkins\Miniconda3\Include "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" /EHsc /Tpextension.cpp /Fobuild\temp.win-amd64-cpython-39\Release\extension.obj /MD /wd4819 /wd4251 /wd4244 /wd4267 /wd4275 /wd4018 /wd4190 /wd4624 /wd4067 /wd4068 /EHsc /sdl /permissive- -DTORCH_API_INCLUDE_EXTENSION_H -DTORCH_EXTENSION_NAME=cpp /std:c++17 2025-08-26T21:37:27.7434906Z extension.cpp 2025-08-26T21:37:43.6464497Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64\link.exe" /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib /LIBPATH:C:\Jenkins\Miniconda3\libs /LIBPATH:C:\Jenkins\Miniconda3 /LIBPATH:C:\Jenkins\Miniconda3\PCbuild\amd64 "/LIBPATH:C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64" c10.lib torch.lib torch_cpu.lib torch_python.lib sleef.lib /EXPORT:PyInit_cpp build\temp.win-amd64-cpython-39\Release\extension.obj /OUT:build\lib.win-amd64-cpython-39\torch_test_cpp_extension\cpp.cp39-win_amd64.pyd /IMPLIB:build\temp.win-amd64-cpython-39\Release\cpp.cp39-win_amd64.lib 2025-08-26T21:37:43.8845118Z Creating library build\temp.win-amd64-cpython-39\Release\cpp.cp39-win_amd64.lib and object build\temp.win-amd64-cpython-39\Release\cpp.cp39-win_amd64.exp 2025-08-26T21:37:43.8932057Z Generating code 2025-08-26T21:37:45.7013854Z Finished generating code 2025-08-26T21:37:45.8367089Z building 'torch_test_cpp_extension.maia' extension 2025-08-26T21:37:45.8378231Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64\cl.exe" /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include -IC:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\api\include -Iself_compiler_include_dirs_test -IC:\Jenkins\Miniconda3\include -IC:\Jenkins\Miniconda3\Include "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" /EHsc /Tpmaia_extension.cpp /Fobuild\temp.win-amd64-cpython-39\Release\maia_extension.obj /MD /wd4819 /wd4251 /wd4244 /wd4267 /wd4275 /wd4018 /wd4190 /wd4624 /wd4067 /wd4068 /EHsc /sdl /permissive- -DTORCH_API_INCLUDE_EXTENSION_H -DTORCH_EXTENSION_NAME=maia /std:c++17 2025-08-26T21:37:45.8483380Z maia_extension.cpp 2025-08-26T21:38:01.6514964Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64\link.exe" /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib /LIBPATH:C:\Jenkins\Miniconda3\libs /LIBPATH:C:\Jenkins\Miniconda3 /LIBPATH:C:\Jenkins\Miniconda3\PCbuild\amd64 "/LIBPATH:C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64" c10.lib torch.lib torch_cpu.lib torch_python.lib sleef.lib /EXPORT:PyInit_maia build\temp.win-amd64-cpython-39\Release\maia_extension.obj /OUT:build\lib.win-amd64-cpython-39\torch_test_cpp_extension\maia.cp39-win_amd64.pyd /IMPLIB:build\temp.win-amd64-cpython-39\Release\maia.cp39-win_amd64.lib 2025-08-26T21:38:01.9107921Z Creating library build\temp.win-amd64-cpython-39\Release\maia.cp39-win_amd64.lib and object build\temp.win-amd64-cpython-39\Release\maia.cp39-win_amd64.exp 2025-08-26T21:38:01.9194976Z Generating code 2025-08-26T21:38:03.4526335Z Finished generating code 2025-08-26T21:38:03.5839405Z building 'torch_test_cpp_extension.rng' extension 2025-08-26T21:38:03.5850549Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64\cl.exe" /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include -IC:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\api\include -Iself_compiler_include_dirs_test -IC:\Jenkins\Miniconda3\include -IC:\Jenkins\Miniconda3\Include "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" /EHsc /Tprng_extension.cpp /Fobuild\temp.win-amd64-cpython-39\Release\rng_extension.obj /MD /wd4819 /wd4251 /wd4244 /wd4267 /wd4275 /wd4018 /wd4190 /wd4624 /wd4067 /wd4068 /EHsc /sdl /permissive- -DTORCH_API_INCLUDE_EXTENSION_H -DTORCH_EXTENSION_NAME=rng /std:c++17 2025-08-26T21:38:03.5954699Z rng_extension.cpp 2025-08-26T21:38:15.5838417Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1158): warning C4305: 'initializing': truncation from 'double' to 'float' 2025-08-26T21:38:15.5839695Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1158): note: the template instantiation context (the oldest one first) is 2025-08-26T21:38:15.5841161Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1209): note: see reference to function template instantiation 'scalar_t calc_igamma(scalar_t,scalar_t)' being compiled 2025-08-26T21:38:15.5842093Z with 2025-08-26T21:38:15.5842409Z [ 2025-08-26T21:38:15.5842603Z scalar_t=float 2025-08-26T21:38:15.5842878Z ] 2025-08-26T21:38:15.5843538Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1079): warning C4305: 'initializing': truncation from 'double' to 'float' 2025-08-26T21:38:15.5844746Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1079): note: the template instantiation context (the oldest one first) is 2025-08-26T21:38:15.5846172Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1223): note: see reference to function template instantiation 'scalar_t calc_igammac(scalar_t,scalar_t)' being compiled 2025-08-26T21:38:15.5847120Z with 2025-08-26T21:38:15.5847296Z [ 2025-08-26T21:38:15.5847470Z scalar_t=float 2025-08-26T21:38:15.5847676Z ] 2025-08-26T21:38:17.1853523Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(716): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1854415Z with 2025-08-26T21:38:17.1854600Z [ 2025-08-26T21:38:17.1854788Z scalar_t=float 2025-08-26T21:38:17.1855046Z ] 2025-08-26T21:38:17.1855723Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(716): note: the template instantiation context (the oldest one first) is 2025-08-26T21:38:17.1857155Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1209): note: see reference to function template instantiation 'scalar_t calc_igamma(scalar_t,scalar_t)' being compiled 2025-08-26T21:38:17.1858247Z with 2025-08-26T21:38:17.1858441Z [ 2025-08-26T21:38:17.1858616Z scalar_t=float 2025-08-26T21:38:17.1858842Z ] 2025-08-26T21:38:17.1859930Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1192): note: see reference to function template instantiation 'scalar_t _igam_helper_asymptotic_series(scalar_t,scalar_t,bool)' being compiled 2025-08-26T21:38:17.1861073Z with 2025-08-26T21:38:17.1861266Z [ 2025-08-26T21:38:17.1861440Z scalar_t=float 2025-08-26T21:38:17.1861655Z ] 2025-08-26T21:38:17.1862349Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(716): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1863127Z with 2025-08-26T21:38:17.1863302Z [ 2025-08-26T21:38:17.1863477Z scalar_t=float 2025-08-26T21:38:17.1863757Z ] 2025-08-26T21:38:17.1864433Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(716): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1865220Z with 2025-08-26T21:38:17.1865392Z [ 2025-08-26T21:38:17.1865587Z scalar_t=float 2025-08-26T21:38:17.1865829Z ] 2025-08-26T21:38:17.1866551Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(717): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1867350Z with 2025-08-26T21:38:17.1867513Z [ 2025-08-26T21:38:17.1867694Z scalar_t=float 2025-08-26T21:38:17.1867897Z ] 2025-08-26T21:38:17.1868591Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(717): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1869359Z with 2025-08-26T21:38:17.1869555Z [ 2025-08-26T21:38:17.1869729Z scalar_t=float 2025-08-26T21:38:17.1869964Z ] 2025-08-26T21:38:17.1870653Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(717): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1871489Z with 2025-08-26T21:38:17.1871683Z [ 2025-08-26T21:38:17.1871896Z scalar_t=float 2025-08-26T21:38:17.1872129Z ] 2025-08-26T21:38:17.1872879Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(718): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1873653Z with 2025-08-26T21:38:17.1873830Z [ 2025-08-26T21:38:17.1874024Z scalar_t=float 2025-08-26T21:38:17.1874264Z ] 2025-08-26T21:38:17.1874950Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(718): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1875738Z with 2025-08-26T21:38:17.1875911Z [ 2025-08-26T21:38:17.1876103Z scalar_t=float 2025-08-26T21:38:17.1876320Z ] 2025-08-26T21:38:17.1877028Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(718): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1877818Z with 2025-08-26T21:38:17.1878034Z [ 2025-08-26T21:38:17.1878230Z scalar_t=float 2025-08-26T21:38:17.1878478Z ] 2025-08-26T21:38:17.1889304Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(719): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1890312Z with 2025-08-26T21:38:17.1890478Z [ 2025-08-26T21:38:17.1890657Z scalar_t=float 2025-08-26T21:38:17.1890894Z ] 2025-08-26T21:38:17.1891724Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(719): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1892495Z with 2025-08-26T21:38:17.1892686Z [ 2025-08-26T21:38:17.1892940Z scalar_t=float 2025-08-26T21:38:17.1893156Z ] 2025-08-26T21:38:17.1893853Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(719): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1894619Z with 2025-08-26T21:38:17.1894802Z [ 2025-08-26T21:38:17.1894979Z scalar_t=float 2025-08-26T21:38:17.1895195Z ] 2025-08-26T21:38:17.1895868Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(720): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1896681Z with 2025-08-26T21:38:17.1896868Z [ 2025-08-26T21:38:17.1897039Z scalar_t=float 2025-08-26T21:38:17.1897260Z ] 2025-08-26T21:38:17.1897942Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(720): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1898712Z with 2025-08-26T21:38:17.1898875Z [ 2025-08-26T21:38:17.1899055Z scalar_t=float 2025-08-26T21:38:17.1899261Z ] 2025-08-26T21:38:17.1899948Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(720): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1900709Z with 2025-08-26T21:38:17.1900874Z [ 2025-08-26T21:38:17.1901050Z scalar_t=float 2025-08-26T21:38:17.1901266Z ] 2025-08-26T21:38:17.1901943Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(721): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1902693Z with 2025-08-26T21:38:17.1902872Z [ 2025-08-26T21:38:17.1903037Z scalar_t=float 2025-08-26T21:38:17.1903251Z ] 2025-08-26T21:38:17.1903992Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(721): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1904751Z with 2025-08-26T21:38:17.1904931Z [ 2025-08-26T21:38:17.1905148Z scalar_t=float 2025-08-26T21:38:17.1905371Z ] 2025-08-26T21:38:17.1906113Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(721): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1906874Z with 2025-08-26T21:38:17.1907053Z [ 2025-08-26T21:38:17.1907224Z scalar_t=float 2025-08-26T21:38:17.1907448Z ] 2025-08-26T21:38:17.1908120Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(722): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1908896Z with 2025-08-26T21:38:17.1909075Z [ 2025-08-26T21:38:17.1909265Z scalar_t=float 2025-08-26T21:38:17.1909480Z ] 2025-08-26T21:38:17.1910177Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(722): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1910943Z with 2025-08-26T21:38:17.1911112Z [ 2025-08-26T21:38:17.1911292Z scalar_t=float 2025-08-26T21:38:17.1911504Z ] 2025-08-26T21:38:17.1912184Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(722): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1912937Z with 2025-08-26T21:38:17.1913172Z [ 2025-08-26T21:38:17.1913351Z scalar_t=float 2025-08-26T21:38:17.1913572Z ] 2025-08-26T21:38:17.1914946Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(723): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1915726Z with 2025-08-26T21:38:17.1915896Z [ 2025-08-26T21:38:17.1916098Z scalar_t=float 2025-08-26T21:38:17.1916310Z ] 2025-08-26T21:38:17.1916991Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(723): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1917749Z with 2025-08-26T21:38:17.1917926Z [ 2025-08-26T21:38:17.1918096Z scalar_t=float 2025-08-26T21:38:17.1918300Z ] 2025-08-26T21:38:17.1918984Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(723): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1919787Z with 2025-08-26T21:38:17.1919962Z [ 2025-08-26T21:38:17.1920137Z scalar_t=float 2025-08-26T21:38:17.1920357Z ] 2025-08-26T21:38:17.1921037Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(724): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1921797Z with 2025-08-26T21:38:17.1921972Z [ 2025-08-26T21:38:17.1922139Z scalar_t=float 2025-08-26T21:38:17.1922355Z ] 2025-08-26T21:38:17.1923101Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(725): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1923869Z with 2025-08-26T21:38:17.1924046Z [ 2025-08-26T21:38:17.1924225Z scalar_t=float 2025-08-26T21:38:17.1924437Z ] 2025-08-26T21:38:17.1925122Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(725): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1925884Z with 2025-08-26T21:38:17.1926105Z [ 2025-08-26T21:38:17.1926288Z scalar_t=float 2025-08-26T21:38:17.1926491Z ] 2025-08-26T21:38:17.1927181Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(725): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1927925Z with 2025-08-26T21:38:17.1928095Z [ 2025-08-26T21:38:17.1928264Z scalar_t=float 2025-08-26T21:38:17.1928466Z ] 2025-08-26T21:38:17.1929142Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(726): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1929890Z with 2025-08-26T21:38:17.1930064Z [ 2025-08-26T21:38:17.1930225Z scalar_t=float 2025-08-26T21:38:17.1930438Z ] 2025-08-26T21:38:17.1931101Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(726): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1932419Z with 2025-08-26T21:38:17.1932591Z [ 2025-08-26T21:38:17.1932752Z scalar_t=float 2025-08-26T21:38:17.1932968Z ] 2025-08-26T21:38:17.1933634Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(726): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1934393Z with 2025-08-26T21:38:17.1934558Z [ 2025-08-26T21:38:17.1934736Z scalar_t=float 2025-08-26T21:38:17.1934942Z ] 2025-08-26T21:38:17.1935676Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(727): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1936519Z with 2025-08-26T21:38:17.1936726Z [ 2025-08-26T21:38:17.1936903Z scalar_t=float 2025-08-26T21:38:17.1937116Z ] 2025-08-26T21:38:17.1937838Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(727): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1938587Z with 2025-08-26T21:38:17.1938770Z [ 2025-08-26T21:38:17.1938945Z scalar_t=float 2025-08-26T21:38:17.1939162Z ] 2025-08-26T21:38:17.1939840Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(727): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1940593Z with 2025-08-26T21:38:17.1940765Z [ 2025-08-26T21:38:17.1940934Z scalar_t=float 2025-08-26T21:38:17.1941191Z ] 2025-08-26T21:38:17.1941864Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(728): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1942629Z with 2025-08-26T21:38:17.1942805Z [ 2025-08-26T21:38:17.1942979Z scalar_t=float 2025-08-26T21:38:17.1943187Z ] 2025-08-26T21:38:17.1943859Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(728): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1944608Z with 2025-08-26T21:38:17.1944776Z [ 2025-08-26T21:38:17.1944955Z scalar_t=float 2025-08-26T21:38:17.1945159Z ] 2025-08-26T21:38:17.1945832Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(728): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1946585Z with 2025-08-26T21:38:17.1946750Z [ 2025-08-26T21:38:17.1946924Z scalar_t=float 2025-08-26T21:38:17.1947133Z ] 2025-08-26T21:38:17.1947819Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(729): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1948620Z with 2025-08-26T21:38:17.1948801Z [ 2025-08-26T21:38:17.1948970Z scalar_t=float 2025-08-26T21:38:17.1949188Z ] 2025-08-26T21:38:17.1949883Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(729): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1950633Z with 2025-08-26T21:38:17.1950804Z [ 2025-08-26T21:38:17.1950971Z scalar_t=float 2025-08-26T21:38:17.1951187Z ] 2025-08-26T21:38:17.1951859Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(729): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1952617Z with 2025-08-26T21:38:17.1952785Z [ 2025-08-26T21:38:17.1952960Z scalar_t=float 2025-08-26T21:38:17.1953178Z ] 2025-08-26T21:38:17.1953851Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(730): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1954605Z with 2025-08-26T21:38:17.1954769Z [ 2025-08-26T21:38:17.1954948Z scalar_t=float 2025-08-26T21:38:17.1955166Z ] 2025-08-26T21:38:17.1955855Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(730): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1956605Z with 2025-08-26T21:38:17.1956776Z [ 2025-08-26T21:38:17.1956940Z scalar_t=float 2025-08-26T21:38:17.1957201Z ] 2025-08-26T21:38:17.1957871Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(730): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1958630Z with 2025-08-26T21:38:17.1958844Z [ 2025-08-26T21:38:17.1959012Z scalar_t=float 2025-08-26T21:38:17.1959225Z ] 2025-08-26T21:38:17.1959896Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(731): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1960661Z with 2025-08-26T21:38:17.1960826Z [ 2025-08-26T21:38:17.1961003Z scalar_t=float 2025-08-26T21:38:17.1961203Z ] 2025-08-26T21:38:17.1961878Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(731): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1962744Z with 2025-08-26T21:38:17.1962964Z [ 2025-08-26T21:38:17.1963141Z scalar_t=float 2025-08-26T21:38:17.1963349Z ] 2025-08-26T21:38:17.1964034Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(731): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1964778Z with 2025-08-26T21:38:17.1964951Z [ 2025-08-26T21:38:17.1965117Z scalar_t=float 2025-08-26T21:38:17.1965327Z ] 2025-08-26T21:38:17.1966000Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(732): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1966744Z with 2025-08-26T21:38:17.1966927Z [ 2025-08-26T21:38:17.1967090Z scalar_t=float 2025-08-26T21:38:17.1967297Z ] 2025-08-26T21:38:17.1967965Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(732): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1968734Z with 2025-08-26T21:38:17.1968905Z [ 2025-08-26T21:38:17.1969067Z scalar_t=float 2025-08-26T21:38:17.1969340Z ] 2025-08-26T21:38:17.1970016Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(732): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1970783Z with 2025-08-26T21:38:17.1970949Z [ 2025-08-26T21:38:17.1971131Z scalar_t=float 2025-08-26T21:38:17.1971348Z ] 2025-08-26T21:38:17.1972025Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(733): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1972784Z with 2025-08-26T21:38:17.1972946Z [ 2025-08-26T21:38:17.1973121Z scalar_t=float 2025-08-26T21:38:17.1973332Z ] 2025-08-26T21:38:17.1974010Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(734): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1974759Z with 2025-08-26T21:38:17.1974932Z [ 2025-08-26T21:38:17.1975097Z scalar_t=float 2025-08-26T21:38:17.1975308Z ] 2025-08-26T21:38:17.1975982Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(734): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1976727Z with 2025-08-26T21:38:17.1976898Z [ 2025-08-26T21:38:17.1977069Z scalar_t=float 2025-08-26T21:38:17.1977279Z ] 2025-08-26T21:38:17.1977951Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(734): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1978760Z with 2025-08-26T21:38:17.1978926Z [ 2025-08-26T21:38:17.1979098Z scalar_t=float 2025-08-26T21:38:17.1979307Z ] 2025-08-26T21:38:17.1980020Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(735): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1980785Z with 2025-08-26T21:38:17.1980959Z [ 2025-08-26T21:38:17.1981133Z scalar_t=float 2025-08-26T21:38:17.1981336Z ] 2025-08-26T21:38:17.1982007Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(735): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1982755Z with 2025-08-26T21:38:17.1982929Z [ 2025-08-26T21:38:17.1983098Z scalar_t=float 2025-08-26T21:38:17.1983306Z ] 2025-08-26T21:38:17.1983987Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(735): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1984777Z with 2025-08-26T21:38:17.1984959Z [ 2025-08-26T21:38:17.1985123Z scalar_t=float 2025-08-26T21:38:17.1985342Z ] 2025-08-26T21:38:17.1986021Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(736): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1986784Z with 2025-08-26T21:38:17.1986957Z [ 2025-08-26T21:38:17.1987132Z scalar_t=float 2025-08-26T21:38:17.1987350Z ] 2025-08-26T21:38:17.1988013Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(736): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1988770Z with 2025-08-26T21:38:17.1988935Z [ 2025-08-26T21:38:17.1989106Z scalar_t=float 2025-08-26T21:38:17.1989317Z ] 2025-08-26T21:38:17.1989995Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(736): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1990788Z with 2025-08-26T21:38:17.1990954Z [ 2025-08-26T21:38:17.1991130Z scalar_t=float 2025-08-26T21:38:17.1991339Z ] 2025-08-26T21:38:17.1992017Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(737): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1992767Z with 2025-08-26T21:38:17.1992943Z [ 2025-08-26T21:38:17.1993111Z scalar_t=float 2025-08-26T21:38:17.1993324Z ] 2025-08-26T21:38:17.1993995Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(737): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1994750Z with 2025-08-26T21:38:17.1994927Z [ 2025-08-26T21:38:17.1995098Z scalar_t=float 2025-08-26T21:38:17.1995305Z ] 2025-08-26T21:38:17.1995973Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(737): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1996726Z with 2025-08-26T21:38:17.1996886Z [ 2025-08-26T21:38:17.1997053Z scalar_t=float 2025-08-26T21:38:17.1997257Z ] 2025-08-26T21:38:17.1997914Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(738): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.1998670Z with 2025-08-26T21:38:17.1998830Z [ 2025-08-26T21:38:17.1998994Z scalar_t=float 2025-08-26T21:38:17.1999195Z ] 2025-08-26T21:38:17.1999903Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(738): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2000660Z with 2025-08-26T21:38:17.2000821Z [ 2025-08-26T21:38:17.2000999Z scalar_t=float 2025-08-26T21:38:17.2001244Z ] 2025-08-26T21:38:17.2001920Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(738): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2002670Z with 2025-08-26T21:38:17.2002892Z [ 2025-08-26T21:38:17.2003067Z scalar_t=float 2025-08-26T21:38:17.2003293Z ] 2025-08-26T21:38:17.2003957Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(739): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2004711Z with 2025-08-26T21:38:17.2004879Z [ 2025-08-26T21:38:17.2005089Z scalar_t=float 2025-08-26T21:38:17.2005309Z ] 2025-08-26T21:38:17.2005980Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(739): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2006748Z with 2025-08-26T21:38:17.2006932Z [ 2025-08-26T21:38:17.2007125Z scalar_t=float 2025-08-26T21:38:17.2007343Z ] 2025-08-26T21:38:17.2008036Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(739): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2008811Z with 2025-08-26T21:38:17.2008985Z [ 2025-08-26T21:38:17.2009173Z scalar_t=float 2025-08-26T21:38:17.2009388Z ] 2025-08-26T21:38:17.2010077Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(740): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2010842Z with 2025-08-26T21:38:17.2011028Z [ 2025-08-26T21:38:17.2011221Z scalar_t=float 2025-08-26T21:38:17.2011433Z ] 2025-08-26T21:38:17.2012126Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(740): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2013465Z with 2025-08-26T21:38:17.2013657Z [ 2025-08-26T21:38:17.2013840Z scalar_t=float 2025-08-26T21:38:17.2014077Z ] 2025-08-26T21:38:17.2014761Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(740): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2015542Z with 2025-08-26T21:38:17.2015731Z [ 2025-08-26T21:38:17.2015912Z scalar_t=float 2025-08-26T21:38:17.2016145Z ] 2025-08-26T21:38:17.2016830Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(741): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2017599Z with 2025-08-26T21:38:17.2017772Z [ 2025-08-26T21:38:17.2017967Z scalar_t=float 2025-08-26T21:38:17.2018185Z ] 2025-08-26T21:38:17.2018878Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(741): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2019649Z with 2025-08-26T21:38:17.2019824Z [ 2025-08-26T21:38:17.2020017Z scalar_t=float 2025-08-26T21:38:17.2020233Z ] 2025-08-26T21:38:17.2020927Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(741): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2021688Z with 2025-08-26T21:38:17.2021880Z [ 2025-08-26T21:38:17.2022107Z scalar_t=float 2025-08-26T21:38:17.2022332Z ] 2025-08-26T21:38:17.2023022Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(742): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2023821Z with 2025-08-26T21:38:17.2024015Z [ 2025-08-26T21:38:17.2024189Z scalar_t=float 2025-08-26T21:38:17.2024421Z ] 2025-08-26T21:38:17.2025109Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(743): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2025895Z with 2025-08-26T21:38:17.2026076Z [ 2025-08-26T21:38:17.2026277Z scalar_t=float 2025-08-26T21:38:17.2026503Z ] 2025-08-26T21:38:17.2027179Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(743): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2027993Z with 2025-08-26T21:38:17.2028170Z [ 2025-08-26T21:38:17.2028359Z scalar_t=float 2025-08-26T21:38:17.2028575Z ] 2025-08-26T21:38:17.2029281Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(743): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2030054Z with 2025-08-26T21:38:17.2030232Z [ 2025-08-26T21:38:17.2030418Z scalar_t=float 2025-08-26T21:38:17.2030642Z ] 2025-08-26T21:38:17.2031335Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(744): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2032100Z with 2025-08-26T21:38:17.2032290Z [ 2025-08-26T21:38:17.2032468Z scalar_t=float 2025-08-26T21:38:17.2032695Z ] 2025-08-26T21:38:17.2033377Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(744): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2034144Z with 2025-08-26T21:38:17.2034330Z [ 2025-08-26T21:38:17.2034512Z scalar_t=float 2025-08-26T21:38:17.2034782Z ] 2025-08-26T21:38:17.2035466Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(744): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2036249Z with 2025-08-26T21:38:17.2036434Z [ 2025-08-26T21:38:17.2036627Z scalar_t=float 2025-08-26T21:38:17.2036832Z ] 2025-08-26T21:38:17.2037505Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(745): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2038264Z with 2025-08-26T21:38:17.2038435Z [ 2025-08-26T21:38:17.2038610Z scalar_t=float 2025-08-26T21:38:17.2038814Z ] 2025-08-26T21:38:17.2039489Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(745): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2040238Z with 2025-08-26T21:38:17.2040413Z [ 2025-08-26T21:38:17.2040578Z scalar_t=float 2025-08-26T21:38:17.2040794Z ] 2025-08-26T21:38:17.2041469Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(745): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2042216Z with 2025-08-26T21:38:17.2042388Z [ 2025-08-26T21:38:17.2042551Z scalar_t=float 2025-08-26T21:38:17.2042761Z ] 2025-08-26T21:38:17.2043547Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(746): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2044320Z with 2025-08-26T21:38:17.2044493Z [ 2025-08-26T21:38:17.2044664Z scalar_t=float 2025-08-26T21:38:17.2044881Z ] 2025-08-26T21:38:17.2045592Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(746): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2046359Z with 2025-08-26T21:38:17.2046521Z [ 2025-08-26T21:38:17.2046696Z scalar_t=float 2025-08-26T21:38:17.2046903Z ] 2025-08-26T21:38:17.2047587Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(746): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2048341Z with 2025-08-26T21:38:17.2048503Z [ 2025-08-26T21:38:17.2048672Z scalar_t=float 2025-08-26T21:38:17.2048873Z ] 2025-08-26T21:38:17.2049599Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(747): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2050356Z with 2025-08-26T21:38:17.2050537Z [ 2025-08-26T21:38:17.2050702Z scalar_t=float 2025-08-26T21:38:17.2050917Z ] 2025-08-26T21:38:17.2051598Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(747): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2052341Z with 2025-08-26T21:38:17.2052520Z [ 2025-08-26T21:38:17.2052688Z scalar_t=float 2025-08-26T21:38:17.2052904Z ] 2025-08-26T21:38:17.2053572Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(747): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2054322Z with 2025-08-26T21:38:17.2054494Z [ 2025-08-26T21:38:17.2054670Z scalar_t=float 2025-08-26T21:38:17.2054881Z ] 2025-08-26T21:38:17.2055548Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(748): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2056353Z with 2025-08-26T21:38:17.2056521Z [ 2025-08-26T21:38:17.2056703Z scalar_t=float 2025-08-26T21:38:17.2056911Z ] 2025-08-26T21:38:17.2057590Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(748): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2058343Z with 2025-08-26T21:38:17.2058513Z [ 2025-08-26T21:38:17.2058683Z scalar_t=float 2025-08-26T21:38:17.2058892Z ] 2025-08-26T21:38:17.2059570Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(748): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2060320Z with 2025-08-26T21:38:17.2060494Z [ 2025-08-26T21:38:17.2060662Z scalar_t=float 2025-08-26T21:38:17.2060875Z ] 2025-08-26T21:38:17.2061544Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(749): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2062309Z with 2025-08-26T21:38:17.2062486Z [ 2025-08-26T21:38:17.2062654Z scalar_t=float 2025-08-26T21:38:17.2062868Z ] 2025-08-26T21:38:17.2063541Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(749): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2064303Z with 2025-08-26T21:38:17.2064474Z [ 2025-08-26T21:38:17.2064648Z scalar_t=float 2025-08-26T21:38:17.2064855Z ] 2025-08-26T21:38:17.2065576Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(749): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2066335Z with 2025-08-26T21:38:17.2066502Z [ 2025-08-26T21:38:17.2066680Z scalar_t=float 2025-08-26T21:38:17.2066929Z ] 2025-08-26T21:38:17.2067604Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(750): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2068359Z with 2025-08-26T21:38:17.2068539Z [ 2025-08-26T21:38:17.2068703Z scalar_t=float 2025-08-26T21:38:17.2068917Z ] 2025-08-26T21:38:17.2069599Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(750): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2070357Z with 2025-08-26T21:38:17.2070569Z [ 2025-08-26T21:38:17.2070743Z scalar_t=float 2025-08-26T21:38:17.2070960Z ] 2025-08-26T21:38:17.2071632Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(750): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2072396Z with 2025-08-26T21:38:17.2072566Z [ 2025-08-26T21:38:17.2072743Z scalar_t=float 2025-08-26T21:38:17.2072955Z ] 2025-08-26T21:38:17.2073620Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(751): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2074382Z with 2025-08-26T21:38:17.2074549Z [ 2025-08-26T21:38:17.2074720Z scalar_t=float 2025-08-26T21:38:17.2074925Z ] 2025-08-26T21:38:17.2075607Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(752): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2076359Z with 2025-08-26T21:38:17.2076522Z [ 2025-08-26T21:38:17.2076701Z scalar_t=float 2025-08-26T21:38:17.2076910Z ] 2025-08-26T21:38:17.2077588Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(752): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2078378Z with 2025-08-26T21:38:17.2078547Z [ 2025-08-26T21:38:17.2078711Z scalar_t=float 2025-08-26T21:38:17.2078922Z ] 2025-08-26T21:38:17.2079591Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(752): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2080359Z with 2025-08-26T21:38:17.2080529Z [ 2025-08-26T21:38:17.2080691Z scalar_t=float 2025-08-26T21:38:17.2080906Z ] 2025-08-26T21:38:17.2081576Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(753): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2082348Z with 2025-08-26T21:38:17.2082510Z [ 2025-08-26T21:38:17.2082691Z scalar_t=float 2025-08-26T21:38:17.2082984Z ] 2025-08-26T21:38:17.2083674Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(753): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2084442Z with 2025-08-26T21:38:17.2084608Z [ 2025-08-26T21:38:17.2084788Z scalar_t=float 2025-08-26T21:38:17.2084991Z ] 2025-08-26T21:38:17.2085666Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(753): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2086423Z with 2025-08-26T21:38:17.2086594Z [ 2025-08-26T21:38:17.2086816Z scalar_t=float 2025-08-26T21:38:17.2087029Z ] 2025-08-26T21:38:17.2087694Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(754): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2088481Z with 2025-08-26T21:38:17.2088657Z [ 2025-08-26T21:38:17.2088821Z scalar_t=float 2025-08-26T21:38:17.2089031Z ] 2025-08-26T21:38:17.2089702Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(754): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2090473Z with 2025-08-26T21:38:17.2090647Z [ 2025-08-26T21:38:17.2090812Z scalar_t=float 2025-08-26T21:38:17.2091020Z ] 2025-08-26T21:38:17.2091686Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(754): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2092478Z with 2025-08-26T21:38:17.2092642Z [ 2025-08-26T21:38:17.2092813Z scalar_t=float 2025-08-26T21:38:17.2093019Z ] 2025-08-26T21:38:17.2093704Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(755): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2094461Z with 2025-08-26T21:38:17.2094627Z [ 2025-08-26T21:38:17.2094801Z scalar_t=float 2025-08-26T21:38:17.2095014Z ] 2025-08-26T21:38:17.2095697Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(755): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2096439Z with 2025-08-26T21:38:17.2096607Z [ 2025-08-26T21:38:17.2096773Z scalar_t=float 2025-08-26T21:38:17.2096990Z ] 2025-08-26T21:38:17.2097668Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(755): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2098408Z with 2025-08-26T21:38:17.2098581Z [ 2025-08-26T21:38:17.2098795Z scalar_t=float 2025-08-26T21:38:17.2099008Z ] 2025-08-26T21:38:17.2099678Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(756): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2100439Z with 2025-08-26T21:38:17.2100603Z [ 2025-08-26T21:38:17.2100790Z scalar_t=float 2025-08-26T21:38:17.2101006Z ] 2025-08-26T21:38:17.2101676Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(756): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2102431Z with 2025-08-26T21:38:17.2102596Z [ 2025-08-26T21:38:17.2102774Z scalar_t=float 2025-08-26T21:38:17.2102986Z ] 2025-08-26T21:38:17.2103662Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(756): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2104419Z with 2025-08-26T21:38:17.2104582Z [ 2025-08-26T21:38:17.2104761Z scalar_t=float 2025-08-26T21:38:17.2104967Z ] 2025-08-26T21:38:17.2105638Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(757): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2106387Z with 2025-08-26T21:38:17.2106559Z [ 2025-08-26T21:38:17.2106729Z scalar_t=float 2025-08-26T21:38:17.2106946Z ] 2025-08-26T21:38:17.2107652Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(757): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2108419Z with 2025-08-26T21:38:17.2108596Z [ 2025-08-26T21:38:17.2108763Z scalar_t=float 2025-08-26T21:38:17.2108980Z ] 2025-08-26T21:38:17.2109691Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(757): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2110452Z with 2025-08-26T21:38:17.2110620Z [ 2025-08-26T21:38:17.2110804Z scalar_t=float 2025-08-26T21:38:17.2111015Z ] 2025-08-26T21:38:17.2111697Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(758): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2112464Z with 2025-08-26T21:38:17.2112633Z [ 2025-08-26T21:38:17.2112807Z scalar_t=float 2025-08-26T21:38:17.2113056Z ] 2025-08-26T21:38:17.2113730Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(758): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2114484Z with 2025-08-26T21:38:17.2114673Z [ 2025-08-26T21:38:17.2114850Z scalar_t=float 2025-08-26T21:38:17.2115067Z ] 2025-08-26T21:38:17.2115746Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(758): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2116494Z with 2025-08-26T21:38:17.2116675Z [ 2025-08-26T21:38:17.2116841Z scalar_t=float 2025-08-26T21:38:17.2117059Z ] 2025-08-26T21:38:17.2117728Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(759): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2118490Z with 2025-08-26T21:38:17.2118655Z [ 2025-08-26T21:38:17.2118916Z scalar_t=float 2025-08-26T21:38:17.2119177Z ] 2025-08-26T21:38:17.2119911Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(759): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2120737Z with 2025-08-26T21:38:17.2120909Z [ 2025-08-26T21:38:17.2121087Z scalar_t=float 2025-08-26T21:38:17.2121290Z ] 2025-08-26T21:38:17.2121969Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(759): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2122722Z with 2025-08-26T21:38:17.2122940Z [ 2025-08-26T21:38:17.2123112Z scalar_t=float 2025-08-26T21:38:17.2123322Z ] 2025-08-26T21:38:17.2124005Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(760): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2124829Z with 2025-08-26T21:38:17.2124999Z [ 2025-08-26T21:38:17.2125167Z scalar_t=float 2025-08-26T21:38:17.2125377Z ] 2025-08-26T21:38:17.2126053Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(761): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2126806Z with 2025-08-26T21:38:17.2126978Z [ 2025-08-26T21:38:17.2127144Z scalar_t=float 2025-08-26T21:38:17.2127353Z ] 2025-08-26T21:38:17.2128020Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(761): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2128777Z with 2025-08-26T21:38:17.2128944Z [ 2025-08-26T21:38:17.2129115Z scalar_t=float 2025-08-26T21:38:17.2129326Z ] 2025-08-26T21:38:17.2130086Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(761): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2130905Z with 2025-08-26T21:38:17.2131072Z [ 2025-08-26T21:38:17.2131288Z scalar_t=float 2025-08-26T21:38:17.2131497Z ] 2025-08-26T21:38:17.2132174Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(762): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2132931Z with 2025-08-26T21:38:17.2133108Z [ 2025-08-26T21:38:17.2133283Z scalar_t=float 2025-08-26T21:38:17.2133489Z ] 2025-08-26T21:38:17.2134170Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(762): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2135373Z with 2025-08-26T21:38:17.2135552Z [ 2025-08-26T21:38:17.2135721Z scalar_t=float 2025-08-26T21:38:17.2135935Z ] 2025-08-26T21:38:17.2136686Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(762): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2137448Z with 2025-08-26T21:38:17.2137621Z [ 2025-08-26T21:38:17.2137787Z scalar_t=float 2025-08-26T21:38:17.2138004Z ] 2025-08-26T21:38:17.2138669Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(763): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2139426Z with 2025-08-26T21:38:17.2139590Z [ 2025-08-26T21:38:17.2139767Z scalar_t=float 2025-08-26T21:38:17.2139965Z ] 2025-08-26T21:38:17.2140639Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(763): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2141382Z with 2025-08-26T21:38:17.2141548Z [ 2025-08-26T21:38:17.2141725Z scalar_t=float 2025-08-26T21:38:17.2141927Z ] 2025-08-26T21:38:17.2142733Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(763): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2143492Z with 2025-08-26T21:38:17.2143676Z [ 2025-08-26T21:38:17.2143843Z scalar_t=float 2025-08-26T21:38:17.2144055Z ] 2025-08-26T21:38:17.2144724Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(764): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2145476Z with 2025-08-26T21:38:17.2145650Z [ 2025-08-26T21:38:17.2145814Z scalar_t=float 2025-08-26T21:38:17.2146025Z ] 2025-08-26T21:38:17.2146693Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(764): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2147445Z with 2025-08-26T21:38:17.2147611Z [ 2025-08-26T21:38:17.2147789Z scalar_t=float 2025-08-26T21:38:17.2148036Z ] 2025-08-26T21:38:17.2148743Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(764): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2149504Z with 2025-08-26T21:38:17.2149665Z [ 2025-08-26T21:38:17.2149841Z scalar_t=float 2025-08-26T21:38:17.2150051Z ] 2025-08-26T21:38:17.2150723Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(765): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2151486Z with 2025-08-26T21:38:17.2151702Z [ 2025-08-26T21:38:17.2151882Z scalar_t=float 2025-08-26T21:38:17.2152090Z ] 2025-08-26T21:38:17.2152817Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(765): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2153581Z with 2025-08-26T21:38:17.2153790Z [ 2025-08-26T21:38:17.2153958Z scalar_t=float 2025-08-26T21:38:17.2154171Z ] 2025-08-26T21:38:17.2154878Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(765): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2155638Z with 2025-08-26T21:38:17.2155812Z [ 2025-08-26T21:38:17.2155974Z scalar_t=float 2025-08-26T21:38:17.2156189Z ] 2025-08-26T21:38:17.2156862Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(766): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2157677Z with 2025-08-26T21:38:17.2157844Z [ 2025-08-26T21:38:17.2158025Z scalar_t=float 2025-08-26T21:38:17.2158229Z ] 2025-08-26T21:38:17.2158911Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(766): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2159713Z with 2025-08-26T21:38:17.2159873Z [ 2025-08-26T21:38:17.2160043Z scalar_t=float 2025-08-26T21:38:17.2160283Z ] 2025-08-26T21:38:17.2160954Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(766): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2161695Z with 2025-08-26T21:38:17.2161864Z [ 2025-08-26T21:38:17.2162037Z scalar_t=float 2025-08-26T21:38:17.2162245Z ] 2025-08-26T21:38:17.2162972Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(767): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2163725Z with 2025-08-26T21:38:17.2163960Z [ 2025-08-26T21:38:17.2164131Z scalar_t=float 2025-08-26T21:38:17.2164345Z ] 2025-08-26T21:38:17.2165014Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(767): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2165809Z with 2025-08-26T21:38:17.2165986Z [ 2025-08-26T21:38:17.2166189Z scalar_t=float 2025-08-26T21:38:17.2166399Z ] 2025-08-26T21:38:17.2167070Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(767): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2167821Z with 2025-08-26T21:38:17.2167983Z [ 2025-08-26T21:38:17.2168162Z scalar_t=float 2025-08-26T21:38:17.2168362Z ] 2025-08-26T21:38:17.2169033Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(768): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2169797Z with 2025-08-26T21:38:17.2169957Z [ 2025-08-26T21:38:17.2170135Z scalar_t=float 2025-08-26T21:38:17.2170343Z ] 2025-08-26T21:38:17.2171019Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(768): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2171800Z with 2025-08-26T21:38:17.2172012Z [ 2025-08-26T21:38:17.2172175Z scalar_t=float 2025-08-26T21:38:17.2172385Z ] 2025-08-26T21:38:17.2173117Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(768): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2173872Z with 2025-08-26T21:38:17.2174045Z [ 2025-08-26T21:38:17.2174212Z scalar_t=float 2025-08-26T21:38:17.2174425Z ] 2025-08-26T21:38:17.2175133Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(769): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2175894Z with 2025-08-26T21:38:17.2176056Z [ 2025-08-26T21:38:17.2176228Z scalar_t=float 2025-08-26T21:38:17.2176443Z ] 2025-08-26T21:38:17.2177114Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(770): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2177947Z with 2025-08-26T21:38:17.2178109Z [ 2025-08-26T21:38:17.2178286Z scalar_t=float 2025-08-26T21:38:17.2178534Z ] 2025-08-26T21:38:17.2179210Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(770): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2179958Z with 2025-08-26T21:38:17.2180136Z [ 2025-08-26T21:38:17.2180312Z scalar_t=float 2025-08-26T21:38:17.2180515Z ] 2025-08-26T21:38:17.2181191Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(770): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2181936Z with 2025-08-26T21:38:17.2182106Z [ 2025-08-26T21:38:17.2182268Z scalar_t=float 2025-08-26T21:38:17.2182475Z ] 2025-08-26T21:38:17.2183154Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(771): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2183991Z with 2025-08-26T21:38:17.2184166Z [ 2025-08-26T21:38:17.2184333Z scalar_t=float 2025-08-26T21:38:17.2184550Z ] 2025-08-26T21:38:17.2185222Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(771): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2186029Z with 2025-08-26T21:38:17.2186198Z [ 2025-08-26T21:38:17.2186383Z scalar_t=float 2025-08-26T21:38:17.2186590Z ] 2025-08-26T21:38:17.2187263Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(771): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2188020Z with 2025-08-26T21:38:17.2188181Z [ 2025-08-26T21:38:17.2188352Z scalar_t=float 2025-08-26T21:38:17.2188553Z ] 2025-08-26T21:38:17.2189262Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(772): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2190062Z with 2025-08-26T21:38:17.2190234Z [ 2025-08-26T21:38:17.2190399Z scalar_t=float 2025-08-26T21:38:17.2190618Z ] 2025-08-26T21:38:17.2191295Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(772): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2192045Z with 2025-08-26T21:38:17.2192220Z [ 2025-08-26T21:38:17.2192385Z scalar_t=float 2025-08-26T21:38:17.2192593Z ] 2025-08-26T21:38:17.2193267Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(772): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2194021Z with 2025-08-26T21:38:17.2194201Z [ 2025-08-26T21:38:17.2194368Z scalar_t=float 2025-08-26T21:38:17.2194629Z ] 2025-08-26T21:38:17.2195338Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(773): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2196148Z with 2025-08-26T21:38:17.2196359Z [ 2025-08-26T21:38:17.2196539Z scalar_t=float 2025-08-26T21:38:17.2196745Z ] 2025-08-26T21:38:17.2197427Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(773): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2198204Z with 2025-08-26T21:38:17.2198368Z [ 2025-08-26T21:38:17.2198544Z scalar_t=float 2025-08-26T21:38:17.2198748Z ] 2025-08-26T21:38:17.2199428Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(773): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2200226Z with 2025-08-26T21:38:17.2200395Z [ 2025-08-26T21:38:17.2200558Z scalar_t=float 2025-08-26T21:38:17.2200811Z ] 2025-08-26T21:38:17.2201541Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(774): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2202298Z with 2025-08-26T21:38:17.2202476Z [ 2025-08-26T21:38:17.2202642Z scalar_t=float 2025-08-26T21:38:17.2202903Z ] 2025-08-26T21:38:17.2203569Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(774): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2204325Z with 2025-08-26T21:38:17.2204497Z [ 2025-08-26T21:38:17.2204679Z scalar_t=float 2025-08-26T21:38:17.2204891Z ] 2025-08-26T21:38:17.2205573Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(774): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2206332Z with 2025-08-26T21:38:17.2206498Z [ 2025-08-26T21:38:17.2206712Z scalar_t=float 2025-08-26T21:38:17.2206961Z ] 2025-08-26T21:38:17.2207686Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(775): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2208434Z with 2025-08-26T21:38:17.2208612Z [ 2025-08-26T21:38:17.2208786Z scalar_t=float 2025-08-26T21:38:17.2208989Z ] 2025-08-26T21:38:17.2209667Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(775): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2210413Z with 2025-08-26T21:38:17.2210580Z [ 2025-08-26T21:38:17.2210746Z scalar_t=float 2025-08-26T21:38:17.2210957Z ] 2025-08-26T21:38:17.2211627Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(775): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2212430Z with 2025-08-26T21:38:17.2212607Z [ 2025-08-26T21:38:17.2212813Z scalar_t=float 2025-08-26T21:38:17.2213035Z ] 2025-08-26T21:38:17.2213708Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(776): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2214456Z with 2025-08-26T21:38:17.2214621Z [ 2025-08-26T21:38:17.2214799Z scalar_t=float 2025-08-26T21:38:17.2215002Z ] 2025-08-26T21:38:17.2215682Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(776): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2216486Z with 2025-08-26T21:38:17.2216653Z [ 2025-08-26T21:38:17.2216832Z scalar_t=float 2025-08-26T21:38:17.2217042Z ] 2025-08-26T21:38:17.2217770Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(776): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2218597Z with 2025-08-26T21:38:17.2218775Z [ 2025-08-26T21:38:17.2218942Z scalar_t=float 2025-08-26T21:38:17.2219162Z ] 2025-08-26T21:38:17.2219839Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(777): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2220598Z with 2025-08-26T21:38:17.2220774Z [ 2025-08-26T21:38:17.2220935Z scalar_t=float 2025-08-26T21:38:17.2221140Z ] 2025-08-26T21:38:17.2221808Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(777): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2222612Z with 2025-08-26T21:38:17.2222772Z [ 2025-08-26T21:38:17.2222954Z scalar_t=float 2025-08-26T21:38:17.2223174Z ] 2025-08-26T21:38:17.2223884Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(777): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2224679Z with 2025-08-26T21:38:17.2224841Z [ 2025-08-26T21:38:17.2225016Z scalar_t=float 2025-08-26T21:38:17.2225218Z ] 2025-08-26T21:38:17.2225898Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(778): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2226658Z with 2025-08-26T21:38:17.2226824Z [ 2025-08-26T21:38:17.2227000Z scalar_t=float 2025-08-26T21:38:17.2227207Z ] 2025-08-26T21:38:17.2227879Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(779): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2228673Z with 2025-08-26T21:38:17.2228851Z [ 2025-08-26T21:38:17.2229024Z scalar_t=float 2025-08-26T21:38:17.2229244Z ] 2025-08-26T21:38:17.2229981Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(779): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2230746Z with 2025-08-26T21:38:17.2230921Z [ 2025-08-26T21:38:17.2231085Z scalar_t=float 2025-08-26T21:38:17.2231300Z ] 2025-08-26T21:38:17.2231965Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(779): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2232726Z with 2025-08-26T21:38:17.2232891Z [ 2025-08-26T21:38:17.2233065Z scalar_t=float 2025-08-26T21:38:17.2233270Z ] 2025-08-26T21:38:17.2233952Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(780): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2234712Z with 2025-08-26T21:38:17.2234883Z [ 2025-08-26T21:38:17.2235100Z scalar_t=float 2025-08-26T21:38:17.2235307Z ] 2025-08-26T21:38:17.2236015Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(780): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2236773Z with 2025-08-26T21:38:17.2236942Z [ 2025-08-26T21:38:17.2237107Z scalar_t=float 2025-08-26T21:38:17.2237319Z ] 2025-08-26T21:38:17.2238371Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(780): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2239148Z with 2025-08-26T21:38:17.2239329Z [ 2025-08-26T21:38:17.2239498Z scalar_t=float 2025-08-26T21:38:17.2239719Z ] 2025-08-26T21:38:17.2240439Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(781): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2241286Z with 2025-08-26T21:38:17.2241460Z [ 2025-08-26T21:38:17.2241621Z scalar_t=float 2025-08-26T21:38:17.2241837Z ] 2025-08-26T21:38:17.2242507Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(781): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2243323Z with 2025-08-26T21:38:17.2243491Z [ 2025-08-26T21:38:17.2243709Z scalar_t=float 2025-08-26T21:38:17.2257897Z ] 2025-08-26T21:38:17.2258732Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(781): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2259588Z with 2025-08-26T21:38:17.2259780Z [ 2025-08-26T21:38:17.2259958Z scalar_t=float 2025-08-26T21:38:17.2260183Z ] 2025-08-26T21:38:17.2260861Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(782): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2261643Z with 2025-08-26T21:38:17.2261808Z [ 2025-08-26T21:38:17.2261985Z scalar_t=float 2025-08-26T21:38:17.2262196Z ] 2025-08-26T21:38:17.2262888Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(782): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2263659Z with 2025-08-26T21:38:17.2263828Z [ 2025-08-26T21:38:17.2264056Z scalar_t=float 2025-08-26T21:38:17.2264259Z ] 2025-08-26T21:38:17.2264987Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(782): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2265856Z with 2025-08-26T21:38:17.2266032Z [ 2025-08-26T21:38:17.2266199Z scalar_t=float 2025-08-26T21:38:17.2266419Z ] 2025-08-26T21:38:17.2267095Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(783): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2267842Z with 2025-08-26T21:38:17.2268018Z [ 2025-08-26T21:38:17.2268187Z scalar_t=float 2025-08-26T21:38:17.2268394Z ] 2025-08-26T21:38:17.2269062Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(783): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2269863Z with 2025-08-26T21:38:17.2270045Z [ 2025-08-26T21:38:17.2270251Z scalar_t=float 2025-08-26T21:38:17.2270468Z ] 2025-08-26T21:38:17.2271136Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(783): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2271903Z with 2025-08-26T21:38:17.2272064Z [ 2025-08-26T21:38:17.2272239Z scalar_t=float 2025-08-26T21:38:17.2272442Z ] 2025-08-26T21:38:17.2273119Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(784): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2273869Z with 2025-08-26T21:38:17.2274032Z [ 2025-08-26T21:38:17.2274206Z scalar_t=float 2025-08-26T21:38:17.2274481Z ] 2025-08-26T21:38:17.2275161Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(784): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2275997Z with 2025-08-26T21:38:17.2276678Z [ 2025-08-26T21:38:17.2276854Z scalar_t=float 2025-08-26T21:38:17.2277065Z ] 2025-08-26T21:38:17.2277756Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(784): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2278519Z with 2025-08-26T21:38:17.2278696Z [ 2025-08-26T21:38:17.2278873Z scalar_t=float 2025-08-26T21:38:17.2279084Z ] 2025-08-26T21:38:17.2279755Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(785): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2280570Z with 2025-08-26T21:38:17.2280733Z [ 2025-08-26T21:38:17.2280930Z scalar_t=float 2025-08-26T21:38:17.2281190Z ] 2025-08-26T21:38:17.2281907Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(785): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2282674Z with 2025-08-26T21:38:17.2282840Z [ 2025-08-26T21:38:17.2283094Z scalar_t=float 2025-08-26T21:38:17.2283316Z ] 2025-08-26T21:38:17.2283990Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(785): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2284753Z with 2025-08-26T21:38:17.2284920Z [ 2025-08-26T21:38:17.2285095Z scalar_t=float 2025-08-26T21:38:17.2285301Z ] 2025-08-26T21:38:17.2285983Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(786): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2286739Z with 2025-08-26T21:38:17.2286938Z [ 2025-08-26T21:38:17.2287108Z scalar_t=float 2025-08-26T21:38:17.2287405Z ] 2025-08-26T21:38:17.2288082Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(786): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2288837Z with 2025-08-26T21:38:17.2289009Z [ 2025-08-26T21:38:17.2289173Z scalar_t=float 2025-08-26T21:38:17.2289383Z ] 2025-08-26T21:38:17.2290069Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(786): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2290812Z with 2025-08-26T21:38:17.2290983Z [ 2025-08-26T21:38:17.2291149Z scalar_t=float 2025-08-26T21:38:17.2291355Z ] 2025-08-26T21:38:17.2292019Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(787): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2292820Z with 2025-08-26T21:38:17.2293032Z [ 2025-08-26T21:38:17.2293198Z scalar_t=float 2025-08-26T21:38:17.2293411Z ] 2025-08-26T21:38:17.2294075Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(788): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2294841Z with 2025-08-26T21:38:17.2295008Z [ 2025-08-26T21:38:17.2295182Z scalar_t=float 2025-08-26T21:38:17.2295379Z ] 2025-08-26T21:38:17.2296058Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(788): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2296865Z with 2025-08-26T21:38:17.2297035Z [ 2025-08-26T21:38:17.2297206Z scalar_t=float 2025-08-26T21:38:17.2297415Z ] 2025-08-26T21:38:17.2298549Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(788): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2299361Z with 2025-08-26T21:38:17.2299534Z [ 2025-08-26T21:38:17.2299709Z scalar_t=float 2025-08-26T21:38:17.2299784Z ] 2025-08-26T21:38:17.2300363Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(789): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2300431Z with 2025-08-26T21:38:17.2300501Z [ 2025-08-26T21:38:17.2300580Z scalar_t=float 2025-08-26T21:38:17.2300645Z ] 2025-08-26T21:38:17.2301272Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(789): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2301346Z with 2025-08-26T21:38:17.2301413Z [ 2025-08-26T21:38:17.2301486Z scalar_t=float 2025-08-26T21:38:17.2301556Z ] 2025-08-26T21:38:17.2302125Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(789): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2302193Z with 2025-08-26T21:38:17.2302264Z [ 2025-08-26T21:38:17.2302340Z scalar_t=float 2025-08-26T21:38:17.2302409Z ] 2025-08-26T21:38:17.2302981Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(790): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2303050Z with 2025-08-26T21:38:17.2303115Z [ 2025-08-26T21:38:17.2303189Z scalar_t=float 2025-08-26T21:38:17.2303259Z ] 2025-08-26T21:38:17.2303830Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(790): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2303974Z with 2025-08-26T21:38:17.2304041Z [ 2025-08-26T21:38:17.2304124Z scalar_t=float 2025-08-26T21:38:17.2304190Z ] 2025-08-26T21:38:17.2304801Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(790): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2304880Z with 2025-08-26T21:38:17.2304945Z [ 2025-08-26T21:38:17.2305022Z scalar_t=float 2025-08-26T21:38:17.2305099Z ] 2025-08-26T21:38:17.2305675Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(791): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2305750Z with 2025-08-26T21:38:17.2305812Z [ 2025-08-26T21:38:17.2305899Z scalar_t=float 2025-08-26T21:38:17.2305966Z ] 2025-08-26T21:38:17.2306542Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(791): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2306619Z with 2025-08-26T21:38:17.2306681Z [ 2025-08-26T21:38:17.2306752Z scalar_t=float 2025-08-26T21:38:17.2306816Z ] 2025-08-26T21:38:17.2307396Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(791): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2307464Z with 2025-08-26T21:38:17.2307532Z [ 2025-08-26T21:38:17.2307618Z scalar_t=float 2025-08-26T21:38:17.2307683Z ] 2025-08-26T21:38:17.2308299Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(792): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2308373Z with 2025-08-26T21:38:17.2308434Z [ 2025-08-26T21:38:17.2308509Z scalar_t=float 2025-08-26T21:38:17.2308950Z ] 2025-08-26T21:38:17.2309543Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(792): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2309653Z with 2025-08-26T21:38:17.2309721Z [ 2025-08-26T21:38:17.2309809Z scalar_t=float 2025-08-26T21:38:17.2309877Z ] 2025-08-26T21:38:17.2310525Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(792): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2310606Z with 2025-08-26T21:38:17.2310711Z [ 2025-08-26T21:38:17.2310827Z scalar_t=float 2025-08-26T21:38:17.2310891Z ] 2025-08-26T21:38:17.2311516Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(793): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2311625Z with 2025-08-26T21:38:17.2311693Z [ 2025-08-26T21:38:17.2311775Z scalar_t=float 2025-08-26T21:38:17.2311844Z ] 2025-08-26T21:38:17.2312491Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(793): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2312559Z with 2025-08-26T21:38:17.2312628Z [ 2025-08-26T21:38:17.2312744Z scalar_t=float 2025-08-26T21:38:17.2312811Z ] 2025-08-26T21:38:17.2313460Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(793): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2313535Z with 2025-08-26T21:38:17.2313598Z [ 2025-08-26T21:38:17.2313673Z scalar_t=float 2025-08-26T21:38:17.2313745Z ] 2025-08-26T21:38:17.2314393Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(794): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2314499Z with 2025-08-26T21:38:17.2314572Z [ 2025-08-26T21:38:17.2314682Z scalar_t=float 2025-08-26T21:38:17.2314752Z ] 2025-08-26T21:38:17.2315402Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(794): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2315474Z with 2025-08-26T21:38:17.2315539Z [ 2025-08-26T21:38:17.2315616Z scalar_t=float 2025-08-26T21:38:17.2315692Z ] 2025-08-26T21:38:17.2316345Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(794): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2316413Z with 2025-08-26T21:38:17.2316493Z [ 2025-08-26T21:38:17.2316605Z scalar_t=float 2025-08-26T21:38:17.2316669Z ] 2025-08-26T21:38:17.2317286Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(795): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2317384Z with 2025-08-26T21:38:17.2317454Z [ 2025-08-26T21:38:17.2317529Z scalar_t=float 2025-08-26T21:38:17.2317603Z ] 2025-08-26T21:38:17.2318244Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(795): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2318311Z with 2025-08-26T21:38:17.2318384Z [ 2025-08-26T21:38:17.2318536Z scalar_t=float 2025-08-26T21:38:17.2318603Z ] 2025-08-26T21:38:17.2319221Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(795): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2319732Z with 2025-08-26T21:38:17.2319806Z [ 2025-08-26T21:38:17.2319887Z scalar_t=float 2025-08-26T21:38:17.2319977Z ] 2025-08-26T21:38:17.2320626Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(796): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2320700Z with 2025-08-26T21:38:17.2320814Z [ 2025-08-26T21:38:17.2320894Z scalar_t=float 2025-08-26T21:38:17.2320955Z ] 2025-08-26T21:38:17.2321604Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(797): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2321728Z with 2025-08-26T21:38:17.2321792Z [ 2025-08-26T21:38:17.2321868Z scalar_t=float 2025-08-26T21:38:17.2321983Z ] 2025-08-26T21:38:17.2322596Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(797): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2322669Z with 2025-08-26T21:38:17.2322768Z [ 2025-08-26T21:38:17.2322922Z scalar_t=float 2025-08-26T21:38:17.2322994Z ] 2025-08-26T21:38:17.2323641Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(797): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2323724Z with 2025-08-26T21:38:17.2323789Z [ 2025-08-26T21:38:17.2323867Z scalar_t=float 2025-08-26T21:38:17.2323975Z ] 2025-08-26T21:38:17.2324596Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(798): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2324670Z with 2025-08-26T21:38:17.2324774Z [ 2025-08-26T21:38:17.2324903Z scalar_t=float 2025-08-26T21:38:17.2324972Z ] 2025-08-26T21:38:17.2325587Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(798): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2325656Z with 2025-08-26T21:38:17.2325731Z [ 2025-08-26T21:38:17.2325809Z scalar_t=float 2025-08-26T21:38:17.2325874Z ] 2025-08-26T21:38:17.2326463Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(798): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2326533Z with 2025-08-26T21:38:17.2326599Z [ 2025-08-26T21:38:17.2326676Z scalar_t=float 2025-08-26T21:38:17.2326750Z ] 2025-08-26T21:38:17.2327322Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(799): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2327392Z with 2025-08-26T21:38:17.2327458Z [ 2025-08-26T21:38:17.2327532Z scalar_t=float 2025-08-26T21:38:17.2327593Z ] 2025-08-26T21:38:17.2328167Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(799): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2328230Z with 2025-08-26T21:38:17.2328295Z [ 2025-08-26T21:38:17.2328367Z scalar_t=float 2025-08-26T21:38:17.2328435Z ] 2025-08-26T21:38:17.2329042Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(799): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2329114Z with 2025-08-26T21:38:17.2329183Z [ 2025-08-26T21:38:17.2329259Z scalar_t=float 2025-08-26T21:38:17.2329323Z ] 2025-08-26T21:38:17.2330256Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(800): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2330373Z with 2025-08-26T21:38:17.2330436Z [ 2025-08-26T21:38:17.2330511Z scalar_t=float 2025-08-26T21:38:17.2330583Z ] 2025-08-26T21:38:17.2331234Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(800): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2331303Z with 2025-08-26T21:38:17.2331375Z [ 2025-08-26T21:38:17.2331448Z scalar_t=float 2025-08-26T21:38:17.2331557Z ] 2025-08-26T21:38:17.2332128Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(800): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2332202Z with 2025-08-26T21:38:17.2332264Z [ 2025-08-26T21:38:17.2332340Z scalar_t=float 2025-08-26T21:38:17.2332410Z ] 2025-08-26T21:38:17.2332982Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(801): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2333057Z with 2025-08-26T21:38:17.2333133Z [ 2025-08-26T21:38:17.2333205Z scalar_t=float 2025-08-26T21:38:17.2333273Z ] 2025-08-26T21:38:17.2333842Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(801): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2333914Z with 2025-08-26T21:38:17.2333983Z [ 2025-08-26T21:38:17.2334057Z scalar_t=float 2025-08-26T21:38:17.2334130Z ] 2025-08-26T21:38:17.2334702Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(801): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2335146Z with 2025-08-26T21:38:17.2335214Z [ 2025-08-26T21:38:17.2335305Z scalar_t=float 2025-08-26T21:38:17.2335370Z ] 2025-08-26T21:38:17.2335951Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(802): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2336025Z with 2025-08-26T21:38:17.2336089Z [ 2025-08-26T21:38:17.2336163Z scalar_t=float 2025-08-26T21:38:17.2336226Z ] 2025-08-26T21:38:17.2336894Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(802): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2336964Z with 2025-08-26T21:38:17.2337028Z [ 2025-08-26T21:38:17.2337147Z scalar_t=float 2025-08-26T21:38:17.2337211Z ] 2025-08-26T21:38:17.2337784Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(802): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2337857Z with 2025-08-26T21:38:17.2337920Z [ 2025-08-26T21:38:17.2337996Z scalar_t=float 2025-08-26T21:38:17.2338059Z ] 2025-08-26T21:38:17.2338636Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(803): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2338702Z with 2025-08-26T21:38:17.2338767Z [ 2025-08-26T21:38:17.2338853Z scalar_t=float 2025-08-26T21:38:17.2338918Z ] 2025-08-26T21:38:17.2339536Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(803): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2339609Z with 2025-08-26T21:38:17.2339672Z [ 2025-08-26T21:38:17.2340096Z scalar_t=float 2025-08-26T21:38:17.2340167Z ] 2025-08-26T21:38:17.2340766Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(803): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2340834Z with 2025-08-26T21:38:17.2340903Z [ 2025-08-26T21:38:17.2340991Z scalar_t=float 2025-08-26T21:38:17.2341055Z ] 2025-08-26T21:38:17.2341631Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(804): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2341741Z with 2025-08-26T21:38:17.2341810Z [ 2025-08-26T21:38:17.2341883Z scalar_t=float 2025-08-26T21:38:17.2341952Z ] 2025-08-26T21:38:17.2342587Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(804): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2342655Z with 2025-08-26T21:38:17.2342723Z [ 2025-08-26T21:38:17.2342846Z scalar_t=float 2025-08-26T21:38:17.2342912Z ] 2025-08-26T21:38:17.2343526Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(804): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2343591Z with 2025-08-26T21:38:17.2343661Z [ 2025-08-26T21:38:17.2343736Z scalar_t=float 2025-08-26T21:38:17.2343798Z ] 2025-08-26T21:38:17.2344377Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(805): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2344447Z with 2025-08-26T21:38:17.2344511Z [ 2025-08-26T21:38:17.2344590Z scalar_t=float 2025-08-26T21:38:17.2344658Z ] 2025-08-26T21:38:17.2345576Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(806): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2345646Z with 2025-08-26T21:38:17.2345720Z [ 2025-08-26T21:38:17.2345793Z scalar_t=float 2025-08-26T21:38:17.2345858Z ] 2025-08-26T21:38:17.2346443Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(806): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2346509Z with 2025-08-26T21:38:17.2346581Z [ 2025-08-26T21:38:17.2346656Z scalar_t=float 2025-08-26T21:38:17.2346728Z ] 2025-08-26T21:38:17.2347307Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(806): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2347372Z with 2025-08-26T21:38:17.2347449Z [ 2025-08-26T21:38:17.2347523Z scalar_t=float 2025-08-26T21:38:17.2347587Z ] 2025-08-26T21:38:17.2348162Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(807): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2348233Z with 2025-08-26T21:38:17.2348297Z [ 2025-08-26T21:38:17.2348412Z scalar_t=float 2025-08-26T21:38:17.2348486Z ] 2025-08-26T21:38:17.2349102Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(807): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2349207Z with 2025-08-26T21:38:17.2349323Z [ 2025-08-26T21:38:17.2349406Z scalar_t=float 2025-08-26T21:38:17.2349470Z ] 2025-08-26T21:38:17.2350074Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(807): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2350153Z with 2025-08-26T21:38:17.2350215Z [ 2025-08-26T21:38:17.2350293Z scalar_t=float 2025-08-26T21:38:17.2350365Z ] 2025-08-26T21:38:17.2350934Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(808): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2350999Z with 2025-08-26T21:38:17.2351073Z [ 2025-08-26T21:38:17.2351150Z scalar_t=float 2025-08-26T21:38:17.2351214Z ] 2025-08-26T21:38:17.2351788Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(808): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2351894Z with 2025-08-26T21:38:17.2351958Z [ 2025-08-26T21:38:17.2352034Z scalar_t=float 2025-08-26T21:38:17.2352109Z ] 2025-08-26T21:38:17.2352692Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(808): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2352760Z with 2025-08-26T21:38:17.2352825Z [ 2025-08-26T21:38:17.2352910Z scalar_t=float 2025-08-26T21:38:17.2352972Z ] 2025-08-26T21:38:17.2353548Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(809): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2353619Z with 2025-08-26T21:38:17.2353683Z [ 2025-08-26T21:38:17.2353757Z scalar_t=float 2025-08-26T21:38:17.2353822Z ] 2025-08-26T21:38:17.2354408Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(809): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2354473Z with 2025-08-26T21:38:17.2354880Z [ 2025-08-26T21:38:17.2354973Z scalar_t=float 2025-08-26T21:38:17.2355039Z ] 2025-08-26T21:38:17.2355615Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(809): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2355692Z with 2025-08-26T21:38:17.2355759Z [ 2025-08-26T21:38:17.2355834Z scalar_t=float 2025-08-26T21:38:17.2355898Z ] 2025-08-26T21:38:17.2356487Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(810): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2356558Z with 2025-08-26T21:38:17.2356624Z [ 2025-08-26T21:38:17.2356709Z scalar_t=float 2025-08-26T21:38:17.2356771Z ] 2025-08-26T21:38:17.2357346Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(810): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2357421Z with 2025-08-26T21:38:17.2357485Z [ 2025-08-26T21:38:17.2357556Z scalar_t=float 2025-08-26T21:38:17.2357618Z ] 2025-08-26T21:38:17.2358206Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(810): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2358274Z with 2025-08-26T21:38:17.2358338Z [ 2025-08-26T21:38:17.2358422Z scalar_t=float 2025-08-26T21:38:17.2358486Z ] 2025-08-26T21:38:17.2359097Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(811): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2359168Z with 2025-08-26T21:38:17.2359243Z [ 2025-08-26T21:38:17.2359316Z scalar_t=float 2025-08-26T21:38:17.2359439Z ] 2025-08-26T21:38:17.2360099Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(811): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2360203Z with 2025-08-26T21:38:17.2360271Z [ 2025-08-26T21:38:17.2360360Z scalar_t=float 2025-08-26T21:38:17.2360428Z ] 2025-08-26T21:38:17.2360998Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(811): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2361066Z with 2025-08-26T21:38:17.2361136Z [ 2025-08-26T21:38:17.2361213Z scalar_t=float 2025-08-26T21:38:17.2361317Z ] 2025-08-26T21:38:17.2361906Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(812): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2361978Z with 2025-08-26T21:38:17.2362045Z [ 2025-08-26T21:38:17.2362120Z scalar_t=float 2025-08-26T21:38:17.2362194Z ] 2025-08-26T21:38:17.2362770Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(812): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2362839Z with 2025-08-26T21:38:17.2362975Z [ 2025-08-26T21:38:17.2363050Z scalar_t=float 2025-08-26T21:38:17.2363122Z ] 2025-08-26T21:38:17.2363706Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(812): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2363777Z with 2025-08-26T21:38:17.2363848Z [ 2025-08-26T21:38:17.2363923Z scalar_t=float 2025-08-26T21:38:17.2363995Z ] 2025-08-26T21:38:17.2364567Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(813): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2364985Z with 2025-08-26T21:38:17.2365058Z [ 2025-08-26T21:38:17.2365137Z scalar_t=float 2025-08-26T21:38:17.2365199Z ] 2025-08-26T21:38:17.2365771Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(813): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2365849Z with 2025-08-26T21:38:17.2365913Z [ 2025-08-26T21:38:17.2365995Z scalar_t=float 2025-08-26T21:38:17.2366070Z ] 2025-08-26T21:38:17.2366652Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(813): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2366718Z with 2025-08-26T21:38:17.2366787Z [ 2025-08-26T21:38:17.2366861Z scalar_t=float 2025-08-26T21:38:17.2366922Z ] 2025-08-26T21:38:17.2367497Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(814): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2367573Z with 2025-08-26T21:38:17.2367636Z [ 2025-08-26T21:38:17.2367708Z scalar_t=float 2025-08-26T21:38:17.2367777Z ] 2025-08-26T21:38:17.2368348Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(815): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2368414Z with 2025-08-26T21:38:17.2368477Z [ 2025-08-26T21:38:17.2368564Z scalar_t=float 2025-08-26T21:38:17.2368632Z ] 2025-08-26T21:38:17.2369238Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(815): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2369311Z with 2025-08-26T21:38:17.2369376Z [ 2025-08-26T21:38:17.2369481Z scalar_t=float 2025-08-26T21:38:17.2369559Z ] 2025-08-26T21:38:17.2370135Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(815): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2370203Z with 2025-08-26T21:38:17.2370266Z [ 2025-08-26T21:38:17.2370349Z scalar_t=float 2025-08-26T21:38:17.2370417Z ] 2025-08-26T21:38:17.2370991Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(816): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2371101Z with 2025-08-26T21:38:17.2371166Z [ 2025-08-26T21:38:17.2371239Z scalar_t=float 2025-08-26T21:38:17.2371300Z ] 2025-08-26T21:38:17.2371882Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(816): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2371949Z with 2025-08-26T21:38:17.2372011Z [ 2025-08-26T21:38:17.2372093Z scalar_t=float 2025-08-26T21:38:17.2372156Z ] 2025-08-26T21:38:17.2372727Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(816): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2372800Z with 2025-08-26T21:38:17.2372866Z [ 2025-08-26T21:38:17.2372943Z scalar_t=float 2025-08-26T21:38:17.2373005Z ] 2025-08-26T21:38:17.2373590Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(817): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2373663Z with 2025-08-26T21:38:17.2373729Z [ 2025-08-26T21:38:17.2373815Z scalar_t=float 2025-08-26T21:38:17.2374202Z ] 2025-08-26T21:38:17.2374781Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(817): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2374863Z with 2025-08-26T21:38:17.2374930Z [ 2025-08-26T21:38:17.2375007Z scalar_t=float 2025-08-26T21:38:17.2375069Z ] 2025-08-26T21:38:17.2375716Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(817): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2375785Z with 2025-08-26T21:38:17.2375883Z [ 2025-08-26T21:38:17.2375968Z scalar_t=float 2025-08-26T21:38:17.2376036Z ] 2025-08-26T21:38:17.2376656Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(818): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2376728Z with 2025-08-26T21:38:17.2376799Z [ 2025-08-26T21:38:17.2376873Z scalar_t=float 2025-08-26T21:38:17.2376939Z ] 2025-08-26T21:38:17.2377525Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(818): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2377587Z with 2025-08-26T21:38:17.2377655Z [ 2025-08-26T21:38:17.2377744Z scalar_t=float 2025-08-26T21:38:17.2377806Z ] 2025-08-26T21:38:17.2378370Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(818): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2378440Z with 2025-08-26T21:38:17.2378557Z [ 2025-08-26T21:38:17.2378638Z scalar_t=float 2025-08-26T21:38:17.2378701Z ] 2025-08-26T21:38:17.2379323Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(819): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2379397Z with 2025-08-26T21:38:17.2379461Z [ 2025-08-26T21:38:17.2379537Z scalar_t=float 2025-08-26T21:38:17.2379611Z ] 2025-08-26T21:38:17.2380183Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(819): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2380252Z with 2025-08-26T21:38:17.2380322Z [ 2025-08-26T21:38:17.2380400Z scalar_t=float 2025-08-26T21:38:17.2380465Z ] 2025-08-26T21:38:17.2381054Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(819): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2381152Z with 2025-08-26T21:38:17.2381216Z [ 2025-08-26T21:38:17.2381291Z scalar_t=float 2025-08-26T21:38:17.2381363Z ] 2025-08-26T21:38:17.2381936Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(820): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2382004Z with 2025-08-26T21:38:17.2382079Z [ 2025-08-26T21:38:17.2382151Z scalar_t=float 2025-08-26T21:38:17.2382215Z ] 2025-08-26T21:38:17.2382790Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(820): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2382868Z with 2025-08-26T21:38:17.2382935Z [ 2025-08-26T21:38:17.2383015Z scalar_t=float 2025-08-26T21:38:17.2383089Z ] 2025-08-26T21:38:17.2383660Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(820): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2383730Z with 2025-08-26T21:38:17.2384151Z [ 2025-08-26T21:38:17.2384236Z scalar_t=float 2025-08-26T21:38:17.2384302Z ] 2025-08-26T21:38:17.2384874Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(821): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2384948Z with 2025-08-26T21:38:17.2385012Z [ 2025-08-26T21:38:17.2385087Z scalar_t=float 2025-08-26T21:38:17.2385165Z ] 2025-08-26T21:38:17.2385748Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(821): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2385822Z with 2025-08-26T21:38:17.2385888Z [ 2025-08-26T21:38:17.2385976Z scalar_t=float 2025-08-26T21:38:17.2386045Z ] 2025-08-26T21:38:17.2386615Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(821): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2386691Z with 2025-08-26T21:38:17.2386758Z [ 2025-08-26T21:38:17.2386831Z scalar_t=float 2025-08-26T21:38:17.2386904Z ] 2025-08-26T21:38:17.2387475Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(822): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2387538Z with 2025-08-26T21:38:17.2387602Z [ 2025-08-26T21:38:17.2387685Z scalar_t=float 2025-08-26T21:38:17.2387750Z ] 2025-08-26T21:38:17.2388355Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(822): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2388434Z with 2025-08-26T21:38:17.2388499Z [ 2025-08-26T21:38:17.2388577Z scalar_t=float 2025-08-26T21:38:17.2388644Z ] 2025-08-26T21:38:17.2389257Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(822): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2389328Z with 2025-08-26T21:38:17.2389391Z [ 2025-08-26T21:38:17.2389478Z scalar_t=float 2025-08-26T21:38:17.2389543Z ] 2025-08-26T21:38:17.2390118Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(823): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2390190Z with 2025-08-26T21:38:17.2390254Z [ 2025-08-26T21:38:17.2390583Z scalar_t=float 2025-08-26T21:38:17.2390651Z ] 2025-08-26T21:38:17.2391248Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(824): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2391321Z with 2025-08-26T21:38:17.2391394Z [ 2025-08-26T21:38:17.2391483Z scalar_t=float 2025-08-26T21:38:17.2391546Z ] 2025-08-26T21:38:17.2392121Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(824): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2392202Z with 2025-08-26T21:38:17.2392267Z [ 2025-08-26T21:38:17.2392344Z scalar_t=float 2025-08-26T21:38:17.2392408Z ] 2025-08-26T21:38:17.2392993Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(824): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2393064Z with 2025-08-26T21:38:17.2393127Z [ 2025-08-26T21:38:17.2393214Z scalar_t=float 2025-08-26T21:38:17.2393280Z ] 2025-08-26T21:38:17.2393857Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(825): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2394230Z with 2025-08-26T21:38:17.2394307Z [ 2025-08-26T21:38:17.2394385Z scalar_t=float 2025-08-26T21:38:17.2394452Z ] 2025-08-26T21:38:17.2395045Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(825): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2395112Z with 2025-08-26T21:38:17.2395178Z [ 2025-08-26T21:38:17.2395252Z scalar_t=float 2025-08-26T21:38:17.2395328Z ] 2025-08-26T21:38:17.2395906Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(825): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2395976Z with 2025-08-26T21:38:17.2396051Z [ 2025-08-26T21:38:17.2396127Z scalar_t=float 2025-08-26T21:38:17.2396192Z ] 2025-08-26T21:38:17.2396775Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(826): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2396843Z with 2025-08-26T21:38:17.2396909Z [ 2025-08-26T21:38:17.2396983Z scalar_t=float 2025-08-26T21:38:17.2397052Z ] 2025-08-26T21:38:17.2397628Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(826): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2397700Z with 2025-08-26T21:38:17.2397773Z [ 2025-08-26T21:38:17.2397849Z scalar_t=float 2025-08-26T21:38:17.2397952Z ] 2025-08-26T21:38:17.2398530Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(826): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2398602Z with 2025-08-26T21:38:17.2398702Z [ 2025-08-26T21:38:17.2398777Z scalar_t=float 2025-08-26T21:38:17.2398855Z ] 2025-08-26T21:38:17.2399431Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(827): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2399496Z with 2025-08-26T21:38:17.2399568Z [ 2025-08-26T21:38:17.2399641Z scalar_t=float 2025-08-26T21:38:17.2399702Z ] 2025-08-26T21:38:17.2400273Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(827): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2400386Z with 2025-08-26T21:38:17.2400450Z [ 2025-08-26T21:38:17.2400524Z scalar_t=float 2025-08-26T21:38:17.2400596Z ] 2025-08-26T21:38:17.2401170Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(827): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2401237Z with 2025-08-26T21:38:17.2401309Z [ 2025-08-26T21:38:17.2401385Z scalar_t=float 2025-08-26T21:38:17.2401453Z ] 2025-08-26T21:38:17.2402025Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(828): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2402097Z with 2025-08-26T21:38:17.2402161Z [ 2025-08-26T21:38:17.2402239Z scalar_t=float 2025-08-26T21:38:17.2402311Z ] 2025-08-26T21:38:17.2402952Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(828): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2403022Z with 2025-08-26T21:38:17.2403089Z [ 2025-08-26T21:38:17.2403174Z scalar_t=float 2025-08-26T21:38:17.2403583Z ] 2025-08-26T21:38:17.2404167Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(828): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2404243Z with 2025-08-26T21:38:17.2404314Z [ 2025-08-26T21:38:17.2404387Z scalar_t=float 2025-08-26T21:38:17.2404456Z ] 2025-08-26T21:38:17.2405025Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(829): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2405094Z with 2025-08-26T21:38:17.2405160Z [ 2025-08-26T21:38:17.2405245Z scalar_t=float 2025-08-26T21:38:17.2405313Z ] 2025-08-26T21:38:17.2405885Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(829): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2405961Z with 2025-08-26T21:38:17.2406026Z [ 2025-08-26T21:38:17.2406098Z scalar_t=float 2025-08-26T21:38:17.2406162Z ] 2025-08-26T21:38:17.2406812Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(829): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2406914Z with 2025-08-26T21:38:17.2406983Z [ 2025-08-26T21:38:17.2407071Z scalar_t=float 2025-08-26T21:38:17.2407141Z ] 2025-08-26T21:38:17.2407716Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(830): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2407839Z with 2025-08-26T21:38:17.2407906Z [ 2025-08-26T21:38:17.2407979Z scalar_t=float 2025-08-26T21:38:17.2408041Z ] 2025-08-26T21:38:17.2408664Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(830): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2408733Z with 2025-08-26T21:38:17.2408799Z [ 2025-08-26T21:38:17.2408884Z scalar_t=float 2025-08-26T21:38:17.2408947Z ] 2025-08-26T21:38:17.2409517Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(830): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2409595Z with 2025-08-26T21:38:17.2409661Z [ 2025-08-26T21:38:17.2409737Z scalar_t=float 2025-08-26T21:38:17.2409800Z ] 2025-08-26T21:38:17.2410386Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(831): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2410490Z with 2025-08-26T21:38:17.2410557Z [ 2025-08-26T21:38:17.2410637Z scalar_t=float 2025-08-26T21:38:17.2410708Z ] 2025-08-26T21:38:17.2411285Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(831): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2411353Z with 2025-08-26T21:38:17.2411427Z [ 2025-08-26T21:38:17.2411506Z scalar_t=float 2025-08-26T21:38:17.2411572Z ] 2025-08-26T21:38:17.2412148Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(831): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2412215Z with 2025-08-26T21:38:17.2412283Z [ 2025-08-26T21:38:17.2412363Z scalar_t=float 2025-08-26T21:38:17.2412438Z ] 2025-08-26T21:38:17.2413011Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(832): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2413837Z with 2025-08-26T21:38:17.2413919Z [ 2025-08-26T21:38:17.2413997Z scalar_t=float 2025-08-26T21:38:17.2414067Z ] 2025-08-26T21:38:17.2414649Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(833): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2414717Z with 2025-08-26T21:38:17.2414780Z [ 2025-08-26T21:38:17.2414855Z scalar_t=float 2025-08-26T21:38:17.2414930Z ] 2025-08-26T21:38:17.2415505Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(833): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2415575Z with 2025-08-26T21:38:17.2415644Z [ 2025-08-26T21:38:17.2415722Z scalar_t=float 2025-08-26T21:38:17.2415788Z ] 2025-08-26T21:38:17.2416371Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(833): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2416440Z with 2025-08-26T21:38:17.2416502Z [ 2025-08-26T21:38:17.2416575Z scalar_t=float 2025-08-26T21:38:17.2416648Z ] 2025-08-26T21:38:17.2417219Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(834): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2417284Z with 2025-08-26T21:38:17.2417356Z [ 2025-08-26T21:38:17.2417427Z scalar_t=float 2025-08-26T21:38:17.2417489Z ] 2025-08-26T21:38:17.2418098Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(834): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2418174Z with 2025-08-26T21:38:17.2418236Z [ 2025-08-26T21:38:17.2418307Z scalar_t=float 2025-08-26T21:38:17.2418414Z ] 2025-08-26T21:38:17.2418988Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(834): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2419053Z with 2025-08-26T21:38:17.2419129Z [ 2025-08-26T21:38:17.2419201Z scalar_t=float 2025-08-26T21:38:17.2419263Z ] 2025-08-26T21:38:17.2419830Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(835): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2419901Z with 2025-08-26T21:38:17.2420000Z [ 2025-08-26T21:38:17.2420074Z scalar_t=float 2025-08-26T21:38:17.2420146Z ] 2025-08-26T21:38:17.2420725Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(835): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2420792Z with 2025-08-26T21:38:17.2420856Z [ 2025-08-26T21:38:17.2420939Z scalar_t=float 2025-08-26T21:38:17.2421004Z ] 2025-08-26T21:38:17.2421575Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(835): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2421659Z with 2025-08-26T21:38:17.2421724Z [ 2025-08-26T21:38:17.2421795Z scalar_t=float 2025-08-26T21:38:17.2421866Z ] 2025-08-26T21:38:17.2422447Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(836): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2422515Z with 2025-08-26T21:38:17.2422581Z [ 2025-08-26T21:38:17.2422664Z scalar_t=float 2025-08-26T21:38:17.2422728Z ] 2025-08-26T21:38:17.2423305Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(836): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2423706Z with 2025-08-26T21:38:17.2423775Z [ 2025-08-26T21:38:17.2423849Z scalar_t=float 2025-08-26T21:38:17.2423914Z ] 2025-08-26T21:38:17.2424503Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(836): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2424570Z with 2025-08-26T21:38:17.2424633Z [ 2025-08-26T21:38:17.2424721Z scalar_t=float 2025-08-26T21:38:17.2424790Z ] 2025-08-26T21:38:17.2425372Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(837): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2425442Z with 2025-08-26T21:38:17.2425504Z [ 2025-08-26T21:38:17.2425576Z scalar_t=float 2025-08-26T21:38:17.2425651Z ] 2025-08-26T21:38:17.2426231Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(837): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2426298Z with 2025-08-26T21:38:17.2426362Z [ 2025-08-26T21:38:17.2426450Z scalar_t=float 2025-08-26T21:38:17.2426512Z ] 2025-08-26T21:38:17.2427081Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(837): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2427154Z with 2025-08-26T21:38:17.2427220Z [ 2025-08-26T21:38:17.2427330Z scalar_t=float 2025-08-26T21:38:17.2427398Z ] 2025-08-26T21:38:17.2427986Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(838): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2428086Z with 2025-08-26T21:38:17.2428152Z [ 2025-08-26T21:38:17.2428236Z scalar_t=float 2025-08-26T21:38:17.2428304Z ] 2025-08-26T21:38:17.2428881Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(838): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2428946Z with 2025-08-26T21:38:17.2429020Z [ 2025-08-26T21:38:17.2429100Z scalar_t=float 2025-08-26T21:38:17.2429163Z ] 2025-08-26T21:38:17.2429748Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(838): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2429850Z with 2025-08-26T21:38:17.2429914Z [ 2025-08-26T21:38:17.2429988Z scalar_t=float 2025-08-26T21:38:17.2430062Z ] 2025-08-26T21:38:17.2430641Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(839): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2430708Z with 2025-08-26T21:38:17.2430780Z [ 2025-08-26T21:38:17.2430857Z scalar_t=float 2025-08-26T21:38:17.2430926Z ] 2025-08-26T21:38:17.2431506Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(839): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2431570Z with 2025-08-26T21:38:17.2431636Z [ 2025-08-26T21:38:17.2431709Z scalar_t=float 2025-08-26T21:38:17.2431784Z ] 2025-08-26T21:38:17.2432360Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(839): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2432427Z with 2025-08-26T21:38:17.2432507Z [ 2025-08-26T21:38:17.2432904Z scalar_t=float 2025-08-26T21:38:17.2432973Z ] 2025-08-26T21:38:17.2433555Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(840): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2433623Z with 2025-08-26T21:38:17.2433693Z [ 2025-08-26T21:38:17.2433768Z scalar_t=float 2025-08-26T21:38:17.2433840Z ] 2025-08-26T21:38:17.2434413Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(840): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2434478Z with 2025-08-26T21:38:17.2434552Z [ 2025-08-26T21:38:17.2434635Z scalar_t=float 2025-08-26T21:38:17.2434702Z ] 2025-08-26T21:38:17.2435270Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(840): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2435349Z with 2025-08-26T21:38:17.2435413Z [ 2025-08-26T21:38:17.2435488Z scalar_t=float 2025-08-26T21:38:17.2435561Z ] 2025-08-26T21:38:17.2436129Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(841): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2436194Z with 2025-08-26T21:38:17.2436272Z [ 2025-08-26T21:38:17.2436346Z scalar_t=float 2025-08-26T21:38:17.2436408Z ] 2025-08-26T21:38:17.2437200Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(842): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2437284Z with 2025-08-26T21:38:17.2437347Z [ 2025-08-26T21:38:17.2437419Z scalar_t=float 2025-08-26T21:38:17.2437492Z ] 2025-08-26T21:38:17.2438108Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(842): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2438175Z with 2025-08-26T21:38:17.2438239Z [ 2025-08-26T21:38:17.2438319Z scalar_t=float 2025-08-26T21:38:17.2438382Z ] 2025-08-26T21:38:17.2438951Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(842): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2439022Z with 2025-08-26T21:38:17.2439087Z [ 2025-08-26T21:38:17.2439160Z scalar_t=float 2025-08-26T21:38:17.2439223Z ] 2025-08-26T21:38:17.2439838Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(843): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2439902Z with 2025-08-26T21:38:17.2439965Z [ 2025-08-26T21:38:17.2440046Z scalar_t=float 2025-08-26T21:38:17.2440116Z ] 2025-08-26T21:38:17.2440686Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(843): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2440758Z with 2025-08-26T21:38:17.2440820Z [ 2025-08-26T21:38:17.2440892Z scalar_t=float 2025-08-26T21:38:17.2440957Z ] 2025-08-26T21:38:17.2441535Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(843): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2441600Z with 2025-08-26T21:38:17.2441664Z [ 2025-08-26T21:38:17.2441750Z scalar_t=float 2025-08-26T21:38:17.2441819Z ] 2025-08-26T21:38:17.2442393Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(844): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2442774Z with 2025-08-26T21:38:17.2442843Z [ 2025-08-26T21:38:17.2442990Z scalar_t=float 2025-08-26T21:38:17.2443058Z ] 2025-08-26T21:38:17.2443650Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(844): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2443717Z with 2025-08-26T21:38:17.2443783Z [ 2025-08-26T21:38:17.2443865Z scalar_t=float 2025-08-26T21:38:17.2443928Z ] 2025-08-26T21:38:17.2444498Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(844): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2444565Z with 2025-08-26T21:38:17.2444639Z [ 2025-08-26T21:38:17.2444712Z scalar_t=float 2025-08-26T21:38:17.2444774Z ] 2025-08-26T21:38:17.2445363Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(845): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2445430Z with 2025-08-26T21:38:17.2445493Z [ 2025-08-26T21:38:17.2445572Z scalar_t=float 2025-08-26T21:38:17.2445635Z ] 2025-08-26T21:38:17.2446207Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(845): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2446275Z with 2025-08-26T21:38:17.2446347Z [ 2025-08-26T21:38:17.2446427Z scalar_t=float 2025-08-26T21:38:17.2446494Z ] 2025-08-26T21:38:17.2447128Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(845): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2447196Z with 2025-08-26T21:38:17.2447260Z [ 2025-08-26T21:38:17.2447394Z scalar_t=float 2025-08-26T21:38:17.2447470Z ] 2025-08-26T21:38:17.2448042Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(846): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2448107Z with 2025-08-26T21:38:17.2448188Z [ 2025-08-26T21:38:17.2448262Z scalar_t=float 2025-08-26T21:38:17.2448326Z ] 2025-08-26T21:38:17.2448910Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(846): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2448975Z with 2025-08-26T21:38:17.2449072Z [ 2025-08-26T21:38:17.2449147Z scalar_t=float 2025-08-26T21:38:17.2449219Z ] 2025-08-26T21:38:17.2449792Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(846): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2449862Z with 2025-08-26T21:38:17.2449933Z [ 2025-08-26T21:38:17.2450005Z scalar_t=float 2025-08-26T21:38:17.2450069Z ] 2025-08-26T21:38:17.2450633Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(847): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2450705Z with 2025-08-26T21:38:17.2450773Z [ 2025-08-26T21:38:17.2450846Z scalar_t=float 2025-08-26T21:38:17.2450921Z ] 2025-08-26T21:38:17.2451494Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(847): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2451560Z with 2025-08-26T21:38:17.2451636Z [ 2025-08-26T21:38:17.2451713Z scalar_t=float 2025-08-26T21:38:17.2451775Z ] 2025-08-26T21:38:17.2452350Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(847): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2452771Z with 2025-08-26T21:38:17.2452836Z [ 2025-08-26T21:38:17.2452911Z scalar_t=float 2025-08-26T21:38:17.2452985Z ] 2025-08-26T21:38:17.2453565Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(848): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2453632Z with 2025-08-26T21:38:17.2453702Z [ 2025-08-26T21:38:17.2453776Z scalar_t=float 2025-08-26T21:38:17.2453850Z ] 2025-08-26T21:38:17.2454431Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(848): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2454506Z with 2025-08-26T21:38:17.2454569Z [ 2025-08-26T21:38:17.2454646Z scalar_t=float 2025-08-26T21:38:17.2454719Z ] 2025-08-26T21:38:17.2455291Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(848): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2455359Z with 2025-08-26T21:38:17.2455427Z [ 2025-08-26T21:38:17.2455507Z scalar_t=float 2025-08-26T21:38:17.2455570Z ] 2025-08-26T21:38:17.2456144Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(849): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2456220Z with 2025-08-26T21:38:17.2456283Z [ 2025-08-26T21:38:17.2456394Z scalar_t=float 2025-08-26T21:38:17.2456461Z ] 2025-08-26T21:38:17.2457079Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(849): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2457150Z with 2025-08-26T21:38:17.2457213Z [ 2025-08-26T21:38:17.2457298Z scalar_t=float 2025-08-26T21:38:17.2457360Z ] 2025-08-26T21:38:17.2457933Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(849): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2458006Z with 2025-08-26T21:38:17.2458070Z [ 2025-08-26T21:38:17.2458144Z scalar_t=float 2025-08-26T21:38:17.2458206Z ] 2025-08-26T21:38:17.2458789Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(850): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2458888Z with 2025-08-26T21:38:17.2458955Z [ 2025-08-26T21:38:17.2459040Z scalar_t=float 2025-08-26T21:38:17.2459103Z ] 2025-08-26T21:38:17.2459677Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(851): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2459748Z with 2025-08-26T21:38:17.2459812Z [ 2025-08-26T21:38:17.2459886Z scalar_t=float 2025-08-26T21:38:17.2459951Z ] 2025-08-26T21:38:17.2460529Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(851): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2460596Z with 2025-08-26T21:38:17.2460667Z [ 2025-08-26T21:38:17.2460758Z scalar_t=float 2025-08-26T21:38:17.2460830Z ] 2025-08-26T21:38:17.2461400Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(851): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2461465Z with 2025-08-26T21:38:17.2461540Z [ 2025-08-26T21:38:17.2461649Z scalar_t=float 2025-08-26T21:38:17.2461713Z ] 2025-08-26T21:38:17.2462306Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(852): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2462372Z with 2025-08-26T21:38:17.2462435Z [ 2025-08-26T21:38:17.2462517Z scalar_t=float 2025-08-26T21:38:17.2462583Z ] 2025-08-26T21:38:17.2463156Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(852): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2463223Z with 2025-08-26T21:38:17.2463296Z [ 2025-08-26T21:38:17.2463373Z scalar_t=float 2025-08-26T21:38:17.2463437Z ] 2025-08-26T21:38:17.2464026Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(852): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2464093Z with 2025-08-26T21:38:17.2464157Z [ 2025-08-26T21:38:17.2464234Z scalar_t=float 2025-08-26T21:38:17.2464308Z ] 2025-08-26T21:38:17.2464889Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(853): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2464954Z with 2025-08-26T21:38:17.2465034Z [ 2025-08-26T21:38:17.2465107Z scalar_t=float 2025-08-26T21:38:17.2465172Z ] 2025-08-26T21:38:17.2465781Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(853): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2465848Z with 2025-08-26T21:38:17.2465914Z [ 2025-08-26T21:38:17.2465990Z scalar_t=float 2025-08-26T21:38:17.2466061Z ] 2025-08-26T21:38:17.2466663Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(853): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2466730Z with 2025-08-26T21:38:17.2466809Z [ 2025-08-26T21:38:17.2466881Z scalar_t=float 2025-08-26T21:38:17.2466944Z ] 2025-08-26T21:38:17.2467596Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(854): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2467676Z with 2025-08-26T21:38:17.2467741Z [ 2025-08-26T21:38:17.2467815Z scalar_t=float 2025-08-26T21:38:17.2467976Z ] 2025-08-26T21:38:17.2468555Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(854): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2468624Z with 2025-08-26T21:38:17.2468707Z [ 2025-08-26T21:38:17.2468787Z scalar_t=float 2025-08-26T21:38:17.2468855Z ] 2025-08-26T21:38:17.2469441Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(854): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2469516Z with 2025-08-26T21:38:17.2469584Z [ 2025-08-26T21:38:17.2469658Z scalar_t=float 2025-08-26T21:38:17.2469729Z ] 2025-08-26T21:38:17.2470300Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(855): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2470366Z with 2025-08-26T21:38:17.2470435Z [ 2025-08-26T21:38:17.2470514Z scalar_t=float 2025-08-26T21:38:17.2470581Z ] 2025-08-26T21:38:17.2471154Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(855): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2471276Z with 2025-08-26T21:38:17.2471339Z [ 2025-08-26T21:38:17.2471411Z scalar_t=float 2025-08-26T21:38:17.2471486Z ] 2025-08-26T21:38:17.2472054Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(855): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2472120Z with 2025-08-26T21:38:17.2472185Z [ 2025-08-26T21:38:17.2472275Z scalar_t=float 2025-08-26T21:38:17.2472338Z ] 2025-08-26T21:38:17.2472913Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(856): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2472988Z with 2025-08-26T21:38:17.2473053Z [ 2025-08-26T21:38:17.2473128Z scalar_t=float 2025-08-26T21:38:17.2473192Z ] 2025-08-26T21:38:17.2473771Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(856): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2473837Z with 2025-08-26T21:38:17.2473901Z [ 2025-08-26T21:38:17.2473984Z scalar_t=float 2025-08-26T21:38:17.2474045Z ] 2025-08-26T21:38:17.2474617Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(856): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2474687Z with 2025-08-26T21:38:17.2474750Z [ 2025-08-26T21:38:17.2474827Z scalar_t=float 2025-08-26T21:38:17.2474890Z ] 2025-08-26T21:38:17.2475509Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(857): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2475574Z with 2025-08-26T21:38:17.2475639Z [ 2025-08-26T21:38:17.2475765Z scalar_t=float 2025-08-26T21:38:17.2475832Z ] 2025-08-26T21:38:17.2476409Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(857): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2476479Z with 2025-08-26T21:38:17.2476541Z [ 2025-08-26T21:38:17.2476614Z scalar_t=float 2025-08-26T21:38:17.2476682Z ] 2025-08-26T21:38:17.2477263Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(857): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2477365Z with 2025-08-26T21:38:17.2477429Z [ 2025-08-26T21:38:17.2477510Z scalar_t=float 2025-08-26T21:38:17.2477573Z ] 2025-08-26T21:38:17.2478146Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(858): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2478214Z with 2025-08-26T21:38:17.2478293Z [ 2025-08-26T21:38:17.2478369Z scalar_t=float 2025-08-26T21:38:17.2478432Z ] 2025-08-26T21:38:17.2479016Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(858): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2479079Z with 2025-08-26T21:38:17.2479144Z [ 2025-08-26T21:38:17.2479226Z scalar_t=float 2025-08-26T21:38:17.2479289Z ] 2025-08-26T21:38:17.2479863Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(858): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2479931Z with 2025-08-26T21:38:17.2480002Z [ 2025-08-26T21:38:17.2480078Z scalar_t=float 2025-08-26T21:38:17.2480140Z ] 2025-08-26T21:38:17.2480753Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(859): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2480820Z with 2025-08-26T21:38:17.2480886Z [ 2025-08-26T21:38:17.2480961Z scalar_t=float 2025-08-26T21:38:17.2481035Z ] 2025-08-26T21:38:17.2481604Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(860): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2481669Z with 2025-08-26T21:38:17.2481751Z [ 2025-08-26T21:38:17.2481828Z scalar_t=float 2025-08-26T21:38:17.2481894Z ] 2025-08-26T21:38:17.2482484Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(860): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2482552Z with 2025-08-26T21:38:17.2482619Z [ 2025-08-26T21:38:17.2482694Z scalar_t=float 2025-08-26T21:38:17.2482769Z ] 2025-08-26T21:38:17.2483402Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(860): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2483473Z with 2025-08-26T21:38:17.2483546Z [ 2025-08-26T21:38:17.2483625Z scalar_t=float 2025-08-26T21:38:17.2483690Z ] 2025-08-26T21:38:17.2484260Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(861): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2484336Z with 2025-08-26T21:38:17.2484439Z [ 2025-08-26T21:38:17.2484520Z scalar_t=float 2025-08-26T21:38:17.2484595Z ] 2025-08-26T21:38:17.2485194Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(861): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2485262Z with 2025-08-26T21:38:17.2485335Z [ 2025-08-26T21:38:17.2485408Z scalar_t=float 2025-08-26T21:38:17.2485471Z ] 2025-08-26T21:38:17.2486041Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(861): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2486117Z with 2025-08-26T21:38:17.2486180Z [ 2025-08-26T21:38:17.2486257Z scalar_t=float 2025-08-26T21:38:17.2486329Z ] 2025-08-26T21:38:17.2486903Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(862): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2487002Z with 2025-08-26T21:38:17.2487069Z [ 2025-08-26T21:38:17.2487149Z scalar_t=float 2025-08-26T21:38:17.2487215Z ] 2025-08-26T21:38:17.2487790Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(862): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2487862Z with 2025-08-26T21:38:17.2487926Z [ 2025-08-26T21:38:17.2488003Z scalar_t=float 2025-08-26T21:38:17.2488075Z ] 2025-08-26T21:38:17.2488651Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(862): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2488719Z with 2025-08-26T21:38:17.2488783Z [ 2025-08-26T21:38:17.2488868Z scalar_t=float 2025-08-26T21:38:17.2488932Z ] 2025-08-26T21:38:17.2489506Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(863): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2489583Z with 2025-08-26T21:38:17.2489693Z [ 2025-08-26T21:38:17.2489774Z scalar_t=float 2025-08-26T21:38:17.2489843Z ] 2025-08-26T21:38:17.2490428Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(863): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2490493Z with 2025-08-26T21:38:17.2490556Z [ 2025-08-26T21:38:17.2490642Z scalar_t=float 2025-08-26T21:38:17.2490705Z ] 2025-08-26T21:38:17.2491280Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(863): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2491358Z with 2025-08-26T21:38:17.2491426Z [ 2025-08-26T21:38:17.2491502Z scalar_t=float 2025-08-26T21:38:17.2491565Z ] 2025-08-26T21:38:17.2492151Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(864): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2492226Z with 2025-08-26T21:38:17.2492291Z [ 2025-08-26T21:38:17.2492375Z scalar_t=float 2025-08-26T21:38:17.2492437Z ] 2025-08-26T21:38:17.2493006Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(864): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2493077Z with 2025-08-26T21:38:17.2493141Z [ 2025-08-26T21:38:17.2493219Z scalar_t=float 2025-08-26T21:38:17.2493284Z ] 2025-08-26T21:38:17.2493887Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(864): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2493955Z with 2025-08-26T21:38:17.2494018Z [ 2025-08-26T21:38:17.2494099Z scalar_t=float 2025-08-26T21:38:17.2494165Z ] 2025-08-26T21:38:17.2494772Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(865): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2494841Z with 2025-08-26T21:38:17.2494917Z [ 2025-08-26T21:38:17.2494992Z scalar_t=float 2025-08-26T21:38:17.2495056Z ] 2025-08-26T21:38:17.2495634Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(865): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2495700Z with 2025-08-26T21:38:17.2495765Z [ 2025-08-26T21:38:17.2495839Z scalar_t=float 2025-08-26T21:38:17.2495954Z ] 2025-08-26T21:38:17.2496530Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(865): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2496595Z with 2025-08-26T21:38:17.2496670Z [ 2025-08-26T21:38:17.2496747Z scalar_t=float 2025-08-26T21:38:17.2496810Z ] 2025-08-26T21:38:17.2497391Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(866): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2497457Z with 2025-08-26T21:38:17.2497524Z [ 2025-08-26T21:38:17.2497598Z scalar_t=float 2025-08-26T21:38:17.2497674Z ] 2025-08-26T21:38:17.2498246Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(866): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2498313Z with 2025-08-26T21:38:17.2498384Z [ 2025-08-26T21:38:17.2498457Z scalar_t=float 2025-08-26T21:38:17.2498526Z ] 2025-08-26T21:38:17.2499102Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(866): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2499200Z with 2025-08-26T21:38:17.2499267Z [ 2025-08-26T21:38:17.2499341Z scalar_t=float 2025-08-26T21:38:17.2499411Z ] 2025-08-26T21:38:17.2499984Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(867): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2500050Z with 2025-08-26T21:38:17.2500126Z [ 2025-08-26T21:38:17.2500199Z scalar_t=float 2025-08-26T21:38:17.2500263Z ] 2025-08-26T21:38:17.2500835Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(867): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2500910Z with 2025-08-26T21:38:17.2500973Z [ 2025-08-26T21:38:17.2501048Z scalar_t=float 2025-08-26T21:38:17.2501124Z ] 2025-08-26T21:38:17.2501696Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(867): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2501762Z with 2025-08-26T21:38:17.2501836Z [ 2025-08-26T21:38:17.2501912Z scalar_t=float 2025-08-26T21:38:17.2501979Z ] 2025-08-26T21:38:17.2502550Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(868): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2502629Z with 2025-08-26T21:38:17.2502695Z [ 2025-08-26T21:38:17.2502770Z scalar_t=float 2025-08-26T21:38:17.2502872Z ] 2025-08-26T21:38:17.2503442Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(869): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2503511Z with 2025-08-26T21:38:17.2503609Z [ 2025-08-26T21:38:17.2503692Z scalar_t=float 2025-08-26T21:38:17.2503761Z ] 2025-08-26T21:38:17.2504337Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(869): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2504414Z with 2025-08-26T21:38:17.2504477Z [ 2025-08-26T21:38:17.2504551Z scalar_t=float 2025-08-26T21:38:17.2504623Z ] 2025-08-26T21:38:17.2505195Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(869): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2505298Z with 2025-08-26T21:38:17.2505363Z [ 2025-08-26T21:38:17.2505447Z scalar_t=float 2025-08-26T21:38:17.2505511Z ] 2025-08-26T21:38:17.2506084Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(870): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2506161Z with 2025-08-26T21:38:17.2506224Z [ 2025-08-26T21:38:17.2506300Z scalar_t=float 2025-08-26T21:38:17.2506362Z ] 2025-08-26T21:38:17.2506943Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(870): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2507007Z with 2025-08-26T21:38:17.2507071Z [ 2025-08-26T21:38:17.2507155Z scalar_t=float 2025-08-26T21:38:17.2507218Z ] 2025-08-26T21:38:17.2507797Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(870): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2507876Z with 2025-08-26T21:38:17.2507938Z [ 2025-08-26T21:38:17.2508011Z scalar_t=float 2025-08-26T21:38:17.2508111Z ] 2025-08-26T21:38:17.2508694Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(871): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2508760Z with 2025-08-26T21:38:17.2508823Z [ 2025-08-26T21:38:17.2508909Z scalar_t=float 2025-08-26T21:38:17.2508976Z ] 2025-08-26T21:38:17.2509551Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(871): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2509623Z with 2025-08-26T21:38:17.2509684Z [ 2025-08-26T21:38:17.2509758Z scalar_t=float 2025-08-26T21:38:17.2509826Z ] 2025-08-26T21:38:17.2510404Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(871): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2510471Z with 2025-08-26T21:38:17.2510535Z [ 2025-08-26T21:38:17.2510619Z scalar_t=float 2025-08-26T21:38:17.2510685Z ] 2025-08-26T21:38:17.2511251Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(872): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2511317Z with 2025-08-26T21:38:17.2511391Z [ 2025-08-26T21:38:17.2511467Z scalar_t=float 2025-08-26T21:38:17.2511534Z ] 2025-08-26T21:38:17.2512110Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(872): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2512211Z with 2025-08-26T21:38:17.2512277Z [ 2025-08-26T21:38:17.2512350Z scalar_t=float 2025-08-26T21:38:17.2512425Z ] 2025-08-26T21:38:17.2513030Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(872): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2513101Z with 2025-08-26T21:38:17.2513174Z [ 2025-08-26T21:38:17.2513246Z scalar_t=float 2025-08-26T21:38:17.2513310Z ] 2025-08-26T21:38:17.2513895Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(873): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2513966Z with 2025-08-26T21:38:17.2514029Z [ 2025-08-26T21:38:17.2514105Z scalar_t=float 2025-08-26T21:38:17.2514178Z ] 2025-08-26T21:38:17.2514748Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(873): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2514851Z with 2025-08-26T21:38:17.2514921Z [ 2025-08-26T21:38:17.2514995Z scalar_t=float 2025-08-26T21:38:17.2515059Z ] 2025-08-26T21:38:17.2515638Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(873): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2515703Z with 2025-08-26T21:38:17.2515768Z [ 2025-08-26T21:38:17.2515842Z scalar_t=float 2025-08-26T21:38:17.2515917Z ] 2025-08-26T21:38:17.2516485Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(874): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2516550Z with 2025-08-26T21:38:17.2516628Z [ 2025-08-26T21:38:17.2516704Z scalar_t=float 2025-08-26T21:38:17.2516770Z ] 2025-08-26T21:38:17.2517349Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(874): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2517459Z with 2025-08-26T21:38:17.2517527Z [ 2025-08-26T21:38:17.2517601Z scalar_t=float 2025-08-26T21:38:17.2517683Z ] 2025-08-26T21:38:17.2518265Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(874): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2518330Z with 2025-08-26T21:38:17.2518403Z [ 2025-08-26T21:38:17.2518479Z scalar_t=float 2025-08-26T21:38:17.2518544Z ] 2025-08-26T21:38:17.2519115Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(875): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2519192Z with 2025-08-26T21:38:17.2519263Z [ 2025-08-26T21:38:17.2519338Z scalar_t=float 2025-08-26T21:38:17.2519407Z ] 2025-08-26T21:38:17.2519981Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(875): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2520049Z with 2025-08-26T21:38:17.2520112Z [ 2025-08-26T21:38:17.2520199Z scalar_t=float 2025-08-26T21:38:17.2520262Z ] 2025-08-26T21:38:17.2520835Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(875): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2520912Z with 2025-08-26T21:38:17.2520975Z [ 2025-08-26T21:38:17.2521051Z scalar_t=float 2025-08-26T21:38:17.2521131Z ] 2025-08-26T21:38:17.2521739Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(876): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2521811Z with 2025-08-26T21:38:17.2521875Z [ 2025-08-26T21:38:17.2521956Z scalar_t=float 2025-08-26T21:38:17.2522053Z ] 2025-08-26T21:38:17.2522629Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(876): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2522702Z with 2025-08-26T21:38:17.2522767Z [ 2025-08-26T21:38:17.2522839Z scalar_t=float 2025-08-26T21:38:17.2522967Z ] 2025-08-26T21:38:17.2523558Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(876): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2523630Z with 2025-08-26T21:38:17.2523694Z [ 2025-08-26T21:38:17.2523816Z scalar_t=float 2025-08-26T21:38:17.2523880Z ] 2025-08-26T21:38:17.2524454Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(877): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2524529Z with 2025-08-26T21:38:17.2524594Z [ 2025-08-26T21:38:17.2524667Z scalar_t=float 2025-08-26T21:38:17.2524731Z ] 2025-08-26T21:38:17.2525312Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(878): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2525380Z with 2025-08-26T21:38:17.2525443Z [ 2025-08-26T21:38:17.2525528Z scalar_t=float 2025-08-26T21:38:17.2525595Z ] 2025-08-26T21:38:17.2526162Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(878): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2526238Z with 2025-08-26T21:38:17.2526309Z [ 2025-08-26T21:38:17.2526382Z scalar_t=float 2025-08-26T21:38:17.2526443Z ] 2025-08-26T21:38:17.2527026Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(878): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2527133Z with 2025-08-26T21:38:17.2527199Z [ 2025-08-26T21:38:17.2527282Z scalar_t=float 2025-08-26T21:38:17.2527346Z ] 2025-08-26T21:38:17.2527920Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(879): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2527987Z with 2025-08-26T21:38:17.2528061Z [ 2025-08-26T21:38:17.2528133Z scalar_t=float 2025-08-26T21:38:17.2528196Z ] 2025-08-26T21:38:17.2528778Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(879): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2528844Z with 2025-08-26T21:38:17.2528911Z [ 2025-08-26T21:38:17.2528983Z scalar_t=float 2025-08-26T21:38:17.2529058Z ] 2025-08-26T21:38:17.2529633Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(879): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2529701Z with 2025-08-26T21:38:17.2529772Z [ 2025-08-26T21:38:17.2529844Z scalar_t=float 2025-08-26T21:38:17.2529906Z ] 2025-08-26T21:38:17.2530482Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(880): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2530548Z with 2025-08-26T21:38:17.2530611Z [ 2025-08-26T21:38:17.2530729Z scalar_t=float 2025-08-26T21:38:17.2530803Z ] 2025-08-26T21:38:17.2531374Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(880): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2531472Z with 2025-08-26T21:38:17.2531549Z [ 2025-08-26T21:38:17.2531622Z scalar_t=float 2025-08-26T21:38:17.2531690Z ] 2025-08-26T21:38:17.2532262Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(880): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2532339Z with 2025-08-26T21:38:17.2532406Z [ 2025-08-26T21:38:17.2532485Z scalar_t=float 2025-08-26T21:38:17.2532559Z ] 2025-08-26T21:38:17.2533133Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(881): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2533236Z with 2025-08-26T21:38:17.2533310Z [ 2025-08-26T21:38:17.2533386Z scalar_t=float 2025-08-26T21:38:17.2533452Z ] 2025-08-26T21:38:17.2534025Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(881): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2534105Z with 2025-08-26T21:38:17.2534169Z [ 2025-08-26T21:38:17.2534246Z scalar_t=float 2025-08-26T21:38:17.2534318Z ] 2025-08-26T21:38:17.2534889Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(881): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2534958Z with 2025-08-26T21:38:17.2535036Z [ 2025-08-26T21:38:17.2535110Z scalar_t=float 2025-08-26T21:38:17.2535176Z ] 2025-08-26T21:38:17.2535751Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(882): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2535824Z with 2025-08-26T21:38:17.2535887Z [ 2025-08-26T21:38:17.2535960Z scalar_t=float 2025-08-26T21:38:17.2536073Z ] 2025-08-26T21:38:17.2536643Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(882): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2536710Z with 2025-08-26T21:38:17.2536772Z [ 2025-08-26T21:38:17.2536859Z scalar_t=float 2025-08-26T21:38:17.2536921Z ] 2025-08-26T21:38:17.2537494Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(882): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2537572Z with 2025-08-26T21:38:17.2537639Z [ 2025-08-26T21:38:17.2537715Z scalar_t=float 2025-08-26T21:38:17.2537791Z ] 2025-08-26T21:38:17.2538375Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(883): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2538445Z with 2025-08-26T21:38:17.2538509Z [ 2025-08-26T21:38:17.2538593Z scalar_t=float 2025-08-26T21:38:17.2538656Z ] 2025-08-26T21:38:17.2539231Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(883): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2539304Z with 2025-08-26T21:38:17.2539370Z [ 2025-08-26T21:38:17.2539444Z scalar_t=float 2025-08-26T21:38:17.2539508Z ] 2025-08-26T21:38:17.2540123Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(883): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2540190Z with 2025-08-26T21:38:17.2540253Z [ 2025-08-26T21:38:17.2540335Z scalar_t=float 2025-08-26T21:38:17.2540399Z ] 2025-08-26T21:38:17.2541005Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(884): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2541081Z with 2025-08-26T21:38:17.2541144Z [ 2025-08-26T21:38:17.2541216Z scalar_t=float 2025-08-26T21:38:17.2541280Z ] 2025-08-26T21:38:17.2541861Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(884): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2541927Z with 2025-08-26T21:38:17.2541992Z [ 2025-08-26T21:38:17.2542071Z scalar_t=float 2025-08-26T21:38:17.2542133Z ] 2025-08-26T21:38:17.2543084Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(884): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2543150Z with 2025-08-26T21:38:17.2543234Z [ 2025-08-26T21:38:17.2543311Z scalar_t=float 2025-08-26T21:38:17.2543379Z ] 2025-08-26T21:38:17.2543968Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(885): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2544036Z with 2025-08-26T21:38:17.2544100Z [ 2025-08-26T21:38:17.2544183Z scalar_t=float 2025-08-26T21:38:17.2544246Z ] 2025-08-26T21:38:17.2544823Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(885): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2544888Z with 2025-08-26T21:38:17.2544966Z [ 2025-08-26T21:38:17.2545040Z scalar_t=float 2025-08-26T21:38:17.2545108Z ] 2025-08-26T21:38:17.2545691Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(885): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2545800Z with 2025-08-26T21:38:17.2545863Z [ 2025-08-26T21:38:17.2545935Z scalar_t=float 2025-08-26T21:38:17.2546007Z ] 2025-08-26T21:38:17.2546584Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(886): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2546649Z with 2025-08-26T21:38:17.2546728Z [ 2025-08-26T21:38:17.2546803Z scalar_t=float 2025-08-26T21:38:17.2546867Z ] 2025-08-26T21:38:17.2547458Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(887): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2547530Z with 2025-08-26T21:38:17.2547595Z [ 2025-08-26T21:38:17.2547671Z scalar_t=float 2025-08-26T21:38:17.2547745Z ] 2025-08-26T21:38:17.2548321Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(887): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2548389Z with 2025-08-26T21:38:17.2548464Z [ 2025-08-26T21:38:17.2548537Z scalar_t=float 2025-08-26T21:38:17.2548598Z ] 2025-08-26T21:38:17.2549172Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(887): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2549244Z with 2025-08-26T21:38:17.2549310Z [ 2025-08-26T21:38:17.2549384Z scalar_t=float 2025-08-26T21:38:17.2549453Z ] 2025-08-26T21:38:17.2550062Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(888): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2550136Z with 2025-08-26T21:38:17.2550208Z [ 2025-08-26T21:38:17.2550284Z scalar_t=float 2025-08-26T21:38:17.2550382Z ] 2025-08-26T21:38:17.2550958Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(888): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2551031Z with 2025-08-26T21:38:17.2551098Z [ 2025-08-26T21:38:17.2551173Z scalar_t=float 2025-08-26T21:38:17.2551245Z ] 2025-08-26T21:38:17.2551820Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(888): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2551884Z with 2025-08-26T21:38:17.2551989Z [ 2025-08-26T21:38:17.2552065Z scalar_t=float 2025-08-26T21:38:17.2552130Z ] 2025-08-26T21:38:17.2552702Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(889): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2552783Z with 2025-08-26T21:38:17.2552846Z [ 2025-08-26T21:38:17.2552920Z scalar_t=float 2025-08-26T21:38:17.2552994Z ] 2025-08-26T21:38:17.2553564Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(889): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2553629Z with 2025-08-26T21:38:17.2553694Z [ 2025-08-26T21:38:17.2553777Z scalar_t=float 2025-08-26T21:38:17.2553843Z ] 2025-08-26T21:38:17.2554415Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(889): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2554493Z with 2025-08-26T21:38:17.2554559Z [ 2025-08-26T21:38:17.2554633Z scalar_t=float 2025-08-26T21:38:17.2554695Z ] 2025-08-26T21:38:17.2555279Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(890): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2555382Z with 2025-08-26T21:38:17.2555446Z [ 2025-08-26T21:38:17.2555532Z scalar_t=float 2025-08-26T21:38:17.2555602Z ] 2025-08-26T21:38:17.2556178Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(890): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2556253Z with 2025-08-26T21:38:17.2556316Z [ 2025-08-26T21:38:17.2556390Z scalar_t=float 2025-08-26T21:38:17.2556457Z ] 2025-08-26T21:38:17.2557041Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(890): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2557106Z with 2025-08-26T21:38:17.2557171Z [ 2025-08-26T21:38:17.2557256Z scalar_t=float 2025-08-26T21:38:17.2557321Z ] 2025-08-26T21:38:17.2557894Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(891): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2557966Z with 2025-08-26T21:38:17.2558032Z [ 2025-08-26T21:38:17.2558104Z scalar_t=float 2025-08-26T21:38:17.2558169Z ] 2025-08-26T21:38:17.2558753Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(891): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2558822Z with 2025-08-26T21:38:17.2558886Z [ 2025-08-26T21:38:17.2559000Z scalar_t=float 2025-08-26T21:38:17.2559063Z ] 2025-08-26T21:38:17.2559639Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(891): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2559738Z with 2025-08-26T21:38:17.2559813Z [ 2025-08-26T21:38:17.2559888Z scalar_t=float 2025-08-26T21:38:17.2559954Z ] 2025-08-26T21:38:17.2560532Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(892): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2560601Z with 2025-08-26T21:38:17.2560667Z [ 2025-08-26T21:38:17.2560746Z scalar_t=float 2025-08-26T21:38:17.2560809Z ] 2025-08-26T21:38:17.2561389Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(892): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2561491Z with 2025-08-26T21:38:17.2561566Z [ 2025-08-26T21:38:17.2561639Z scalar_t=float 2025-08-26T21:38:17.2561703Z ] 2025-08-26T21:38:17.2562282Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(892): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2562350Z with 2025-08-26T21:38:17.2562416Z [ 2025-08-26T21:38:17.2562490Z scalar_t=float 2025-08-26T21:38:17.2562565Z ] 2025-08-26T21:38:17.2563211Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(893): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2563284Z with 2025-08-26T21:38:17.2563367Z [ 2025-08-26T21:38:17.2563446Z scalar_t=float 2025-08-26T21:38:17.2563512Z ] 2025-08-26T21:38:17.2564100Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(893): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2564167Z with 2025-08-26T21:38:17.2564233Z [ 2025-08-26T21:38:17.2564353Z scalar_t=float 2025-08-26T21:38:17.2564429Z ] 2025-08-26T21:38:17.2565004Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(893): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2565071Z with 2025-08-26T21:38:17.2565143Z [ 2025-08-26T21:38:17.2565217Z scalar_t=float 2025-08-26T21:38:17.2565284Z ] 2025-08-26T21:38:17.2565861Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(894): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2565942Z with 2025-08-26T21:38:17.2566014Z [ 2025-08-26T21:38:17.2566093Z scalar_t=float 2025-08-26T21:38:17.2566169Z ] 2025-08-26T21:38:17.2566745Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(894): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2566819Z with 2025-08-26T21:38:17.2566897Z [ 2025-08-26T21:38:17.2566973Z scalar_t=float 2025-08-26T21:38:17.2567037Z ] 2025-08-26T21:38:17.2567609Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(894): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2567683Z with 2025-08-26T21:38:17.2567749Z [ 2025-08-26T21:38:17.2567822Z scalar_t=float 2025-08-26T21:38:17.2567900Z ] 2025-08-26T21:38:17.2568573Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(895): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2568647Z with 2025-08-26T21:38:17.2568712Z [ 2025-08-26T21:38:17.2568803Z scalar_t=float 2025-08-26T21:38:17.2568870Z ] 2025-08-26T21:38:17.2569525Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(896): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2569599Z with 2025-08-26T21:38:17.2569666Z [ 2025-08-26T21:38:17.2569739Z scalar_t=float 2025-08-26T21:38:17.2569814Z ] 2025-08-26T21:38:17.2570390Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(896): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2570459Z with 2025-08-26T21:38:17.2570524Z [ 2025-08-26T21:38:17.2570604Z scalar_t=float 2025-08-26T21:38:17.2570702Z ] 2025-08-26T21:38:17.2571275Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(896): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2571349Z with 2025-08-26T21:38:17.2571415Z [ 2025-08-26T21:38:17.2571494Z scalar_t=float 2025-08-26T21:38:17.2571560Z ] 2025-08-26T21:38:17.2572147Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(897): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2572218Z with 2025-08-26T21:38:17.2572284Z [ 2025-08-26T21:38:17.2572377Z scalar_t=float 2025-08-26T21:38:17.2572440Z ] 2025-08-26T21:38:17.2573015Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(897): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2573096Z with 2025-08-26T21:38:17.2573161Z [ 2025-08-26T21:38:17.2573240Z scalar_t=float 2025-08-26T21:38:17.2573303Z ] 2025-08-26T21:38:17.2573883Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(897): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2573982Z with 2025-08-26T21:38:17.2574047Z [ 2025-08-26T21:38:17.2574127Z scalar_t=float 2025-08-26T21:38:17.2574192Z ] 2025-08-26T21:38:17.2574763Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(898): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2574838Z with 2025-08-26T21:38:17.2574900Z [ 2025-08-26T21:38:17.2574975Z scalar_t=float 2025-08-26T21:38:17.2575040Z ] 2025-08-26T21:38:17.2575617Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(898): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2575686Z with 2025-08-26T21:38:17.2575750Z [ 2025-08-26T21:38:17.2575837Z scalar_t=float 2025-08-26T21:38:17.2575903Z ] 2025-08-26T21:38:17.2576483Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(898): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2576553Z with 2025-08-26T21:38:17.2576634Z [ 2025-08-26T21:38:17.2576708Z scalar_t=float 2025-08-26T21:38:17.2576770Z ] 2025-08-26T21:38:17.2577345Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(899): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2577410Z with 2025-08-26T21:38:17.2577474Z [ 2025-08-26T21:38:17.2577555Z scalar_t=float 2025-08-26T21:38:17.2577622Z ] 2025-08-26T21:38:17.2578235Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(899): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2578300Z with 2025-08-26T21:38:17.2578373Z [ 2025-08-26T21:38:17.2578479Z scalar_t=float 2025-08-26T21:38:17.2578545Z ] 2025-08-26T21:38:17.2579122Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(899): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2579190Z with 2025-08-26T21:38:17.2579252Z [ 2025-08-26T21:38:17.2579324Z scalar_t=float 2025-08-26T21:38:17.2579400Z ] 2025-08-26T21:38:17.2579970Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(900): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2580069Z with 2025-08-26T21:38:17.2580145Z [ 2025-08-26T21:38:17.2580218Z scalar_t=float 2025-08-26T21:38:17.2580282Z ] 2025-08-26T21:38:17.2580861Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(900): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2580931Z with 2025-08-26T21:38:17.2580994Z [ 2025-08-26T21:38:17.2581069Z scalar_t=float 2025-08-26T21:38:17.2581146Z ] 2025-08-26T21:38:17.2581722Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(900): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2581787Z with 2025-08-26T21:38:17.2581857Z [ 2025-08-26T21:38:17.2581929Z scalar_t=float 2025-08-26T21:38:17.2581990Z ] 2025-08-26T21:38:17.2582563Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(901): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2582634Z with 2025-08-26T21:38:17.2598969Z [ 2025-08-26T21:38:17.2599057Z scalar_t=float 2025-08-26T21:38:17.2599125Z ] 2025-08-26T21:38:17.2599889Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(901): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2599965Z with 2025-08-26T21:38:17.2600033Z [ 2025-08-26T21:38:17.2600129Z scalar_t=float 2025-08-26T21:38:17.2600197Z ] 2025-08-26T21:38:17.2600785Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(901): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2600860Z with 2025-08-26T21:38:17.2600940Z [ 2025-08-26T21:38:17.2601018Z scalar_t=float 2025-08-26T21:38:17.2601090Z ] 2025-08-26T21:38:17.2601684Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(902): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2601751Z with 2025-08-26T21:38:17.2601819Z [ 2025-08-26T21:38:17.2601902Z scalar_t=float 2025-08-26T21:38:17.2601978Z ] 2025-08-26T21:38:17.2602552Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(902): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2602619Z with 2025-08-26T21:38:17.2602698Z [ 2025-08-26T21:38:17.2602778Z scalar_t=float 2025-08-26T21:38:17.2602845Z ] 2025-08-26T21:38:17.2603503Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(902): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2603579Z with 2025-08-26T21:38:17.2604016Z [ 2025-08-26T21:38:17.2604102Z scalar_t=float 2025-08-26T21:38:17.2604180Z ] 2025-08-26T21:38:17.2604809Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(903): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2604879Z with 2025-08-26T21:38:17.2604950Z [ 2025-08-26T21:38:17.2605025Z scalar_t=float 2025-08-26T21:38:17.2605090Z ] 2025-08-26T21:38:17.2605666Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(903): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2605751Z with 2025-08-26T21:38:17.2605818Z [ 2025-08-26T21:38:17.2605894Z scalar_t=float 2025-08-26T21:38:17.2605970Z ] 2025-08-26T21:38:17.2606540Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(903): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2606647Z with 2025-08-26T21:38:17.2606721Z [ 2025-08-26T21:38:17.2606798Z scalar_t=float 2025-08-26T21:38:17.2606863Z ] 2025-08-26T21:38:17.2607444Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(904): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2607523Z with 2025-08-26T21:38:17.2607587Z [ 2025-08-26T21:38:17.2607665Z scalar_t=float 2025-08-26T21:38:17.2607745Z ] 2025-08-26T21:38:17.2608323Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(905): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2608391Z with 2025-08-26T21:38:17.2608468Z [ 2025-08-26T21:38:17.2608546Z scalar_t=float 2025-08-26T21:38:17.2608612Z ] 2025-08-26T21:38:17.2609186Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(905): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2609263Z with 2025-08-26T21:38:17.2609363Z [ 2025-08-26T21:38:17.2609441Z scalar_t=float 2025-08-26T21:38:17.2609522Z ] 2025-08-26T21:38:17.2610097Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(905): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2610170Z with 2025-08-26T21:38:17.2610235Z [ 2025-08-26T21:38:17.2610318Z scalar_t=float 2025-08-26T21:38:17.2610387Z ] 2025-08-26T21:38:17.2610961Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(906): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2611041Z with 2025-08-26T21:38:17.2611108Z [ 2025-08-26T21:38:17.2611185Z scalar_t=float 2025-08-26T21:38:17.2611249Z ] 2025-08-26T21:38:17.2611831Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(906): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2611898Z with 2025-08-26T21:38:17.2611960Z [ 2025-08-26T21:38:17.2612046Z scalar_t=float 2025-08-26T21:38:17.2612109Z ] 2025-08-26T21:38:17.2612681Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(906): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2612752Z with 2025-08-26T21:38:17.2612817Z [ 2025-08-26T21:38:17.2612892Z scalar_t=float 2025-08-26T21:38:17.2612958Z ] 2025-08-26T21:38:17.2613574Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(907): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2613647Z with 2025-08-26T21:38:17.2613710Z [ 2025-08-26T21:38:17.2613795Z scalar_t=float 2025-08-26T21:38:17.2613865Z ] 2025-08-26T21:38:17.2614837Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(907): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2614923Z with 2025-08-26T21:38:17.2614989Z [ 2025-08-26T21:38:17.2615067Z scalar_t=float 2025-08-26T21:38:17.2615132Z ] 2025-08-26T21:38:17.2615723Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(907): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2615792Z with 2025-08-26T21:38:17.2615858Z [ 2025-08-26T21:38:17.2615945Z scalar_t=float 2025-08-26T21:38:17.2616052Z ] 2025-08-26T21:38:17.2616636Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(908): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2616710Z with 2025-08-26T21:38:17.2616792Z [ 2025-08-26T21:38:17.2616873Z scalar_t=float 2025-08-26T21:38:17.2616942Z ] 2025-08-26T21:38:17.2617529Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(908): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2617598Z with 2025-08-26T21:38:17.2617668Z [ 2025-08-26T21:38:17.2617755Z scalar_t=float 2025-08-26T21:38:17.2617823Z ] 2025-08-26T21:38:17.2618399Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(908): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2618470Z with 2025-08-26T21:38:17.2618551Z [ 2025-08-26T21:38:17.2618625Z scalar_t=float 2025-08-26T21:38:17.2618697Z ] 2025-08-26T21:38:17.2619286Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(909): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2619396Z with 2025-08-26T21:38:17.2619463Z [ 2025-08-26T21:38:17.2619543Z scalar_t=float 2025-08-26T21:38:17.2619620Z ] 2025-08-26T21:38:17.2620195Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(909): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2620263Z with 2025-08-26T21:38:17.2620343Z [ 2025-08-26T21:38:17.2620423Z scalar_t=float 2025-08-26T21:38:17.2620489Z ] 2025-08-26T21:38:17.2621082Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(909): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2621160Z with 2025-08-26T21:38:17.2621229Z [ 2025-08-26T21:38:17.2621304Z scalar_t=float 2025-08-26T21:38:17.2621377Z ] 2025-08-26T21:38:17.2621949Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(910): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2622013Z with 2025-08-26T21:38:17.2622084Z [ 2025-08-26T21:38:17.2622169Z scalar_t=float 2025-08-26T21:38:17.2622235Z ] 2025-08-26T21:38:17.2622808Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(910): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2622885Z with 2025-08-26T21:38:17.2622948Z [ 2025-08-26T21:38:17.2623023Z scalar_t=float 2025-08-26T21:38:17.2623128Z ] 2025-08-26T21:38:17.2623705Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(910): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2623771Z with 2025-08-26T21:38:17.2623843Z [ 2025-08-26T21:38:17.2623949Z scalar_t=float 2025-08-26T21:38:17.2624013Z ] 2025-08-26T21:38:17.2624582Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(911): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2624652Z with 2025-08-26T21:38:17.2624714Z [ 2025-08-26T21:38:17.2624787Z scalar_t=float 2025-08-26T21:38:17.2624860Z ] 2025-08-26T21:38:17.2625428Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(911): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2625531Z with 2025-08-26T21:38:17.2625601Z [ 2025-08-26T21:38:17.2625683Z scalar_t=float 2025-08-26T21:38:17.2625746Z ] 2025-08-26T21:38:17.2626314Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(911): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2626389Z with 2025-08-26T21:38:17.2626451Z [ 2025-08-26T21:38:17.2626525Z scalar_t=float 2025-08-26T21:38:17.2626586Z ] 2025-08-26T21:38:17.2627169Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(912): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2627237Z with 2025-08-26T21:38:17.2627302Z [ 2025-08-26T21:38:17.2627391Z scalar_t=float 2025-08-26T21:38:17.2627457Z ] 2025-08-26T21:38:17.2628029Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(912): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2628102Z with 2025-08-26T21:38:17.2628163Z [ 2025-08-26T21:38:17.2628236Z scalar_t=float 2025-08-26T21:38:17.2628332Z ] 2025-08-26T21:38:17.2628919Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(912): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2628984Z with 2025-08-26T21:38:17.2629056Z [ 2025-08-26T21:38:17.2629135Z scalar_t=float 2025-08-26T21:38:17.2629198Z ] 2025-08-26T21:38:17.2629770Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(913): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2629845Z with 2025-08-26T21:38:17.2629911Z [ 2025-08-26T21:38:17.2629986Z scalar_t=float 2025-08-26T21:38:17.2630051Z ] 2025-08-26T21:38:17.2630635Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(914): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2630704Z with 2025-08-26T21:38:17.2630773Z [ 2025-08-26T21:38:17.2630858Z scalar_t=float 2025-08-26T21:38:17.2630924Z ] 2025-08-26T21:38:17.2631497Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(914): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2631561Z with 2025-08-26T21:38:17.2631631Z [ 2025-08-26T21:38:17.2631703Z scalar_t=float 2025-08-26T21:38:17.2631766Z ] 2025-08-26T21:38:17.2632348Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(914): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2632447Z with 2025-08-26T21:38:17.2632517Z [ 2025-08-26T21:38:17.2632597Z scalar_t=float 2025-08-26T21:38:17.2632660Z ] 2025-08-26T21:38:17.2633264Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(915): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2633331Z with 2025-08-26T21:38:17.2633401Z [ 2025-08-26T21:38:17.2633477Z scalar_t=float 2025-08-26T21:38:17.2633543Z ] 2025-08-26T21:38:17.2634119Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(915): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2634189Z with 2025-08-26T21:38:17.2634252Z [ 2025-08-26T21:38:17.2634326Z scalar_t=float 2025-08-26T21:38:17.2634394Z ] 2025-08-26T21:38:17.2634967Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(915): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2635066Z with 2025-08-26T21:38:17.2635141Z [ 2025-08-26T21:38:17.2635213Z scalar_t=float 2025-08-26T21:38:17.2635277Z ] 2025-08-26T21:38:17.2635859Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(916): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2635925Z with 2025-08-26T21:38:17.2635989Z [ 2025-08-26T21:38:17.2636065Z scalar_t=float 2025-08-26T21:38:17.2636136Z ] 2025-08-26T21:38:17.2636710Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(916): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2636773Z with 2025-08-26T21:38:17.2636844Z [ 2025-08-26T21:38:17.2636923Z scalar_t=float 2025-08-26T21:38:17.2636988Z ] 2025-08-26T21:38:17.2637565Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(916): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2637675Z with 2025-08-26T21:38:17.2637747Z [ 2025-08-26T21:38:17.2637819Z scalar_t=float 2025-08-26T21:38:17.2637893Z ] 2025-08-26T21:38:17.2638473Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(917): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2638543Z with 2025-08-26T21:38:17.2638613Z [ 2025-08-26T21:38:17.2638685Z scalar_t=float 2025-08-26T21:38:17.2638750Z ] 2025-08-26T21:38:17.2639326Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(917): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2639409Z with 2025-08-26T21:38:17.2639473Z [ 2025-08-26T21:38:17.2639546Z scalar_t=float 2025-08-26T21:38:17.2639623Z ] 2025-08-26T21:38:17.2640197Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(917): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2640269Z with 2025-08-26T21:38:17.2640341Z [ 2025-08-26T21:38:17.2640420Z scalar_t=float 2025-08-26T21:38:17.2640484Z ] 2025-08-26T21:38:17.2641051Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(918): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2641133Z with 2025-08-26T21:38:17.2641197Z [ 2025-08-26T21:38:17.2641273Z scalar_t=float 2025-08-26T21:38:17.2641355Z ] 2025-08-26T21:38:17.2641959Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(918): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2642032Z with 2025-08-26T21:38:17.2642099Z [ 2025-08-26T21:38:17.2642183Z scalar_t=float 2025-08-26T21:38:17.2642248Z ] 2025-08-26T21:38:17.2642938Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(918): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2643025Z with 2025-08-26T21:38:17.2643096Z [ 2025-08-26T21:38:17.2643174Z scalar_t=float 2025-08-26T21:38:17.2643241Z ] 2025-08-26T21:38:17.2643832Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(919): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2643903Z with 2025-08-26T21:38:17.2643965Z [ 2025-08-26T21:38:17.2644093Z scalar_t=float 2025-08-26T21:38:17.2644159Z ] 2025-08-26T21:38:17.2644734Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(919): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2644807Z with 2025-08-26T21:38:17.2644871Z [ 2025-08-26T21:38:17.2644945Z scalar_t=float 2025-08-26T21:38:17.2645012Z ] 2025-08-26T21:38:17.2645598Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(919): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2645663Z with 2025-08-26T21:38:17.2645733Z [ 2025-08-26T21:38:17.2645824Z scalar_t=float 2025-08-26T21:38:17.2645887Z ] 2025-08-26T21:38:17.2646463Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(920): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2646540Z with 2025-08-26T21:38:17.2646604Z [ 2025-08-26T21:38:17.2646677Z scalar_t=float 2025-08-26T21:38:17.2646739Z ] 2025-08-26T21:38:17.2647330Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(920): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2647432Z with 2025-08-26T21:38:17.2647502Z [ 2025-08-26T21:38:17.2647581Z scalar_t=float 2025-08-26T21:38:17.2647643Z ] 2025-08-26T21:38:17.2648218Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(920): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2648288Z with 2025-08-26T21:38:17.2648359Z [ 2025-08-26T21:38:17.2648432Z scalar_t=float 2025-08-26T21:38:17.2648496Z ] 2025-08-26T21:38:17.2649079Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(921): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2649148Z with 2025-08-26T21:38:17.2649214Z [ 2025-08-26T21:38:17.2649310Z scalar_t=float 2025-08-26T21:38:17.2649374Z ] 2025-08-26T21:38:17.2649956Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(921): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2650026Z with 2025-08-26T21:38:17.2650101Z [ 2025-08-26T21:38:17.2650177Z scalar_t=float 2025-08-26T21:38:17.2650244Z ] 2025-08-26T21:38:17.2650827Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(921): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2650892Z with 2025-08-26T21:38:17.2650956Z [ 2025-08-26T21:38:17.2651034Z scalar_t=float 2025-08-26T21:38:17.2651141Z ] 2025-08-26T21:38:17.2651722Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(922): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2651790Z with 2025-08-26T21:38:17.2651898Z [ 2025-08-26T21:38:17.2651974Z scalar_t=float 2025-08-26T21:38:17.2652041Z ] 2025-08-26T21:38:17.2652623Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(923): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2652691Z with 2025-08-26T21:38:17.2652755Z [ 2025-08-26T21:38:17.2652832Z scalar_t=float 2025-08-26T21:38:17.2652901Z ] 2025-08-26T21:38:17.2653475Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(923): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2653575Z with 2025-08-26T21:38:17.2653652Z [ 2025-08-26T21:38:17.2653728Z scalar_t=float 2025-08-26T21:38:17.2653792Z ] 2025-08-26T21:38:17.2654366Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(923): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2654443Z with 2025-08-26T21:38:17.2654512Z [ 2025-08-26T21:38:17.2654588Z scalar_t=float 2025-08-26T21:38:17.2654659Z ] 2025-08-26T21:38:17.2655230Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(924): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2655300Z with 2025-08-26T21:38:17.2655372Z [ 2025-08-26T21:38:17.2655450Z scalar_t=float 2025-08-26T21:38:17.2655513Z ] 2025-08-26T21:38:17.2656090Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(924): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2656165Z with 2025-08-26T21:38:17.2656228Z [ 2025-08-26T21:38:17.2656303Z scalar_t=float 2025-08-26T21:38:17.2656792Z ] 2025-08-26T21:38:17.2657371Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(924): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2657438Z with 2025-08-26T21:38:17.2657502Z [ 2025-08-26T21:38:17.2657593Z scalar_t=float 2025-08-26T21:38:17.2657668Z ] 2025-08-26T21:38:17.2658240Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(925): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2658314Z with 2025-08-26T21:38:17.2658377Z [ 2025-08-26T21:38:17.2658457Z scalar_t=float 2025-08-26T21:38:17.2658519Z ] 2025-08-26T21:38:17.2659098Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(925): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2659173Z with 2025-08-26T21:38:17.2659241Z [ 2025-08-26T21:38:17.2659328Z scalar_t=float 2025-08-26T21:38:17.2659390Z ] 2025-08-26T21:38:17.2659964Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(925): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2660029Z with 2025-08-26T21:38:17.2660100Z [ 2025-08-26T21:38:17.2660172Z scalar_t=float 2025-08-26T21:38:17.2660234Z ] 2025-08-26T21:38:17.2660810Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(926): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2660914Z with 2025-08-26T21:38:17.2660978Z [ 2025-08-26T21:38:17.2661055Z scalar_t=float 2025-08-26T21:38:17.2661120Z ] 2025-08-26T21:38:17.2661724Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(926): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2661794Z with 2025-08-26T21:38:17.2661861Z [ 2025-08-26T21:38:17.2661933Z scalar_t=float 2025-08-26T21:38:17.2661995Z ] 2025-08-26T21:38:17.2662578Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(926): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2662647Z with 2025-08-26T21:38:17.2662712Z [ 2025-08-26T21:38:17.2662790Z scalar_t=float 2025-08-26T21:38:17.2662867Z ] 2025-08-26T21:38:17.2663478Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(927): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2663542Z with 2025-08-26T21:38:17.2663614Z [ 2025-08-26T21:38:17.2663689Z scalar_t=float 2025-08-26T21:38:17.2663760Z ] 2025-08-26T21:38:17.2664335Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(927): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2664399Z with 2025-08-26T21:38:17.2664461Z [ 2025-08-26T21:38:17.2664533Z scalar_t=float 2025-08-26T21:38:17.2664602Z ] 2025-08-26T21:38:17.2665176Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(927): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2665243Z with 2025-08-26T21:38:17.2665319Z [ 2025-08-26T21:38:17.2665397Z scalar_t=float 2025-08-26T21:38:17.2665461Z ] 2025-08-26T21:38:17.2666029Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(928): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2666136Z with 2025-08-26T21:38:17.2666199Z [ 2025-08-26T21:38:17.2666275Z scalar_t=float 2025-08-26T21:38:17.2666346Z ] 2025-08-26T21:38:17.2666917Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(928): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2666983Z with 2025-08-26T21:38:17.2667056Z [ 2025-08-26T21:38:17.2667130Z scalar_t=float 2025-08-26T21:38:17.2667192Z ] 2025-08-26T21:38:17.2667769Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(928): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2667844Z with 2025-08-26T21:38:17.2667910Z [ 2025-08-26T21:38:17.2667989Z scalar_t=float 2025-08-26T21:38:17.2668062Z ] 2025-08-26T21:38:17.2668636Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(929): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2668702Z with 2025-08-26T21:38:17.2668766Z [ 2025-08-26T21:38:17.2668848Z scalar_t=float 2025-08-26T21:38:17.2668913Z ] 2025-08-26T21:38:17.2669557Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(929): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2669633Z with 2025-08-26T21:38:17.2669698Z [ 2025-08-26T21:38:17.2669771Z scalar_t=float 2025-08-26T21:38:17.2669842Z ] 2025-08-26T21:38:17.2670504Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(929): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2670571Z with 2025-08-26T21:38:17.2670632Z [ 2025-08-26T21:38:17.2670717Z scalar_t=float 2025-08-26T21:38:17.2670821Z ] 2025-08-26T21:38:17.2671390Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(930): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2671468Z with 2025-08-26T21:38:17.2671535Z [ 2025-08-26T21:38:17.2671613Z scalar_t=float 2025-08-26T21:38:17.2671681Z ] 2025-08-26T21:38:17.2672270Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(930): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2672339Z with 2025-08-26T21:38:17.2672442Z [ 2025-08-26T21:38:17.2672528Z scalar_t=float 2025-08-26T21:38:17.2672591Z ] 2025-08-26T21:38:17.2673164Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(930): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2673237Z with 2025-08-26T21:38:17.2673302Z [ 2025-08-26T21:38:17.2673374Z scalar_t=float 2025-08-26T21:38:17.2673439Z ] 2025-08-26T21:38:17.2674018Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(931): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2674082Z with 2025-08-26T21:38:17.2674145Z [ 2025-08-26T21:38:17.2674228Z scalar_t=float 2025-08-26T21:38:17.2674295Z ] 2025-08-26T21:38:17.2674865Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(932): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2674943Z with 2025-08-26T21:38:17.2675009Z [ 2025-08-26T21:38:17.2675082Z scalar_t=float 2025-08-26T21:38:17.2675145Z ] 2025-08-26T21:38:17.2675800Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(932): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2675916Z with 2025-08-26T21:38:17.2675979Z [ 2025-08-26T21:38:17.2676060Z scalar_t=float 2025-08-26T21:38:17.2676125Z ] 2025-08-26T21:38:17.2676701Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(932): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2676766Z with 2025-08-26T21:38:17.2676837Z [ 2025-08-26T21:38:17.2676909Z scalar_t=float 2025-08-26T21:38:17.2676973Z ] 2025-08-26T21:38:17.2677565Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(933): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2677629Z with 2025-08-26T21:38:17.2677694Z [ 2025-08-26T21:38:17.2677769Z scalar_t=float 2025-08-26T21:38:17.2677842Z ] 2025-08-26T21:38:17.2678416Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(933): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2678481Z with 2025-08-26T21:38:17.2678552Z [ 2025-08-26T21:38:17.2678625Z scalar_t=float 2025-08-26T21:38:17.2678691Z ] 2025-08-26T21:38:17.2679268Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(933): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2679333Z with 2025-08-26T21:38:17.2679398Z [ 2025-08-26T21:38:17.2679507Z scalar_t=float 2025-08-26T21:38:17.2679578Z ] 2025-08-26T21:38:17.2680148Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(934): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2680245Z with 2025-08-26T21:38:17.2680317Z [ 2025-08-26T21:38:17.2680390Z scalar_t=float 2025-08-26T21:38:17.2680455Z ] 2025-08-26T21:38:17.2681070Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(934): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2681135Z with 2025-08-26T21:38:17.2681198Z [ 2025-08-26T21:38:17.2681275Z scalar_t=float 2025-08-26T21:38:17.2681346Z ] 2025-08-26T21:38:17.2681961Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(934): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2682071Z with 2025-08-26T21:38:17.2682140Z [ 2025-08-26T21:38:17.2682219Z scalar_t=float 2025-08-26T21:38:17.2682282Z ] 2025-08-26T21:38:17.2682938Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(935): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2683029Z with 2025-08-26T21:38:17.2683094Z [ 2025-08-26T21:38:17.2683169Z scalar_t=float 2025-08-26T21:38:17.2683247Z ] 2025-08-26T21:38:17.2683818Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(935): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2683888Z with 2025-08-26T21:38:17.2683965Z [ 2025-08-26T21:38:17.2684044Z scalar_t=float 2025-08-26T21:38:17.2684112Z ] 2025-08-26T21:38:17.2684691Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(935): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2684766Z with 2025-08-26T21:38:17.2684835Z [ 2025-08-26T21:38:17.2684950Z scalar_t=float 2025-08-26T21:38:17.2685024Z ] 2025-08-26T21:38:17.2685600Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(936): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2685665Z with 2025-08-26T21:38:17.2685731Z [ 2025-08-26T21:38:17.2685813Z scalar_t=float 2025-08-26T21:38:17.2685877Z ] 2025-08-26T21:38:17.2686451Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(936): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2686531Z with 2025-08-26T21:38:17.2686601Z [ 2025-08-26T21:38:17.2686679Z scalar_t=float 2025-08-26T21:38:17.2686753Z ] 2025-08-26T21:38:17.2687365Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(936): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2687434Z with 2025-08-26T21:38:17.2687499Z [ 2025-08-26T21:38:17.2687582Z scalar_t=float 2025-08-26T21:38:17.2687678Z ] 2025-08-26T21:38:17.2688250Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(937): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2688322Z with 2025-08-26T21:38:17.2688385Z [ 2025-08-26T21:38:17.2688462Z scalar_t=float 2025-08-26T21:38:17.2688525Z ] 2025-08-26T21:38:17.2689145Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(937): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2689212Z with 2025-08-26T21:38:17.2689275Z [ 2025-08-26T21:38:17.2689362Z scalar_t=float 2025-08-26T21:38:17.2689428Z ] 2025-08-26T21:38:17.2690035Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(937): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2690115Z with 2025-08-26T21:38:17.2690187Z [ 2025-08-26T21:38:17.2690262Z scalar_t=float 2025-08-26T21:38:17.2690325Z ] 2025-08-26T21:38:17.2690910Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(938): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2690976Z with 2025-08-26T21:38:17.2691039Z [ 2025-08-26T21:38:17.2691120Z scalar_t=float 2025-08-26T21:38:17.2691216Z ] 2025-08-26T21:38:17.2691797Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(938): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2691872Z with 2025-08-26T21:38:17.2691940Z [ 2025-08-26T21:38:17.2692019Z scalar_t=float 2025-08-26T21:38:17.2692082Z ] 2025-08-26T21:38:17.2692662Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(938): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2692731Z with 2025-08-26T21:38:17.2692798Z [ 2025-08-26T21:38:17.2692915Z scalar_t=float 2025-08-26T21:38:17.2692978Z ] 2025-08-26T21:38:17.2693591Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(939): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2693658Z with 2025-08-26T21:38:17.2693733Z [ 2025-08-26T21:38:17.2693807Z scalar_t=float 2025-08-26T21:38:17.2693868Z ] 2025-08-26T21:38:17.2694446Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(939): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2694554Z with 2025-08-26T21:38:17.2694622Z [ 2025-08-26T21:38:17.2694694Z scalar_t=float 2025-08-26T21:38:17.2694763Z ] 2025-08-26T21:38:17.2695334Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(939): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2695399Z with 2025-08-26T21:38:17.2695468Z [ 2025-08-26T21:38:17.2695542Z scalar_t=float 2025-08-26T21:38:17.2695606Z ] 2025-08-26T21:38:17.2696187Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(940): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:17.2696253Z with 2025-08-26T21:38:17.2696324Z [ 2025-08-26T21:38:17.2696396Z scalar_t=float 2025-08-26T21:38:17.2696469Z ] 2025-08-26T21:38:17.2697078Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1328): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2697643Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1328): note: the template instantiation context (the oldest one first) is 2025-08-26T21:38:17.2698325Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1488): note: see reference to function template instantiation 'float calc_i0(T)' being compiled 2025-08-26T21:38:17.2698391Z with 2025-08-26T21:38:17.2698467Z [ 2025-08-26T21:38:17.2698532Z T=float 2025-08-26T21:38:17.2698637Z ] 2025-08-26T21:38:17.2699604Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1479): note: see reference to function template instantiation 'std::tuple chebyshev_coefficients_i0e_A(void)' being compiled 2025-08-26T21:38:17.2700230Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1328): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2700796Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1329): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2701358Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1329): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2701937Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1330): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2702539Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1330): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2703113Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1331): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2703679Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1331): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2704242Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1332): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2704904Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1332): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2705476Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1333): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2706084Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1333): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2706659Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1334): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2707226Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1334): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2707794Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1335): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2708370Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1335): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2708942Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1336): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2709514Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1336): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2710123Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1337): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2710771Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1337): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2711349Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1338): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2711947Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1338): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2712520Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1339): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2713097Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1339): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2713667Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1340): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2714543Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1340): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2715137Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1341): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2715745Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1341): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2716351Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1342): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2716930Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1342): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2717500Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1354): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2718050Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1354): note: the template instantiation context (the oldest one first) is 2025-08-26T21:38:17.2718976Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1483): note: see reference to function template instantiation 'std::tuple chebyshev_coefficients_i0e_B(void)' being compiled 2025-08-26T21:38:17.2719550Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1354): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2720124Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1355): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2720694Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1355): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2721260Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1356): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2721908Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1356): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2722482Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1357): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2723143Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1357): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2723731Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1358): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2724330Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1358): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2724899Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1359): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2725484Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1359): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2726053Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1360): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2726656Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1360): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2727283Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1361): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2727888Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1361): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2728466Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1362): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2729035Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1362): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2729604Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1363): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2730214Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1363): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2730785Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1364): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2731353Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1364): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2731926Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1365): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2732496Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1365): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:17.2733108Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1366): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:38:18.1813994Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(627): warning C4305: 'initializing': truncation from 'double' to 'scalar_t' 2025-08-26T21:38:18.1814785Z with 2025-08-26T21:38:18.1814981Z [ 2025-08-26T21:38:18.1815160Z scalar_t=float 2025-08-26T21:38:18.1815403Z ] 2025-08-26T21:38:18.1816051Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(627): note: the template instantiation context (the oldest one first) is 2025-08-26T21:38:18.1817683Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1202): note: see reference to function template instantiation 'scalar_t _igam_helper_series(scalar_t,scalar_t)' being compiled 2025-08-26T21:38:18.1818828Z with 2025-08-26T21:38:18.1818998Z [ 2025-08-26T21:38:18.1819221Z scalar_t=float 2025-08-26T21:38:18.1819436Z ] 2025-08-26T21:38:18.1820335Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(664): note: see reference to function template instantiation 'scalar_t _igam_helper_fac(scalar_t,scalar_t)' being compiled 2025-08-26T21:38:18.1821298Z with 2025-08-26T21:38:18.1821471Z [ 2025-08-26T21:38:18.1821652Z scalar_t=float 2025-08-26T21:38:18.1821854Z ] 2025-08-26T21:38:18.1822518Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(629): warning C4305: 'initializing': truncation from 'double' to 'scalar_t' 2025-08-26T21:38:18.1823325Z with 2025-08-26T21:38:18.1823515Z [ 2025-08-26T21:38:18.1823684Z scalar_t=float 2025-08-26T21:38:18.1823901Z ] 2025-08-26T21:38:18.1824603Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(630): warning C4305: 'initializing': truncation from 'double' to 'scalar_t' 2025-08-26T21:38:18.1825368Z with 2025-08-26T21:38:18.1825539Z [ 2025-08-26T21:38:18.1825704Z scalar_t=float 2025-08-26T21:38:18.1825919Z ] 2025-08-26T21:38:18.7532597Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(585): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:18.7533429Z with 2025-08-26T21:38:18.7533608Z [ 2025-08-26T21:38:18.7533796Z scalar_t=float 2025-08-26T21:38:18.7534061Z ] 2025-08-26T21:38:18.7534711Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(585): note: the template instantiation context (the oldest one first) is 2025-08-26T21:38:18.7536181Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(664): note: see reference to function template instantiation 'scalar_t _igam_helper_fac(scalar_t,scalar_t)' being compiled 2025-08-26T21:38:18.7537307Z with 2025-08-26T21:38:18.7537485Z [ 2025-08-26T21:38:18.7537673Z scalar_t=float 2025-08-26T21:38:18.7537889Z ] 2025-08-26T21:38:18.7538775Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(641): note: see reference to function template instantiation 'scalar_t lanczos_sum_expg_scaled(scalar_t)' being compiled 2025-08-26T21:38:18.7539738Z with 2025-08-26T21:38:18.7539906Z [ 2025-08-26T21:38:18.7540082Z scalar_t=float 2025-08-26T21:38:18.7540293Z ] 2025-08-26T21:38:18.7540981Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(586): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:18.7541734Z with 2025-08-26T21:38:18.7541914Z [ 2025-08-26T21:38:18.7542090Z scalar_t=float 2025-08-26T21:38:18.7542316Z ] 2025-08-26T21:38:18.7542986Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(587): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:18.7543758Z with 2025-08-26T21:38:18.7543933Z [ 2025-08-26T21:38:18.7544098Z scalar_t=float 2025-08-26T21:38:18.7544312Z ] 2025-08-26T21:38:18.7544976Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(588): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:18.7545742Z with 2025-08-26T21:38:18.7545972Z [ 2025-08-26T21:38:18.7546149Z scalar_t=float 2025-08-26T21:38:18.7546353Z ] 2025-08-26T21:38:18.7547090Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(589): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:18.7547858Z with 2025-08-26T21:38:18.7548032Z [ 2025-08-26T21:38:18.7548211Z scalar_t=float 2025-08-26T21:38:18.7548414Z ] 2025-08-26T21:38:18.7549100Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(590): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:18.7549859Z with 2025-08-26T21:38:18.7550042Z [ 2025-08-26T21:38:18.7550213Z scalar_t=float 2025-08-26T21:38:18.7550427Z ] 2025-08-26T21:38:18.7551212Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(591): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:18.7552043Z with 2025-08-26T21:38:18.7552213Z [ 2025-08-26T21:38:18.7552387Z scalar_t=float 2025-08-26T21:38:18.7552611Z ] 2025-08-26T21:38:18.7553291Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(592): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:18.7554044Z with 2025-08-26T21:38:18.7554213Z [ 2025-08-26T21:38:18.7554374Z scalar_t=float 2025-08-26T21:38:18.7554588Z ] 2025-08-26T21:38:18.7555254Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(593): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:18.7556019Z with 2025-08-26T21:38:18.7556236Z [ 2025-08-26T21:38:18.7556416Z scalar_t=float 2025-08-26T21:38:18.7556659Z ] 2025-08-26T21:38:18.7557335Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(594): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:18.7558148Z with 2025-08-26T21:38:18.7558321Z [ 2025-08-26T21:38:18.7558499Z scalar_t=float 2025-08-26T21:38:18.7558711Z ] 2025-08-26T21:38:18.7559402Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(595): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:18.7560153Z with 2025-08-26T21:38:18.7560332Z [ 2025-08-26T21:38:18.7560497Z scalar_t=float 2025-08-26T21:38:18.7560705Z ] 2025-08-26T21:38:18.7561381Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(596): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:18.7562134Z with 2025-08-26T21:38:18.7562309Z [ 2025-08-26T21:38:18.7562477Z scalar_t=float 2025-08-26T21:38:18.7562690Z ] 2025-08-26T21:38:18.7563421Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(597): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:18.7564189Z with 2025-08-26T21:38:18.7564352Z [ 2025-08-26T21:38:18.7564538Z scalar_t=float 2025-08-26T21:38:18.7564756Z ] 2025-08-26T21:38:18.7565422Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(607): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:18.7566185Z with 2025-08-26T21:38:18.7566348Z [ 2025-08-26T21:38:18.7566521Z scalar_t=float 2025-08-26T21:38:18.7566724Z ] 2025-08-26T21:38:18.7567460Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(608): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:18.7568226Z with 2025-08-26T21:38:18.7568406Z [ 2025-08-26T21:38:18.7568593Z scalar_t=float 2025-08-26T21:38:18.7568802Z ] 2025-08-26T21:38:18.7569526Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(609): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:38:18.7570269Z with 2025-08-26T21:38:18.7570446Z [ 2025-08-26T21:38:18.7570619Z scalar_t=float 2025-08-26T21:38:18.7570834Z ] 2025-08-26T21:38:20.2449461Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64\link.exe" /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib /LIBPATH:C:\Jenkins\Miniconda3\libs /LIBPATH:C:\Jenkins\Miniconda3 /LIBPATH:C:\Jenkins\Miniconda3\PCbuild\amd64 "/LIBPATH:C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64" c10.lib torch.lib torch_cpu.lib torch_python.lib sleef.lib /EXPORT:PyInit_rng build\temp.win-amd64-cpython-39\Release\rng_extension.obj /OUT:build\lib.win-amd64-cpython-39\torch_test_cpp_extension\rng.cp39-win_amd64.pyd /IMPLIB:build\temp.win-amd64-cpython-39\Release\rng.cp39-win_amd64.lib 2025-08-26T21:38:20.4892983Z Creating library build\temp.win-amd64-cpython-39\Release\rng.cp39-win_amd64.lib and object build\temp.win-amd64-cpython-39\Release\rng.cp39-win_amd64.exp 2025-08-26T21:38:20.5031766Z Generating code 2025-08-26T21:38:22.1986278Z Finished generating code 2025-08-26T21:38:22.3442816Z running install_lib 2025-08-26T21:38:22.3579461Z copying build\lib.win-amd64-cpython-39\torch_test_cpp_extension\cpp.cp39-win_amd64.pyd -> ./install\Jenkins\Miniconda3\Lib\site-packages\torch_test_cpp_extension 2025-08-26T21:38:22.3590753Z copying build\lib.win-amd64-cpython-39\torch_test_cpp_extension\maia.cp39-win_amd64.pyd -> ./install\Jenkins\Miniconda3\Lib\site-packages\torch_test_cpp_extension 2025-08-26T21:38:22.3599744Z copying build\lib.win-amd64-cpython-39\torch_test_cpp_extension\rng.cp39-win_amd64.pyd -> ./install\Jenkins\Miniconda3\Lib\site-packages\torch_test_cpp_extension 2025-08-26T21:38:22.3630423Z running install_egg_info 2025-08-26T21:38:22.3865164Z running egg_info 2025-08-26T21:38:22.3966170Z writing torch_test_cpp_extension.egg-info\PKG-INFO 2025-08-26T21:38:22.3975037Z writing dependency_links to torch_test_cpp_extension.egg-info\dependency_links.txt 2025-08-26T21:38:22.3978939Z writing entry points to torch_test_cpp_extension.egg-info\entry_points.txt 2025-08-26T21:38:22.3983459Z writing top-level names to torch_test_cpp_extension.egg-info\top_level.txt 2025-08-26T21:38:22.4094634Z reading manifest file 'torch_test_cpp_extension.egg-info\SOURCES.txt' 2025-08-26T21:38:22.4128464Z writing manifest file 'torch_test_cpp_extension.egg-info\SOURCES.txt' 2025-08-26T21:38:22.4129269Z removing './install\Jenkins\Miniconda3\Lib\site-packages\torch_test_cpp_extension-0.0.0-py3.9.egg-info' (and everything under it) 2025-08-26T21:38:22.4130294Z Copying torch_test_cpp_extension.egg-info to ./install\Jenkins\Miniconda3\Lib\site-packages\torch_test_cpp_extension-0.0.0-py3.9.egg-info 2025-08-26T21:38:22.4166281Z running install_scripts 2025-08-26T21:38:26.6932107Z 2025-08-26T21:38:26.6933842Z Running tests... 2025-08-26T21:38:26.6934177Z ---------------------------------------------------------------------- 2025-08-26T21:38:26.9372309Z . 2025-08-26T21:38:26.9372674Z ---------------------------------------------------------------------- 2025-08-26T21:38:26.9373029Z Ran 1 test in 0.250s 2025-08-26T21:38:26.9373195Z 2025-08-26T21:38:26.9373846Z OK 2025-08-26T21:38:26.9373958Z 2025-08-26T21:38:26.9374054Z Generating XML reports... 2025-08-26T21:38:27.5939018Z Running test_cpp_extensions_aot_ninja 1/1 ... [2025-08-26 21:38:27.593247] 2025-08-26T21:38:31.4086034Z running install 2025-08-26T21:38:31.4090129Z C:\Jenkins\Miniconda3\lib\site-packages\setuptools\_distutils\cmd.py:90: SetuptoolsDeprecationWarning: setup.py install is deprecated. 2025-08-26T21:38:31.4090822Z !! 2025-08-26T21:38:31.4090942Z 2025-08-26T21:38:31.4091056Z ******************************************************************************** 2025-08-26T21:38:31.4091411Z Please avoid running ``setup.py`` directly. 2025-08-26T21:38:31.4091762Z Instead, use pypa/build, pypa/installer or other 2025-08-26T21:38:31.4092093Z standards-based tools. 2025-08-26T21:38:31.4092256Z 2025-08-26T21:38:31.4092544Z See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details. 2025-08-26T21:38:31.4093171Z ******************************************************************************** 2025-08-26T21:38:31.4093399Z 2025-08-26T21:38:31.4093508Z !! 2025-08-26T21:38:31.4093688Z self.initialize_options() 2025-08-26T21:38:31.4216641Z running build 2025-08-26T21:38:31.4216890Z running build_py 2025-08-26T21:38:31.4326479Z creating build\lib.win-amd64-cpython-39\torch_test_cpp_extension 2025-08-26T21:38:31.4332039Z copying torch_test_cpp_extension\__init__.py -> build\lib.win-amd64-cpython-39\torch_test_cpp_extension 2025-08-26T21:38:31.4339693Z running build_ext 2025-08-26T21:38:31.4404527Z building 'torch_test_cpp_extension.cpp' extension 2025-08-26T21:38:31.4417257Z creating C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\build\temp.win-amd64-cpython-39\Release 2025-08-26T21:38:47.5957894Z [1/1] cl /showIncludes /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include -IC:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\api\include -IC:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\self_compiler_include_dirs_test -IC:\Jenkins\Miniconda3\include -IC:\Jenkins\Miniconda3\Include "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" /MD /wd4819 /wd4251 /wd4244 /wd4267 /wd4275 /wd4018 /wd4190 /wd4624 /wd4067 /wd4068 /EHsc -c C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\extension.cpp /FoC:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\build\temp.win-amd64-cpython-39\Release\extension.obj /sdl /permissive- -DTORCH_API_INCLUDE_EXTENSION_H -DTORCH_EXTENSION_NAME=cpp /std:c++17 2025-08-26T21:38:47.6207849Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64\link.exe" /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib /LIBPATH:C:\Jenkins\Miniconda3\libs /LIBPATH:C:\Jenkins\Miniconda3 /LIBPATH:C:\Jenkins\Miniconda3\PCbuild\amd64 "/LIBPATH:C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64" c10.lib torch.lib torch_cpu.lib torch_python.lib sleef.lib /EXPORT:PyInit_cpp C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\build\temp.win-amd64-cpython-39\Release\extension.obj /OUT:build\lib.win-amd64-cpython-39\torch_test_cpp_extension\cpp.cp39-win_amd64.pyd /IMPLIB:C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\build\temp.win-amd64-cpython-39\Release\cpp.cp39-win_amd64.lib 2025-08-26T21:38:47.8630921Z Creating library C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\build\temp.win-amd64-cpython-39\Release\cpp.cp39-win_amd64.lib and object C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\build\temp.win-amd64-cpython-39\Release\cpp.cp39-win_amd64.exp 2025-08-26T21:38:47.8756532Z Generating code 2025-08-26T21:38:49.7088509Z Finished generating code 2025-08-26T21:38:49.8519515Z building 'torch_test_cpp_extension.maia' extension 2025-08-26T21:39:05.8656800Z [1/1] cl /showIncludes /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include -IC:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\api\include -IC:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\self_compiler_include_dirs_test -IC:\Jenkins\Miniconda3\include -IC:\Jenkins\Miniconda3\Include "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" /MD /wd4819 /wd4251 /wd4244 /wd4267 /wd4275 /wd4018 /wd4190 /wd4624 /wd4067 /wd4068 /EHsc -c C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\maia_extension.cpp /FoC:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\build\temp.win-amd64-cpython-39\Release\maia_extension.obj /sdl /permissive- -DTORCH_API_INCLUDE_EXTENSION_H -DTORCH_EXTENSION_NAME=maia /std:c++17 2025-08-26T21:39:05.8689570Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64\link.exe" /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib /LIBPATH:C:\Jenkins\Miniconda3\libs /LIBPATH:C:\Jenkins\Miniconda3 /LIBPATH:C:\Jenkins\Miniconda3\PCbuild\amd64 "/LIBPATH:C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64" c10.lib torch.lib torch_cpu.lib torch_python.lib sleef.lib /EXPORT:PyInit_maia C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\build\temp.win-amd64-cpython-39\Release\maia_extension.obj /OUT:build\lib.win-amd64-cpython-39\torch_test_cpp_extension\maia.cp39-win_amd64.pyd /IMPLIB:C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\build\temp.win-amd64-cpython-39\Release\maia.cp39-win_amd64.lib 2025-08-26T21:39:06.1073903Z Creating library C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\build\temp.win-amd64-cpython-39\Release\maia.cp39-win_amd64.lib and object C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\build\temp.win-amd64-cpython-39\Release\maia.cp39-win_amd64.exp 2025-08-26T21:39:06.1158667Z Generating code 2025-08-26T21:39:07.6194145Z Finished generating code 2025-08-26T21:39:07.7484539Z building 'torch_test_cpp_extension.rng' extension 2025-08-26T21:39:24.3730249Z [1/1] cl /showIncludes /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include -IC:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\api\include -IC:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\self_compiler_include_dirs_test -IC:\Jenkins\Miniconda3\include -IC:\Jenkins\Miniconda3\Include "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" /MD /wd4819 /wd4251 /wd4244 /wd4267 /wd4275 /wd4018 /wd4190 /wd4624 /wd4067 /wd4068 /EHsc -c C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\rng_extension.cpp /FoC:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\build\temp.win-amd64-cpython-39\Release\rng_extension.obj /sdl /permissive- -DTORCH_API_INCLUDE_EXTENSION_H -DTORCH_EXTENSION_NAME=rng /std:c++17 2025-08-26T21:39:24.3736429Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1158): warning C4305: 'initializing': truncation from 'double' to 'float' 2025-08-26T21:39:24.3737669Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1158): note: the template instantiation context (the oldest one first) is 2025-08-26T21:39:24.3739119Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1209): note: see reference to function template instantiation 'scalar_t calc_igamma(scalar_t,scalar_t)' being compiled 2025-08-26T21:39:24.3740093Z with 2025-08-26T21:39:24.3740276Z [ 2025-08-26T21:39:24.3740485Z scalar_t=float 2025-08-26T21:39:24.3740706Z ] 2025-08-26T21:39:24.3741393Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1079): warning C4305: 'initializing': truncation from 'double' to 'float' 2025-08-26T21:39:24.3742626Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1079): note: the template instantiation context (the oldest one first) is 2025-08-26T21:39:24.3744128Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1223): note: see reference to function template instantiation 'scalar_t calc_igammac(scalar_t,scalar_t)' being compiled 2025-08-26T21:39:24.3745163Z with 2025-08-26T21:39:24.3745341Z [ 2025-08-26T21:39:24.3745524Z scalar_t=float 2025-08-26T21:39:24.3745738Z ] 2025-08-26T21:39:24.3746431Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(716): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3747209Z with 2025-08-26T21:39:24.3747380Z [ 2025-08-26T21:39:24.3747563Z scalar_t=float 2025-08-26T21:39:24.3747773Z ] 2025-08-26T21:39:24.3748471Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(716): note: the template instantiation context (the oldest one first) is 2025-08-26T21:39:24.3749930Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1209): note: see reference to function template instantiation 'scalar_t calc_igamma(scalar_t,scalar_t)' being compiled 2025-08-26T21:39:24.3750853Z with 2025-08-26T21:39:24.3751028Z [ 2025-08-26T21:39:24.3751194Z scalar_t=float 2025-08-26T21:39:24.3751408Z ] 2025-08-26T21:39:24.3752373Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1192): note: see reference to function template instantiation 'scalar_t _igam_helper_asymptotic_series(scalar_t,scalar_t,bool)' being compiled 2025-08-26T21:39:24.3753512Z with 2025-08-26T21:39:24.3753692Z [ 2025-08-26T21:39:24.3753863Z scalar_t=float 2025-08-26T21:39:24.3754079Z ] 2025-08-26T21:39:24.3754811Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(716): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3755581Z with 2025-08-26T21:39:24.3755755Z [ 2025-08-26T21:39:24.3755932Z scalar_t=float 2025-08-26T21:39:24.3756161Z ] 2025-08-26T21:39:24.3756835Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(716): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3757596Z with 2025-08-26T21:39:24.3757764Z [ 2025-08-26T21:39:24.3757940Z scalar_t=float 2025-08-26T21:39:24.3758149Z ] 2025-08-26T21:39:24.3758830Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(717): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3759624Z with 2025-08-26T21:39:24.3759795Z [ 2025-08-26T21:39:24.3759971Z scalar_t=float 2025-08-26T21:39:24.3760189Z ] 2025-08-26T21:39:24.3760870Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(717): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3761617Z with 2025-08-26T21:39:24.3761788Z [ 2025-08-26T21:39:24.3761948Z scalar_t=float 2025-08-26T21:39:24.3762166Z ] 2025-08-26T21:39:24.3762839Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(717): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3763593Z with 2025-08-26T21:39:24.3763762Z [ 2025-08-26T21:39:24.3763929Z scalar_t=float 2025-08-26T21:39:24.3764149Z ] 2025-08-26T21:39:24.3764818Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(718): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3765630Z with 2025-08-26T21:39:24.3765797Z [ 2025-08-26T21:39:24.3765985Z scalar_t=float 2025-08-26T21:39:24.3766190Z ] 2025-08-26T21:39:24.3766865Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(718): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3767631Z with 2025-08-26T21:39:24.3767795Z [ 2025-08-26T21:39:24.3767967Z scalar_t=float 2025-08-26T21:39:24.3768173Z ] 2025-08-26T21:39:24.3768846Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(718): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3769601Z with 2025-08-26T21:39:24.3769781Z [ 2025-08-26T21:39:24.3769955Z scalar_t=float 2025-08-26T21:39:24.3770172Z ] 2025-08-26T21:39:24.3770923Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(719): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3771684Z with 2025-08-26T21:39:24.3771862Z [ 2025-08-26T21:39:24.3772027Z scalar_t=float 2025-08-26T21:39:24.3772247Z ] 2025-08-26T21:39:24.3772916Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(719): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3773683Z with 2025-08-26T21:39:24.3773848Z [ 2025-08-26T21:39:24.3774020Z scalar_t=float 2025-08-26T21:39:24.3774236Z ] 2025-08-26T21:39:24.3774971Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(719): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3775733Z with 2025-08-26T21:39:24.3775899Z [ 2025-08-26T21:39:24.3776078Z scalar_t=float 2025-08-26T21:39:24.3776329Z ] 2025-08-26T21:39:24.3777011Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(720): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3777782Z with 2025-08-26T21:39:24.3777951Z [ 2025-08-26T21:39:24.3778129Z scalar_t=float 2025-08-26T21:39:24.3778340Z ] 2025-08-26T21:39:24.3779030Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(720): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3779790Z with 2025-08-26T21:39:24.3779964Z [ 2025-08-26T21:39:24.3780184Z scalar_t=float 2025-08-26T21:39:24.3780396Z ] 2025-08-26T21:39:24.3781067Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(720): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3781832Z with 2025-08-26T21:39:24.3782017Z [ 2025-08-26T21:39:24.3782182Z scalar_t=float 2025-08-26T21:39:24.3782388Z ] 2025-08-26T21:39:24.3783051Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(721): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3783803Z with 2025-08-26T21:39:24.3783966Z [ 2025-08-26T21:39:24.3784139Z scalar_t=float 2025-08-26T21:39:24.3784341Z ] 2025-08-26T21:39:24.3785021Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(721): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3785781Z with 2025-08-26T21:39:24.3785951Z [ 2025-08-26T21:39:24.3786127Z scalar_t=float 2025-08-26T21:39:24.3786329Z ] 2025-08-26T21:39:24.3787008Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(721): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3787920Z with 2025-08-26T21:39:24.3788095Z [ 2025-08-26T21:39:24.3788275Z scalar_t=float 2025-08-26T21:39:24.3788487Z ] 2025-08-26T21:39:24.3789162Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(722): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3789907Z with 2025-08-26T21:39:24.3790077Z [ 2025-08-26T21:39:24.3790239Z scalar_t=float 2025-08-26T21:39:24.3790451Z ] 2025-08-26T21:39:24.3791125Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(722): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3791878Z with 2025-08-26T21:39:24.3792046Z [ 2025-08-26T21:39:24.3792215Z scalar_t=float 2025-08-26T21:39:24.3792431Z ] 2025-08-26T21:39:24.3793102Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(722): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3793851Z with 2025-08-26T21:39:24.3794010Z [ 2025-08-26T21:39:24.3794186Z scalar_t=float 2025-08-26T21:39:24.3794393Z ] 2025-08-26T21:39:24.3795071Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(723): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3795832Z with 2025-08-26T21:39:24.3795997Z [ 2025-08-26T21:39:24.3796226Z scalar_t=float 2025-08-26T21:39:24.3796440Z ] 2025-08-26T21:39:24.3797136Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(723): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3797940Z with 2025-08-26T21:39:24.3798112Z [ 2025-08-26T21:39:24.3798282Z scalar_t=float 2025-08-26T21:39:24.3798499Z ] 2025-08-26T21:39:24.3799176Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(723): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3799931Z with 2025-08-26T21:39:24.3800108Z [ 2025-08-26T21:39:24.3800270Z scalar_t=float 2025-08-26T21:39:24.3800480Z ] 2025-08-26T21:39:24.3801150Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(724): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3801954Z with 2025-08-26T21:39:24.3802117Z [ 2025-08-26T21:39:24.3802289Z scalar_t=float 2025-08-26T21:39:24.3802504Z ] 2025-08-26T21:39:24.3803174Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(725): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3803935Z with 2025-08-26T21:39:24.3804094Z [ 2025-08-26T21:39:24.3804272Z scalar_t=float 2025-08-26T21:39:24.3804476Z ] 2025-08-26T21:39:24.3805162Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(725): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3805923Z with 2025-08-26T21:39:24.3806096Z [ 2025-08-26T21:39:24.3806266Z scalar_t=float 2025-08-26T21:39:24.3806465Z ] 2025-08-26T21:39:24.3807143Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(725): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3807892Z with 2025-08-26T21:39:24.3808059Z [ 2025-08-26T21:39:24.3808822Z scalar_t=float 2025-08-26T21:39:24.3809046Z ] 2025-08-26T21:39:24.3809731Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(726): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3810581Z with 2025-08-26T21:39:24.3810760Z [ 2025-08-26T21:39:24.3810931Z scalar_t=float 2025-08-26T21:39:24.3811146Z ] 2025-08-26T21:39:24.3811819Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(726): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3812575Z with 2025-08-26T21:39:24.3812741Z [ 2025-08-26T21:39:24.3812921Z scalar_t=float 2025-08-26T21:39:24.3813131Z ] 2025-08-26T21:39:24.3813807Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(726): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3814563Z with 2025-08-26T21:39:24.3814726Z [ 2025-08-26T21:39:24.3814898Z scalar_t=float 2025-08-26T21:39:24.3815102Z ] 2025-08-26T21:39:24.3815785Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(727): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3816538Z with 2025-08-26T21:39:24.3816724Z [ 2025-08-26T21:39:24.3816890Z scalar_t=float 2025-08-26T21:39:24.3817105Z ] 2025-08-26T21:39:24.3817844Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(727): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3818601Z with 2025-08-26T21:39:24.3818782Z [ 2025-08-26T21:39:24.3818960Z scalar_t=float 2025-08-26T21:39:24.3819176Z ] 2025-08-26T21:39:24.3819897Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(727): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3820660Z with 2025-08-26T21:39:24.3820865Z [ 2025-08-26T21:39:24.3821041Z scalar_t=float 2025-08-26T21:39:24.3821272Z ] 2025-08-26T21:39:24.3821947Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(728): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3822718Z with 2025-08-26T21:39:24.3822891Z [ 2025-08-26T21:39:24.3823076Z scalar_t=float 2025-08-26T21:39:24.3823291Z ] 2025-08-26T21:39:24.3824029Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(728): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3824806Z with 2025-08-26T21:39:24.3824985Z [ 2025-08-26T21:39:24.3825175Z scalar_t=float 2025-08-26T21:39:24.3825475Z ] 2025-08-26T21:39:24.3826174Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(728): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3826939Z with 2025-08-26T21:39:24.3827128Z [ 2025-08-26T21:39:24.3827302Z scalar_t=float 2025-08-26T21:39:24.3827530Z ] 2025-08-26T21:39:24.3828221Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(729): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3828974Z with 2025-08-26T21:39:24.3829166Z [ 2025-08-26T21:39:24.3829349Z scalar_t=float 2025-08-26T21:39:24.3829577Z ] 2025-08-26T21:39:24.3830259Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(729): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3831080Z with 2025-08-26T21:39:24.3831261Z [ 2025-08-26T21:39:24.3831449Z scalar_t=float 2025-08-26T21:39:24.3831682Z ] 2025-08-26T21:39:24.3832358Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(729): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3833136Z with 2025-08-26T21:39:24.3833313Z [ 2025-08-26T21:39:24.3833501Z scalar_t=float 2025-08-26T21:39:24.3833717Z ] 2025-08-26T21:39:24.3834421Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(730): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3835188Z with 2025-08-26T21:39:24.3835375Z [ 2025-08-26T21:39:24.3835565Z scalar_t=float 2025-08-26T21:39:24.3835778Z ] 2025-08-26T21:39:24.3836473Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(730): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3837232Z with 2025-08-26T21:39:24.3837421Z [ 2025-08-26T21:39:24.3837597Z scalar_t=float 2025-08-26T21:39:24.3837825Z ] 2025-08-26T21:39:24.3838504Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(730): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3839276Z with 2025-08-26T21:39:24.3839467Z [ 2025-08-26T21:39:24.3839642Z scalar_t=float 2025-08-26T21:39:24.3839869Z ] 2025-08-26T21:39:24.3840603Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(731): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3841384Z with 2025-08-26T21:39:24.3841564Z [ 2025-08-26T21:39:24.3841760Z scalar_t=float 2025-08-26T21:39:24.3842022Z ] 2025-08-26T21:39:24.3842716Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(731): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3843502Z with 2025-08-26T21:39:24.3843677Z [ 2025-08-26T21:39:24.3843866Z scalar_t=float 2025-08-26T21:39:24.3844082Z ] 2025-08-26T21:39:24.3844775Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(731): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3845530Z with 2025-08-26T21:39:24.3845766Z [ 2025-08-26T21:39:24.3845945Z scalar_t=float 2025-08-26T21:39:24.3846171Z ] 2025-08-26T21:39:24.3846862Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(732): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3847625Z with 2025-08-26T21:39:24.3847814Z [ 2025-08-26T21:39:24.3847993Z scalar_t=float 2025-08-26T21:39:24.3848221Z ] 2025-08-26T21:39:24.3848897Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(732): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3849684Z with 2025-08-26T21:39:24.3849858Z [ 2025-08-26T21:39:24.3850052Z scalar_t=float 2025-08-26T21:39:24.3850282Z ] 2025-08-26T21:39:24.3851027Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(732): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3851811Z with 2025-08-26T21:39:24.3851988Z [ 2025-08-26T21:39:24.3852179Z scalar_t=float 2025-08-26T21:39:24.3852401Z ] 2025-08-26T21:39:24.3853090Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(733): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3853930Z with 2025-08-26T21:39:24.3854106Z [ 2025-08-26T21:39:24.3854297Z scalar_t=float 2025-08-26T21:39:24.3854516Z ] 2025-08-26T21:39:24.3855204Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(734): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3855964Z with 2025-08-26T21:39:24.3856159Z [ 2025-08-26T21:39:24.3856331Z scalar_t=float 2025-08-26T21:39:24.3856560Z ] 2025-08-26T21:39:24.3857247Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(734): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3858023Z with 2025-08-26T21:39:24.3858210Z [ 2025-08-26T21:39:24.3858391Z scalar_t=float 2025-08-26T21:39:24.3858623Z ] 2025-08-26T21:39:24.3859309Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(734): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3860091Z with 2025-08-26T21:39:24.3860271Z [ 2025-08-26T21:39:24.3860462Z scalar_t=float 2025-08-26T21:39:24.3860677Z ] 2025-08-26T21:39:24.3861373Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(735): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3862148Z with 2025-08-26T21:39:24.3862324Z [ 2025-08-26T21:39:24.3862554Z scalar_t=float 2025-08-26T21:39:24.3862769Z ] 2025-08-26T21:39:24.3863466Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(735): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3864268Z with 2025-08-26T21:39:24.3864456Z [ 2025-08-26T21:39:24.3864646Z scalar_t=float 2025-08-26T21:39:24.3864860Z ] 2025-08-26T21:39:24.3865558Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(735): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3866319Z with 2025-08-26T21:39:24.3866505Z [ 2025-08-26T21:39:24.3866678Z scalar_t=float 2025-08-26T21:39:24.3866909Z ] 2025-08-26T21:39:24.3867585Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(736): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3868410Z with 2025-08-26T21:39:24.3868597Z [ 2025-08-26T21:39:24.3868770Z scalar_t=float 2025-08-26T21:39:24.3869006Z ] 2025-08-26T21:39:24.3869926Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(736): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3870712Z with 2025-08-26T21:39:24.3870884Z [ 2025-08-26T21:39:24.3871072Z scalar_t=float 2025-08-26T21:39:24.3871291Z ] 2025-08-26T21:39:24.3871980Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(736): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3872756Z with 2025-08-26T21:39:24.3872933Z [ 2025-08-26T21:39:24.3889437Z scalar_t=float 2025-08-26T21:39:24.3889827Z ] 2025-08-26T21:39:24.3890631Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(737): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3891412Z with 2025-08-26T21:39:24.3891614Z [ 2025-08-26T21:39:24.3891927Z scalar_t=float 2025-08-26T21:39:24.3892129Z ] 2025-08-26T21:39:24.3892812Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(737): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3893568Z with 2025-08-26T21:39:24.3893745Z [ 2025-08-26T21:39:24.3893927Z scalar_t=float 2025-08-26T21:39:24.3894155Z ] 2025-08-26T21:39:24.3894924Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(737): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3895714Z with 2025-08-26T21:39:24.3895913Z [ 2025-08-26T21:39:24.3896097Z scalar_t=float 2025-08-26T21:39:24.3896325Z ] 2025-08-26T21:39:24.3897010Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(738): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3897796Z with 2025-08-26T21:39:24.3897977Z [ 2025-08-26T21:39:24.3898171Z scalar_t=float 2025-08-26T21:39:24.3898389Z ] 2025-08-26T21:39:24.3899095Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(738): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3899872Z with 2025-08-26T21:39:24.3900056Z [ 2025-08-26T21:39:24.3900286Z scalar_t=float 2025-08-26T21:39:24.3900503Z ] 2025-08-26T21:39:24.3901302Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(738): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3902065Z with 2025-08-26T21:39:24.3902253Z [ 2025-08-26T21:39:24.3902432Z scalar_t=float 2025-08-26T21:39:24.3902667Z ] 2025-08-26T21:39:24.3903408Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(739): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3904177Z with 2025-08-26T21:39:24.3904368Z [ 2025-08-26T21:39:24.3904543Z scalar_t=float 2025-08-26T21:39:24.3904775Z ] 2025-08-26T21:39:24.3905453Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(739): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3906252Z with 2025-08-26T21:39:24.3906415Z [ 2025-08-26T21:39:24.3906628Z scalar_t=float 2025-08-26T21:39:24.3906893Z ] 2025-08-26T21:39:24.3907563Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(739): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3908334Z with 2025-08-26T21:39:24.3908506Z [ 2025-08-26T21:39:24.3908697Z scalar_t=float 2025-08-26T21:39:24.3908908Z ] 2025-08-26T21:39:24.3909600Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(740): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3910359Z with 2025-08-26T21:39:24.3910528Z [ 2025-08-26T21:39:24.3910705Z scalar_t=float 2025-08-26T21:39:24.3910912Z ] 2025-08-26T21:39:24.3911592Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(740): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3912392Z with 2025-08-26T21:39:24.3912604Z [ 2025-08-26T21:39:24.3912779Z scalar_t=float 2025-08-26T21:39:24.3912995Z ] 2025-08-26T21:39:24.3913678Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(740): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3914500Z with 2025-08-26T21:39:24.3914677Z [ 2025-08-26T21:39:24.3914845Z scalar_t=float 2025-08-26T21:39:24.3915066Z ] 2025-08-26T21:39:24.3915734Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(741): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3916504Z with 2025-08-26T21:39:24.3916675Z [ 2025-08-26T21:39:24.3916858Z scalar_t=float 2025-08-26T21:39:24.3917067Z ] 2025-08-26T21:39:24.3917757Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(741): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3918593Z with 2025-08-26T21:39:24.3918768Z [ 2025-08-26T21:39:24.3918953Z scalar_t=float 2025-08-26T21:39:24.3919164Z ] 2025-08-26T21:39:24.3919863Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(741): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3920623Z with 2025-08-26T21:39:24.3920799Z [ 2025-08-26T21:39:24.3920973Z scalar_t=float 2025-08-26T21:39:24.3921184Z ] 2025-08-26T21:39:24.3921870Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(742): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3922617Z with 2025-08-26T21:39:24.3922795Z [ 2025-08-26T21:39:24.3922964Z scalar_t=float 2025-08-26T21:39:24.3923181Z ] 2025-08-26T21:39:24.3923937Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(743): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3924741Z with 2025-08-26T21:39:24.3924917Z [ 2025-08-26T21:39:24.3925125Z scalar_t=float 2025-08-26T21:39:24.3925345Z ] 2025-08-26T21:39:24.3926051Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(743): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3926815Z with 2025-08-26T21:39:24.3926984Z [ 2025-08-26T21:39:24.3927165Z scalar_t=float 2025-08-26T21:39:24.3927372Z ] 2025-08-26T21:39:24.3928049Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(743): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3928845Z with 2025-08-26T21:39:24.3929023Z [ 2025-08-26T21:39:24.3929211Z scalar_t=float 2025-08-26T21:39:24.3929455Z ] 2025-08-26T21:39:24.3930184Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(744): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3931009Z with 2025-08-26T21:39:24.3931182Z [ 2025-08-26T21:39:24.3931358Z scalar_t=float 2025-08-26T21:39:24.3931561Z ] 2025-08-26T21:39:24.3932243Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(744): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3933003Z with 2025-08-26T21:39:24.3933194Z [ 2025-08-26T21:39:24.3933363Z scalar_t=float 2025-08-26T21:39:24.3933578Z ] 2025-08-26T21:39:24.3934262Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(744): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3935017Z with 2025-08-26T21:39:24.3935226Z [ 2025-08-26T21:39:24.3935389Z scalar_t=float 2025-08-26T21:39:24.3935638Z ] 2025-08-26T21:39:24.3936367Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(745): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3937129Z with 2025-08-26T21:39:24.3937293Z [ 2025-08-26T21:39:24.3937477Z scalar_t=float 2025-08-26T21:39:24.3937697Z ] 2025-08-26T21:39:24.3938369Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(745): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3939127Z with 2025-08-26T21:39:24.3939290Z [ 2025-08-26T21:39:24.3939462Z scalar_t=float 2025-08-26T21:39:24.3939667Z ] 2025-08-26T21:39:24.3940353Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(745): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3941138Z with 2025-08-26T21:39:24.3941356Z [ 2025-08-26T21:39:24.3941535Z scalar_t=float 2025-08-26T21:39:24.3941739Z ] 2025-08-26T21:39:24.3942414Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(746): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3943168Z with 2025-08-26T21:39:24.3943343Z [ 2025-08-26T21:39:24.3943516Z scalar_t=float 2025-08-26T21:39:24.3943730Z ] 2025-08-26T21:39:24.3944394Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(746): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3945151Z with 2025-08-26T21:39:24.3945367Z [ 2025-08-26T21:39:24.3945539Z scalar_t=float 2025-08-26T21:39:24.3945760Z ] 2025-08-26T21:39:24.3946506Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(746): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3947314Z with 2025-08-26T21:39:24.3947477Z [ 2025-08-26T21:39:24.3947655Z scalar_t=float 2025-08-26T21:39:24.3947856Z ] 2025-08-26T21:39:24.3948534Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(747): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3949298Z with 2025-08-26T21:39:24.3949461Z [ 2025-08-26T21:39:24.3949632Z scalar_t=float 2025-08-26T21:39:24.3949835Z ] 2025-08-26T21:39:24.3950515Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(747): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3951665Z with 2025-08-26T21:39:24.3951849Z [ 2025-08-26T21:39:24.3952020Z scalar_t=float 2025-08-26T21:39:24.3952283Z ] 2025-08-26T21:39:24.3953006Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(747): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3953763Z with 2025-08-26T21:39:24.3953936Z [ 2025-08-26T21:39:24.3954108Z scalar_t=float 2025-08-26T21:39:24.3954325Z ] 2025-08-26T21:39:24.3955002Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(748): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3955757Z with 2025-08-26T21:39:24.3955921Z [ 2025-08-26T21:39:24.3956096Z scalar_t=float 2025-08-26T21:39:24.3956305Z ] 2025-08-26T21:39:24.3956973Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(748): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3957725Z with 2025-08-26T21:39:24.3957974Z [ 2025-08-26T21:39:24.3958160Z scalar_t=float 2025-08-26T21:39:24.3958368Z ] 2025-08-26T21:39:24.3959082Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(748): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3959852Z with 2025-08-26T21:39:24.3960016Z [ 2025-08-26T21:39:24.3960196Z scalar_t=float 2025-08-26T21:39:24.3960399Z ] 2025-08-26T21:39:24.3961082Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(749): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3961838Z with 2025-08-26T21:39:24.3962015Z [ 2025-08-26T21:39:24.3962184Z scalar_t=float 2025-08-26T21:39:24.3962399Z ] 2025-08-26T21:39:24.3963068Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(749): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3963862Z with 2025-08-26T21:39:24.3964037Z [ 2025-08-26T21:39:24.3964239Z scalar_t=float 2025-08-26T21:39:24.3964462Z ] 2025-08-26T21:39:24.3965135Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(749): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3965907Z with 2025-08-26T21:39:24.3966081Z [ 2025-08-26T21:39:24.3966259Z scalar_t=float 2025-08-26T21:39:24.3966466Z ] 2025-08-26T21:39:24.3967213Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(750): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3967985Z with 2025-08-26T21:39:24.3968158Z [ 2025-08-26T21:39:24.3968348Z scalar_t=float 2025-08-26T21:39:24.3968563Z ] 2025-08-26T21:39:24.3969298Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(750): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3970132Z with 2025-08-26T21:39:24.3970319Z [ 2025-08-26T21:39:24.3970563Z scalar_t=float 2025-08-26T21:39:24.3970775Z ] 2025-08-26T21:39:24.3971465Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(750): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3972222Z with 2025-08-26T21:39:24.3972414Z [ 2025-08-26T21:39:24.3972585Z scalar_t=float 2025-08-26T21:39:24.3972843Z ] 2025-08-26T21:39:24.3973519Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(751): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3974269Z with 2025-08-26T21:39:24.3974435Z [ 2025-08-26T21:39:24.3974614Z scalar_t=float 2025-08-26T21:39:24.3974825Z ] 2025-08-26T21:39:24.3975586Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(752): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3976417Z with 2025-08-26T21:39:24.3976581Z [ 2025-08-26T21:39:24.3976790Z scalar_t=float 2025-08-26T21:39:24.3976993Z ] 2025-08-26T21:39:24.3977747Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(752): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3978614Z with 2025-08-26T21:39:24.3978788Z [ 2025-08-26T21:39:24.3978990Z scalar_t=float 2025-08-26T21:39:24.3979213Z ] 2025-08-26T21:39:24.3979967Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(752): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3980838Z with 2025-08-26T21:39:24.3981052Z [ 2025-08-26T21:39:24.3981218Z scalar_t=float 2025-08-26T21:39:24.3981471Z ] 2025-08-26T21:39:24.3982212Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(753): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3983040Z with 2025-08-26T21:39:24.3983253Z [ 2025-08-26T21:39:24.3983426Z scalar_t=float 2025-08-26T21:39:24.3983670Z ] 2025-08-26T21:39:24.3984413Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(753): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3985245Z with 2025-08-26T21:39:24.3985407Z [ 2025-08-26T21:39:24.3985616Z scalar_t=float 2025-08-26T21:39:24.3985829Z ] 2025-08-26T21:39:24.3986592Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(753): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3987421Z with 2025-08-26T21:39:24.3987619Z [ 2025-08-26T21:39:24.3987790Z scalar_t=float 2025-08-26T21:39:24.3988032Z ] 2025-08-26T21:39:24.3988784Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(754): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3989602Z with 2025-08-26T21:39:24.3989819Z [ 2025-08-26T21:39:24.3989996Z scalar_t=float 2025-08-26T21:39:24.3990294Z ] 2025-08-26T21:39:24.3991055Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(754): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3991881Z with 2025-08-26T21:39:24.3992138Z [ 2025-08-26T21:39:24.3992312Z scalar_t=float 2025-08-26T21:39:24.3992564Z ] 2025-08-26T21:39:24.3993311Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(754): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3994150Z with 2025-08-26T21:39:24.3994310Z [ 2025-08-26T21:39:24.3994521Z scalar_t=float 2025-08-26T21:39:24.3994723Z ] 2025-08-26T21:39:24.3995473Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(755): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3996351Z with 2025-08-26T21:39:24.3996554Z [ 2025-08-26T21:39:24.3996734Z scalar_t=float 2025-08-26T21:39:24.3996976Z ] 2025-08-26T21:39:24.3997727Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(755): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.3998550Z with 2025-08-26T21:39:24.3998757Z [ 2025-08-26T21:39:24.3998938Z scalar_t=float 2025-08-26T21:39:24.3999179Z ] 2025-08-26T21:39:24.3999927Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(755): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4000751Z with 2025-08-26T21:39:24.4000927Z [ 2025-08-26T21:39:24.4001133Z scalar_t=float 2025-08-26T21:39:24.4001343Z ] 2025-08-26T21:39:24.4002093Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(756): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4002931Z with 2025-08-26T21:39:24.4003142Z [ 2025-08-26T21:39:24.4003310Z scalar_t=float 2025-08-26T21:39:24.4003620Z ] 2025-08-26T21:39:24.4004370Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(756): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4005211Z with 2025-08-26T21:39:24.4005420Z [ 2025-08-26T21:39:24.4005598Z scalar_t=float 2025-08-26T21:39:24.4005843Z ] 2025-08-26T21:39:24.4006565Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(756): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4007329Z with 2025-08-26T21:39:24.4007493Z [ 2025-08-26T21:39:24.4007674Z scalar_t=float 2025-08-26T21:39:24.4007880Z ] 2025-08-26T21:39:24.4008562Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(757): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4009316Z with 2025-08-26T21:39:24.4009491Z [ 2025-08-26T21:39:24.4009658Z scalar_t=float 2025-08-26T21:39:24.4009873Z ] 2025-08-26T21:39:24.4010609Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(757): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4011403Z with 2025-08-26T21:39:24.4011579Z [ 2025-08-26T21:39:24.4011786Z scalar_t=float 2025-08-26T21:39:24.4011997Z ] 2025-08-26T21:39:24.4012702Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(757): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4013516Z with 2025-08-26T21:39:24.4013685Z [ 2025-08-26T21:39:24.4013874Z scalar_t=float 2025-08-26T21:39:24.4014091Z ] 2025-08-26T21:39:24.4014804Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(758): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4015570Z with 2025-08-26T21:39:24.4015736Z [ 2025-08-26T21:39:24.4015918Z scalar_t=float 2025-08-26T21:39:24.4016122Z ] 2025-08-26T21:39:24.4016808Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(758): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4017603Z with 2025-08-26T21:39:24.4017802Z [ 2025-08-26T21:39:24.4017978Z scalar_t=float 2025-08-26T21:39:24.4018215Z ] 2025-08-26T21:39:24.4018891Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(758): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4019683Z with 2025-08-26T21:39:24.4019851Z [ 2025-08-26T21:39:24.4020016Z scalar_t=float 2025-08-26T21:39:24.4020238Z ] 2025-08-26T21:39:24.4020915Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(759): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4021686Z with 2025-08-26T21:39:24.4021857Z [ 2025-08-26T21:39:24.4022024Z scalar_t=float 2025-08-26T21:39:24.4022236Z ] 2025-08-26T21:39:24.4022902Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(759): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4023705Z with 2025-08-26T21:39:24.4023903Z [ 2025-08-26T21:39:24.4024079Z scalar_t=float 2025-08-26T21:39:24.4024319Z ] 2025-08-26T21:39:24.4025009Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(759): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4025805Z with 2025-08-26T21:39:24.4025975Z [ 2025-08-26T21:39:24.4026155Z scalar_t=float 2025-08-26T21:39:24.4026372Z ] 2025-08-26T21:39:24.4027070Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(760): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4027823Z with 2025-08-26T21:39:24.4028009Z [ 2025-08-26T21:39:24.4028184Z scalar_t=float 2025-08-26T21:39:24.4028423Z ] 2025-08-26T21:39:24.4029116Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(761): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4029952Z with 2025-08-26T21:39:24.4030172Z [ 2025-08-26T21:39:24.4030352Z scalar_t=float 2025-08-26T21:39:24.4030581Z ] 2025-08-26T21:39:24.4031266Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(761): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4032047Z with 2025-08-26T21:39:24.4032233Z [ 2025-08-26T21:39:24.4032409Z scalar_t=float 2025-08-26T21:39:24.4032644Z ] 2025-08-26T21:39:24.4033328Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(761): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4034093Z with 2025-08-26T21:39:24.4034267Z [ 2025-08-26T21:39:24.4034457Z scalar_t=float 2025-08-26T21:39:24.4034672Z ] 2025-08-26T21:39:24.4035420Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(762): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4036204Z with 2025-08-26T21:39:24.4036382Z [ 2025-08-26T21:39:24.4036578Z scalar_t=float 2025-08-26T21:39:24.4036794Z ] 2025-08-26T21:39:24.4037533Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(762): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4038289Z with 2025-08-26T21:39:24.4038479Z [ 2025-08-26T21:39:24.4038659Z scalar_t=float 2025-08-26T21:39:24.4038890Z ] 2025-08-26T21:39:24.4039595Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(762): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4040355Z with 2025-08-26T21:39:24.4040590Z [ 2025-08-26T21:39:24.4040849Z scalar_t=float 2025-08-26T21:39:24.4041088Z ] 2025-08-26T21:39:24.4041810Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(763): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4042598Z with 2025-08-26T21:39:24.4042773Z [ 2025-08-26T21:39:24.4042968Z scalar_t=float 2025-08-26T21:39:24.4043193Z ] 2025-08-26T21:39:24.4043871Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(763): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4044651Z with 2025-08-26T21:39:24.4044834Z [ 2025-08-26T21:39:24.4045026Z scalar_t=float 2025-08-26T21:39:24.4045245Z ] 2025-08-26T21:39:24.4045939Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(763): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4046700Z with 2025-08-26T21:39:24.4046891Z [ 2025-08-26T21:39:24.4047086Z scalar_t=float 2025-08-26T21:39:24.4047302Z ] 2025-08-26T21:39:24.4048000Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(764): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4048807Z with 2025-08-26T21:39:24.4048992Z [ 2025-08-26T21:39:24.4049168Z scalar_t=float 2025-08-26T21:39:24.4049397Z ] 2025-08-26T21:39:24.4050079Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(764): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4050908Z with 2025-08-26T21:39:24.4051091Z [ 2025-08-26T21:39:24.4051269Z scalar_t=float 2025-08-26T21:39:24.4051504Z ] 2025-08-26T21:39:24.4052194Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(764): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4052971Z with 2025-08-26T21:39:24.4053152Z [ 2025-08-26T21:39:24.4053346Z scalar_t=float 2025-08-26T21:39:24.4053569Z ] 2025-08-26T21:39:24.4054273Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(765): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4055053Z with 2025-08-26T21:39:24.4055231Z [ 2025-08-26T21:39:24.4055428Z scalar_t=float 2025-08-26T21:39:24.4055646Z ] 2025-08-26T21:39:24.4056349Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(765): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4057198Z with 2025-08-26T21:39:24.4057409Z [ 2025-08-26T21:39:24.4057576Z scalar_t=float 2025-08-26T21:39:24.4058145Z ] 2025-08-26T21:39:24.4058828Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(765): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4059581Z with 2025-08-26T21:39:24.4059806Z [ 2025-08-26T21:39:24.4059969Z scalar_t=float 2025-08-26T21:39:24.4060175Z ] 2025-08-26T21:39:24.4060843Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(766): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4061603Z with 2025-08-26T21:39:24.4061766Z [ 2025-08-26T21:39:24.4061944Z scalar_t=float 2025-08-26T21:39:24.4062157Z ] 2025-08-26T21:39:24.4062826Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(766): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4063630Z with 2025-08-26T21:39:24.4063787Z [ 2025-08-26T21:39:24.4063955Z scalar_t=float 2025-08-26T21:39:24.4064163Z ] 2025-08-26T21:39:24.4064850Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(766): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4065601Z with 2025-08-26T21:39:24.4065761Z [ 2025-08-26T21:39:24.4065939Z scalar_t=float 2025-08-26T21:39:24.4066138Z ] 2025-08-26T21:39:24.4066814Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(767): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4067556Z with 2025-08-26T21:39:24.4067723Z [ 2025-08-26T21:39:24.4067883Z scalar_t=float 2025-08-26T21:39:24.4068096Z ] 2025-08-26T21:39:24.4068772Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(767): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4069539Z with 2025-08-26T21:39:24.4069710Z [ 2025-08-26T21:39:24.4069877Z scalar_t=float 2025-08-26T21:39:24.4070139Z ] 2025-08-26T21:39:24.4070812Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(767): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4071577Z with 2025-08-26T21:39:24.4071749Z [ 2025-08-26T21:39:24.4071933Z scalar_t=float 2025-08-26T21:39:24.4072145Z ] 2025-08-26T21:39:24.4072822Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(768): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4073586Z with 2025-08-26T21:39:24.4073755Z [ 2025-08-26T21:39:24.4073928Z scalar_t=float 2025-08-26T21:39:24.4074130Z ] 2025-08-26T21:39:24.4074809Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(768): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4075563Z with 2025-08-26T21:39:24.4076267Z [ 2025-08-26T21:39:24.4076445Z scalar_t=float 2025-08-26T21:39:24.4076653Z ] 2025-08-26T21:39:24.4077334Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(768): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4078092Z with 2025-08-26T21:39:24.4078260Z [ 2025-08-26T21:39:24.4078430Z scalar_t=float 2025-08-26T21:39:24.4078639Z ] 2025-08-26T21:39:24.4079308Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(769): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4080115Z with 2025-08-26T21:39:24.4080290Z [ 2025-08-26T21:39:24.4080458Z scalar_t=float 2025-08-26T21:39:24.4080678Z ] 2025-08-26T21:39:24.4081797Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(770): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4082574Z with 2025-08-26T21:39:24.4082749Z [ 2025-08-26T21:39:24.4082929Z scalar_t=float 2025-08-26T21:39:24.4083143Z ] 2025-08-26T21:39:24.4083824Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(770): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4084590Z with 2025-08-26T21:39:24.4084755Z [ 2025-08-26T21:39:24.4084928Z scalar_t=float 2025-08-26T21:39:24.4085141Z ] 2025-08-26T21:39:24.4085866Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(770): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4086629Z with 2025-08-26T21:39:24.4086811Z [ 2025-08-26T21:39:24.4086977Z scalar_t=float 2025-08-26T21:39:24.4087202Z ] 2025-08-26T21:39:24.4087994Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(771): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4088755Z with 2025-08-26T21:39:24.4088935Z [ 2025-08-26T21:39:24.4089109Z scalar_t=float 2025-08-26T21:39:24.4089327Z ] 2025-08-26T21:39:24.4089997Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(771): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4090818Z with 2025-08-26T21:39:24.4091001Z [ 2025-08-26T21:39:24.4091182Z scalar_t=float 2025-08-26T21:39:24.4091409Z ] 2025-08-26T21:39:24.4092086Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(771): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4092914Z with 2025-08-26T21:39:24.4093083Z [ 2025-08-26T21:39:24.4093273Z scalar_t=float 2025-08-26T21:39:24.4093481Z ] 2025-08-26T21:39:24.4094173Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(772): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4094936Z with 2025-08-26T21:39:24.4095108Z [ 2025-08-26T21:39:24.4095282Z scalar_t=float 2025-08-26T21:39:24.4095492Z ] 2025-08-26T21:39:24.4096172Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(772): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4096928Z with 2025-08-26T21:39:24.4097099Z [ 2025-08-26T21:39:24.4097270Z scalar_t=float 2025-08-26T21:39:24.4097487Z ] 2025-08-26T21:39:24.4098174Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(772): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4098926Z with 2025-08-26T21:39:24.4099092Z [ 2025-08-26T21:39:24.4099260Z scalar_t=float 2025-08-26T21:39:24.4099477Z ] 2025-08-26T21:39:24.4100153Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(773): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4100917Z with 2025-08-26T21:39:24.4101082Z [ 2025-08-26T21:39:24.4101261Z scalar_t=float 2025-08-26T21:39:24.4101472Z ] 2025-08-26T21:39:24.4102187Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(773): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4102953Z with 2025-08-26T21:39:24.4103114Z [ 2025-08-26T21:39:24.4103296Z scalar_t=float 2025-08-26T21:39:24.4103540Z ] 2025-08-26T21:39:24.4104219Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(773): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4104973Z with 2025-08-26T21:39:24.4105145Z [ 2025-08-26T21:39:24.4105326Z scalar_t=float 2025-08-26T21:39:24.4105534Z ] 2025-08-26T21:39:24.4106212Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(774): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4106952Z with 2025-08-26T21:39:24.4107161Z [ 2025-08-26T21:39:24.4107328Z scalar_t=float 2025-08-26T21:39:24.4107550Z ] 2025-08-26T21:39:24.4108231Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(774): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4108994Z with 2025-08-26T21:39:24.4109174Z [ 2025-08-26T21:39:24.4109344Z scalar_t=float 2025-08-26T21:39:24.4109554Z ] 2025-08-26T21:39:24.4110227Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(774): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4110988Z with 2025-08-26T21:39:24.4111154Z [ 2025-08-26T21:39:24.4111328Z scalar_t=float 2025-08-26T21:39:24.4111541Z ] 2025-08-26T21:39:24.4112221Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(775): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4112986Z with 2025-08-26T21:39:24.4113145Z [ 2025-08-26T21:39:24.4113321Z scalar_t=float 2025-08-26T21:39:24.4113524Z ] 2025-08-26T21:39:24.4114202Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(775): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4114989Z with 2025-08-26T21:39:24.4115162Z [ 2025-08-26T21:39:24.4115331Z scalar_t=float 2025-08-26T21:39:24.4115546Z ] 2025-08-26T21:39:24.4116228Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(775): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4116981Z with 2025-08-26T21:39:24.4117153Z [ 2025-08-26T21:39:24.4117317Z scalar_t=float 2025-08-26T21:39:24.4117541Z ] 2025-08-26T21:39:24.4118219Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(776): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4118978Z with 2025-08-26T21:39:24.4119142Z [ 2025-08-26T21:39:24.4119318Z scalar_t=float 2025-08-26T21:39:24.4119530Z ] 2025-08-26T21:39:24.4120198Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(776): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4120956Z with 2025-08-26T21:39:24.4121118Z [ 2025-08-26T21:39:24.4121285Z scalar_t=float 2025-08-26T21:39:24.4121492Z ] 2025-08-26T21:39:24.4122174Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(776): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4122937Z with 2025-08-26T21:39:24.4123105Z [ 2025-08-26T21:39:24.4123322Z scalar_t=float 2025-08-26T21:39:24.4123533Z ] 2025-08-26T21:39:24.4124231Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(777): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4125046Z with 2025-08-26T21:39:24.4125222Z [ 2025-08-26T21:39:24.4125401Z scalar_t=float 2025-08-26T21:39:24.4125620Z ] 2025-08-26T21:39:24.4126294Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(777): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4127059Z with 2025-08-26T21:39:24.4127244Z [ 2025-08-26T21:39:24.4127413Z scalar_t=float 2025-08-26T21:39:24.4127626Z ] 2025-08-26T21:39:24.4128296Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(777): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4129100Z with 2025-08-26T21:39:24.4129279Z [ 2025-08-26T21:39:24.4129467Z scalar_t=float 2025-08-26T21:39:24.4129673Z ] 2025-08-26T21:39:24.4130424Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(778): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4131210Z with 2025-08-26T21:39:24.4131381Z [ 2025-08-26T21:39:24.4131571Z scalar_t=float 2025-08-26T21:39:24.4131778Z ] 2025-08-26T21:39:24.4132462Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(779): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4133225Z with 2025-08-26T21:39:24.4133453Z [ 2025-08-26T21:39:24.4133626Z scalar_t=float 2025-08-26T21:39:24.4133852Z ] 2025-08-26T21:39:24.4134535Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(779): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4135304Z with 2025-08-26T21:39:24.4135483Z [ 2025-08-26T21:39:24.4135708Z scalar_t=float 2025-08-26T21:39:24.4135939Z ] 2025-08-26T21:39:24.4136615Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(779): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4137385Z with 2025-08-26T21:39:24.4137562Z [ 2025-08-26T21:39:24.4137749Z scalar_t=float 2025-08-26T21:39:24.4137977Z ] 2025-08-26T21:39:24.4138655Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(780): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4139434Z with 2025-08-26T21:39:24.4139611Z [ 2025-08-26T21:39:24.4139809Z scalar_t=float 2025-08-26T21:39:24.4140025Z ] 2025-08-26T21:39:24.4140726Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(780): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4141502Z with 2025-08-26T21:39:24.4141673Z [ 2025-08-26T21:39:24.4141867Z scalar_t=float 2025-08-26T21:39:24.4142080Z ] 2025-08-26T21:39:24.4142779Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(780): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4143534Z with 2025-08-26T21:39:24.4143718Z [ 2025-08-26T21:39:24.4143891Z scalar_t=float 2025-08-26T21:39:24.4144118Z ] 2025-08-26T21:39:24.4144855Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(781): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4145626Z with 2025-08-26T21:39:24.4145817Z [ 2025-08-26T21:39:24.4145993Z scalar_t=float 2025-08-26T21:39:24.4146215Z ] 2025-08-26T21:39:24.4146938Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(781): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4147719Z with 2025-08-26T21:39:24.4147892Z [ 2025-08-26T21:39:24.4148084Z scalar_t=float 2025-08-26T21:39:24.4148315Z ] 2025-08-26T21:39:24.4148998Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(781): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4149777Z with 2025-08-26T21:39:24.4149950Z [ 2025-08-26T21:39:24.4150135Z scalar_t=float 2025-08-26T21:39:24.4150393Z ] 2025-08-26T21:39:24.4151083Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(782): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4151836Z with 2025-08-26T21:39:24.4152025Z [ 2025-08-26T21:39:24.4152223Z scalar_t=float 2025-08-26T21:39:24.4152439Z ] 2025-08-26T21:39:24.4153134Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(782): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4153892Z with 2025-08-26T21:39:24.4154086Z [ 2025-08-26T21:39:24.4154266Z scalar_t=float 2025-08-26T21:39:24.4154498Z ] 2025-08-26T21:39:24.4155189Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(782): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4155965Z with 2025-08-26T21:39:24.4156164Z [ 2025-08-26T21:39:24.4156342Z scalar_t=float 2025-08-26T21:39:24.4156572Z ] 2025-08-26T21:39:24.4157265Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(783): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4158084Z with 2025-08-26T21:39:24.4158259Z [ 2025-08-26T21:39:24.4158457Z scalar_t=float 2025-08-26T21:39:24.4158677Z ] 2025-08-26T21:39:24.4159370Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(783): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4160151Z with 2025-08-26T21:39:24.4160323Z [ 2025-08-26T21:39:24.4160516Z scalar_t=float 2025-08-26T21:39:24.4160732Z ] 2025-08-26T21:39:24.4161435Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(783): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4162195Z with 2025-08-26T21:39:24.4162385Z [ 2025-08-26T21:39:24.4162563Z scalar_t=float 2025-08-26T21:39:24.4162801Z ] 2025-08-26T21:39:24.4163503Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(784): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4164262Z with 2025-08-26T21:39:24.4164451Z [ 2025-08-26T21:39:24.4164628Z scalar_t=float 2025-08-26T21:39:24.4164849Z ] 2025-08-26T21:39:24.4165536Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(784): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4166317Z with 2025-08-26T21:39:24.4166504Z [ 2025-08-26T21:39:24.4166684Z scalar_t=float 2025-08-26T21:39:24.4166914Z ] 2025-08-26T21:39:24.4167632Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(784): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4168396Z with 2025-08-26T21:39:24.4168558Z [ 2025-08-26T21:39:24.4168782Z scalar_t=float 2025-08-26T21:39:24.4168996Z ] 2025-08-26T21:39:24.4169690Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(785): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4170561Z with 2025-08-26T21:39:24.4170741Z [ 2025-08-26T21:39:24.4170927Z scalar_t=float 2025-08-26T21:39:24.4171144Z ] 2025-08-26T21:39:24.4171847Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(785): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4172666Z with 2025-08-26T21:39:24.4172856Z [ 2025-08-26T21:39:24.4173037Z scalar_t=float 2025-08-26T21:39:24.4173268Z ] 2025-08-26T21:39:24.4173954Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(785): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4174733Z with 2025-08-26T21:39:24.4174927Z [ 2025-08-26T21:39:24.4175109Z scalar_t=float 2025-08-26T21:39:24.4175345Z ] 2025-08-26T21:39:24.4176032Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(786): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4176807Z with 2025-08-26T21:39:24.4176986Z [ 2025-08-26T21:39:24.4177174Z scalar_t=float 2025-08-26T21:39:24.4177391Z ] 2025-08-26T21:39:24.4178090Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(786): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4178878Z with 2025-08-26T21:39:24.4179054Z [ 2025-08-26T21:39:24.4179243Z scalar_t=float 2025-08-26T21:39:24.4179460Z ] 2025-08-26T21:39:24.4180642Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(786): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4181405Z with 2025-08-26T21:39:24.4181598Z [ 2025-08-26T21:39:24.4181791Z scalar_t=float 2025-08-26T21:39:24.4182006Z ] 2025-08-26T21:39:24.4182711Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(787): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4183472Z with 2025-08-26T21:39:24.4183662Z [ 2025-08-26T21:39:24.4183842Z scalar_t=float 2025-08-26T21:39:24.4183926Z ] 2025-08-26T21:39:24.4184512Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(788): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4184585Z with 2025-08-26T21:39:24.4184659Z [ 2025-08-26T21:39:24.4184751Z scalar_t=float 2025-08-26T21:39:24.4184819Z ] 2025-08-26T21:39:24.4185410Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(788): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4185496Z with 2025-08-26T21:39:24.4185563Z [ 2025-08-26T21:39:24.4185645Z scalar_t=float 2025-08-26T21:39:24.4185725Z ] 2025-08-26T21:39:24.4186309Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(788): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4186384Z with 2025-08-26T21:39:24.4186505Z [ 2025-08-26T21:39:24.4186602Z scalar_t=float 2025-08-26T21:39:24.4186674Z ] 2025-08-26T21:39:24.4187295Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(789): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4187389Z with 2025-08-26T21:39:24.4187458Z [ 2025-08-26T21:39:24.4187542Z scalar_t=float 2025-08-26T21:39:24.4187610Z ] 2025-08-26T21:39:24.4188207Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(789): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4188279Z with 2025-08-26T21:39:24.4188348Z [ 2025-08-26T21:39:24.4188440Z scalar_t=float 2025-08-26T21:39:24.4188508Z ] 2025-08-26T21:39:24.4189088Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(789): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4189214Z with 2025-08-26T21:39:24.4189285Z [ 2025-08-26T21:39:24.4189368Z scalar_t=float 2025-08-26T21:39:24.4189436Z ] 2025-08-26T21:39:24.4190038Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(790): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4190110Z with 2025-08-26T21:39:24.4190179Z [ 2025-08-26T21:39:24.4190269Z scalar_t=float 2025-08-26T21:39:24.4190340Z ] 2025-08-26T21:39:24.4190918Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(790): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4191002Z with 2025-08-26T21:39:24.4191072Z [ 2025-08-26T21:39:24.4191156Z scalar_t=float 2025-08-26T21:39:24.4191227Z ] 2025-08-26T21:39:24.4191820Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(790): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4191891Z with 2025-08-26T21:39:24.4191999Z [ 2025-08-26T21:39:24.4192092Z scalar_t=float 2025-08-26T21:39:24.4192161Z ] 2025-08-26T21:39:24.4192745Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(791): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4192815Z with 2025-08-26T21:39:24.4192895Z [ 2025-08-26T21:39:24.4192975Z scalar_t=float 2025-08-26T21:39:24.4193050Z ] 2025-08-26T21:39:24.4193636Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(791): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4193709Z with 2025-08-26T21:39:24.4193778Z [ 2025-08-26T21:39:24.4193871Z scalar_t=float 2025-08-26T21:39:24.4193938Z ] 2025-08-26T21:39:24.4194518Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(791): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4194589Z with 2025-08-26T21:39:24.4194675Z [ 2025-08-26T21:39:24.4194757Z scalar_t=float 2025-08-26T21:39:24.4194825Z ] 2025-08-26T21:39:24.4195421Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(792): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4195495Z with 2025-08-26T21:39:24.4195560Z [ 2025-08-26T21:39:24.4195644Z scalar_t=float 2025-08-26T21:39:24.4195730Z ] 2025-08-26T21:39:24.4196351Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(792): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4196425Z with 2025-08-26T21:39:24.4196512Z [ 2025-08-26T21:39:24.4196585Z scalar_t=float 2025-08-26T21:39:24.4196657Z ] 2025-08-26T21:39:24.4197299Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(792): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4197378Z with 2025-08-26T21:39:24.4197448Z [ 2025-08-26T21:39:24.4197523Z scalar_t=float 2025-08-26T21:39:24.4197612Z ] 2025-08-26T21:39:24.4198196Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(793): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4198273Z with 2025-08-26T21:39:24.4198358Z [ 2025-08-26T21:39:24.4198434Z scalar_t=float 2025-08-26T21:39:24.4198538Z ] 2025-08-26T21:39:24.4199119Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(793): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4199196Z with 2025-08-26T21:39:24.4199261Z [ 2025-08-26T21:39:24.4199335Z scalar_t=float 2025-08-26T21:39:24.4199410Z ] 2025-08-26T21:39:24.4199986Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(793): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4200054Z with 2025-08-26T21:39:24.4200123Z [ 2025-08-26T21:39:24.4200199Z scalar_t=float 2025-08-26T21:39:24.4200264Z ] 2025-08-26T21:39:24.4200839Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(794): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4200914Z with 2025-08-26T21:39:24.4200980Z [ 2025-08-26T21:39:24.4201061Z scalar_t=float 2025-08-26T21:39:24.4201130Z ] 2025-08-26T21:39:24.4201708Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(794): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4201819Z with 2025-08-26T21:39:24.4201887Z [ 2025-08-26T21:39:24.4201975Z scalar_t=float 2025-08-26T21:39:24.4202041Z ] 2025-08-26T21:39:24.4202621Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(794): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4202694Z with 2025-08-26T21:39:24.4202760Z [ 2025-08-26T21:39:24.4202837Z scalar_t=float 2025-08-26T21:39:24.4202914Z ] 2025-08-26T21:39:24.4203498Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(795): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4203575Z with 2025-08-26T21:39:24.4203642Z [ 2025-08-26T21:39:24.4203730Z scalar_t=float 2025-08-26T21:39:24.4203794Z ] 2025-08-26T21:39:24.4204381Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(795): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4204466Z with 2025-08-26T21:39:24.4204531Z [ 2025-08-26T21:39:24.4204607Z scalar_t=float 2025-08-26T21:39:24.4204676Z ] 2025-08-26T21:39:24.4205257Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(795): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4205327Z with 2025-08-26T21:39:24.4205394Z [ 2025-08-26T21:39:24.4205475Z scalar_t=float 2025-08-26T21:39:24.4205540Z ] 2025-08-26T21:39:24.4206165Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(796): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4206242Z with 2025-08-26T21:39:24.4206310Z [ 2025-08-26T21:39:24.4206421Z scalar_t=float 2025-08-26T21:39:24.4206490Z ] 2025-08-26T21:39:24.4207079Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(797): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4207148Z with 2025-08-26T21:39:24.4207215Z [ 2025-08-26T21:39:24.4207303Z scalar_t=float 2025-08-26T21:39:24.4207368Z ] 2025-08-26T21:39:24.4207944Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(797): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4208056Z with 2025-08-26T21:39:24.4208120Z [ 2025-08-26T21:39:24.4208196Z scalar_t=float 2025-08-26T21:39:24.4208261Z ] 2025-08-26T21:39:24.4208846Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(797): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4208921Z with 2025-08-26T21:39:24.4208990Z [ 2025-08-26T21:39:24.4209074Z scalar_t=float 2025-08-26T21:39:24.4209137Z ] 2025-08-26T21:39:24.4209714Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(798): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4209784Z with 2025-08-26T21:39:24.4209859Z [ 2025-08-26T21:39:24.4209935Z scalar_t=float 2025-08-26T21:39:24.4209999Z ] 2025-08-26T21:39:24.4210662Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(798): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4210734Z with 2025-08-26T21:39:24.4210800Z [ 2025-08-26T21:39:24.4210876Z scalar_t=float 2025-08-26T21:39:24.4211003Z ] 2025-08-26T21:39:24.4211578Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(798): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4211648Z with 2025-08-26T21:39:24.4211723Z [ 2025-08-26T21:39:24.4211799Z scalar_t=float 2025-08-26T21:39:24.4211865Z ] 2025-08-26T21:39:24.4212452Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(799): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4212523Z with 2025-08-26T21:39:24.4212589Z [ 2025-08-26T21:39:24.4212669Z scalar_t=float 2025-08-26T21:39:24.4212754Z ] 2025-08-26T21:39:24.4213328Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(799): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4213396Z with 2025-08-26T21:39:24.4213483Z [ 2025-08-26T21:39:24.4213561Z scalar_t=float 2025-08-26T21:39:24.4213625Z ] 2025-08-26T21:39:24.4214214Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(799): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4214280Z with 2025-08-26T21:39:24.4214344Z [ 2025-08-26T21:39:24.4214417Z scalar_t=float 2025-08-26T21:39:24.4214493Z ] 2025-08-26T21:39:24.4215069Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(800): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4215139Z with 2025-08-26T21:39:24.4215252Z [ 2025-08-26T21:39:24.4215326Z scalar_t=float 2025-08-26T21:39:24.4215397Z ] 2025-08-26T21:39:24.4216005Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(800): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4216081Z with 2025-08-26T21:39:24.4216151Z [ 2025-08-26T21:39:24.4216224Z scalar_t=float 2025-08-26T21:39:24.4216300Z ] 2025-08-26T21:39:24.4216874Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(800): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4216940Z with 2025-08-26T21:39:24.4217010Z [ 2025-08-26T21:39:24.4217089Z scalar_t=float 2025-08-26T21:39:24.4217153Z ] 2025-08-26T21:39:24.4217732Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(801): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4217846Z with 2025-08-26T21:39:24.4217915Z [ 2025-08-26T21:39:24.4217990Z scalar_t=float 2025-08-26T21:39:24.4218061Z ] 2025-08-26T21:39:24.4218632Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(801): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4218696Z with 2025-08-26T21:39:24.4218761Z [ 2025-08-26T21:39:24.4218844Z scalar_t=float 2025-08-26T21:39:24.4218907Z ] 2025-08-26T21:39:24.4219487Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(801): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4219556Z with 2025-08-26T21:39:24.4219625Z [ 2025-08-26T21:39:24.4219701Z scalar_t=float 2025-08-26T21:39:24.4219781Z ] 2025-08-26T21:39:24.4220356Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(802): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4220458Z with 2025-08-26T21:39:24.4220522Z [ 2025-08-26T21:39:24.4220608Z scalar_t=float 2025-08-26T21:39:24.4220671Z ] 2025-08-26T21:39:24.4221248Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(802): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4221319Z with 2025-08-26T21:39:24.4221383Z [ 2025-08-26T21:39:24.4221459Z scalar_t=float 2025-08-26T21:39:24.4221523Z ] 2025-08-26T21:39:24.4222107Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(802): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4222174Z with 2025-08-26T21:39:24.4222238Z [ 2025-08-26T21:39:24.4222319Z scalar_t=float 2025-08-26T21:39:24.4222385Z ] 2025-08-26T21:39:24.4222955Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(803): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4223033Z with 2025-08-26T21:39:24.4223100Z [ 2025-08-26T21:39:24.4223178Z scalar_t=float 2025-08-26T21:39:24.4223241Z ] 2025-08-26T21:39:24.4223819Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(803): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4223885Z with 2025-08-26T21:39:24.4223951Z [ 2025-08-26T21:39:24.4224032Z scalar_t=float 2025-08-26T21:39:24.4224094Z ] 2025-08-26T21:39:24.4224709Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(803): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4224785Z with 2025-08-26T21:39:24.4224854Z [ 2025-08-26T21:39:24.4224926Z scalar_t=float 2025-08-26T21:39:24.4224991Z ] 2025-08-26T21:39:24.4225619Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(804): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4225689Z with 2025-08-26T21:39:24.4225755Z [ 2025-08-26T21:39:24.4225836Z scalar_t=float 2025-08-26T21:39:24.4225901Z ] 2025-08-26T21:39:24.4226479Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(804): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4226545Z with 2025-08-26T21:39:24.4226625Z [ 2025-08-26T21:39:24.4226735Z scalar_t=float 2025-08-26T21:39:24.4226800Z ] 2025-08-26T21:39:24.4227395Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(804): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4227464Z with 2025-08-26T21:39:24.4227530Z [ 2025-08-26T21:39:24.4227607Z scalar_t=float 2025-08-26T21:39:24.4227679Z ] 2025-08-26T21:39:24.4228259Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(805): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4228327Z with 2025-08-26T21:39:24.4228402Z [ 2025-08-26T21:39:24.4228479Z scalar_t=float 2025-08-26T21:39:24.4228542Z ] 2025-08-26T21:39:24.4229126Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(806): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4229197Z with 2025-08-26T21:39:24.4229264Z [ 2025-08-26T21:39:24.4229338Z scalar_t=float 2025-08-26T21:39:24.4229413Z ] 2025-08-26T21:39:24.4229995Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(806): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4230104Z with 2025-08-26T21:39:24.4230175Z [ 2025-08-26T21:39:24.4230253Z scalar_t=float 2025-08-26T21:39:24.4230316Z ] 2025-08-26T21:39:24.4230896Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(806): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4230961Z with 2025-08-26T21:39:24.4231023Z [ 2025-08-26T21:39:24.4231099Z scalar_t=float 2025-08-26T21:39:24.4231169Z ] 2025-08-26T21:39:24.4231756Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(807): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4231821Z with 2025-08-26T21:39:24.4231893Z [ 2025-08-26T21:39:24.4231974Z scalar_t=float 2025-08-26T21:39:24.4232040Z ] 2025-08-26T21:39:24.4232613Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(807): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4232689Z with 2025-08-26T21:39:24.4232752Z [ 2025-08-26T21:39:24.4232829Z scalar_t=float 2025-08-26T21:39:24.4232901Z ] 2025-08-26T21:39:24.4233483Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(807): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4233551Z with 2025-08-26T21:39:24.4233622Z [ 2025-08-26T21:39:24.4233698Z scalar_t=float 2025-08-26T21:39:24.4233801Z ] 2025-08-26T21:39:24.4234379Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(808): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4234456Z with 2025-08-26T21:39:24.4234558Z [ 2025-08-26T21:39:24.4234632Z scalar_t=float 2025-08-26T21:39:24.4234703Z ] 2025-08-26T21:39:24.4235279Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(808): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4235343Z with 2025-08-26T21:39:24.4235412Z [ 2025-08-26T21:39:24.4235494Z scalar_t=float 2025-08-26T21:39:24.4235559Z ] 2025-08-26T21:39:24.4236136Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(808): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4236546Z with 2025-08-26T21:39:24.4236609Z [ 2025-08-26T21:39:24.4236686Z scalar_t=float 2025-08-26T21:39:24.4236759Z ] 2025-08-26T21:39:24.4237344Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(809): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4237411Z with 2025-08-26T21:39:24.4237478Z [ 2025-08-26T21:39:24.4237562Z scalar_t=float 2025-08-26T21:39:24.4237632Z ] 2025-08-26T21:39:24.4238212Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(809): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4238288Z with 2025-08-26T21:39:24.4238356Z [ 2025-08-26T21:39:24.4238436Z scalar_t=float 2025-08-26T21:39:24.4238499Z ] 2025-08-26T21:39:24.4239083Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(809): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4239150Z with 2025-08-26T21:39:24.4239213Z [ 2025-08-26T21:39:24.4239294Z scalar_t=float 2025-08-26T21:39:24.4239401Z ] 2025-08-26T21:39:24.4239980Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(810): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4240052Z with 2025-08-26T21:39:24.4240121Z [ 2025-08-26T21:39:24.4240197Z scalar_t=float 2025-08-26T21:39:24.4240260Z ] 2025-08-26T21:39:24.4240843Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(810): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4240914Z with 2025-08-26T21:39:24.4240983Z [ 2025-08-26T21:39:24.4241074Z scalar_t=float 2025-08-26T21:39:24.4241139Z ] 2025-08-26T21:39:24.4241716Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(810): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4241792Z with 2025-08-26T21:39:24.4241856Z [ 2025-08-26T21:39:24.4241930Z scalar_t=float 2025-08-26T21:39:24.4241992Z ] 2025-08-26T21:39:24.4242581Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(811): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4242649Z with 2025-08-26T21:39:24.4242714Z [ 2025-08-26T21:39:24.4242798Z scalar_t=float 2025-08-26T21:39:24.4242868Z ] 2025-08-26T21:39:24.4243441Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(811): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4243552Z with 2025-08-26T21:39:24.4243627Z [ 2025-08-26T21:39:24.4243702Z scalar_t=float 2025-08-26T21:39:24.4243766Z ] 2025-08-26T21:39:24.4244385Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(811): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4244458Z with 2025-08-26T21:39:24.4244528Z [ 2025-08-26T21:39:24.4244605Z scalar_t=float 2025-08-26T21:39:24.4244678Z ] 2025-08-26T21:39:24.4245251Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(812): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4245317Z with 2025-08-26T21:39:24.4245391Z [ 2025-08-26T21:39:24.4245469Z scalar_t=float 2025-08-26T21:39:24.4245533Z ] 2025-08-26T21:39:24.4246157Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(812): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4246229Z with 2025-08-26T21:39:24.4246296Z [ 2025-08-26T21:39:24.4246371Z scalar_t=float 2025-08-26T21:39:24.4246449Z ] 2025-08-26T21:39:24.4247028Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(812): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4247094Z with 2025-08-26T21:39:24.4247174Z [ 2025-08-26T21:39:24.4247249Z scalar_t=float 2025-08-26T21:39:24.4247313Z ] 2025-08-26T21:39:24.4247887Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(813): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4247961Z with 2025-08-26T21:39:24.4248028Z [ 2025-08-26T21:39:24.4248108Z scalar_t=float 2025-08-26T21:39:24.4257476Z ] 2025-08-26T21:39:24.4258173Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(813): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4258371Z with 2025-08-26T21:39:24.4258442Z [ 2025-08-26T21:39:24.4258542Z scalar_t=float 2025-08-26T21:39:24.4258607Z ] 2025-08-26T21:39:24.4259202Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(813): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4259286Z with 2025-08-26T21:39:24.4259354Z [ 2025-08-26T21:39:24.4259437Z scalar_t=float 2025-08-26T21:39:24.4259501Z ] 2025-08-26T21:39:24.4260092Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(814): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4260165Z with 2025-08-26T21:39:24.4260228Z [ 2025-08-26T21:39:24.4260315Z scalar_t=float 2025-08-26T21:39:24.4260381Z ] 2025-08-26T21:39:24.4260958Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(815): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4261037Z with 2025-08-26T21:39:24.4261108Z [ 2025-08-26T21:39:24.4261184Z scalar_t=float 2025-08-26T21:39:24.4261253Z ] 2025-08-26T21:39:24.4261842Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(815): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4261911Z with 2025-08-26T21:39:24.4261980Z [ 2025-08-26T21:39:24.4262070Z scalar_t=float 2025-08-26T21:39:24.4262136Z ] 2025-08-26T21:39:24.4262758Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(815): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4262840Z with 2025-08-26T21:39:24.4262904Z [ 2025-08-26T21:39:24.4262985Z scalar_t=float 2025-08-26T21:39:24.4263095Z ] 2025-08-26T21:39:24.4263683Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(816): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4263750Z with 2025-08-26T21:39:24.4263815Z [ 2025-08-26T21:39:24.4263912Z scalar_t=float 2025-08-26T21:39:24.4263980Z ] 2025-08-26T21:39:24.4264553Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(816): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4264623Z with 2025-08-26T21:39:24.4264739Z [ 2025-08-26T21:39:24.4264820Z scalar_t=float 2025-08-26T21:39:24.4264891Z ] 2025-08-26T21:39:24.4265475Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(816): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4265551Z with 2025-08-26T21:39:24.4265623Z [ 2025-08-26T21:39:24.4265714Z scalar_t=float 2025-08-26T21:39:24.4265785Z ] 2025-08-26T21:39:24.4266361Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(817): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4266431Z with 2025-08-26T21:39:24.4266514Z [ 2025-08-26T21:39:24.4266589Z scalar_t=float 2025-08-26T21:39:24.4266658Z ] 2025-08-26T21:39:24.4267239Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(817): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4267306Z with 2025-08-26T21:39:24.4267371Z [ 2025-08-26T21:39:24.4267445Z scalar_t=float 2025-08-26T21:39:24.4267524Z ] 2025-08-26T21:39:24.4268100Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(817): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4268203Z with 2025-08-26T21:39:24.4268279Z [ 2025-08-26T21:39:24.4268360Z scalar_t=float 2025-08-26T21:39:24.4268424Z ] 2025-08-26T21:39:24.4269006Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(818): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4269077Z with 2025-08-26T21:39:24.4269140Z [ 2025-08-26T21:39:24.4269215Z scalar_t=float 2025-08-26T21:39:24.4269290Z ] 2025-08-26T21:39:24.4269882Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(818): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4269950Z with 2025-08-26T21:39:24.4270024Z [ 2025-08-26T21:39:24.4270103Z scalar_t=float 2025-08-26T21:39:24.4270169Z ] 2025-08-26T21:39:24.4270743Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(818): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4270818Z with 2025-08-26T21:39:24.4270883Z [ 2025-08-26T21:39:24.4270956Z scalar_t=float 2025-08-26T21:39:24.4271029Z ] 2025-08-26T21:39:24.4271601Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(819): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4271666Z with 2025-08-26T21:39:24.4271742Z [ 2025-08-26T21:39:24.4271851Z scalar_t=float 2025-08-26T21:39:24.4271922Z ] 2025-08-26T21:39:24.4272494Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(819): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4272609Z with 2025-08-26T21:39:24.4272677Z [ 2025-08-26T21:39:24.4272759Z scalar_t=float 2025-08-26T21:39:24.4272832Z ] 2025-08-26T21:39:24.4273409Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(819): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4273475Z with 2025-08-26T21:39:24.4273550Z [ 2025-08-26T21:39:24.4273625Z scalar_t=float 2025-08-26T21:39:24.4273690Z ] 2025-08-26T21:39:24.4274268Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(820): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4274385Z with 2025-08-26T21:39:24.4274448Z [ 2025-08-26T21:39:24.4274524Z scalar_t=float 2025-08-26T21:39:24.4274597Z ] 2025-08-26T21:39:24.4275171Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(820): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4275238Z with 2025-08-26T21:39:24.4275303Z [ 2025-08-26T21:39:24.4275389Z scalar_t=float 2025-08-26T21:39:24.4275457Z ] 2025-08-26T21:39:24.4276033Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(820): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4276109Z with 2025-08-26T21:39:24.4276172Z [ 2025-08-26T21:39:24.4276248Z scalar_t=float 2025-08-26T21:39:24.4276316Z ] 2025-08-26T21:39:24.4276905Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(821): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4276969Z with 2025-08-26T21:39:24.4277033Z [ 2025-08-26T21:39:24.4277158Z scalar_t=float 2025-08-26T21:39:24.4277224Z ] 2025-08-26T21:39:24.4277802Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(821): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4277876Z with 2025-08-26T21:39:24.4277940Z [ 2025-08-26T21:39:24.4278019Z scalar_t=float 2025-08-26T21:39:24.4278083Z ] 2025-08-26T21:39:24.4278673Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(821): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4278741Z with 2025-08-26T21:39:24.4278808Z [ 2025-08-26T21:39:24.4278895Z scalar_t=float 2025-08-26T21:39:24.4278963Z ] 2025-08-26T21:39:24.4279540Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(822): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4279626Z with 2025-08-26T21:39:24.4279693Z [ 2025-08-26T21:39:24.4279768Z scalar_t=float 2025-08-26T21:39:24.4279842Z ] 2025-08-26T21:39:24.4280430Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(822): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4280497Z with 2025-08-26T21:39:24.4280567Z [ 2025-08-26T21:39:24.4280657Z scalar_t=float 2025-08-26T21:39:24.4280725Z ] 2025-08-26T21:39:24.4281337Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(822): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4281409Z with 2025-08-26T21:39:24.4281488Z [ 2025-08-26T21:39:24.4281567Z scalar_t=float 2025-08-26T21:39:24.4281629Z ] 2025-08-26T21:39:24.4282258Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(823): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4282329Z with 2025-08-26T21:39:24.4282395Z [ 2025-08-26T21:39:24.4282481Z scalar_t=float 2025-08-26T21:39:24.4282555Z ] 2025-08-26T21:39:24.4283134Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(824): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4283202Z with 2025-08-26T21:39:24.4283280Z [ 2025-08-26T21:39:24.4283358Z scalar_t=float 2025-08-26T21:39:24.4283429Z ] 2025-08-26T21:39:24.4284059Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(824): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4284124Z with 2025-08-26T21:39:24.4284186Z [ 2025-08-26T21:39:24.4284264Z scalar_t=float 2025-08-26T21:39:24.4284343Z ] 2025-08-26T21:39:24.4284918Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(824): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4284989Z with 2025-08-26T21:39:24.4285067Z [ 2025-08-26T21:39:24.4285150Z scalar_t=float 2025-08-26T21:39:24.4285217Z ] 2025-08-26T21:39:24.4285803Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(825): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4285871Z with 2025-08-26T21:39:24.4285937Z [ 2025-08-26T21:39:24.4286012Z scalar_t=float 2025-08-26T21:39:24.4286083Z ] 2025-08-26T21:39:24.4286662Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(825): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4286766Z with 2025-08-26T21:39:24.4286839Z [ 2025-08-26T21:39:24.4286917Z scalar_t=float 2025-08-26T21:39:24.4286982Z ] 2025-08-26T21:39:24.4287553Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(825): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4287628Z with 2025-08-26T21:39:24.4287690Z [ 2025-08-26T21:39:24.4287767Z scalar_t=float 2025-08-26T21:39:24.4287842Z ] 2025-08-26T21:39:24.4288421Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(826): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4288493Z with 2025-08-26T21:39:24.4288566Z [ 2025-08-26T21:39:24.4288642Z scalar_t=float 2025-08-26T21:39:24.4288710Z ] 2025-08-26T21:39:24.4289284Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(826): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4289362Z with 2025-08-26T21:39:24.4289426Z [ 2025-08-26T21:39:24.4289501Z scalar_t=float 2025-08-26T21:39:24.4289573Z ] 2025-08-26T21:39:24.4290152Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(826): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4290225Z with 2025-08-26T21:39:24.4290465Z [ 2025-08-26T21:39:24.4290591Z scalar_t=float 2025-08-26T21:39:24.4290671Z ] 2025-08-26T21:39:24.4291635Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(827): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4291712Z with 2025-08-26T21:39:24.4291777Z [ 2025-08-26T21:39:24.4291897Z scalar_t=float 2025-08-26T21:39:24.4291974Z ] 2025-08-26T21:39:24.4292550Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(827): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4292617Z with 2025-08-26T21:39:24.4292690Z [ 2025-08-26T21:39:24.4292767Z scalar_t=float 2025-08-26T21:39:24.4292830Z ] 2025-08-26T21:39:24.4293408Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(827): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4293492Z with 2025-08-26T21:39:24.4293594Z [ 2025-08-26T21:39:24.4293675Z scalar_t=float 2025-08-26T21:39:24.4293749Z ] 2025-08-26T21:39:24.4294320Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(828): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4294396Z with 2025-08-26T21:39:24.4294472Z [ 2025-08-26T21:39:24.4294547Z scalar_t=float 2025-08-26T21:39:24.4294614Z ] 2025-08-26T21:39:24.4295193Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(828): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4295270Z with 2025-08-26T21:39:24.4295334Z [ 2025-08-26T21:39:24.4295413Z scalar_t=float 2025-08-26T21:39:24.4295489Z ] 2025-08-26T21:39:24.4296111Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(828): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4296179Z with 2025-08-26T21:39:24.4296251Z [ 2025-08-26T21:39:24.4296361Z scalar_t=float 2025-08-26T21:39:24.4296425Z ] 2025-08-26T21:39:24.4297048Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(829): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4297121Z with 2025-08-26T21:39:24.4297186Z [ 2025-08-26T21:39:24.4297262Z scalar_t=float 2025-08-26T21:39:24.4297331Z ] 2025-08-26T21:39:24.4297902Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(829): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4297968Z with 2025-08-26T21:39:24.4298034Z [ 2025-08-26T21:39:24.4298128Z scalar_t=float 2025-08-26T21:39:24.4298194Z ] 2025-08-26T21:39:24.4298777Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(829): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4298851Z with 2025-08-26T21:39:24.4298913Z [ 2025-08-26T21:39:24.4298996Z scalar_t=float 2025-08-26T21:39:24.4299058Z ] 2025-08-26T21:39:24.4299635Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(830): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4299700Z with 2025-08-26T21:39:24.4299764Z [ 2025-08-26T21:39:24.4299850Z scalar_t=float 2025-08-26T21:39:24.4299913Z ] 2025-08-26T21:39:24.4300486Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(830): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4300566Z with 2025-08-26T21:39:24.4300631Z [ 2025-08-26T21:39:24.4300746Z scalar_t=float 2025-08-26T21:39:24.4300810Z ] 2025-08-26T21:39:24.4302181Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(830): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4302266Z with 2025-08-26T21:39:24.4302332Z [ 2025-08-26T21:39:24.4302417Z scalar_t=float 2025-08-26T21:39:24.4302483Z ] 2025-08-26T21:39:24.4303063Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(831): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4303142Z with 2025-08-26T21:39:24.4303206Z [ 2025-08-26T21:39:24.4303280Z scalar_t=float 2025-08-26T21:39:24.4303346Z ] 2025-08-26T21:39:24.4303941Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(831): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4304052Z with 2025-08-26T21:39:24.4304119Z [ 2025-08-26T21:39:24.4304200Z scalar_t=float 2025-08-26T21:39:24.4304263Z ] 2025-08-26T21:39:24.4304843Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(831): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4304912Z with 2025-08-26T21:39:24.4304991Z [ 2025-08-26T21:39:24.4305066Z scalar_t=float 2025-08-26T21:39:24.4305129Z ] 2025-08-26T21:39:24.4305718Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(832): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4305792Z with 2025-08-26T21:39:24.4305858Z [ 2025-08-26T21:39:24.4305940Z scalar_t=float 2025-08-26T21:39:24.4306005Z ] 2025-08-26T21:39:24.4306584Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(833): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4306652Z with 2025-08-26T21:39:24.4306766Z [ 2025-08-26T21:39:24.4306844Z scalar_t=float 2025-08-26T21:39:24.4306909Z ] 2025-08-26T21:39:24.4307533Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(833): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4307605Z with 2025-08-26T21:39:24.4307670Z [ 2025-08-26T21:39:24.4307745Z scalar_t=float 2025-08-26T21:39:24.4307854Z ] 2025-08-26T21:39:24.4308431Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(833): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4308504Z with 2025-08-26T21:39:24.4308579Z [ 2025-08-26T21:39:24.4308659Z scalar_t=float 2025-08-26T21:39:24.4308726Z ] 2025-08-26T21:39:24.4309315Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(834): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4309382Z with 2025-08-26T21:39:24.4309448Z [ 2025-08-26T21:39:24.4309528Z scalar_t=float 2025-08-26T21:39:24.4309603Z ] 2025-08-26T21:39:24.4310174Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(834): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4310238Z with 2025-08-26T21:39:24.4310311Z [ 2025-08-26T21:39:24.4310385Z scalar_t=float 2025-08-26T21:39:24.4310448Z ] 2025-08-26T21:39:24.4311065Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(834): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4311145Z with 2025-08-26T21:39:24.4311209Z [ 2025-08-26T21:39:24.4311283Z scalar_t=float 2025-08-26T21:39:24.4311354Z ] 2025-08-26T21:39:24.4311972Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(835): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4312040Z with 2025-08-26T21:39:24.4312115Z [ 2025-08-26T21:39:24.4312189Z scalar_t=float 2025-08-26T21:39:24.4312257Z ] 2025-08-26T21:39:24.4312834Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(835): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4312906Z with 2025-08-26T21:39:24.4312970Z [ 2025-08-26T21:39:24.4313081Z scalar_t=float 2025-08-26T21:39:24.4313195Z ] 2025-08-26T21:39:24.4313814Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(835): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4313880Z with 2025-08-26T21:39:24.4313961Z [ 2025-08-26T21:39:24.4314041Z scalar_t=float 2025-08-26T21:39:24.4314104Z ] 2025-08-26T21:39:24.4314679Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(836): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4314753Z with 2025-08-26T21:39:24.4314815Z [ 2025-08-26T21:39:24.4314887Z scalar_t=float 2025-08-26T21:39:24.4314959Z ] 2025-08-26T21:39:24.4315534Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(836): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4315603Z with 2025-08-26T21:39:24.4315668Z [ 2025-08-26T21:39:24.4315755Z scalar_t=float 2025-08-26T21:39:24.4315816Z ] 2025-08-26T21:39:24.4316393Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(836): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4316511Z with 2025-08-26T21:39:24.4316574Z [ 2025-08-26T21:39:24.4316652Z scalar_t=float 2025-08-26T21:39:24.4316716Z ] 2025-08-26T21:39:24.4317294Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(837): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4317360Z with 2025-08-26T21:39:24.4317424Z [ 2025-08-26T21:39:24.4317510Z scalar_t=float 2025-08-26T21:39:24.4317582Z ] 2025-08-26T21:39:24.4318163Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(837): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4318242Z with 2025-08-26T21:39:24.4318308Z [ 2025-08-26T21:39:24.4318383Z scalar_t=float 2025-08-26T21:39:24.4318449Z ] 2025-08-26T21:39:24.4319086Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(837): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4319153Z with 2025-08-26T21:39:24.4319251Z [ 2025-08-26T21:39:24.4319342Z scalar_t=float 2025-08-26T21:39:24.4319405Z ] 2025-08-26T21:39:24.4319982Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(838): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4320058Z with 2025-08-26T21:39:24.4320123Z [ 2025-08-26T21:39:24.4320198Z scalar_t=float 2025-08-26T21:39:24.4320265Z ] 2025-08-26T21:39:24.4320901Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(838): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4320969Z with 2025-08-26T21:39:24.4321036Z [ 2025-08-26T21:39:24.4321159Z scalar_t=float 2025-08-26T21:39:24.4321228Z ] 2025-08-26T21:39:24.4321804Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(838): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4321872Z with 2025-08-26T21:39:24.4321945Z [ 2025-08-26T21:39:24.4322021Z scalar_t=float 2025-08-26T21:39:24.4322085Z ] 2025-08-26T21:39:24.4322670Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(839): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4322777Z with 2025-08-26T21:39:24.4322846Z [ 2025-08-26T21:39:24.4322934Z scalar_t=float 2025-08-26T21:39:24.4323003Z ] 2025-08-26T21:39:24.4323581Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(839): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4323654Z with 2025-08-26T21:39:24.4323726Z [ 2025-08-26T21:39:24.4323804Z scalar_t=float 2025-08-26T21:39:24.4323868Z ] 2025-08-26T21:39:24.4324487Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(839): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4324558Z with 2025-08-26T21:39:24.4324625Z [ 2025-08-26T21:39:24.4324703Z scalar_t=float 2025-08-26T21:39:24.4324780Z ] 2025-08-26T21:39:24.4325395Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(840): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4325467Z with 2025-08-26T21:39:24.4325541Z [ 2025-08-26T21:39:24.4325619Z scalar_t=float 2025-08-26T21:39:24.4325683Z ] 2025-08-26T21:39:24.4326324Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(840): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4326390Z with 2025-08-26T21:39:24.4326452Z [ 2025-08-26T21:39:24.4326525Z scalar_t=float 2025-08-26T21:39:24.4326601Z ] 2025-08-26T21:39:24.4327174Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(840): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4327248Z with 2025-08-26T21:39:24.4327332Z [ 2025-08-26T21:39:24.4327409Z scalar_t=float 2025-08-26T21:39:24.4327477Z ] 2025-08-26T21:39:24.4328056Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(841): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4328130Z with 2025-08-26T21:39:24.4328197Z [ 2025-08-26T21:39:24.4328280Z scalar_t=float 2025-08-26T21:39:24.4328355Z ] 2025-08-26T21:39:24.4328930Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(842): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4328996Z with 2025-08-26T21:39:24.4329061Z [ 2025-08-26T21:39:24.4329153Z scalar_t=float 2025-08-26T21:39:24.4329217Z ] 2025-08-26T21:39:24.4329792Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(842): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4329869Z with 2025-08-26T21:39:24.4329971Z [ 2025-08-26T21:39:24.4330045Z scalar_t=float 2025-08-26T21:39:24.4330108Z ] 2025-08-26T21:39:24.4330868Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(842): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4330942Z with 2025-08-26T21:39:24.4331007Z [ 2025-08-26T21:39:24.4331090Z scalar_t=float 2025-08-26T21:39:24.4331157Z ] 2025-08-26T21:39:24.4331734Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(843): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4331808Z with 2025-08-26T21:39:24.4331872Z [ 2025-08-26T21:39:24.4331948Z scalar_t=float 2025-08-26T21:39:24.4332010Z ] 2025-08-26T21:39:24.4332593Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(843): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4332697Z with 2025-08-26T21:39:24.4332759Z [ 2025-08-26T21:39:24.4332841Z scalar_t=float 2025-08-26T21:39:24.4332908Z ] 2025-08-26T21:39:24.4333482Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(843): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4333547Z with 2025-08-26T21:39:24.4333622Z [ 2025-08-26T21:39:24.4333698Z scalar_t=float 2025-08-26T21:39:24.4333764Z ] 2025-08-26T21:39:24.4334349Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(844): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4334417Z with 2025-08-26T21:39:24.4334480Z [ 2025-08-26T21:39:24.4334562Z scalar_t=float 2025-08-26T21:39:24.4334630Z ] 2025-08-26T21:39:24.4335206Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(844): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4335276Z with 2025-08-26T21:39:24.4335389Z [ 2025-08-26T21:39:24.4335468Z scalar_t=float 2025-08-26T21:39:24.4335532Z ] 2025-08-26T21:39:24.4336156Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(844): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4336225Z with 2025-08-26T21:39:24.4336290Z [ 2025-08-26T21:39:24.4336366Z scalar_t=float 2025-08-26T21:39:24.4336476Z ] 2025-08-26T21:39:24.4337053Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(845): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4337118Z with 2025-08-26T21:39:24.4337192Z [ 2025-08-26T21:39:24.4337266Z scalar_t=float 2025-08-26T21:39:24.4337328Z ] 2025-08-26T21:39:24.4337907Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(845): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4337973Z with 2025-08-26T21:39:24.4338036Z [ 2025-08-26T21:39:24.4338109Z scalar_t=float 2025-08-26T21:39:24.4338182Z ] 2025-08-26T21:39:24.4338756Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(845): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4338825Z with 2025-08-26T21:39:24.4338895Z [ 2025-08-26T21:39:24.4338969Z scalar_t=float 2025-08-26T21:39:24.4339031Z ] 2025-08-26T21:39:24.4339650Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(846): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4339724Z with 2025-08-26T21:39:24.4339790Z [ 2025-08-26T21:39:24.4339866Z scalar_t=float 2025-08-26T21:39:24.4339940Z ] 2025-08-26T21:39:24.4340551Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(846): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4340619Z with 2025-08-26T21:39:24.4340694Z [ 2025-08-26T21:39:24.4340767Z scalar_t=float 2025-08-26T21:39:24.4340835Z ] 2025-08-26T21:39:24.4341411Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(846): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4341487Z with 2025-08-26T21:39:24.4341554Z [ 2025-08-26T21:39:24.4341708Z scalar_t=float 2025-08-26T21:39:24.4341791Z ] 2025-08-26T21:39:24.4342399Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(847): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4342471Z with 2025-08-26T21:39:24.4342542Z [ 2025-08-26T21:39:24.4342629Z scalar_t=float 2025-08-26T21:39:24.4342703Z ] 2025-08-26T21:39:24.4343275Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(847): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4343353Z with 2025-08-26T21:39:24.4343423Z [ 2025-08-26T21:39:24.4343501Z scalar_t=float 2025-08-26T21:39:24.4343576Z ] 2025-08-26T21:39:24.4344150Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(847): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4344218Z with 2025-08-26T21:39:24.4344284Z [ 2025-08-26T21:39:24.4344364Z scalar_t=float 2025-08-26T21:39:24.4344426Z ] 2025-08-26T21:39:24.4345001Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(848): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4345525Z with 2025-08-26T21:39:24.4345589Z [ 2025-08-26T21:39:24.4345665Z scalar_t=float 2025-08-26T21:39:24.4345729Z ] 2025-08-26T21:39:24.4346317Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(848): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4346386Z with 2025-08-26T21:39:24.4346453Z [ 2025-08-26T21:39:24.4346537Z scalar_t=float 2025-08-26T21:39:24.4346603Z ] 2025-08-26T21:39:24.4347185Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(848): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4347264Z with 2025-08-26T21:39:24.4347331Z [ 2025-08-26T21:39:24.4347447Z scalar_t=float 2025-08-26T21:39:24.4347515Z ] 2025-08-26T21:39:24.4348135Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(849): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4348201Z with 2025-08-26T21:39:24.4348265Z [ 2025-08-26T21:39:24.4348345Z scalar_t=float 2025-08-26T21:39:24.4348408Z ] 2025-08-26T21:39:24.4348984Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(849): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4349056Z with 2025-08-26T21:39:24.4349122Z [ 2025-08-26T21:39:24.4349197Z scalar_t=float 2025-08-26T21:39:24.4349305Z ] 2025-08-26T21:39:24.4349890Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(849): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4349956Z with 2025-08-26T21:39:24.4350060Z [ 2025-08-26T21:39:24.4350141Z scalar_t=float 2025-08-26T21:39:24.4350204Z ] 2025-08-26T21:39:24.4350782Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(850): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4350847Z with 2025-08-26T21:39:24.4350919Z [ 2025-08-26T21:39:24.4350996Z scalar_t=float 2025-08-26T21:39:24.4351058Z ] 2025-08-26T21:39:24.4351633Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(851): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4351742Z with 2025-08-26T21:39:24.4351807Z [ 2025-08-26T21:39:24.4351886Z scalar_t=float 2025-08-26T21:39:24.4351958Z ] 2025-08-26T21:39:24.4352545Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(851): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4352615Z with 2025-08-26T21:39:24.4352689Z [ 2025-08-26T21:39:24.4352766Z scalar_t=float 2025-08-26T21:39:24.4352831Z ] 2025-08-26T21:39:24.4353450Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(851): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4353516Z with 2025-08-26T21:39:24.4353614Z [ 2025-08-26T21:39:24.4353693Z scalar_t=float 2025-08-26T21:39:24.4353763Z ] 2025-08-26T21:39:24.4354334Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(852): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4354408Z with 2025-08-26T21:39:24.4354478Z [ 2025-08-26T21:39:24.4354551Z scalar_t=float 2025-08-26T21:39:24.4354654Z ] 2025-08-26T21:39:24.4355238Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(852): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4355307Z with 2025-08-26T21:39:24.4355372Z [ 2025-08-26T21:39:24.4355453Z scalar_t=float 2025-08-26T21:39:24.4355531Z ] 2025-08-26T21:39:24.4356111Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(852): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4356178Z with 2025-08-26T21:39:24.4356252Z [ 2025-08-26T21:39:24.4356329Z scalar_t=float 2025-08-26T21:39:24.4356397Z ] 2025-08-26T21:39:24.4356967Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(853): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4357040Z with 2025-08-26T21:39:24.4357108Z [ 2025-08-26T21:39:24.4357182Z scalar_t=float 2025-08-26T21:39:24.4357254Z ] 2025-08-26T21:39:24.4357828Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(853): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4357897Z with 2025-08-26T21:39:24.4357967Z [ 2025-08-26T21:39:24.4358042Z scalar_t=float 2025-08-26T21:39:24.4358106Z ] 2025-08-26T21:39:24.4358682Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(853): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4358835Z with 2025-08-26T21:39:24.4358901Z [ 2025-08-26T21:39:24.4358977Z scalar_t=float 2025-08-26T21:39:24.4359048Z ] 2025-08-26T21:39:24.4359705Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(854): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4359774Z with 2025-08-26T21:39:24.4359838Z [ 2025-08-26T21:39:24.4359924Z scalar_t=float 2025-08-26T21:39:24.4359988Z ] 2025-08-26T21:39:24.4360570Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(854): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4360647Z with 2025-08-26T21:39:24.4360710Z [ 2025-08-26T21:39:24.4360789Z scalar_t=float 2025-08-26T21:39:24.4360863Z ] 2025-08-26T21:39:24.4361443Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(854): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4361552Z with 2025-08-26T21:39:24.4361618Z [ 2025-08-26T21:39:24.4361706Z scalar_t=float 2025-08-26T21:39:24.4361777Z ] 2025-08-26T21:39:24.4362353Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(855): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4362429Z with 2025-08-26T21:39:24.4362494Z [ 2025-08-26T21:39:24.4362567Z scalar_t=float 2025-08-26T21:39:24.4362632Z ] 2025-08-26T21:39:24.4363218Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(855): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4363284Z with 2025-08-26T21:39:24.4363350Z [ 2025-08-26T21:39:24.4363439Z scalar_t=float 2025-08-26T21:39:24.4363505Z ] 2025-08-26T21:39:24.4364081Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(855): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4364198Z with 2025-08-26T21:39:24.4364264Z [ 2025-08-26T21:39:24.4364344Z scalar_t=float 2025-08-26T21:39:24.4364415Z ] 2025-08-26T21:39:24.4365075Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(856): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4365144Z with 2025-08-26T21:39:24.4365214Z [ 2025-08-26T21:39:24.4365299Z scalar_t=float 2025-08-26T21:39:24.4365361Z ] 2025-08-26T21:39:24.4365937Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(856): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4366014Z with 2025-08-26T21:39:24.4366078Z [ 2025-08-26T21:39:24.4366154Z scalar_t=float 2025-08-26T21:39:24.4366217Z ] 2025-08-26T21:39:24.4366797Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(856): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4366864Z with 2025-08-26T21:39:24.4366929Z [ 2025-08-26T21:39:24.4367008Z scalar_t=float 2025-08-26T21:39:24.4367073Z ] 2025-08-26T21:39:24.4367648Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(857): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4367712Z with 2025-08-26T21:39:24.4367790Z [ 2025-08-26T21:39:24.4367863Z scalar_t=float 2025-08-26T21:39:24.4367925Z ] 2025-08-26T21:39:24.4368549Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(857): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4368616Z with 2025-08-26T21:39:24.4368678Z [ 2025-08-26T21:39:24.4368756Z scalar_t=float 2025-08-26T21:39:24.4368869Z ] 2025-08-26T21:39:24.4369451Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(857): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4369517Z with 2025-08-26T21:39:24.4369593Z [ 2025-08-26T21:39:24.4369670Z scalar_t=float 2025-08-26T21:39:24.4369732Z ] 2025-08-26T21:39:24.4370355Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(858): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4370484Z with 2025-08-26T21:39:24.4370549Z [ 2025-08-26T21:39:24.4370676Z scalar_t=float 2025-08-26T21:39:24.4370787Z ] 2025-08-26T21:39:24.4371365Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(858): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4371434Z with 2025-08-26T21:39:24.4371511Z [ 2025-08-26T21:39:24.4371587Z scalar_t=float 2025-08-26T21:39:24.4371652Z ] 2025-08-26T21:39:24.4372229Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(858): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4372297Z with 2025-08-26T21:39:24.4372360Z [ 2025-08-26T21:39:24.4372436Z scalar_t=float 2025-08-26T21:39:24.4372508Z ] 2025-08-26T21:39:24.4373090Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(859): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4373160Z with 2025-08-26T21:39:24.4373230Z [ 2025-08-26T21:39:24.4373304Z scalar_t=float 2025-08-26T21:39:24.4373372Z ] 2025-08-26T21:39:24.4373949Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(860): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4374070Z with 2025-08-26T21:39:24.4374136Z [ 2025-08-26T21:39:24.4374210Z scalar_t=float 2025-08-26T21:39:24.4374280Z ] 2025-08-26T21:39:24.4374850Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(860): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4374915Z with 2025-08-26T21:39:24.4374991Z [ 2025-08-26T21:39:24.4375065Z scalar_t=float 2025-08-26T21:39:24.4375130Z ] 2025-08-26T21:39:24.4375712Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(860): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4375792Z with 2025-08-26T21:39:24.4375858Z [ 2025-08-26T21:39:24.4375940Z scalar_t=float 2025-08-26T21:39:24.4376055Z ] 2025-08-26T21:39:24.4376667Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(861): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4376738Z with 2025-08-26T21:39:24.4376805Z [ 2025-08-26T21:39:24.4376888Z scalar_t=float 2025-08-26T21:39:24.4376951Z ] 2025-08-26T21:39:24.4377529Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(861): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4377601Z with 2025-08-26T21:39:24.4377668Z [ 2025-08-26T21:39:24.4377788Z scalar_t=float 2025-08-26T21:39:24.4377858Z ] 2025-08-26T21:39:24.4378444Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(861): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4378551Z with 2025-08-26T21:39:24.4378618Z [ 2025-08-26T21:39:24.4378706Z scalar_t=float 2025-08-26T21:39:24.4378775Z ] 2025-08-26T21:39:24.4379346Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(862): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4379420Z with 2025-08-26T21:39:24.4379483Z [ 2025-08-26T21:39:24.4379557Z scalar_t=float 2025-08-26T21:39:24.4379622Z ] 2025-08-26T21:39:24.4380210Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(862): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4380315Z with 2025-08-26T21:39:24.4380380Z [ 2025-08-26T21:39:24.4380463Z scalar_t=float 2025-08-26T21:39:24.4380530Z ] 2025-08-26T21:39:24.4381104Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(862): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4381179Z with 2025-08-26T21:39:24.4381246Z [ 2025-08-26T21:39:24.4381320Z scalar_t=float 2025-08-26T21:39:24.4381389Z ] 2025-08-26T21:39:24.4382016Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(863): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4382090Z with 2025-08-26T21:39:24.4382192Z [ 2025-08-26T21:39:24.4382275Z scalar_t=float 2025-08-26T21:39:24.4382339Z ] 2025-08-26T21:39:24.4382916Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(863): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4382986Z with 2025-08-26T21:39:24.4383058Z [ 2025-08-26T21:39:24.4383175Z scalar_t=float 2025-08-26T21:39:24.4383247Z ] 2025-08-26T21:39:24.4383838Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(863): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4383903Z with 2025-08-26T21:39:24.4383966Z [ 2025-08-26T21:39:24.4384048Z scalar_t=float 2025-08-26T21:39:24.4384113Z ] 2025-08-26T21:39:24.4384689Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(864): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4384759Z with 2025-08-26T21:39:24.4384837Z [ 2025-08-26T21:39:24.4384917Z scalar_t=float 2025-08-26T21:39:24.4384984Z ] 2025-08-26T21:39:24.4385573Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(864): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4385641Z with 2025-08-26T21:39:24.4385703Z [ 2025-08-26T21:39:24.4385780Z scalar_t=float 2025-08-26T21:39:24.4385853Z ] 2025-08-26T21:39:24.4386429Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(864): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4386500Z with 2025-08-26T21:39:24.4386577Z [ 2025-08-26T21:39:24.4386655Z scalar_t=float 2025-08-26T21:39:24.4386720Z ] 2025-08-26T21:39:24.4387347Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(865): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4387459Z with 2025-08-26T21:39:24.4387524Z [ 2025-08-26T21:39:24.4387600Z scalar_t=float 2025-08-26T21:39:24.4387678Z ] 2025-08-26T21:39:24.4388341Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(865): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4388413Z with 2025-08-26T21:39:24.4388486Z [ 2025-08-26T21:39:24.4388563Z scalar_t=float 2025-08-26T21:39:24.4388626Z ] 2025-08-26T21:39:24.4389201Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(865): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4389281Z with 2025-08-26T21:39:24.4389349Z [ 2025-08-26T21:39:24.4389424Z scalar_t=float 2025-08-26T21:39:24.4389500Z ] 2025-08-26T21:39:24.4390116Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(866): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4390183Z with 2025-08-26T21:39:24.4390258Z [ 2025-08-26T21:39:24.4390335Z scalar_t=float 2025-08-26T21:39:24.4390403Z ] 2025-08-26T21:39:24.4390975Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(866): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4391054Z with 2025-08-26T21:39:24.4391117Z [ 2025-08-26T21:39:24.4391193Z scalar_t=float 2025-08-26T21:39:24.4391266Z ] 2025-08-26T21:39:24.4391839Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(866): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4391910Z with 2025-08-26T21:39:24.4392005Z [ 2025-08-26T21:39:24.4392084Z scalar_t=float 2025-08-26T21:39:24.4392148Z ] 2025-08-26T21:39:24.4392720Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(867): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4392831Z with 2025-08-26T21:39:24.4392900Z [ 2025-08-26T21:39:24.4392976Z scalar_t=float 2025-08-26T21:39:24.4393048Z ] 2025-08-26T21:39:24.4393698Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(867): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4393767Z with 2025-08-26T21:39:24.4393830Z [ 2025-08-26T21:39:24.4393915Z scalar_t=float 2025-08-26T21:39:24.4393981Z ] 2025-08-26T21:39:24.4394558Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(867): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4394633Z with 2025-08-26T21:39:24.4394700Z [ 2025-08-26T21:39:24.4394775Z scalar_t=float 2025-08-26T21:39:24.4394839Z ] 2025-08-26T21:39:24.4395426Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(868): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4395492Z with 2025-08-26T21:39:24.4395556Z [ 2025-08-26T21:39:24.4395645Z scalar_t=float 2025-08-26T21:39:24.4395711Z ] 2025-08-26T21:39:24.4396284Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(869): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4396357Z with 2025-08-26T21:39:24.4396419Z [ 2025-08-26T21:39:24.4396494Z scalar_t=float 2025-08-26T21:39:24.4396557Z ] 2025-08-26T21:39:24.4397187Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(869): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4397254Z with 2025-08-26T21:39:24.4397318Z [ 2025-08-26T21:39:24.4397402Z scalar_t=float 2025-08-26T21:39:24.4397691Z ] 2025-08-26T21:39:24.4398267Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(869): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4398344Z with 2025-08-26T21:39:24.4398408Z [ 2025-08-26T21:39:24.4398482Z scalar_t=float 2025-08-26T21:39:24.4398545Z ] 2025-08-26T21:39:24.4399169Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(870): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4399245Z with 2025-08-26T21:39:24.4399703Z [ 2025-08-26T21:39:24.4399796Z scalar_t=float 2025-08-26T21:39:24.4399867Z ] 2025-08-26T21:39:24.4400449Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(870): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4400521Z with 2025-08-26T21:39:24.4400603Z [ 2025-08-26T21:39:24.4400677Z scalar_t=float 2025-08-26T21:39:24.4400742Z ] 2025-08-26T21:39:24.4401322Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(870): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4401389Z with 2025-08-26T21:39:24.4401452Z [ 2025-08-26T21:39:24.4401534Z scalar_t=float 2025-08-26T21:39:24.4401598Z ] 2025-08-26T21:39:24.4402175Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(871): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4402248Z with 2025-08-26T21:39:24.4402318Z [ 2025-08-26T21:39:24.4402394Z scalar_t=float 2025-08-26T21:39:24.4402456Z ] 2025-08-26T21:39:24.4403043Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(871): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4403156Z with 2025-08-26T21:39:24.4403219Z [ 2025-08-26T21:39:24.4403292Z scalar_t=float 2025-08-26T21:39:24.4403369Z ] 2025-08-26T21:39:24.4403950Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(871): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4404018Z with 2025-08-26T21:39:24.4404094Z [ 2025-08-26T21:39:24.4404173Z scalar_t=float 2025-08-26T21:39:24.4404238Z ] 2025-08-26T21:39:24.4404867Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(872): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4404938Z with 2025-08-26T21:39:24.4405037Z [ 2025-08-26T21:39:24.4405114Z scalar_t=float 2025-08-26T21:39:24.4405189Z ] 2025-08-26T21:39:24.4405766Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(872): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4405832Z with 2025-08-26T21:39:24.4405906Z [ 2025-08-26T21:39:24.4405983Z scalar_t=float 2025-08-26T21:39:24.4406045Z ] 2025-08-26T21:39:24.4406622Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(872): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4406695Z with 2025-08-26T21:39:24.4406761Z [ 2025-08-26T21:39:24.4406876Z scalar_t=float 2025-08-26T21:39:24.4406951Z ] 2025-08-26T21:39:24.4407529Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(873): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4407642Z with 2025-08-26T21:39:24.4407725Z [ 2025-08-26T21:39:24.4407802Z scalar_t=float 2025-08-26T21:39:24.4407869Z ] 2025-08-26T21:39:24.4408439Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(873): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4408513Z with 2025-08-26T21:39:24.4408579Z [ 2025-08-26T21:39:24.4408656Z scalar_t=float 2025-08-26T21:39:24.4408731Z ] 2025-08-26T21:39:24.4409307Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(873): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4409411Z with 2025-08-26T21:39:24.4409475Z [ 2025-08-26T21:39:24.4409557Z scalar_t=float 2025-08-26T21:39:24.4409621Z ] 2025-08-26T21:39:24.4410199Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(874): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4410314Z with 2025-08-26T21:39:24.4410439Z [ 2025-08-26T21:39:24.4410522Z scalar_t=float 2025-08-26T21:39:24.4410598Z ] 2025-08-26T21:39:24.4411210Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(874): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4411281Z with 2025-08-26T21:39:24.4411346Z [ 2025-08-26T21:39:24.4411436Z scalar_t=float 2025-08-26T21:39:24.4411504Z ] 2025-08-26T21:39:24.4412081Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(874): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4412163Z with 2025-08-26T21:39:24.4412228Z [ 2025-08-26T21:39:24.4412348Z scalar_t=float 2025-08-26T21:39:24.4412411Z ] 2025-08-26T21:39:24.4412994Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(875): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4413060Z with 2025-08-26T21:39:24.4413124Z [ 2025-08-26T21:39:24.4413206Z scalar_t=float 2025-08-26T21:39:24.4413270Z ] 2025-08-26T21:39:24.4413852Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(875): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4413926Z with 2025-08-26T21:39:24.4413992Z [ 2025-08-26T21:39:24.4414069Z scalar_t=float 2025-08-26T21:39:24.4414132Z ] 2025-08-26T21:39:24.4414718Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(875): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4414786Z with 2025-08-26T21:39:24.4414852Z [ 2025-08-26T21:39:24.4414936Z scalar_t=float 2025-08-26T21:39:24.4415001Z ] 2025-08-26T21:39:24.4415576Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(876): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4415649Z with 2025-08-26T21:39:24.4415712Z [ 2025-08-26T21:39:24.4415791Z scalar_t=float 2025-08-26T21:39:24.4415853Z ] 2025-08-26T21:39:24.4416553Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(876): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4416625Z with 2025-08-26T21:39:24.4416688Z [ 2025-08-26T21:39:24.4416768Z scalar_t=float 2025-08-26T21:39:24.4416836Z ] 2025-08-26T21:39:24.4417444Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(876): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4417518Z with 2025-08-26T21:39:24.4417591Z [ 2025-08-26T21:39:24.4417665Z scalar_t=float 2025-08-26T21:39:24.4417729Z ] 2025-08-26T21:39:24.4418313Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(877): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4418378Z with 2025-08-26T21:39:24.4418442Z [ 2025-08-26T21:39:24.4418524Z scalar_t=float 2025-08-26T21:39:24.4418626Z ] 2025-08-26T21:39:24.4419198Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(878): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4419262Z with 2025-08-26T21:39:24.4419340Z [ 2025-08-26T21:39:24.4419415Z scalar_t=float 2025-08-26T21:39:24.4419478Z ] 2025-08-26T21:39:24.4420055Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(878): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4420119Z with 2025-08-26T21:39:24.4420181Z [ 2025-08-26T21:39:24.4420254Z scalar_t=float 2025-08-26T21:39:24.4420328Z ] 2025-08-26T21:39:24.4420902Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(878): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4420970Z with 2025-08-26T21:39:24.4421045Z [ 2025-08-26T21:39:24.4421122Z scalar_t=float 2025-08-26T21:39:24.4421187Z ] 2025-08-26T21:39:24.4421806Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(879): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4421917Z with 2025-08-26T21:39:24.4421979Z [ 2025-08-26T21:39:24.4422054Z scalar_t=float 2025-08-26T21:39:24.4422133Z ] 2025-08-26T21:39:24.4422759Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(879): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4422826Z with 2025-08-26T21:39:24.4422902Z [ 2025-08-26T21:39:24.4422975Z scalar_t=float 2025-08-26T21:39:24.4423042Z ] 2025-08-26T21:39:24.4423624Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(879): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4423698Z with 2025-08-26T21:39:24.4423763Z [ 2025-08-26T21:39:24.4423838Z scalar_t=float 2025-08-26T21:39:24.4423913Z ] 2025-08-26T21:39:24.4424486Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(880): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4424552Z with 2025-08-26T21:39:24.4424622Z [ 2025-08-26T21:39:24.4424695Z scalar_t=float 2025-08-26T21:39:24.4424758Z ] 2025-08-26T21:39:24.4425335Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(880): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4425410Z with 2025-08-26T21:39:24.4425473Z [ 2025-08-26T21:39:24.4425546Z scalar_t=float 2025-08-26T21:39:24.4425625Z ] 2025-08-26T21:39:24.4426239Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(880): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4426313Z with 2025-08-26T21:39:24.4426381Z [ 2025-08-26T21:39:24.4426500Z scalar_t=float 2025-08-26T21:39:24.4426568Z ] 2025-08-26T21:39:24.4427140Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(881): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4427213Z with 2025-08-26T21:39:24.4427277Z [ 2025-08-26T21:39:24.4427351Z scalar_t=float 2025-08-26T21:39:24.4427460Z ] 2025-08-26T21:39:24.4428070Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(881): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4428176Z with 2025-08-26T21:39:24.4428241Z [ 2025-08-26T21:39:24.4428325Z scalar_t=float 2025-08-26T21:39:24.4428387Z ] 2025-08-26T21:39:24.4428960Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(881): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4429038Z with 2025-08-26T21:39:24.4429102Z [ 2025-08-26T21:39:24.4429183Z scalar_t=float 2025-08-26T21:39:24.4429246Z ] 2025-08-26T21:39:24.4429827Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(882): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4429893Z with 2025-08-26T21:39:24.4429957Z [ 2025-08-26T21:39:24.4430045Z scalar_t=float 2025-08-26T21:39:24.4430110Z ] 2025-08-26T21:39:24.4430690Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(882): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4430766Z with 2025-08-26T21:39:24.4430829Z [ 2025-08-26T21:39:24.4430907Z scalar_t=float 2025-08-26T21:39:24.4430972Z ] 2025-08-26T21:39:24.4431596Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(882): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4431665Z with 2025-08-26T21:39:24.4431729Z [ 2025-08-26T21:39:24.4431811Z scalar_t=float 2025-08-26T21:39:24.4431875Z ] 2025-08-26T21:39:24.4432447Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(883): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4432524Z with 2025-08-26T21:39:24.4432588Z [ 2025-08-26T21:39:24.4432665Z scalar_t=float 2025-08-26T21:39:24.4432733Z ] 2025-08-26T21:39:24.4433358Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(883): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4433430Z with 2025-08-26T21:39:24.4433496Z [ 2025-08-26T21:39:24.4433622Z scalar_t=float 2025-08-26T21:39:24.4433689Z ] 2025-08-26T21:39:24.4434261Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(883): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4434327Z with 2025-08-26T21:39:24.4434399Z [ 2025-08-26T21:39:24.4434475Z scalar_t=float 2025-08-26T21:39:24.4434540Z ] 2025-08-26T21:39:24.4435121Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(884): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4435192Z with 2025-08-26T21:39:24.4435294Z [ 2025-08-26T21:39:24.4435377Z scalar_t=float 2025-08-26T21:39:24.4435440Z ] 2025-08-26T21:39:24.4436051Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(884): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4436121Z with 2025-08-26T21:39:24.4436194Z [ 2025-08-26T21:39:24.4436273Z scalar_t=float 2025-08-26T21:39:24.4436337Z ] 2025-08-26T21:39:24.4436926Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(884): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4436996Z with 2025-08-26T21:39:24.4437059Z [ 2025-08-26T21:39:24.4437132Z scalar_t=float 2025-08-26T21:39:24.4437208Z ] 2025-08-26T21:39:24.4437785Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(885): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4437888Z with 2025-08-26T21:39:24.4437959Z [ 2025-08-26T21:39:24.4438035Z scalar_t=float 2025-08-26T21:39:24.4438102Z ] 2025-08-26T21:39:24.4438687Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(885): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4438752Z with 2025-08-26T21:39:24.4438852Z [ 2025-08-26T21:39:24.4438931Z scalar_t=float 2025-08-26T21:39:24.4439014Z ] 2025-08-26T21:39:24.4439626Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(885): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4439700Z with 2025-08-26T21:39:24.4439772Z [ 2025-08-26T21:39:24.4439845Z scalar_t=float 2025-08-26T21:39:24.4439910Z ] 2025-08-26T21:39:24.4440485Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(886): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4440557Z with 2025-08-26T21:39:24.4440665Z [ 2025-08-26T21:39:24.4440741Z scalar_t=float 2025-08-26T21:39:24.4440812Z ] 2025-08-26T21:39:24.4441382Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(887): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4441447Z with 2025-08-26T21:39:24.4441520Z [ 2025-08-26T21:39:24.4441592Z scalar_t=float 2025-08-26T21:39:24.4441660Z ] 2025-08-26T21:39:24.4442230Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(887): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4442313Z with 2025-08-26T21:39:24.4442381Z [ 2025-08-26T21:39:24.4442457Z scalar_t=float 2025-08-26T21:39:24.4442535Z ] 2025-08-26T21:39:24.4443107Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(887): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4443176Z with 2025-08-26T21:39:24.4443240Z [ 2025-08-26T21:39:24.4443318Z scalar_t=float 2025-08-26T21:39:24.4443382Z ] 2025-08-26T21:39:24.4443962Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(888): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4444041Z with 2025-08-26T21:39:24.4444104Z [ 2025-08-26T21:39:24.4444178Z scalar_t=float 2025-08-26T21:39:24.4444254Z ] 2025-08-26T21:39:24.4445485Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(888): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4445575Z with 2025-08-26T21:39:24.4445642Z [ 2025-08-26T21:39:24.4445731Z scalar_t=float 2025-08-26T21:39:24.4445794Z ] 2025-08-26T21:39:24.4446423Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(888): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4446495Z with 2025-08-26T21:39:24.4446562Z [ 2025-08-26T21:39:24.4446634Z scalar_t=float 2025-08-26T21:39:24.4446698Z ] 2025-08-26T21:39:24.4447278Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(889): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4447344Z with 2025-08-26T21:39:24.4447413Z [ 2025-08-26T21:39:24.4447498Z scalar_t=float 2025-08-26T21:39:24.4447601Z ] 2025-08-26T21:39:24.4448179Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(889): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4448251Z with 2025-08-26T21:39:24.4448318Z [ 2025-08-26T21:39:24.4448393Z scalar_t=float 2025-08-26T21:39:24.4448460Z ] 2025-08-26T21:39:24.4449044Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(889): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4449109Z with 2025-08-26T21:39:24.4449179Z [ 2025-08-26T21:39:24.4449266Z scalar_t=float 2025-08-26T21:39:24.4449332Z ] 2025-08-26T21:39:24.4449904Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(890): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4449986Z with 2025-08-26T21:39:24.4450052Z [ 2025-08-26T21:39:24.4450127Z scalar_t=float 2025-08-26T21:39:24.4450197Z ] 2025-08-26T21:39:24.4450914Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(890): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4451031Z with 2025-08-26T21:39:24.4451096Z [ 2025-08-26T21:39:24.4451184Z scalar_t=float 2025-08-26T21:39:24.4451247Z ] 2025-08-26T21:39:24.4451818Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(890): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4451885Z with 2025-08-26T21:39:24.4451954Z [ 2025-08-26T21:39:24.4452027Z scalar_t=float 2025-08-26T21:39:24.4452093Z ] 2025-08-26T21:39:24.4452671Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(891): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4452741Z with 2025-08-26T21:39:24.4452805Z [ 2025-08-26T21:39:24.4452883Z scalar_t=float 2025-08-26T21:39:24.4452957Z ] 2025-08-26T21:39:24.4453530Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(891): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4453594Z with 2025-08-26T21:39:24.4453670Z [ 2025-08-26T21:39:24.4453744Z scalar_t=float 2025-08-26T21:39:24.4453810Z ] 2025-08-26T21:39:24.4454391Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(891): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4454456Z with 2025-08-26T21:39:24.4454522Z [ 2025-08-26T21:39:24.4454596Z scalar_t=float 2025-08-26T21:39:24.4454710Z ] 2025-08-26T21:39:24.4455283Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(892): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4455348Z with 2025-08-26T21:39:24.4455839Z [ 2025-08-26T21:39:24.4455924Z scalar_t=float 2025-08-26T21:39:24.4455988Z ] 2025-08-26T21:39:24.4456655Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(892): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4456724Z with 2025-08-26T21:39:24.4456793Z [ 2025-08-26T21:39:24.4456868Z scalar_t=float 2025-08-26T21:39:24.4456938Z ] 2025-08-26T21:39:24.4457513Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(892): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4457628Z with 2025-08-26T21:39:24.4457702Z [ 2025-08-26T21:39:24.4457777Z scalar_t=float 2025-08-26T21:39:24.4457841Z ] 2025-08-26T21:39:24.4458420Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(893): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4458506Z with 2025-08-26T21:39:24.4458576Z [ 2025-08-26T21:39:24.4458654Z scalar_t=float 2025-08-26T21:39:24.4458738Z ] 2025-08-26T21:39:24.4459320Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(893): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4459389Z with 2025-08-26T21:39:24.4459462Z [ 2025-08-26T21:39:24.4459540Z scalar_t=float 2025-08-26T21:39:24.4459602Z ] 2025-08-26T21:39:24.4460175Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(893): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4460253Z with 2025-08-26T21:39:24.4460320Z [ 2025-08-26T21:39:24.4460393Z scalar_t=float 2025-08-26T21:39:24.4460505Z ] 2025-08-26T21:39:24.4461081Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(894): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4461146Z with 2025-08-26T21:39:24.4461209Z [ 2025-08-26T21:39:24.4461290Z scalar_t=float 2025-08-26T21:39:24.4461353Z ] 2025-08-26T21:39:24.4461963Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(894): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4462036Z with 2025-08-26T21:39:24.4462100Z [ 2025-08-26T21:39:24.4462209Z scalar_t=float 2025-08-26T21:39:24.4462290Z ] 2025-08-26T21:39:24.4462869Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(894): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4462939Z with 2025-08-26T21:39:24.4463006Z [ 2025-08-26T21:39:24.4463087Z scalar_t=float 2025-08-26T21:39:24.4463153Z ] 2025-08-26T21:39:24.4463725Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(895): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4463796Z with 2025-08-26T21:39:24.4463864Z [ 2025-08-26T21:39:24.4463937Z scalar_t=float 2025-08-26T21:39:24.4464005Z ] 2025-08-26T21:39:24.4464595Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(896): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4464705Z with 2025-08-26T21:39:24.4464772Z [ 2025-08-26T21:39:24.4464856Z scalar_t=float 2025-08-26T21:39:24.4464924Z ] 2025-08-26T21:39:24.4465533Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(896): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4465612Z with 2025-08-26T21:39:24.4465678Z [ 2025-08-26T21:39:24.4465754Z scalar_t=float 2025-08-26T21:39:24.4465819Z ] 2025-08-26T21:39:24.4466402Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(896): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4466468Z with 2025-08-26T21:39:24.4466534Z [ 2025-08-26T21:39:24.4466615Z scalar_t=float 2025-08-26T21:39:24.4466680Z ] 2025-08-26T21:39:24.4467262Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(897): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4467371Z with 2025-08-26T21:39:24.4467471Z [ 2025-08-26T21:39:24.4467550Z scalar_t=float 2025-08-26T21:39:24.4467617Z ] 2025-08-26T21:39:24.4468255Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(897): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4468327Z with 2025-08-26T21:39:24.4468392Z [ 2025-08-26T21:39:24.4468477Z scalar_t=float 2025-08-26T21:39:24.4468543Z ] 2025-08-26T21:39:24.4469126Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(897): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4469191Z with 2025-08-26T21:39:24.4469264Z [ 2025-08-26T21:39:24.4469340Z scalar_t=float 2025-08-26T21:39:24.4469409Z ] 2025-08-26T21:39:24.4469993Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(898): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4470104Z with 2025-08-26T21:39:24.4470170Z [ 2025-08-26T21:39:24.4470244Z scalar_t=float 2025-08-26T21:39:24.4470319Z ] 2025-08-26T21:39:24.4470892Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(898): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4470960Z with 2025-08-26T21:39:24.4471037Z [ 2025-08-26T21:39:24.4471113Z scalar_t=float 2025-08-26T21:39:24.4471179Z ] 2025-08-26T21:39:24.4471772Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(898): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4471842Z with 2025-08-26T21:39:24.4471907Z [ 2025-08-26T21:39:24.4471984Z scalar_t=float 2025-08-26T21:39:24.4472056Z ] 2025-08-26T21:39:24.4472630Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(899): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4472699Z with 2025-08-26T21:39:24.4472774Z [ 2025-08-26T21:39:24.4472851Z scalar_t=float 2025-08-26T21:39:24.4472913Z ] 2025-08-26T21:39:24.4473526Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(899): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4473627Z with 2025-08-26T21:39:24.4473691Z [ 2025-08-26T21:39:24.4473764Z scalar_t=float 2025-08-26T21:39:24.4473838Z ] 2025-08-26T21:39:24.4474453Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(899): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4474526Z with 2025-08-26T21:39:24.4474605Z [ 2025-08-26T21:39:24.4474678Z scalar_t=float 2025-08-26T21:39:24.4474747Z ] 2025-08-26T21:39:24.4475364Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(900): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4475437Z with 2025-08-26T21:39:24.4475499Z [ 2025-08-26T21:39:24.4475572Z scalar_t=float 2025-08-26T21:39:24.4475643Z ] 2025-08-26T21:39:24.4476219Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(900): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4476283Z with 2025-08-26T21:39:24.4476355Z [ 2025-08-26T21:39:24.4476472Z scalar_t=float 2025-08-26T21:39:24.4476538Z ] 2025-08-26T21:39:24.4477110Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(900): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4477187Z with 2025-08-26T21:39:24.4477255Z [ 2025-08-26T21:39:24.4477335Z scalar_t=float 2025-08-26T21:39:24.4477408Z ] 2025-08-26T21:39:24.4477980Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(901): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4478046Z with 2025-08-26T21:39:24.4478110Z [ 2025-08-26T21:39:24.4478196Z scalar_t=float 2025-08-26T21:39:24.4478263Z ] 2025-08-26T21:39:24.4478877Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(901): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4478957Z with 2025-08-26T21:39:24.4479019Z [ 2025-08-26T21:39:24.4479092Z scalar_t=float 2025-08-26T21:39:24.4479161Z ] 2025-08-26T21:39:24.4479806Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(901): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4479915Z with 2025-08-26T21:39:24.4479978Z [ 2025-08-26T21:39:24.4480099Z scalar_t=float 2025-08-26T21:39:24.4480168Z ] 2025-08-26T21:39:24.4480780Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(902): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4480889Z with 2025-08-26T21:39:24.4480953Z [ 2025-08-26T21:39:24.4481027Z scalar_t=float 2025-08-26T21:39:24.4481091Z ] 2025-08-26T21:39:24.4481743Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(902): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4481811Z with 2025-08-26T21:39:24.4481877Z [ 2025-08-26T21:39:24.4481963Z scalar_t=float 2025-08-26T21:39:24.4482066Z ] 2025-08-26T21:39:24.4482638Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(902): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4482715Z with 2025-08-26T21:39:24.4482781Z [ 2025-08-26T21:39:24.4482855Z scalar_t=float 2025-08-26T21:39:24.4482920Z ] 2025-08-26T21:39:24.4483511Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(903): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4483577Z with 2025-08-26T21:39:24.4483639Z [ 2025-08-26T21:39:24.4483726Z scalar_t=float 2025-08-26T21:39:24.4483834Z ] 2025-08-26T21:39:24.4484410Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(903): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4484486Z with 2025-08-26T21:39:24.4484585Z [ 2025-08-26T21:39:24.4484664Z scalar_t=float 2025-08-26T21:39:24.4484732Z ] 2025-08-26T21:39:24.4485313Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(903): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4485380Z with 2025-08-26T21:39:24.4485444Z [ 2025-08-26T21:39:24.4485526Z scalar_t=float 2025-08-26T21:39:24.4485593Z ] 2025-08-26T21:39:24.4486166Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(904): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4486282Z with 2025-08-26T21:39:24.4486357Z [ 2025-08-26T21:39:24.4486433Z scalar_t=float 2025-08-26T21:39:24.4486498Z ] 2025-08-26T21:39:24.4487082Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(905): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4487154Z with 2025-08-26T21:39:24.4487220Z [ 2025-08-26T21:39:24.4487331Z scalar_t=float 2025-08-26T21:39:24.4487413Z ] 2025-08-26T21:39:24.4488058Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(905): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4488125Z with 2025-08-26T21:39:24.4488205Z [ 2025-08-26T21:39:24.4488282Z scalar_t=float 2025-08-26T21:39:24.4488346Z ] 2025-08-26T21:39:24.4489007Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(905): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4489073Z with 2025-08-26T21:39:24.4489136Z [ 2025-08-26T21:39:24.4489244Z scalar_t=float 2025-08-26T21:39:24.4489365Z ] 2025-08-26T21:39:24.4490011Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(906): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4490082Z with 2025-08-26T21:39:24.4490153Z [ 2025-08-26T21:39:24.4490229Z scalar_t=float 2025-08-26T21:39:24.4490294Z ] 2025-08-26T21:39:24.4490996Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(906): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4491071Z with 2025-08-26T21:39:24.4491172Z [ 2025-08-26T21:39:24.4491258Z scalar_t=float 2025-08-26T21:39:24.4491332Z ] 2025-08-26T21:39:24.4491980Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(906): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4492055Z with 2025-08-26T21:39:24.4492132Z [ 2025-08-26T21:39:24.4492208Z scalar_t=float 2025-08-26T21:39:24.4492271Z ] 2025-08-26T21:39:24.4492918Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(907): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4492993Z with 2025-08-26T21:39:24.4493056Z [ 2025-08-26T21:39:24.4493167Z scalar_t=float 2025-08-26T21:39:24.4493244Z ] 2025-08-26T21:39:24.4493857Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(907): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4494000Z with 2025-08-26T21:39:24.4494076Z [ 2025-08-26T21:39:24.4494154Z scalar_t=float 2025-08-26T21:39:24.4494220Z ] 2025-08-26T21:39:24.4494897Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(907): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4494972Z with 2025-08-26T21:39:24.4495078Z [ 2025-08-26T21:39:24.4495154Z scalar_t=float 2025-08-26T21:39:24.4495233Z ] 2025-08-26T21:39:24.4495881Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(908): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4495949Z with 2025-08-26T21:39:24.4496013Z [ 2025-08-26T21:39:24.4496101Z scalar_t=float 2025-08-26T21:39:24.4496168Z ] 2025-08-26T21:39:24.4496891Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(908): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4497005Z with 2025-08-26T21:39:24.4497073Z [ 2025-08-26T21:39:24.4497151Z scalar_t=float 2025-08-26T21:39:24.4497220Z ] 2025-08-26T21:39:24.4497872Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(908): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4497945Z with 2025-08-26T21:39:24.4498010Z [ 2025-08-26T21:39:24.4498091Z scalar_t=float 2025-08-26T21:39:24.4498192Z ] 2025-08-26T21:39:24.4498805Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(909): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4498908Z with 2025-08-26T21:39:24.4498980Z [ 2025-08-26T21:39:24.4499059Z scalar_t=float 2025-08-26T21:39:24.4499127Z ] 2025-08-26T21:39:24.4499783Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(909): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4500330Z with 2025-08-26T21:39:24.4500395Z [ 2025-08-26T21:39:24.4500519Z scalar_t=float 2025-08-26T21:39:24.4500586Z ] 2025-08-26T21:39:24.4501230Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(909): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4501316Z with 2025-08-26T21:39:24.4501384Z [ 2025-08-26T21:39:24.4501461Z scalar_t=float 2025-08-26T21:39:24.4501524Z ] 2025-08-26T21:39:24.4502182Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(910): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4502249Z with 2025-08-26T21:39:24.4502313Z [ 2025-08-26T21:39:24.4502436Z scalar_t=float 2025-08-26T21:39:24.4502503Z ] 2025-08-26T21:39:24.4503114Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(910): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4503217Z with 2025-08-26T21:39:24.4503290Z [ 2025-08-26T21:39:24.4503370Z scalar_t=float 2025-08-26T21:39:24.4503436Z ] 2025-08-26T21:39:24.4504089Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(910): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4504155Z with 2025-08-26T21:39:24.4504220Z [ 2025-08-26T21:39:24.4504343Z scalar_t=float 2025-08-26T21:39:24.4504409Z ] 2025-08-26T21:39:24.4505105Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(911): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4505174Z with 2025-08-26T21:39:24.4505255Z [ 2025-08-26T21:39:24.4505334Z scalar_t=float 2025-08-26T21:39:24.4505440Z ] 2025-08-26T21:39:24.4506031Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(911): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4506100Z with 2025-08-26T21:39:24.4506166Z [ 2025-08-26T21:39:24.4506243Z scalar_t=float 2025-08-26T21:39:24.4506314Z ] 2025-08-26T21:39:24.4506889Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(911): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4506956Z with 2025-08-26T21:39:24.4507075Z [ 2025-08-26T21:39:24.4507155Z scalar_t=float 2025-08-26T21:39:24.4507220Z ] 2025-08-26T21:39:24.4507797Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(912): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4507871Z with 2025-08-26T21:39:24.4507935Z [ 2025-08-26T21:39:24.4508010Z scalar_t=float 2025-08-26T21:39:24.4508085Z ] 2025-08-26T21:39:24.4508665Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(912): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4508732Z with 2025-08-26T21:39:24.4508809Z [ 2025-08-26T21:39:24.4508883Z scalar_t=float 2025-08-26T21:39:24.4508947Z ] 2025-08-26T21:39:24.4509529Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(912): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4509604Z with 2025-08-26T21:39:24.4509666Z [ 2025-08-26T21:39:24.4509741Z scalar_t=float 2025-08-26T21:39:24.4509810Z ] 2025-08-26T21:39:24.4510420Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(913): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4510530Z with 2025-08-26T21:39:24.4510600Z [ 2025-08-26T21:39:24.4510677Z scalar_t=float 2025-08-26T21:39:24.4510778Z ] 2025-08-26T21:39:24.4511396Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(914): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4511475Z with 2025-08-26T21:39:24.4511544Z [ 2025-08-26T21:39:24.4511626Z scalar_t=float 2025-08-26T21:39:24.4511697Z ] 2025-08-26T21:39:24.4512279Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(914): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4512344Z with 2025-08-26T21:39:24.4512414Z [ 2025-08-26T21:39:24.4512491Z scalar_t=float 2025-08-26T21:39:24.4512555Z ] 2025-08-26T21:39:24.4513132Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(914): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4513204Z with 2025-08-26T21:39:24.4513269Z [ 2025-08-26T21:39:24.4513344Z scalar_t=float 2025-08-26T21:39:24.4513415Z ] 2025-08-26T21:39:24.4513988Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(915): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4514053Z with 2025-08-26T21:39:24.4514119Z [ 2025-08-26T21:39:24.4514240Z scalar_t=float 2025-08-26T21:39:24.4514305Z ] 2025-08-26T21:39:24.4514876Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(915): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4514984Z with 2025-08-26T21:39:24.4515050Z [ 2025-08-26T21:39:24.4515123Z scalar_t=float 2025-08-26T21:39:24.4515187Z ] 2025-08-26T21:39:24.4515764Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(915): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4515828Z with 2025-08-26T21:39:24.4515892Z [ 2025-08-26T21:39:24.4515970Z scalar_t=float 2025-08-26T21:39:24.4516034Z ] 2025-08-26T21:39:24.4516646Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(916): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4516790Z with 2025-08-26T21:39:24.4516858Z [ 2025-08-26T21:39:24.4516936Z scalar_t=float 2025-08-26T21:39:24.4517003Z ] 2025-08-26T21:39:24.4517629Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(916): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4517700Z with 2025-08-26T21:39:24.4517769Z [ 2025-08-26T21:39:24.4517851Z scalar_t=float 2025-08-26T21:39:24.4517914Z ] 2025-08-26T21:39:24.4518490Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(916): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4518565Z with 2025-08-26T21:39:24.4518629Z [ 2025-08-26T21:39:24.4518702Z scalar_t=float 2025-08-26T21:39:24.4518768Z ] 2025-08-26T21:39:24.4519357Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(917): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4519423Z with 2025-08-26T21:39:24.4519488Z [ 2025-08-26T21:39:24.4519620Z scalar_t=float 2025-08-26T21:39:24.4519686Z ] 2025-08-26T21:39:24.4520262Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(917): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4520328Z with 2025-08-26T21:39:24.4520400Z [ 2025-08-26T21:39:24.4520473Z scalar_t=float 2025-08-26T21:39:24.4520540Z ] 2025-08-26T21:39:24.4521126Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(917): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4521190Z with 2025-08-26T21:39:24.4521257Z [ 2025-08-26T21:39:24.4521348Z scalar_t=float 2025-08-26T21:39:24.4521411Z ] 2025-08-26T21:39:24.4521979Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(918): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4522050Z with 2025-08-26T21:39:24.4522123Z [ 2025-08-26T21:39:24.4522204Z scalar_t=float 2025-08-26T21:39:24.4522269Z ] 2025-08-26T21:39:24.4522921Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(918): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4522987Z with 2025-08-26T21:39:24.4523050Z [ 2025-08-26T21:39:24.4523130Z scalar_t=float 2025-08-26T21:39:24.4523235Z ] 2025-08-26T21:39:24.4523854Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(918): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4523922Z with 2025-08-26T21:39:24.4523992Z [ 2025-08-26T21:39:24.4524065Z scalar_t=float 2025-08-26T21:39:24.4524129Z ] 2025-08-26T21:39:24.4524742Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(919): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4524809Z with 2025-08-26T21:39:24.4524876Z [ 2025-08-26T21:39:24.4524949Z scalar_t=float 2025-08-26T21:39:24.4525019Z ] 2025-08-26T21:39:24.4525588Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(919): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4525651Z with 2025-08-26T21:39:24.4525722Z [ 2025-08-26T21:39:24.4525798Z scalar_t=float 2025-08-26T21:39:24.4525900Z ] 2025-08-26T21:39:24.4526477Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(919): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4526557Z with 2025-08-26T21:39:24.4526627Z [ 2025-08-26T21:39:24.4526705Z scalar_t=float 2025-08-26T21:39:24.4526777Z ] 2025-08-26T21:39:24.4527355Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(920): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4527420Z with 2025-08-26T21:39:24.4527493Z [ 2025-08-26T21:39:24.4527572Z scalar_t=float 2025-08-26T21:39:24.4527636Z ] 2025-08-26T21:39:24.4528212Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(920): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4528284Z with 2025-08-26T21:39:24.4528352Z [ 2025-08-26T21:39:24.4528469Z scalar_t=float 2025-08-26T21:39:24.4528543Z ] 2025-08-26T21:39:24.4529162Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(920): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4529301Z with 2025-08-26T21:39:24.4529364Z [ 2025-08-26T21:39:24.4529446Z scalar_t=float 2025-08-26T21:39:24.4529511Z ] 2025-08-26T21:39:24.4530081Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(921): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4530152Z with 2025-08-26T21:39:24.4530213Z [ 2025-08-26T21:39:24.4530286Z scalar_t=float 2025-08-26T21:39:24.4530357Z ] 2025-08-26T21:39:24.4530992Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(921): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4531060Z with 2025-08-26T21:39:24.4531124Z [ 2025-08-26T21:39:24.4531217Z scalar_t=float 2025-08-26T21:39:24.4531287Z ] 2025-08-26T21:39:24.4531866Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(921): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4531940Z with 2025-08-26T21:39:24.4532011Z [ 2025-08-26T21:39:24.4532095Z scalar_t=float 2025-08-26T21:39:24.4532158Z ] 2025-08-26T21:39:24.4532750Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(922): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4532815Z with 2025-08-26T21:39:24.4532881Z [ 2025-08-26T21:39:24.4532973Z scalar_t=float 2025-08-26T21:39:24.4533042Z ] 2025-08-26T21:39:24.4533655Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(923): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4533732Z with 2025-08-26T21:39:24.4533797Z [ 2025-08-26T21:39:24.4533912Z scalar_t=float 2025-08-26T21:39:24.4533981Z ] 2025-08-26T21:39:24.4534566Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(923): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4534633Z with 2025-08-26T21:39:24.4534699Z [ 2025-08-26T21:39:24.4534785Z scalar_t=float 2025-08-26T21:39:24.4534848Z ] 2025-08-26T21:39:24.4535420Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(923): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4535530Z with 2025-08-26T21:39:24.4535596Z [ 2025-08-26T21:39:24.4535673Z scalar_t=float 2025-08-26T21:39:24.4535742Z ] 2025-08-26T21:39:24.4536327Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(924): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4536394Z with 2025-08-26T21:39:24.4536457Z [ 2025-08-26T21:39:24.4536540Z scalar_t=float 2025-08-26T21:39:24.4536604Z ] 2025-08-26T21:39:24.4537177Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(924): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4537241Z with 2025-08-26T21:39:24.4537313Z [ 2025-08-26T21:39:24.4537387Z scalar_t=float 2025-08-26T21:39:24.4537449Z ] 2025-08-26T21:39:24.4538037Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(924): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4538106Z with 2025-08-26T21:39:24.4538173Z [ 2025-08-26T21:39:24.4538256Z scalar_t=float 2025-08-26T21:39:24.4538319Z ] 2025-08-26T21:39:24.4538934Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(925): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4539005Z with 2025-08-26T21:39:24.4539080Z [ 2025-08-26T21:39:24.4539154Z scalar_t=float 2025-08-26T21:39:24.4539219Z ] 2025-08-26T21:39:24.4539883Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(925): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4539955Z with 2025-08-26T21:39:24.4540022Z [ 2025-08-26T21:39:24.4540099Z scalar_t=float 2025-08-26T21:39:24.4540183Z ] 2025-08-26T21:39:24.4540796Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(925): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4540869Z with 2025-08-26T21:39:24.4540947Z [ 2025-08-26T21:39:24.4541026Z scalar_t=float 2025-08-26T21:39:24.4541091Z ] 2025-08-26T21:39:24.4541680Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(926): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4541747Z with 2025-08-26T21:39:24.4541811Z [ 2025-08-26T21:39:24.4541890Z scalar_t=float 2025-08-26T21:39:24.4541961Z ] 2025-08-26T21:39:24.4542535Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(926): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4542603Z with 2025-08-26T21:39:24.4542718Z [ 2025-08-26T21:39:24.4542794Z scalar_t=float 2025-08-26T21:39:24.4542856Z ] 2025-08-26T21:39:24.4543470Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(926): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4543555Z with 2025-08-26T21:39:24.4543619Z [ 2025-08-26T21:39:24.4543694Z scalar_t=float 2025-08-26T21:39:24.4543784Z ] 2025-08-26T21:39:24.4544357Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(927): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4544425Z with 2025-08-26T21:39:24.4544501Z [ 2025-08-26T21:39:24.4544575Z scalar_t=float 2025-08-26T21:39:24.4544637Z ] 2025-08-26T21:39:24.4545215Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(927): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4545331Z with 2025-08-26T21:39:24.4545398Z [ 2025-08-26T21:39:24.4545477Z scalar_t=float 2025-08-26T21:39:24.4545545Z ] 2025-08-26T21:39:24.4546125Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(927): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4546189Z with 2025-08-26T21:39:24.4546257Z [ 2025-08-26T21:39:24.4546338Z scalar_t=float 2025-08-26T21:39:24.4546400Z ] 2025-08-26T21:39:24.4546972Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(928): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4547045Z with 2025-08-26T21:39:24.4547110Z [ 2025-08-26T21:39:24.4547188Z scalar_t=float 2025-08-26T21:39:24.4547259Z ] 2025-08-26T21:39:24.4547833Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(928): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4547900Z with 2025-08-26T21:39:24.4548000Z [ 2025-08-26T21:39:24.4548084Z scalar_t=float 2025-08-26T21:39:24.4548149Z ] 2025-08-26T21:39:24.4548729Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(928): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4548803Z with 2025-08-26T21:39:24.4548869Z [ 2025-08-26T21:39:24.4548941Z scalar_t=float 2025-08-26T21:39:24.4549004Z ] 2025-08-26T21:39:24.4549583Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(929): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4549651Z with 2025-08-26T21:39:24.4549713Z [ 2025-08-26T21:39:24.4549791Z scalar_t=float 2025-08-26T21:39:24.4549852Z ] 2025-08-26T21:39:24.4550427Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(929): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4550502Z with 2025-08-26T21:39:24.4550564Z [ 2025-08-26T21:39:24.4550638Z scalar_t=float 2025-08-26T21:39:24.4550699Z ] 2025-08-26T21:39:24.4551280Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(929): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4551347Z with 2025-08-26T21:39:24.4551409Z [ 2025-08-26T21:39:24.4551491Z scalar_t=float 2025-08-26T21:39:24.4551554Z ] 2025-08-26T21:39:24.4552168Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(930): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4552246Z with 2025-08-26T21:39:24.4552315Z [ 2025-08-26T21:39:24.4552392Z scalar_t=float 2025-08-26T21:39:24.4552454Z ] 2025-08-26T21:39:24.4553070Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(930): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4553146Z with 2025-08-26T21:39:24.4553208Z [ 2025-08-26T21:39:24.4553289Z scalar_t=float 2025-08-26T21:39:24.4553354Z ] 2025-08-26T21:39:24.4553927Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(930): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4553992Z with 2025-08-26T21:39:24.4554062Z [ 2025-08-26T21:39:24.4554135Z scalar_t=float 2025-08-26T21:39:24.4554523Z ] 2025-08-26T21:39:24.4555119Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(931): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4555186Z with 2025-08-26T21:39:24.4555252Z [ 2025-08-26T21:39:24.4555344Z scalar_t=float 2025-08-26T21:39:24.4555411Z ] 2025-08-26T21:39:24.4556083Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(932): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4556150Z with 2025-08-26T21:39:24.4556264Z [ 2025-08-26T21:39:24.4556341Z scalar_t=float 2025-08-26T21:39:24.4556411Z ] 2025-08-26T21:39:24.4556989Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(932): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4557056Z with 2025-08-26T21:39:24.4557126Z [ 2025-08-26T21:39:24.4557201Z scalar_t=float 2025-08-26T21:39:24.4557275Z ] 2025-08-26T21:39:24.4557853Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(932): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4557966Z with 2025-08-26T21:39:24.4558044Z [ 2025-08-26T21:39:24.4558123Z scalar_t=float 2025-08-26T21:39:24.4558189Z ] 2025-08-26T21:39:24.4558773Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(933): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4558840Z with 2025-08-26T21:39:24.4558904Z [ 2025-08-26T21:39:24.4558979Z scalar_t=float 2025-08-26T21:39:24.4559051Z ] 2025-08-26T21:39:24.4559625Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(933): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4559692Z with 2025-08-26T21:39:24.4559764Z [ 2025-08-26T21:39:24.4559839Z scalar_t=float 2025-08-26T21:39:24.4559903Z ] 2025-08-26T21:39:24.4560475Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(933): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4560553Z with 2025-08-26T21:39:24.4560616Z [ 2025-08-26T21:39:24.4560691Z scalar_t=float 2025-08-26T21:39:24.4560761Z ] 2025-08-26T21:39:24.4561335Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(934): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4561405Z with 2025-08-26T21:39:24.4561480Z [ 2025-08-26T21:39:24.4561553Z scalar_t=float 2025-08-26T21:39:24.4561618Z ] 2025-08-26T21:39:24.4562229Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(934): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4562304Z with 2025-08-26T21:39:24.4562372Z [ 2025-08-26T21:39:24.4562484Z scalar_t=float 2025-08-26T21:39:24.4562559Z ] 2025-08-26T21:39:24.4563131Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(934): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4563199Z with 2025-08-26T21:39:24.4563262Z [ 2025-08-26T21:39:24.4563341Z scalar_t=float 2025-08-26T21:39:24.4563404Z ] 2025-08-26T21:39:24.4563978Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(935): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4564087Z with 2025-08-26T21:39:24.4564152Z [ 2025-08-26T21:39:24.4564231Z scalar_t=float 2025-08-26T21:39:24.4564299Z ] 2025-08-26T21:39:24.4564870Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(935): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4564939Z with 2025-08-26T21:39:24.4565004Z [ 2025-08-26T21:39:24.4565087Z scalar_t=float 2025-08-26T21:39:24.4565152Z ] 2025-08-26T21:39:24.4565725Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(935): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4565801Z with 2025-08-26T21:39:24.4565865Z [ 2025-08-26T21:39:24.4565945Z scalar_t=float 2025-08-26T21:39:24.4566009Z ] 2025-08-26T21:39:24.4566588Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(936): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4566658Z with 2025-08-26T21:39:24.4566723Z [ 2025-08-26T21:39:24.4566808Z scalar_t=float 2025-08-26T21:39:24.4566908Z ] 2025-08-26T21:39:24.4567479Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(936): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4567551Z with 2025-08-26T21:39:24.4567617Z [ 2025-08-26T21:39:24.4567690Z scalar_t=float 2025-08-26T21:39:24.4567753Z ] 2025-08-26T21:39:24.4568337Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(936): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4568402Z with 2025-08-26T21:39:24.4568465Z [ 2025-08-26T21:39:24.4568549Z scalar_t=float 2025-08-26T21:39:24.4568616Z ] 2025-08-26T21:39:24.4569186Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(937): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4569263Z with 2025-08-26T21:39:24.4569332Z [ 2025-08-26T21:39:24.4569405Z scalar_t=float 2025-08-26T21:39:24.4569467Z ] 2025-08-26T21:39:24.4570053Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(937): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4570118Z with 2025-08-26T21:39:24.4570183Z [ 2025-08-26T21:39:24.4570268Z scalar_t=float 2025-08-26T21:39:24.4570331Z ] 2025-08-26T21:39:24.4570973Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(937): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4571046Z with 2025-08-26T21:39:24.4571168Z [ 2025-08-26T21:39:24.4571244Z scalar_t=float 2025-08-26T21:39:24.4571308Z ] 2025-08-26T21:39:24.4571920Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(938): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4571990Z with 2025-08-26T21:39:24.4572060Z [ 2025-08-26T21:39:24.4572134Z scalar_t=float 2025-08-26T21:39:24.4572206Z ] 2025-08-26T21:39:24.4572779Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(938): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4572843Z with 2025-08-26T21:39:24.4572915Z [ 2025-08-26T21:39:24.4572987Z scalar_t=float 2025-08-26T21:39:24.4573051Z ] 2025-08-26T21:39:24.4573642Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(938): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4573744Z with 2025-08-26T21:39:24.4573811Z [ 2025-08-26T21:39:24.4573890Z scalar_t=float 2025-08-26T21:39:24.4573967Z ] 2025-08-26T21:39:24.4574540Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(939): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4574606Z with 2025-08-26T21:39:24.4574685Z [ 2025-08-26T21:39:24.4574759Z scalar_t=float 2025-08-26T21:39:24.4574823Z ] 2025-08-26T21:39:24.4575405Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(939): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4575472Z with 2025-08-26T21:39:24.4575537Z [ 2025-08-26T21:39:24.4575614Z scalar_t=float 2025-08-26T21:39:24.4575694Z ] 2025-08-26T21:39:24.4576271Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(939): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4576378Z with 2025-08-26T21:39:24.4576455Z [ 2025-08-26T21:39:24.4576530Z scalar_t=float 2025-08-26T21:39:24.4576596Z ] 2025-08-26T21:39:24.4582639Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(940): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4582748Z with 2025-08-26T21:39:24.4582818Z [ 2025-08-26T21:39:24.4582901Z scalar_t=float 2025-08-26T21:39:24.4582982Z ] 2025-08-26T21:39:24.4583580Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1328): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4584144Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1328): note: the template instantiation context (the oldest one first) is 2025-08-26T21:39:24.4584839Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1488): note: see reference to function template instantiation 'float calc_i0(T)' being compiled 2025-08-26T21:39:24.4584912Z with 2025-08-26T21:39:24.4584981Z [ 2025-08-26T21:39:24.4585049Z T=float 2025-08-26T21:39:24.4585122Z ] 2025-08-26T21:39:24.4586008Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1479): note: see reference to function template instantiation 'std::tuple chebyshev_coefficients_i0e_A(void)' being compiled 2025-08-26T21:39:24.4586763Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1328): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4587434Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1329): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4588052Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1329): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4588625Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1330): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4589198Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1330): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4589771Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1331): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4590392Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1331): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4590968Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1332): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4591539Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1332): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4592117Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1333): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4592682Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1333): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4593255Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1334): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4593840Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1334): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4594453Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1335): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4595026Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1335): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4595611Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1336): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4596189Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1336): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4596760Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1337): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4597336Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1337): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4597906Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1338): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4598479Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1338): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4599081Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1339): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4599685Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1339): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4600268Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1340): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4600835Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1340): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4601408Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1341): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4602034Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1341): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4602604Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1342): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4603176Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1342): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4603758Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1354): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4604308Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1354): note: the template instantiation context (the oldest one first) is 2025-08-26T21:39:24.4605184Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1483): note: see reference to function template instantiation 'std::tuple chebyshev_coefficients_i0e_B(void)' being compiled 2025-08-26T21:39:24.4605807Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1354): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4606371Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1355): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4606947Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1355): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4607520Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1356): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4608092Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1356): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4608670Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1357): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4609237Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1357): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4609807Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1358): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4610793Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1358): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4611382Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1359): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4611987Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1359): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4612569Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1360): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4613138Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1360): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4613704Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1361): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4614323Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1361): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4614892Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1362): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4615459Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1362): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4616035Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1363): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4616599Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1363): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4617184Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1364): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4617752Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1364): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4618359Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1365): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4618933Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1365): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4619501Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1366): warning C4305: 'initializing': truncation from 'double' to 'const float' 2025-08-26T21:39:24.4620060Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(627): warning C4305: 'initializing': truncation from 'double' to 'scalar_t' 2025-08-26T21:39:24.4620141Z with 2025-08-26T21:39:24.4620209Z [ 2025-08-26T21:39:24.4620293Z scalar_t=float 2025-08-26T21:39:24.4620357Z ] 2025-08-26T21:39:24.4620924Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(627): note: the template instantiation context (the oldest one first) is 2025-08-26T21:39:24.4621727Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(1202): note: see reference to function template instantiation 'scalar_t _igam_helper_series(scalar_t,scalar_t)' being compiled 2025-08-26T21:39:24.4621800Z with 2025-08-26T21:39:24.4621879Z [ 2025-08-26T21:39:24.4621959Z scalar_t=float 2025-08-26T21:39:24.4622028Z ] 2025-08-26T21:39:24.4622858Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(664): note: see reference to function template instantiation 'scalar_t _igam_helper_fac(scalar_t,scalar_t)' being compiled 2025-08-26T21:39:24.4622929Z with 2025-08-26T21:39:24.4623377Z [ 2025-08-26T21:39:24.4623473Z scalar_t=float 2025-08-26T21:39:24.4623538Z ] 2025-08-26T21:39:24.4624100Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(629): warning C4305: 'initializing': truncation from 'double' to 'scalar_t' 2025-08-26T21:39:24.4624169Z with 2025-08-26T21:39:24.4624243Z [ 2025-08-26T21:39:24.4624319Z scalar_t=float 2025-08-26T21:39:24.4624390Z ] 2025-08-26T21:39:24.4624951Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(630): warning C4305: 'initializing': truncation from 'double' to 'scalar_t' 2025-08-26T21:39:24.4625061Z with 2025-08-26T21:39:24.4625127Z [ 2025-08-26T21:39:24.4625203Z scalar_t=float 2025-08-26T21:39:24.4625276Z ] 2025-08-26T21:39:24.4625855Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(585): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4625922Z with 2025-08-26T21:39:24.4625993Z [ 2025-08-26T21:39:24.4626069Z scalar_t=float 2025-08-26T21:39:24.4626134Z ] 2025-08-26T21:39:24.4626690Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(585): note: the template instantiation context (the oldest one first) is 2025-08-26T21:39:24.4627469Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(664): note: see reference to function template instantiation 'scalar_t _igam_helper_fac(scalar_t,scalar_t)' being compiled 2025-08-26T21:39:24.4627538Z with 2025-08-26T21:39:24.4627610Z [ 2025-08-26T21:39:24.4627688Z scalar_t=float 2025-08-26T21:39:24.4627754Z ] 2025-08-26T21:39:24.4628529Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(641): note: see reference to function template instantiation 'scalar_t lanczos_sum_expg_scaled(scalar_t)' being compiled 2025-08-26T21:39:24.4628640Z with 2025-08-26T21:39:24.4628705Z [ 2025-08-26T21:39:24.4628784Z scalar_t=float 2025-08-26T21:39:24.4628860Z ] 2025-08-26T21:39:24.4629446Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(586): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4629519Z with 2025-08-26T21:39:24.4629594Z [ 2025-08-26T21:39:24.4629674Z scalar_t=float 2025-08-26T21:39:24.4629743Z ] 2025-08-26T21:39:24.4630319Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(587): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4630395Z with 2025-08-26T21:39:24.4630463Z [ 2025-08-26T21:39:24.4630539Z scalar_t=float 2025-08-26T21:39:24.4630615Z ] 2025-08-26T21:39:24.4631201Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(588): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4631270Z with 2025-08-26T21:39:24.4631337Z [ 2025-08-26T21:39:24.4631426Z scalar_t=float 2025-08-26T21:39:24.4631489Z ] 2025-08-26T21:39:24.4632071Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(589): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4632154Z with 2025-08-26T21:39:24.4632219Z [ 2025-08-26T21:39:24.4632334Z scalar_t=float 2025-08-26T21:39:24.4632401Z ] 2025-08-26T21:39:24.4632996Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(590): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4633101Z with 2025-08-26T21:39:24.4633167Z [ 2025-08-26T21:39:24.4633257Z scalar_t=float 2025-08-26T21:39:24.4633325Z ] 2025-08-26T21:39:24.4633900Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(591): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4633984Z with 2025-08-26T21:39:24.4634049Z [ 2025-08-26T21:39:24.4634125Z scalar_t=float 2025-08-26T21:39:24.4634193Z ] 2025-08-26T21:39:24.4634778Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(592): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4634880Z with 2025-08-26T21:39:24.4634947Z [ 2025-08-26T21:39:24.4635034Z scalar_t=float 2025-08-26T21:39:24.4635097Z ] 2025-08-26T21:39:24.4635669Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(593): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4635747Z with 2025-08-26T21:39:24.4635816Z [ 2025-08-26T21:39:24.4635889Z scalar_t=float 2025-08-26T21:39:24.4635953Z ] 2025-08-26T21:39:24.4636533Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(594): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4636600Z with 2025-08-26T21:39:24.4636667Z [ 2025-08-26T21:39:24.4636747Z scalar_t=float 2025-08-26T21:39:24.4636813Z ] 2025-08-26T21:39:24.4637391Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(595): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4637457Z with 2025-08-26T21:39:24.4637600Z [ 2025-08-26T21:39:24.4637731Z scalar_t=float 2025-08-26T21:39:24.4637798Z ] 2025-08-26T21:39:24.4638382Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(596): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4638448Z with 2025-08-26T21:39:24.4638515Z [ 2025-08-26T21:39:24.4638600Z scalar_t=float 2025-08-26T21:39:24.4638665Z ] 2025-08-26T21:39:24.4639237Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(597): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4639305Z with 2025-08-26T21:39:24.4639380Z [ 2025-08-26T21:39:24.4639461Z scalar_t=float 2025-08-26T21:39:24.4639531Z ] 2025-08-26T21:39:24.4640128Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(607): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4640207Z with 2025-08-26T21:39:24.4640271Z [ 2025-08-26T21:39:24.4640344Z scalar_t=float 2025-08-26T21:39:24.4640425Z ] 2025-08-26T21:39:24.4641002Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(608): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4641070Z with 2025-08-26T21:39:24.4641145Z [ 2025-08-26T21:39:24.4641222Z scalar_t=float 2025-08-26T21:39:24.4641287Z ] 2025-08-26T21:39:24.4641922Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/native/Math.h(609): warning C4305: 'initializing': truncation from 'double' to 'const scalar_t' 2025-08-26T21:39:24.4641998Z with 2025-08-26T21:39:24.4642062Z [ 2025-08-26T21:39:24.4642148Z scalar_t=float 2025-08-26T21:39:24.4642214Z ] 2025-08-26T21:39:24.4646230Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64\link.exe" /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib /LIBPATH:C:\Jenkins\Miniconda3\libs /LIBPATH:C:\Jenkins\Miniconda3 /LIBPATH:C:\Jenkins\Miniconda3\PCbuild\amd64 "/LIBPATH:C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64" c10.lib torch.lib torch_cpu.lib torch_python.lib sleef.lib /EXPORT:PyInit_rng C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\build\temp.win-amd64-cpython-39\Release\rng_extension.obj /OUT:build\lib.win-amd64-cpython-39\torch_test_cpp_extension\rng.cp39-win_amd64.pyd /IMPLIB:C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\build\temp.win-amd64-cpython-39\Release\rng.cp39-win_amd64.lib 2025-08-26T21:39:24.6195419Z Creating library C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\build\temp.win-amd64-cpython-39\Release\rng.cp39-win_amd64.lib and object C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\build\temp.win-amd64-cpython-39\Release\rng.cp39-win_amd64.exp 2025-08-26T21:39:24.6328474Z Generating code 2025-08-26T21:39:26.3213157Z Finished generating code 2025-08-26T21:39:26.4630089Z running install_lib 2025-08-26T21:39:26.4765852Z copying build\lib.win-amd64-cpython-39\torch_test_cpp_extension\cpp.cp39-win_amd64.pyd -> ./install\Jenkins\Miniconda3\Lib\site-packages\torch_test_cpp_extension 2025-08-26T21:39:26.4776562Z copying build\lib.win-amd64-cpython-39\torch_test_cpp_extension\maia.cp39-win_amd64.pyd -> ./install\Jenkins\Miniconda3\Lib\site-packages\torch_test_cpp_extension 2025-08-26T21:39:26.4786582Z copying build\lib.win-amd64-cpython-39\torch_test_cpp_extension\rng.cp39-win_amd64.pyd -> ./install\Jenkins\Miniconda3\Lib\site-packages\torch_test_cpp_extension 2025-08-26T21:39:26.4803973Z running install_egg_info 2025-08-26T21:39:26.5049598Z running egg_info 2025-08-26T21:39:26.5149774Z writing torch_test_cpp_extension.egg-info\PKG-INFO 2025-08-26T21:39:26.5158510Z writing dependency_links to torch_test_cpp_extension.egg-info\dependency_links.txt 2025-08-26T21:39:26.5162086Z writing entry points to torch_test_cpp_extension.egg-info\entry_points.txt 2025-08-26T21:39:26.5166482Z writing top-level names to torch_test_cpp_extension.egg-info\top_level.txt 2025-08-26T21:39:26.5272948Z reading manifest file 'torch_test_cpp_extension.egg-info\SOURCES.txt' 2025-08-26T21:39:26.5292814Z writing manifest file 'torch_test_cpp_extension.egg-info\SOURCES.txt' 2025-08-26T21:39:26.5295732Z removing './install\Jenkins\Miniconda3\Lib\site-packages\torch_test_cpp_extension-0.0.0-py3.9.egg-info' (and everything under it) 2025-08-26T21:39:26.5303649Z Copying torch_test_cpp_extension.egg-info to ./install\Jenkins\Miniconda3\Lib\site-packages\torch_test_cpp_extension-0.0.0-py3.9.egg-info 2025-08-26T21:39:26.5340525Z running install_scripts 2025-08-26T21:39:27.1405062Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:39:27.1435339Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_cpp_extensions_aot_ninja.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:39:27.143029] 2025-08-26T21:39:31.9621270Z 2025-08-26T21:39:31.9622428Z test_cpp_extensions_aot_ninja 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_cpp_extensions_aot_ninja_1.1_711c88e5c9d70954_.log 2025-08-26T21:39:31.9630072Z Running 21 items in this shard: test/test_cpp_extensions_aot_ninja.py::TestCppExtensionAOT::test_backward, test/test_cpp_extensions_aot_ninja.py::TestCppExtensionAOT::test_cublas_extension, test/test_cpp_extensions_aot_ninja.py::TestCppExtensionAOT::test_cuda_dlink_libs, test/test_cpp_extensions_aot_ninja.py::TestCppExtensionAOT::test_cuda_extension, test/test_cpp_extensions_aot_ninja.py::TestCppExtensionAOT::test_cusolver_extension, test/test_cpp_extensions_aot_ninja.py::TestCppExtensionAOT::test_extension_function, test/test_cpp_extensions_aot_ninja.py::TestCppExtensionAOT::test_extension_module, test/test_cpp_extensions_aot_ninja.py::TestCppExtensionAOT::test_mps_extension, test/test_cpp_extensions_aot_ninja.py::TestCppExtensionAOT::test_no_python_abi_suffix_sets_the_correct_library_name, test/test_cpp_extensions_aot_ninja.py::TestCppExtensionAOT::test_optional, test/test_cpp_extensions_aot_ninja.py::TestCppExtensionAOT::test_sycl_extension, test/test_cpp_extensions_aot_ninja.py::TestPybindTypeCasters::test_pybind_return_types, test/test_cpp_extensions_aot_ninja.py::TestMAIATensor::test_add, test/test_cpp_extensions_aot_ninja.py::TestMAIATensor::test_autocast_apis_for_maia_device, test/test_cpp_extensions_aot_ninja.py::TestMAIATensor::test_conv_backend_override, test/test_cpp_extensions_aot_ninja.py::TestMAIATensor::test_matmul_autocast_default_precision, test/test_cpp_extensions_aot_ninja.py::TestMAIATensor::test_matmul_autocast_float16_precision, test/test_cpp_extensions_aot_ninja.py::TestMAIATensor::test_unregistered, test/test_cpp_extensions_aot_ninja.py::TestMAIATensor::test_zeros, test/test_cpp_extensions_aot_ninja.py::TestRNGExtension::test_rng, test/test_cpp_extensions_aot_ninja.py::TestTorchLibrary::test_torch_library 2025-08-26T21:39:31.9637198Z 2025-08-26T21:39:31.9637405Z Running inductor/test_aot_inductor 1/1 ... [2025-08-26 21:39:31.959430] 2025-08-26T21:39:31.9637835Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:39:31.9638880Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_aot_inductor.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:39:31.959430] 2025-08-26T21:39:41.7509464Z 2025-08-26T21:39:41.7510398Z inductor/test_aot_inductor 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_aot_inductor_1.1_893c34661b419d96_.log 2025-08-26T21:39:41.7511113Z 2025-08-26T21:39:41.7516527Z Running inductor/test_extension_backend 1/1 ... [2025-08-26 21:39:41.751304] 2025-08-26T21:39:41.7516985Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:39:41.7524160Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_extension_backend.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:39:41.751886] 2025-08-26T21:39:51.9066763Z 2025-08-26T21:39:51.9067760Z inductor/test_extension_backend 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_extension_backend_1.1_4f8fd9b1767edcb2_.log 2025-08-26T21:39:51.9068543Z 2025-08-26T21:39:51.9072571Z Running inductor/test_kernel_benchmark 1/1 ... [2025-08-26 21:39:51.894534] 2025-08-26T21:39:51.9073031Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:39:51.9088294Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_kernel_benchmark.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:39:51.894534] 2025-08-26T21:40:01.7710532Z 2025-08-26T21:40:01.7711458Z inductor/test_kernel_benchmark 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_kernel_benchmark_1.1_e222b0e0f57384ce_.log 2025-08-26T21:40:01.7712369Z 2025-08-26T21:40:01.7716244Z Running inductor/test_pattern_matcher 1/1 ... [2025-08-26 21:40:01.771034] 2025-08-26T21:40:01.7716692Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:40:01.7722878Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_pattern_matcher.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:40:01.772134] 2025-08-26T21:40:11.6720869Z 2025-08-26T21:40:11.6721821Z inductor/test_pattern_matcher 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_pattern_matcher_1.1_90b9560d78895167_.log 2025-08-26T21:40:11.6726285Z 2025-08-26T21:40:11.6726496Z Running inductor/test_codecache 1/1 ... [2025-08-26 21:40:11.665419] 2025-08-26T21:40:11.6726925Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:40:11.6733381Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_codecache.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:40:11.665419] 2025-08-26T21:40:21.5774222Z 2025-08-26T21:40:21.5775127Z inductor/test_codecache 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_codecache_1.1_1b729fea4476b51a_.log 2025-08-26T21:40:21.5775866Z 2025-08-26T21:40:21.5780207Z Running inductor/test_cudagraph_trees 1/1 ... [2025-08-26 21:40:21.576245] 2025-08-26T21:40:21.5780696Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:40:21.5786595Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cudagraph_trees.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:40:21.576245] 2025-08-26T21:40:31.4841500Z 2025-08-26T21:40:31.4842448Z inductor/test_cudagraph_trees 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cudagraph_trees_1.1_467c91f3534d295b_.log 2025-08-26T21:40:31.4844038Z 2025-08-26T21:40:31.4847415Z Running inductor/test_minifier 1/1 ... [2025-08-26 21:40:31.483414] 2025-08-26T21:40:31.4847835Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:40:31.4853662Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_minifier.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:40:31.483414] 2025-08-26T21:40:41.2227192Z 2025-08-26T21:40:41.2228088Z inductor/test_minifier 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_minifier_1.1_67bf37932ef38837_.log 2025-08-26T21:40:41.2228785Z 2025-08-26T21:40:41.2232718Z Running inductor/test_padding 1/1 ... [2025-08-26 21:40:41.216500] 2025-08-26T21:40:41.2233144Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:40:41.2239296Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_padding.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:40:41.216500] 2025-08-26T21:40:50.8900104Z 2025-08-26T21:40:50.8901032Z inductor/test_padding 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_padding_1.1_6b8068dc380f8527_.log 2025-08-26T21:40:50.8901690Z 2025-08-26T21:40:50.8905651Z Running dynamo/test_modes 1/1 ... [2025-08-26 21:40:50.888518] 2025-08-26T21:40:50.8906038Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:40:50.8912119Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_modes.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:40:50.888518] 2025-08-26T21:41:00.7629743Z 2025-08-26T21:41:00.7630783Z dynamo/test_modes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_modes_1.1_d47979a34e9d8e84_.log 2025-08-26T21:41:00.7631449Z 2025-08-26T21:41:00.7635262Z Running dynamo/test_logging 1/1 ... [2025-08-26 21:41:00.762242] 2025-08-26T21:41:00.7635657Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:41:00.7641977Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_logging.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:41:00.763852] 2025-08-26T21:41:10.4666464Z 2025-08-26T21:41:10.4667352Z dynamo/test_logging 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_logging_1.1_e6767b54d764a130_.log 2025-08-26T21:41:10.4668154Z 2025-08-26T21:41:10.4672380Z Running inductor/test_torchbind 1/1 ... [2025-08-26 21:41:10.466901] 2025-08-26T21:41:10.4677993Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:41:10.4679062Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_torchbind.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:41:10.467480] 2025-08-26T21:41:20.1801832Z 2025-08-26T21:41:20.1802710Z inductor/test_torchbind 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_torchbind_1.1_ea119d6770cdfedd_.log 2025-08-26T21:41:20.1803440Z 2025-08-26T21:41:20.1807997Z Running dynamo/test_trace_rules 1/1 ... [2025-08-26 21:41:20.180703] 2025-08-26T21:41:20.1808424Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:41:20.1815013Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_trace_rules.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:41:20.181309] 2025-08-26T21:41:24.3782883Z 2025-08-26T21:41:24.3783960Z dynamo/test_trace_rules 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_trace_rules_1.1_5787c61f35d7a0a6_.log 2025-08-26T21:41:24.3784634Z 2025-08-26T21:41:24.3788608Z Running inductor/test_flex_decoding 1/1 ... [2025-08-26 21:41:24.378619] 2025-08-26T21:41:24.3789031Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:41:24.3795120Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_flex_decoding.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:41:24.379201] 2025-08-26T21:41:28.8925662Z 2025-08-26T21:41:28.8926945Z inductor/test_flex_decoding 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_flex_decoding_1.1_c2b66d43972cf6a3_.log 2025-08-26T21:41:28.8927699Z 2025-08-26T21:41:28.8931393Z Running inductor/test_provenance_tracing 1/1 ... [2025-08-26 21:41:28.890292] 2025-08-26T21:41:28.8931851Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:41:28.8939610Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_provenance_tracing.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:41:28.893424] 2025-08-26T21:41:38.5800599Z 2025-08-26T21:41:38.5801823Z inductor/test_provenance_tracing 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_provenance_tracing_1.1_7c02cb8ab930825f_.log 2025-08-26T21:41:38.5802576Z 2025-08-26T21:41:38.5806537Z Running inductor/test_external_callables 1/1 ... [2025-08-26 21:41:38.580110] 2025-08-26T21:41:38.5807033Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:41:38.5823569Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_external_callables.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:41:38.581840] 2025-08-26T21:41:42.9724765Z 2025-08-26T21:41:42.9725732Z inductor/test_external_callables 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_external_callables_1.1_e27262f6e0c06d90_.log 2025-08-26T21:41:42.9726475Z 2025-08-26T21:41:42.9730304Z Running inductor/test_halide 1/1 ... [2025-08-26 21:41:42.964089] 2025-08-26T21:41:42.9730860Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:41:42.9736837Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_halide.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:41:42.964089] 2025-08-26T21:41:52.7787999Z 2025-08-26T21:41:52.7788949Z inductor/test_halide 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_halide_1.1_6eaf77ce44063060_.log 2025-08-26T21:41:52.7789588Z 2025-08-26T21:41:52.7794032Z Running inductor/test_cpp_wrapper_hipify 1/1 ... [2025-08-26 21:41:52.779234] 2025-08-26T21:41:52.7794479Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:41:52.7801201Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cpp_wrapper_hipify.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:41:52.779807] 2025-08-26T21:41:56.9645195Z 2025-08-26T21:41:56.9646170Z inductor/test_cpp_wrapper_hipify 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cpp_wrapper_hipify_1.1_85b207c4ec8eff76_.log 2025-08-26T21:41:56.9647067Z 2025-08-26T21:41:56.9652310Z Running export/test_retraceability 1/1 ... [2025-08-26 21:41:56.964880] 2025-08-26T21:41:56.9652748Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:41:56.9658739Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_retraceability.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:41:56.964880] 2025-08-26T21:42:07.0522358Z 2025-08-26T21:42:07.0523283Z export/test_retraceability 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_retraceability_1.1_b500457900c53dbe_.log 2025-08-26T21:42:07.0524010Z 2025-08-26T21:42:07.0528079Z Running inductor/test_indexing 1/1 ... [2025-08-26 21:42:07.052488] 2025-08-26T21:42:07.0528490Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:42:07.0534585Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_indexing.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:42:07.053095] 2025-08-26T21:42:16.7094269Z 2025-08-26T21:42:16.7095142Z inductor/test_indexing 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_indexing_1.1_0d8f951d8d867d9a_.log 2025-08-26T21:42:16.7095810Z 2025-08-26T21:42:16.7099983Z Running inductor/test_triton_cpu_backend 1/1 ... [2025-08-26 21:42:16.700179] 2025-08-26T21:42:16.7100428Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:42:16.7116924Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_triton_cpu_backend.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:42:16.700179] 2025-08-26T21:42:26.5691425Z 2025-08-26T21:42:26.5692377Z inductor/test_triton_cpu_backend 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_triton_cpu_backend_1.1_4823f55f76229a2b_.log 2025-08-26T21:42:26.5693120Z 2025-08-26T21:42:26.5697067Z Running inductor/test_ck_backend 1/1 ... [2025-08-26 21:42:26.569636] 2025-08-26T21:42:26.5697554Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:42:26.5703659Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_ck_backend.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:42:26.569720] 2025-08-26T21:42:36.3833437Z 2025-08-26T21:42:36.3834346Z inductor/test_ck_backend 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_ck_backend_1.1_d542798665f364ae_.log 2025-08-26T21:42:36.3835058Z 2025-08-26T21:42:36.3839008Z Running inductor/test_op_completeness 1/1 ... [2025-08-26 21:42:36.379855] 2025-08-26T21:42:36.3839465Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:42:36.3845418Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_op_completeness.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:42:36.379855] 2025-08-26T21:42:41.1209387Z 2025-08-26T21:42:41.1210476Z inductor/test_op_completeness 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_op_completeness_1.1_2d0734e3e0700fc7_.log 2025-08-26T21:42:41.1211250Z 2025-08-26T21:42:41.1215482Z Running inductor/test_autoheuristic 1/1 ... [2025-08-26 21:42:41.107559] 2025-08-26T21:42:41.1215961Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:42:41.1221500Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_autoheuristic.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:42:41.107559] 2025-08-26T21:42:50.7379182Z 2025-08-26T21:42:50.7380442Z inductor/test_autoheuristic 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_autoheuristic_1.1_31afe46e0b5cbe9d_.log 2025-08-26T21:42:50.7381250Z 2025-08-26T21:42:50.7385261Z Running inductor/test_move_constructors_to_cuda 1/1 ... [2025-08-26 21:42:50.738153] 2025-08-26T21:42:50.7385761Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:42:50.7391843Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_move_constructors_to_cuda.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:42:50.738735] 2025-08-26T21:43:00.3982751Z 2025-08-26T21:43:00.3983773Z inductor/test_move_constructors_to_cuda 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_move_constructors_to_cuda_1.1_b0e7c50cd5e7d104_.log 2025-08-26T21:43:00.3984577Z 2025-08-26T21:43:00.3988464Z Running dynamo/test_decorators 1/1 ... [2025-08-26 21:43:00.398200] 2025-08-26T21:43:00.3988874Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:43:00.3995017Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_decorators.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:43:00.398779] 2025-08-26T21:43:04.8601536Z 2025-08-26T21:43:04.8602382Z dynamo/test_decorators 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_decorators_1.1_8e2b8cefbc002a4b_.log 2025-08-26T21:43:04.8603080Z 2025-08-26T21:43:04.8607302Z Running dynamo/test_recompiles 1/1 ... [2025-08-26 21:43:04.859114] 2025-08-26T21:43:04.8607711Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:43:04.8613476Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_recompiles.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:43:04.859114] 2025-08-26T21:43:09.3745292Z 2025-08-26T21:43:09.3746292Z dynamo/test_recompiles 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_recompiles_1.1_10b6511e2d059893_.log 2025-08-26T21:43:09.3747150Z 2025-08-26T21:43:09.3753125Z Running inductor/test_cooperative_reductions 1/1 ... [2025-08-26 21:43:09.374895] 2025-08-26T21:43:09.3753618Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:43:09.3761149Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cooperative_reductions.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:43:09.375509] 2025-08-26T21:43:19.1707632Z 2025-08-26T21:43:19.1708662Z inductor/test_cooperative_reductions 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cooperative_reductions_1.1_f16e9f83ac806691_.log 2025-08-26T21:43:19.1709455Z 2025-08-26T21:43:19.1713506Z Running inductor/test_smoke 1/1 ... [2025-08-26 21:43:19.171271] 2025-08-26T21:43:19.1713922Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:43:19.1720282Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_smoke.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:43:19.171863] 2025-08-26T21:43:28.8442087Z 2025-08-26T21:43:28.8442994Z inductor/test_smoke 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_smoke_1.1_9b63b56a374820cc_.log 2025-08-26T21:43:28.8443633Z 2025-08-26T21:43:28.8447223Z Running inductor/test_debug_trace 1/1 ... [2025-08-26 21:43:28.844112] 2025-08-26T21:43:28.8447649Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:43:28.8453618Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_debug_trace.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:43:28.844688] 2025-08-26T21:43:38.6338661Z 2025-08-26T21:43:38.6339567Z inductor/test_debug_trace 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_debug_trace_1.1_706fbc21fa603184_.log 2025-08-26T21:43:38.6340257Z 2025-08-26T21:43:38.6344326Z Running inductor/test_aot_inductor_package 1/1 ... [2025-08-26 21:43:38.622284] 2025-08-26T21:43:38.6344834Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:43:38.6350742Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_aot_inductor_package.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:43:38.622284] 2025-08-26T21:43:48.6354200Z 2025-08-26T21:43:48.6355387Z inductor/test_aot_inductor_package 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_aot_inductor_package_1.1_a66ca795e2c01de9_.log 2025-08-26T21:43:48.6356194Z 2025-08-26T21:43:48.6359966Z Running inductor/test_kernel_optimization 1/1 ... [2025-08-26 21:43:48.633381] 2025-08-26T21:43:48.6360455Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:43:48.6366359Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_kernel_optimization.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:43:48.633381] 2025-08-26T21:43:58.2722828Z 2025-08-26T21:43:58.2723813Z inductor/test_kernel_optimization 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_kernel_optimization_1.1_761b13d52e0290a3_.log 2025-08-26T21:43:58.2724569Z 2025-08-26T21:43:58.2728468Z Running dynamo/test_buffers_override 1/1 ... [2025-08-26 21:43:58.266424] 2025-08-26T21:43:58.2728911Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:43:58.2734989Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_buffers_override.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:43:58.266424] 2025-08-26T21:44:02.6613838Z 2025-08-26T21:44:02.6614806Z dynamo/test_buffers_override 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_buffers_override_1.1_0bbcacfe2fec88fc_.log 2025-08-26T21:44:02.6615530Z 2025-08-26T21:44:02.6619558Z Running inductor/test_combo_kernels 1/1 ... [2025-08-26 21:44:02.657432] 2025-08-26T21:44:02.6619976Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:44:02.6625989Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_combo_kernels.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:44:02.657432] 2025-08-26T21:44:12.6100217Z 2025-08-26T21:44:12.6101097Z inductor/test_combo_kernels 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_combo_kernels_1.1_84a4633fdc68e1b9_.log 2025-08-26T21:44:12.6101897Z 2025-08-26T21:44:12.6133614Z Running inductor/test_static_cuda_launcher 1/1 ... [2025-08-26 21:44:12.610547] 2025-08-26T21:44:12.6134074Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:44:12.6135182Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_static_cuda_launcher.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:44:12.611163] 2025-08-26T21:44:22.2495125Z 2025-08-26T21:44:22.2496163Z inductor/test_static_cuda_launcher 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_static_cuda_launcher_1.1_a79e3600189a4a4c_.log 2025-08-26T21:44:22.2500453Z 2025-08-26T21:44:22.2500694Z Running dynamo/test_ctx_manager 1/1 ... [2025-08-26 21:44:22.237953] 2025-08-26T21:44:22.2501163Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:44:22.2507239Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_ctx_manager.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:44:22.237953] 2025-08-26T21:44:31.9757806Z 2025-08-26T21:44:31.9758779Z dynamo/test_ctx_manager 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_ctx_manager_1.1_ae99e641ab7d9129_.log 2025-08-26T21:44:31.9759944Z 2025-08-26T21:44:31.9764950Z Running dynamo/test_nops 1/1 ... [2025-08-26 21:44:31.976043] 2025-08-26T21:44:31.9765402Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:44:31.9782618Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_nops.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:44:31.977795] 2025-08-26T21:44:36.4663009Z 2025-08-26T21:44:36.4664311Z dynamo/test_nops 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_nops_1.1_2c81ffb283b889db_.log 2025-08-26T21:44:36.4664947Z 2025-08-26T21:44:36.4669054Z Running inductor/test_decompose_mem_bound_mm 1/1 ... [2025-08-26 21:44:36.465912] 2025-08-26T21:44:36.4669562Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:44:36.4675276Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_decompose_mem_bound_mm.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:44:36.465912] 2025-08-26T21:44:46.2409755Z 2025-08-26T21:44:46.2410867Z inductor/test_decompose_mem_bound_mm 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_decompose_mem_bound_mm_1.1_f05e1926bbc15454_.log 2025-08-26T21:44:46.2411664Z 2025-08-26T21:44:46.2416532Z Running dynamo/test_view 1/1 ... [2025-08-26 21:44:46.241439] 2025-08-26T21:44:46.2416989Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:44:46.2424422Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_view.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:44:46.242033] 2025-08-26T21:44:50.4025131Z 2025-08-26T21:44:50.4026110Z dynamo/test_view 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_view_1.1_d2dc3e6033face0c_.log 2025-08-26T21:44:50.4026733Z 2025-08-26T21:44:50.4031082Z Running inductor/test_inplacing_pass 1/1 ... [2025-08-26 21:44:50.402767] 2025-08-26T21:44:50.4031597Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:44:50.4037731Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_inplacing_pass.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:44:50.402767] 2025-08-26T21:45:00.1010797Z 2025-08-26T21:45:00.1011770Z inductor/test_inplacing_pass 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_inplacing_pass_1.1_4a111a225800abb1_.log 2025-08-26T21:45:00.1012496Z 2025-08-26T21:45:00.1016618Z Running inductor/test_op_dtype_prop 1/1 ... [2025-08-26 21:45:00.101301] 2025-08-26T21:45:00.1017074Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:45:00.1023286Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_op_dtype_prop.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:45:00.101874] 2025-08-26T21:45:11.1647320Z 2025-08-26T21:45:11.1648344Z inductor/test_op_dtype_prop 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_op_dtype_prop_1.1_fa08a7a3333840ae_.log 2025-08-26T21:45:11.1649115Z 2025-08-26T21:45:11.1652960Z Running inductor/test_online_softmax 1/1 ... [2025-08-26 21:45:11.161381] 2025-08-26T21:45:11.1653435Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:45:11.1659366Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_online_softmax.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:45:11.161381] 2025-08-26T21:45:20.7841922Z 2025-08-26T21:45:20.7843097Z inductor/test_online_softmax 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_online_softmax_1.1_7d8f2115f0a76b6b_.log 2025-08-26T21:45:20.7843869Z 2025-08-26T21:45:20.7847746Z Running inductor/test_custom_post_grad_passes 1/1 ... [2025-08-26 21:45:20.777585] 2025-08-26T21:45:20.7848370Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:45:20.7854240Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_custom_post_grad_passes.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:45:20.777585] 2025-08-26T21:45:30.5762305Z 2025-08-26T21:45:30.5763338Z inductor/test_custom_post_grad_passes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_custom_post_grad_passes_1.1_e177552c22522bdc_.log 2025-08-26T21:45:30.5767654Z 2025-08-26T21:45:30.5768088Z Running dynamo/test_graph_region_tracker 1/1 ... [2025-08-26 21:45:30.566460] 2025-08-26T21:45:30.5768557Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:45:30.5774572Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_graph_region_tracker.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:45:30.566460] 2025-08-26T21:45:35.2118764Z 2025-08-26T21:45:35.2119798Z dynamo/test_graph_region_tracker 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_graph_region_tracker_1.1_6ecf4195357f057a_.log 2025-08-26T21:45:35.2120624Z 2025-08-26T21:45:35.2125714Z Running inductor/test_cpu_select_algorithm 1/1 ... [2025-08-26 21:45:35.212041] 2025-08-26T21:45:35.2126286Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:45:35.2135046Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cpu_select_algorithm.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:45:35.213216] 2025-08-26T21:45:45.4096014Z 2025-08-26T21:45:45.4097208Z inductor/test_cpu_select_algorithm 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cpu_select_algorithm_1.1_fbd939e93f8be6f5_.log 2025-08-26T21:45:45.4098016Z 2025-08-26T21:45:45.4101581Z Running dynamo/test_config 1/1 ... [2025-08-26 21:45:45.408560] 2025-08-26T21:45:45.4102030Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:45:45.4108083Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_config.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:45:45.408560] 2025-08-26T21:45:49.9476617Z 2025-08-26T21:45:49.9477604Z dynamo/test_config 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_config_1.1_10df846f8a1c6bed_.log 2025-08-26T21:45:49.9478273Z 2025-08-26T21:45:49.9484491Z Running dynamo/test_export_mutations 1/1 ... [2025-08-26 21:45:49.948302] 2025-08-26T21:45:49.9485007Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:45:49.9492386Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_export_mutations.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:45:49.948896] 2025-08-26T21:45:54.4336682Z 2025-08-26T21:45:54.4344188Z dynamo/test_export_mutations 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_export_mutations_1.1_1d949116f4b33f95_.log 2025-08-26T21:45:54.4344919Z 2025-08-26T21:45:54.4345142Z Running inductor/test_config 1/1 ... [2025-08-26 21:45:54.434055] 2025-08-26T21:45:54.4345723Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:45:54.4351530Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_config.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:45:54.434640] 2025-08-26T21:46:04.1370743Z 2025-08-26T21:46:04.1371674Z inductor/test_config 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_config_1.1_df41b7e869d9bae6_.log 2025-08-26T21:46:04.1372328Z 2025-08-26T21:46:04.1376355Z Running dynamo/test_compile 1/1 ... [2025-08-26 21:46:04.122857] 2025-08-26T21:46:04.1376802Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:46:04.1382698Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_compile.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:46:04.122857] 2025-08-26T21:46:08.6548193Z 2025-08-26T21:46:08.6549103Z dynamo/test_compile 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_compile_1.1_1b8222438bdf7b18_.log 2025-08-26T21:46:08.6549760Z 2025-08-26T21:46:08.6553804Z Running dynamo/test_dicts 1/1 ... [2025-08-26 21:46:08.650530] 2025-08-26T21:46:08.6554215Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:46:08.6561263Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_dicts.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:46:08.650530] 2025-08-26T21:46:13.0219179Z 2025-08-26T21:46:13.0220048Z dynamo/test_dicts 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_dicts_1.1_6537227aeae71830_.log 2025-08-26T21:46:13.0220732Z 2025-08-26T21:46:13.0226566Z Running dynamo/test_autograd_function 1/1 ... [2025-08-26 21:46:13.022201] 2025-08-26T21:46:13.0227098Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:46:13.0241693Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_autograd_function.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:46:13.023963] 2025-08-26T21:46:22.8326629Z 2025-08-26T21:46:22.8327620Z dynamo/test_autograd_function 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_autograd_function_1.1_a9158ce019c1dfc9_.log 2025-08-26T21:46:22.8328381Z 2025-08-26T21:46:22.8332605Z Running dynamo/test_after_aot 1/1 ... [2025-08-26 21:46:22.831909] 2025-08-26T21:46:22.8333072Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:46:22.8338792Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_after_aot.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:46:22.831909] 2025-08-26T21:46:27.3124310Z 2025-08-26T21:46:27.3125221Z dynamo/test_after_aot 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_after_aot_1.1_d69b728e09c27f45_.log 2025-08-26T21:46:27.3125889Z 2025-08-26T21:46:27.3129886Z Running inductor/test_layout_optim 1/1 ... [2025-08-26 21:46:27.310247] 2025-08-26T21:46:27.3130339Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:46:27.3136442Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_layout_optim.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:46:27.313372] 2025-08-26T21:46:37.1021400Z 2025-08-26T21:46:37.1022377Z inductor/test_layout_optim 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_layout_optim_1.1_8b40ebeb256868f0_.log 2025-08-26T21:46:37.1023073Z 2025-08-26T21:46:37.1027353Z Running dynamo/test_list 1/1 ... [2025-08-26 21:46:37.102607] 2025-08-26T21:46:37.1027795Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:46:37.1033909Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_list.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:46:37.103182] 2025-08-26T21:46:41.5759014Z 2025-08-26T21:46:41.5759791Z dynamo/test_list 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_list_1.1_b28b3d9243bae1f1_.log 2025-08-26T21:46:41.5760407Z 2025-08-26T21:46:41.5764704Z Running dynamo/test_profiler 1/1 ... [2025-08-26 21:46:41.574953] 2025-08-26T21:46:41.5765128Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:46:41.5771113Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_profiler.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:46:41.574953] 2025-08-26T21:46:45.9704052Z 2025-08-26T21:46:45.9704961Z dynamo/test_profiler 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_profiler_1.1_de5efda189baf8d9_.log 2025-08-26T21:46:45.9705629Z 2025-08-26T21:46:45.9710495Z Running inductor/test_minifier_isolate 1/1 ... [2025-08-26 21:46:45.970781] 2025-08-26T21:46:45.9716243Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:46:45.9717402Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_minifier_isolate.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:46:45.971363] 2025-08-26T21:46:55.6144367Z 2025-08-26T21:46:55.6145406Z inductor/test_minifier_isolate 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_minifier_isolate_1.1_2119fc59a258263d_.log 2025-08-26T21:46:55.6149939Z 2025-08-26T21:46:55.6150191Z Running inductor/test_binary_folding 1/1 ... [2025-08-26 21:46:55.612717] 2025-08-26T21:46:55.6150683Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:46:55.6156552Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_binary_folding.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:46:55.612717] 2025-08-26T21:47:05.4390219Z 2025-08-26T21:47:05.4391332Z inductor/test_binary_folding 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_binary_folding_1.1_58930eacb2cdcb50_.log 2025-08-26T21:47:05.4392064Z 2025-08-26T21:47:05.4395875Z Running dynamo/test_export 1/1 ... [2025-08-26 21:47:05.439108] 2025-08-26T21:47:05.4396335Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:47:05.4402414Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_export.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:47:05.439679] 2025-08-26T21:47:10.4569016Z 2025-08-26T21:47:10.4569958Z dynamo/test_export 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_export_1.1_e17a3ccf3ed9d36b_.log 2025-08-26T21:47:10.4570605Z 2025-08-26T21:47:10.4575996Z Running dynamo/test_optimizers 1/1 ... [2025-08-26 21:47:10.457256] 2025-08-26T21:47:10.4576626Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:47:10.4583787Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_optimizers.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:47:10.457838] 2025-08-26T21:47:14.9108424Z 2025-08-26T21:47:14.9109488Z dynamo/test_optimizers 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_optimizers_1.1_5e2f82b182d61d67_.log 2025-08-26T21:47:14.9110190Z 2025-08-26T21:47:14.9114137Z Running inductor/test_unbacked_symints 1/1 ... [2025-08-26 21:47:14.908050] 2025-08-26T21:47:14.9114604Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:47:14.9122011Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_unbacked_symints.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:47:14.911643] 2025-08-26T21:47:24.7537672Z 2025-08-26T21:47:24.7538695Z inductor/test_unbacked_symints 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_unbacked_symints_1.1_c64d13d54ecd1c91_.log 2025-08-26T21:47:24.7539483Z 2025-08-26T21:47:24.7544626Z Running inductor/test_loop_ordering 1/1 ... [2025-08-26 21:47:24.754077] 2025-08-26T21:47:24.7545169Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:47:24.7552743Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_loop_ordering.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:47:24.754663] 2025-08-26T21:47:34.7261734Z 2025-08-26T21:47:34.7263016Z inductor/test_loop_ordering 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_loop_ordering_1.1_1838514012fe2e86_.log 2025-08-26T21:47:34.7263870Z 2025-08-26T21:47:34.7267623Z Running export/test_nativert 1/1 ... [2025-08-26 21:47:34.726324] 2025-08-26T21:47:34.7268105Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:47:34.7273722Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_nativert.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:47:34.726324] 2025-08-26T21:47:44.4843191Z 2025-08-26T21:47:44.4844082Z export/test_nativert 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_nativert_1.1_f84cf9364ccd8cbf_.log 2025-08-26T21:47:44.4844781Z 2025-08-26T21:47:44.4848971Z Running inductor/test_mmdecomp 1/1 ... [2025-08-26 21:47:44.484145] 2025-08-26T21:47:44.4849427Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:47:44.4855570Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_mmdecomp.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:47:44.485289] 2025-08-26T21:47:54.3420574Z 2025-08-26T21:47:54.3421703Z inductor/test_mmdecomp 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_mmdecomp_1.1_377971ca5a45bad8_.log 2025-08-26T21:47:54.3422398Z 2025-08-26T21:47:54.3426345Z Running dynamo/test_compiler_bisector 1/1 ... [2025-08-26 21:47:54.342090] 2025-08-26T21:47:54.3426966Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:47:54.3433541Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_compiler_bisector.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:47:54.342697] 2025-08-26T21:48:04.1171314Z 2025-08-26T21:48:04.1172568Z dynamo/test_compiler_bisector 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_compiler_bisector_1.1_a3d47ae7a265ea09_.log 2025-08-26T21:48:04.1173359Z 2025-08-26T21:48:04.1176959Z Running dynamo/test_bytecode_utils 1/1 ... [2025-08-26 21:48:04.114873] 2025-08-26T21:48:04.1177439Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:48:04.1183300Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_bytecode_utils.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:48:04.114873] 2025-08-26T21:48:08.6127045Z 2025-08-26T21:48:08.6128054Z dynamo/test_bytecode_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_bytecode_utils_1.1_b8cf476a681d7aa7_.log 2025-08-26T21:48:08.6128927Z 2025-08-26T21:48:08.6133085Z Running dynamo/test_exceptions 1/1 ... [2025-08-26 21:48:08.613089] 2025-08-26T21:48:08.6133558Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:48:08.6139420Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_exceptions.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:48:08.613660] 2025-08-26T21:48:13.0475567Z 2025-08-26T21:48:13.0476773Z dynamo/test_exceptions 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_exceptions_1.1_2e15cb8436950db2_.log 2025-08-26T21:48:13.0477455Z 2025-08-26T21:48:13.0482628Z Running export/test_experimental 1/1 ... [2025-08-26 21:48:13.048067] 2025-08-26T21:48:13.0483131Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:48:13.0490442Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_experimental.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:48:13.048662] 2025-08-26T21:48:17.5240779Z 2025-08-26T21:48:17.5241913Z export/test_experimental 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_experimental_1.1_51460c210d2cba1c_.log 2025-08-26T21:48:17.5242619Z 2025-08-26T21:48:17.5246502Z Running dynamo/test_minifier 1/1 ... [2025-08-26 21:48:17.524388] 2025-08-26T21:48:17.5246932Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:48:17.5253120Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_minifier.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:48:17.524972] 2025-08-26T21:48:22.1879797Z 2025-08-26T21:48:22.1880664Z dynamo/test_minifier 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_minifier_1.1_eb335c602f94b6d6_.log 2025-08-26T21:48:22.1881325Z 2025-08-26T21:48:22.1885257Z Running dynamo/test_exc 1/1 ... [2025-08-26 21:48:22.174245] 2025-08-26T21:48:22.1885682Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:48:22.1892141Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_exc.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:48:22.174245] 2025-08-26T21:48:26.6466000Z 2025-08-26T21:48:26.6472355Z dynamo/test_exc 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_exc_1.1_cedd81c74869a408_.log 2025-08-26T21:48:26.6472973Z 2025-08-26T21:48:26.6473200Z Running dynamo/test_generator 1/1 ... [2025-08-26 21:48:26.645182] 2025-08-26T21:48:26.6473785Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:48:26.6478674Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_generator.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:48:26.645182] 2025-08-26T21:48:31.0321678Z 2025-08-26T21:48:31.0322735Z dynamo/test_generator 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_generator_1.1_a150a71e14ae50e8_.log 2025-08-26T21:48:31.0323438Z 2025-08-26T21:48:31.0327236Z Running dynamo/test_python_autograd 1/1 ... [2025-08-26 21:48:31.032127] 2025-08-26T21:48:31.0327712Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:48:31.0333639Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_python_autograd.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:48:31.032127] 2025-08-26T21:48:35.4658889Z 2025-08-26T21:48:35.4659881Z dynamo/test_python_autograd 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_python_autograd_1.1_dcc41fd298e18f41_.log 2025-08-26T21:48:35.4660643Z 2025-08-26T21:48:35.4664635Z Running test_decomp 13/17 ... [2025-08-26 21:48:35.466246] 2025-08-26T21:48:35.4665051Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:48:35.4671225Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'serial', '--shard-id=13', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:48:35.466819] 2025-08-26T21:48:43.8087190Z 2025-08-26T21:48:43.8088021Z test_decomp 13/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_13.17_990c56b6e4cfed6d_.log 2025-08-26T21:48:43.8088778Z Running 0 items in this shard: 2025-08-26T21:48:43.8088965Z 2025-08-26T21:48:43.8092988Z Running test_mkldnn_verbose 1/1 ... [2025-08-26 21:48:43.806107] 2025-08-26T21:48:43.8093434Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:48:43.8099475Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_mkldnn_verbose.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:48:43.806107] 2025-08-26T21:48:48.3133660Z 2025-08-26T21:48:48.3134571Z test_mkldnn_verbose 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_mkldnn_verbose_1.1_226909187b2064e4_.log 2025-08-26T21:48:48.3135351Z Running 0 items in this shard: 2025-08-26T21:48:48.3135540Z 2025-08-26T21:48:48.3139779Z Running test_utils_config_module 1/1 ... [2025-08-26 21:48:48.313696] 2025-08-26T21:48:48.3140264Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:48:48.3146680Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_utils_config_module.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:48:48.314268] 2025-08-26T21:48:52.7192430Z 2025-08-26T21:48:52.7193642Z test_utils_config_module 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_utils_config_module_1.1_5e01256a2fe0a339_.log 2025-08-26T21:48:52.7194462Z Running 0 items in this shard: 2025-08-26T21:48:52.7198040Z 2025-08-26T21:48:52.7198426Z Running test_ops_jit 1/2 ... [2025-08-26 21:48:52.715444] 2025-08-26T21:48:52.7198871Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:48:52.7204691Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops_jit.py', '-m', 'serial', '--shard-id=1', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:48:52.715444] 2025-08-26T21:48:58.9264160Z 2025-08-26T21:48:58.9265148Z test_ops_jit 1/2 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_jit_1.2_6b810787f1f82eed_.log 2025-08-26T21:48:58.9265946Z Running 0 items in this shard: 2025-08-26T21:48:58.9266169Z 2025-08-26T21:48:58.9270114Z Running test_ops_jit 2/2 ... [2025-08-26 21:48:58.922242] 2025-08-26T21:48:58.9270508Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:48:58.9287807Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops_jit.py', '-m', 'serial', '--shard-id=2', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:48:58.922242] 2025-08-26T21:49:05.2486199Z 2025-08-26T21:49:05.2487305Z test_ops_jit 2/2 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_jit_2.2_ec33978a4fb13dee_.log 2025-08-26T21:49:05.2488161Z Running 0 items in this shard: 2025-08-26T21:49:05.2488378Z 2025-08-26T21:49:05.2492146Z Running test_modules 1/2 ... [2025-08-26 21:49:05.244365] 2025-08-26T21:49:05.2492564Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:49:05.2498804Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_modules.py', '-m', 'serial', '--shard-id=1', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:49:05.244365] 2025-08-26T21:49:12.0811598Z 2025-08-26T21:49:12.0812678Z test_modules 1/2 was successful, full logs can be found in artifacts with path test/test-reports/test_modules_1.2_b05399f0705ab35c_.log 2025-08-26T21:49:12.0813400Z Running 0 items in this shard: 2025-08-26T21:49:12.0813591Z 2025-08-26T21:49:12.0817384Z Running torch_np/test_dtype 1/1 ... [2025-08-26 21:49:12.080912] 2025-08-26T21:49:12.0817853Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:49:12.0823772Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/test_dtype.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:49:12.080912] 2025-08-26T21:49:16.5867048Z 2025-08-26T21:49:16.5867957Z torch_np/test_dtype 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.test_dtype_1.1_2e4d70f49ff1602b_.log 2025-08-26T21:49:16.5868741Z Running 0 items in this shard: 2025-08-26T21:49:16.5868930Z 2025-08-26T21:49:16.5875305Z Running test_datapipe 1/1 ... [2025-08-26 21:49:16.587311] 2025-08-26T21:49:16.5875724Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:49:16.5883233Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_datapipe.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:49:16.587903] 2025-08-26T21:49:21.1352771Z 2025-08-26T21:49:21.1353640Z test_datapipe 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_datapipe_1.1_d179654715748cc6_.log 2025-08-26T21:49:21.1354402Z Running 0 items in this shard: 2025-08-26T21:49:21.1354595Z 2025-08-26T21:49:21.1358619Z Running test_foreach 1/1 ... [2025-08-26 21:49:21.134527] 2025-08-26T21:49:21.1359037Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:49:21.1364986Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_foreach.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:49:21.134527] 2025-08-26T21:49:33.0636888Z 2025-08-26T21:49:33.0637974Z test_foreach 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_foreach_1.1_277f380cedc531c5_.log 2025-08-26T21:49:33.0638718Z Running 0 items in this shard: 2025-08-26T21:49:33.0638910Z 2025-08-26T21:49:33.0642840Z Running test_flop_counter 1/1 ... [2025-08-26 21:49:33.063645] 2025-08-26T21:49:33.0643265Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:49:33.0649346Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_flop_counter.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:49:33.063645] 2025-08-26T21:49:37.9318727Z 2025-08-26T21:49:37.9319853Z test_flop_counter 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_flop_counter_1.1_f23aae0b573de7d9_.log 2025-08-26T21:49:37.9320687Z Running 0 items in this shard: 2025-08-26T21:49:37.9338726Z 2025-08-26T21:49:37.9338960Z Running test_expanded_weights 1/1 ... [2025-08-26 21:49:37.933785] 2025-08-26T21:49:37.9339580Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:49:37.9346914Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_expanded_weights.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:49:37.934376] 2025-08-26T21:49:44.1127269Z 2025-08-26T21:49:44.1128203Z test_expanded_weights 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_expanded_weights_1.1_982607d7dcff8fcb_.log 2025-08-26T21:49:44.1128971Z Running 0 items in this shard: 2025-08-26T21:49:44.1129189Z 2025-08-26T21:49:44.1133283Z Running test_file_check 1/1 ... [2025-08-26 21:49:44.113030] 2025-08-26T21:49:44.1133678Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:49:44.1139903Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_file_check.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:49:44.113614] 2025-08-26T21:49:48.7303517Z 2025-08-26T21:49:48.7304391Z test_file_check 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_file_check_1.1_27f7bb6444707481_.log 2025-08-26T21:49:48.7305335Z Running 0 items in this shard: 2025-08-26T21:49:48.7305527Z 2025-08-26T21:49:48.7309688Z Running test_functionalization 1/1 ... [2025-08-26 21:49:48.730763] 2025-08-26T21:49:48.7310126Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:49:48.7316362Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_functionalization.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:49:48.731334] 2025-08-26T21:49:53.3034414Z 2025-08-26T21:49:53.3035459Z test_functionalization 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_functionalization_1.1_8d31d7b01490b4fa_.log 2025-08-26T21:49:53.3036239Z Running 0 items in this shard: 2025-08-26T21:49:53.3036453Z 2025-08-26T21:49:53.3040508Z Running test_testing 1/1 ... [2025-08-26 21:49:53.303749] 2025-08-26T21:49:53.3040932Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:49:53.3047135Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_testing.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:49:53.304320] 2025-08-26T21:49:59.6150717Z 2025-08-26T21:49:59.6151681Z test_testing 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_testing_1.1_a421a44db15748a2_.log 2025-08-26T21:49:59.6152515Z Running 0 items in this shard: 2025-08-26T21:49:59.6152731Z 2025-08-26T21:49:59.6157544Z Running test_jit 1/1 ... [2025-08-26 21:49:59.615666] 2025-08-26T21:49:59.6157997Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:49:59.6164374Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_jit.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:49:59.616245] 2025-08-26T21:50:07.1930731Z 2025-08-26T21:50:07.1933528Z test_jit 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_jit_1.1_368289fcdcc12b5a_.log 2025-08-26T21:50:07.1934361Z Running 0 items in this shard: 2025-08-26T21:50:07.1934580Z 2025-08-26T21:50:07.1938128Z Running backends/xeon/test_launch 1/1 ... [2025-08-26 21:50:07.193557] 2025-08-26T21:50:07.1938643Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:50:07.1944748Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'backends/xeon/test_launch.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:50:07.194133] 2025-08-26T21:50:11.6871833Z 2025-08-26T21:50:11.6874935Z backends/xeon/test_launch 1/1 was successful, full logs can be found in artifacts with path test/test-reports/backends.xeon.test_launch_1.1_fad5dd615954aea9_.log 2025-08-26T21:50:11.6875795Z Running 0 items in this shard: 2025-08-26T21:50:11.6875986Z 2025-08-26T21:50:11.6877907Z Running functorch/test_ops 1/8 ... [2025-08-26 21:50:11.687467] 2025-08-26T21:50:11.6878354Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:50:11.6884396Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_ops.py', '-m', 'serial', '--shard-id=1', '--num-shards=8', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:50:11.688041] 2025-08-26T21:50:20.5830772Z 2025-08-26T21:50:20.5831723Z functorch/test_ops 1/8 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ops_1.8_7f13ddc38dab7bef_.log 2025-08-26T21:50:20.5832501Z Running 0 items in this shard: 2025-08-26T21:50:20.5836523Z 2025-08-26T21:50:20.5836918Z Running functorch/test_ops 6/8 ... [2025-08-26 21:50:20.583388] 2025-08-26T21:50:20.5837333Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:50:20.5843659Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_ops.py', '-m', 'serial', '--shard-id=6', '--num-shards=8', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:50:20.583960] 2025-08-26T21:50:29.4252849Z 2025-08-26T21:50:29.4254109Z functorch/test_ops 6/8 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ops_6.8_bb52aa2e4cbb860a_.log 2025-08-26T21:50:29.4254855Z Running 0 items in this shard: 2025-08-26T21:50:29.4255088Z 2025-08-26T21:50:29.4259057Z Running functorch/test_ops 7/8 ... [2025-08-26 21:50:29.417410] 2025-08-26T21:50:29.4259541Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:50:29.4265445Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_ops.py', '-m', 'serial', '--shard-id=7', '--num-shards=8', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:50:29.417410] 2025-08-26T21:50:38.2810762Z 2025-08-26T21:50:38.2811659Z functorch/test_ops 7/8 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ops_7.8_9eefc2a66e8d34cc_.log 2025-08-26T21:50:38.2812448Z Running 0 items in this shard: 2025-08-26T21:50:38.2812639Z 2025-08-26T21:50:38.2817104Z Running test_ops 2/9 ... [2025-08-26 21:50:38.272833] 2025-08-26T21:50:38.2817534Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:50:38.2823315Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops.py', '-m', 'serial', '--shard-id=2', '--num-shards=9', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:50:38.272833] 2025-08-26T21:50:57.3938686Z 2025-08-26T21:50:57.3939655Z test_ops 2/9 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_2.9_81def6f2aab810b0_.log 2025-08-26T21:50:57.3940352Z Running 0 items in this shard: 2025-08-26T21:50:57.3940544Z 2025-08-26T21:50:57.3944744Z Running test_ops 7/9 ... [2025-08-26 21:50:57.394094] 2025-08-26T21:50:57.3945117Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:50:57.3951145Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops.py', '-m', 'serial', '--shard-id=7', '--num-shards=9', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:50:57.394094] 2025-08-26T21:51:16.5151004Z 2025-08-26T21:51:16.5152062Z test_ops 7/9 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_7.9_e271088403296f90_.log 2025-08-26T21:51:16.5152744Z Running 0 items in this shard: 2025-08-26T21:51:16.5152932Z 2025-08-26T21:51:16.5156831Z Running test_ops 8/9 ... [2025-08-26 21:51:16.509474] 2025-08-26T21:51:16.5157222Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:51:16.5163286Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops.py', '-m', 'serial', '--shard-id=8', '--num-shards=9', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:51:16.509474] 2025-08-26T21:51:35.4016787Z 2025-08-26T21:51:35.4017579Z test_ops 8/9 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_8.9_844669af83017d75_.log 2025-08-26T21:51:35.4018231Z Running 0 items in this shard: 2025-08-26T21:51:35.4018460Z 2025-08-26T21:51:35.4022687Z Running xpu/test_gemm 1/1 ... [2025-08-26 21:51:35.402067] 2025-08-26T21:51:35.4023101Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:51:35.4029302Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'xpu/test_gemm.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:51:35.402639] 2025-08-26T21:51:40.4258829Z 2025-08-26T21:51:40.4259764Z xpu/test_gemm 1/1 was successful, full logs can be found in artifacts with path test/test-reports/xpu.test_gemm_1.1_0bd327fb3e5f9545_.log 2025-08-26T21:51:40.4260536Z Running 0 items in this shard: 2025-08-26T21:51:40.4260724Z 2025-08-26T21:51:40.4264821Z Running test_cuda_multigpu 1/1 ... [2025-08-26 21:51:40.425984] 2025-08-26T21:51:40.4265251Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:51:40.4271421Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_cuda_multigpu.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:51:40.425984] 2025-08-26T21:51:45.2879625Z 2025-08-26T21:51:45.2880524Z test_cuda_multigpu 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_cuda_multigpu_1.1_ff1eba6dd5b99812_.log 2025-08-26T21:51:45.2881312Z Running 0 items in this shard: 2025-08-26T21:51:45.2881504Z 2025-08-26T21:51:45.2885517Z Running test_meta 2/4 ... [2025-08-26 21:51:45.287215] 2025-08-26T21:51:45.2885909Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:51:45.2891874Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_meta.py', '-m', 'serial', '--shard-id=2', '--num-shards=4', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:51:45.287215] 2025-08-26T21:52:00.8138320Z 2025-08-26T21:52:00.8139471Z test_meta 2/4 was successful, full logs can be found in artifacts with path test/test-reports/test_meta_2.4_8403e24d9fa7d6b6_.log 2025-08-26T21:52:00.8140192Z Running 0 items in this shard: 2025-08-26T21:52:00.8140379Z 2025-08-26T21:52:00.8145986Z Running test_content_store 1/1 ... [2025-08-26 21:52:00.814142] 2025-08-26T21:52:00.8167241Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:52:00.8168400Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_content_store.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:52:00.814724] 2025-08-26T21:52:05.4954012Z 2025-08-26T21:52:05.4954920Z test_content_store 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_content_store_1.1_d2ca86101b4e3a76_.log 2025-08-26T21:52:05.4955656Z Running 0 items in this shard: 2025-08-26T21:52:05.4956013Z 2025-08-26T21:52:05.4959907Z Running test_stateless 1/1 ... [2025-08-26 21:52:05.489196] 2025-08-26T21:52:05.4960302Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:52:05.4966163Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_stateless.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:52:05.489196] 2025-08-26T21:52:10.2973936Z 2025-08-26T21:52:10.2974796Z test_stateless 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_stateless_1.1_a43195f352d06a93_.log 2025-08-26T21:52:10.2975556Z Running 0 items in this shard: 2025-08-26T21:52:10.2975752Z 2025-08-26T21:52:10.2979891Z Running test_numpy_interop 1/1 ... [2025-08-26 21:52:10.296178] 2025-08-26T21:52:10.2980305Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:52:10.2986436Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_numpy_interop.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:52:10.296178] 2025-08-26T21:52:15.1848877Z 2025-08-26T21:52:15.1849952Z test_numpy_interop 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_numpy_interop_1.1_1afd6b90399d4d3a_.log 2025-08-26T21:52:15.1850727Z Running 0 items in this shard: 2025-08-26T21:52:15.1850916Z 2025-08-26T21:52:15.1854825Z Running distributions/test_constraints 1/1 ... [2025-08-26 21:52:15.184105] 2025-08-26T21:52:15.1855299Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:52:15.1861128Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'distributions/test_constraints.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:52:15.184105] 2025-08-26T21:52:19.9138090Z 2025-08-26T21:52:19.9139092Z distributions/test_constraints 1/1 was successful, full logs can be found in artifacts with path test/test-reports/distributions.test_constraints_1.1_a9d5893e38bd7e22_.log 2025-08-26T21:52:19.9139994Z Running 0 items in this shard: 2025-08-26T21:52:19.9140198Z 2025-08-26T21:52:19.9144247Z Running torch_np/test_ufuncs_basic 1/1 ... [2025-08-26 21:52:19.910851] 2025-08-26T21:52:19.9144687Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:52:19.9150690Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/test_ufuncs_basic.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:52:19.910851] 2025-08-26T21:52:24.3212829Z 2025-08-26T21:52:24.3213857Z torch_np/test_ufuncs_basic 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.test_ufuncs_basic_1.1_c6c84117392e3d30_.log 2025-08-26T21:52:24.3214862Z Running 0 items in this shard: 2025-08-26T21:52:24.3215053Z 2025-08-26T21:52:24.3218785Z Running test_out_dtype_op 1/1 ... [2025-08-26 21:52:24.321336] 2025-08-26T21:52:24.3219198Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:52:24.3225293Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_out_dtype_op.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:52:24.321336] 2025-08-26T21:52:29.4429886Z 2025-08-26T21:52:29.4430781Z test_out_dtype_op 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_out_dtype_op_1.1_922ee858d9872bfa_.log 2025-08-26T21:52:29.4431576Z Running 0 items in this shard: 2025-08-26T21:52:29.4431768Z 2025-08-26T21:52:29.4435838Z Running test_ops_gradients 1/2 ... [2025-08-26 21:52:29.443082] 2025-08-26T21:52:29.4436489Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:52:29.4442428Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops_gradients.py', '-m', 'serial', '--shard-id=1', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:52:29.443655] 2025-08-26T21:52:36.8190427Z 2025-08-26T21:52:36.8196720Z test_ops_gradients 1/2 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_gradients_1.2_a8aad5bd9a1a106b_.log 2025-08-26T21:52:36.8197449Z Running 0 items in this shard: 2025-08-26T21:52:36.8197662Z 2025-08-26T21:52:36.8197847Z Running test_ops_gradients 2/2 ... [2025-08-26 21:52:36.818764] 2025-08-26T21:52:36.8198281Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:52:36.8202479Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops_gradients.py', '-m', 'serial', '--shard-id=2', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:52:36.818764] 2025-08-26T21:52:44.2227937Z 2025-08-26T21:52:44.2228817Z test_ops_gradients 2/2 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_gradients_2.2_0666c7ac0135d74e_.log 2025-08-26T21:52:44.2229754Z Running 0 items in this shard: 2025-08-26T21:52:44.2229945Z 2025-08-26T21:52:44.2233939Z Running test_ops_fwd_gradients 1/2 ... [2025-08-26 21:52:44.218680] 2025-08-26T21:52:44.2234395Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:52:44.2240188Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops_fwd_gradients.py', '-m', 'serial', '--shard-id=1', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:52:44.218680] 2025-08-26T21:52:50.8924691Z 2025-08-26T21:52:50.8925800Z test_ops_fwd_gradients 1/2 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_fwd_gradients_1.2_a040466e66d681cb_.log 2025-08-26T21:52:50.8926610Z Running 0 items in this shard: 2025-08-26T21:52:50.8926798Z 2025-08-26T21:52:50.8930583Z Running test_cuda_expandable_segments 1/1 ... [2025-08-26 21:52:50.889449] 2025-08-26T21:52:50.8931087Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:52:50.8937138Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_cuda_expandable_segments.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:52:50.889449] 2025-08-26T21:52:56.6970377Z 2025-08-26T21:52:56.6972342Z test_cuda_expandable_segments 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_cuda_expandable_segments_1.1_57356ddc485e6b74_.log 2025-08-26T21:52:56.6973078Z 2025-08-26T21:52:56.6976244Z Running optim/test_swa_utils 1/1 ... [2025-08-26 21:52:56.697168] 2025-08-26T21:52:56.6976677Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:52:56.6983666Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'optim/test_swa_utils.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:52:56.697745] 2025-08-26T21:53:00.9997929Z 2025-08-26T21:53:00.9999042Z optim/test_swa_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/optim.test_swa_utils_1.1_c31b220e67a35de5_.log 2025-08-26T21:53:00.9999697Z 2025-08-26T21:53:01.0005684Z Running dynamo/test_nested_graph_breaks 1/1 ... [2025-08-26 21:53:01.000293] 2025-08-26T21:53:01.0006148Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:53:01.0010642Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_nested_graph_breaks.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:53:01.000486] 2025-08-26T21:53:05.4470327Z 2025-08-26T21:53:05.4471463Z dynamo/test_nested_graph_breaks 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_nested_graph_breaks_1.1_28b11e9d6d1bc15a_.log 2025-08-26T21:53:05.4472246Z 2025-08-26T21:53:10.3964217Z Running inductor/test_aot_inductor 1/1 ... [2025-08-26 21:53:10.393614] 2025-08-26T21:53:10.3964699Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:53:10.3966498Z Running inductor/test_extension_backend 1/1 ... [2025-08-26 21:53:10.393614] 2025-08-26T21:53:10.3966989Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:53:10.3968325Z Running inductor/test_kernel_benchmark 1/1 ... [2025-08-26 21:53:10.393614] 2025-08-26T21:53:10.3968802Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:53:10.3971139Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_aot_inductor.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:53:10.393614] 2025-08-26T21:53:10.3986595Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_extension_backend.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:53:10.393614] 2025-08-26T21:53:10.3989773Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_kernel_benchmark.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:53:10.393614] 2025-08-26T21:53:20.6444020Z 2025-08-26T21:53:20.6444965Z inductor/test_aot_inductor 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_aot_inductor_1.1_e2d31bf1ec2079cc_.log 2025-08-26T21:53:20.6445671Z 2025-08-26T21:53:22.6414565Z 2025-08-26T21:53:22.6415599Z inductor/test_kernel_benchmark 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_kernel_benchmark_1.1_f4b4d9db6439c62d_.log 2025-08-26T21:53:22.6416388Z 2025-08-26T21:53:24.9853447Z 2025-08-26T21:53:24.9854492Z inductor/test_extension_backend 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_extension_backend_1.1_b5c1c965a5bdabdc_.log 2025-08-26T21:53:24.9855254Z 2025-08-26T21:53:25.7762098Z Running inductor/test_pattern_matcher 1/1 ... [2025-08-26 21:53:25.769172] 2025-08-26T21:53:25.7762595Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:53:25.7769131Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_pattern_matcher.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:53:25.769172] 2025-08-26T21:53:27.7953234Z Running inductor/test_codecache 1/1 ... [2025-08-26 21:53:27.782386] 2025-08-26T21:53:27.7953900Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:53:27.7960046Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_codecache.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:53:27.782386] 2025-08-26T21:53:30.1813286Z Running inductor/test_cudagraph_trees 1/1 ... [2025-08-26 21:53:30.180637] 2025-08-26T21:53:30.1813855Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:53:30.1822734Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cudagraph_trees.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:53:30.182015] 2025-08-26T21:53:36.1247238Z 2025-08-26T21:53:36.1248265Z inductor/test_pattern_matcher 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_pattern_matcher_1.1_dd98a3f39f6a54d4_.log 2025-08-26T21:53:36.1249013Z 2025-08-26T21:53:38.2915096Z 2025-08-26T21:53:38.2916196Z inductor/test_codecache 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_codecache_1.1_8874323b2a2c8d6e_.log 2025-08-26T21:53:38.2916896Z 2025-08-26T21:53:40.4628935Z 2025-08-26T21:53:40.4629948Z inductor/test_cudagraph_trees 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cudagraph_trees_1.1_a62671448a8936ad_.log 2025-08-26T21:53:40.4630684Z 2025-08-26T21:53:41.3101876Z Running inductor/test_minifier 1/1 ... [2025-08-26 21:53:41.309403] 2025-08-26T21:53:41.3102406Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:53:41.3109220Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_minifier.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:53:41.310512] 2025-08-26T21:53:43.5300922Z Running inductor/test_padding 1/1 ... [2025-08-26 21:53:43.527203] 2025-08-26T21:53:43.5301420Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:53:43.5307962Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_padding.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:53:43.527203] 2025-08-26T21:53:45.7626961Z Running dynamo/test_modes 1/1 ... [2025-08-26 21:53:45.762212] 2025-08-26T21:53:45.7627546Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:53:45.7633677Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_modes.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:53:45.762791] 2025-08-26T21:53:51.6905344Z 2025-08-26T21:53:51.6906344Z inductor/test_minifier 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_minifier_1.1_ebd67496b32359af_.log 2025-08-26T21:53:51.6907018Z 2025-08-26T21:53:53.8637752Z 2025-08-26T21:53:53.8638919Z inductor/test_padding 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_padding_1.1_c25867afbe56e98e_.log 2025-08-26T21:53:53.8639637Z 2025-08-26T21:53:55.8834167Z 2025-08-26T21:53:55.8835200Z dynamo/test_modes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_modes_1.1_2afe4637064614b2_.log 2025-08-26T21:53:55.8835888Z 2025-08-26T21:53:56.8433592Z Running dynamo/test_logging 1/1 ... [2025-08-26 21:53:56.842842] 2025-08-26T21:53:56.8434113Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:53:56.8443372Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_logging.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:53:56.844031] 2025-08-26T21:53:59.2917817Z Running inductor/test_torchbind 1/1 ... [2025-08-26 21:53:59.283691] 2025-08-26T21:53:59.2918314Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:53:59.2924384Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_torchbind.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:53:59.283691] 2025-08-26T21:54:01.2491562Z Running dynamo/test_trace_rules 1/1 ... [2025-08-26 21:54:01.245986] 2025-08-26T21:54:01.2492033Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:54:01.2497995Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_trace_rules.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:54:01.245986] 2025-08-26T21:54:05.6961871Z 2025-08-26T21:54:05.6962870Z dynamo/test_trace_rules 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_trace_rules_1.1_9d97a7eff065197f_.log 2025-08-26T21:54:05.6963549Z 2025-08-26T21:54:07.0420020Z 2025-08-26T21:54:07.0420930Z dynamo/test_logging 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_logging_1.1_bf6f4cd7e9481590_.log 2025-08-26T21:54:07.0421620Z 2025-08-26T21:54:09.6790633Z 2025-08-26T21:54:09.6792076Z inductor/test_torchbind 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_torchbind_1.1_3399d5e9c4221cc5_.log 2025-08-26T21:54:09.6792882Z 2025-08-26T21:54:10.9732475Z Running inductor/test_flex_decoding 1/1 ... [2025-08-26 21:54:10.972921] 2025-08-26T21:54:10.9733001Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:54:10.9739408Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_flex_decoding.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:54:10.973514] 2025-08-26T21:54:12.2253963Z Running inductor/test_provenance_tracing 1/1 ... [2025-08-26 21:54:12.224895] 2025-08-26T21:54:12.2254514Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:54:12.2263244Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_provenance_tracing.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:54:12.226084] 2025-08-26T21:54:14.8763601Z Running inductor/test_external_callables 1/1 ... [2025-08-26 21:54:14.873704] 2025-08-26T21:54:14.8764139Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:54:14.8771810Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_external_callables.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:54:14.876799] 2025-08-26T21:54:15.7674336Z 2025-08-26T21:54:15.7675296Z inductor/test_flex_decoding 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_flex_decoding_1.1_a77c50cbf77cd8dd_.log 2025-08-26T21:54:15.7676042Z 2025-08-26T21:54:19.6885022Z 2025-08-26T21:54:19.6886044Z inductor/test_external_callables 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_external_callables_1.1_28ea79305ed50062_.log 2025-08-26T21:54:19.6886852Z 2025-08-26T21:54:21.0246347Z Running inductor/test_halide 1/1 ... [2025-08-26 21:54:21.024423] 2025-08-26T21:54:21.0246852Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:54:21.0253666Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_halide.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:54:21.025197] 2025-08-26T21:54:22.4875974Z 2025-08-26T21:54:22.4876966Z inductor/test_provenance_tracing 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_provenance_tracing_1.1_5d04e872f83b195c_.log 2025-08-26T21:54:22.4878359Z 2025-08-26T21:54:24.8635569Z Running inductor/test_cpp_wrapper_hipify 1/1 ... [2025-08-26 21:54:24.863400] 2025-08-26T21:54:24.8641640Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:54:24.8642805Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cpp_wrapper_hipify.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:54:24.863974] 2025-08-26T21:54:27.7493600Z Running export/test_retraceability 1/1 ... [2025-08-26 21:54:27.749135] 2025-08-26T21:54:27.7494069Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:54:27.7502197Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_retraceability.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:54:27.749764] 2025-08-26T21:54:29.2214563Z 2025-08-26T21:54:29.2215760Z inductor/test_cpp_wrapper_hipify 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cpp_wrapper_hipify_1.1_debffdfb85badca3_.log 2025-08-26T21:54:29.2216645Z 2025-08-26T21:54:31.2424285Z 2025-08-26T21:54:31.2425180Z inductor/test_halide 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_halide_1.1_79ecfc2134618679_.log 2025-08-26T21:54:31.2425821Z 2025-08-26T21:54:34.4369685Z Running inductor/test_indexing 1/1 ... [2025-08-26 21:54:34.436637] 2025-08-26T21:54:34.4370115Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:54:34.4378352Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_indexing.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:54:34.437230] 2025-08-26T21:54:36.5729513Z Running inductor/test_triton_cpu_backend 1/1 ... [2025-08-26 21:54:36.569134] 2025-08-26T21:54:36.5729990Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:54:36.5735965Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_triton_cpu_backend.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:54:36.569134] 2025-08-26T21:54:37.8035404Z 2025-08-26T21:54:37.8036366Z export/test_retraceability 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_retraceability_1.1_d6226db37632c928_.log 2025-08-26T21:54:37.8037145Z 2025-08-26T21:54:42.9745184Z Running inductor/test_ck_backend 1/1 ... [2025-08-26 21:54:42.973938] 2025-08-26T21:54:42.9745631Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:54:42.9751875Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_ck_backend.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:54:42.973938] 2025-08-26T21:54:44.8866129Z 2025-08-26T21:54:44.8867201Z inductor/test_indexing 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_indexing_1.1_5e9255555eba28b4_.log 2025-08-26T21:54:44.8867859Z 2025-08-26T21:54:47.0487724Z 2025-08-26T21:54:47.0488714Z inductor/test_triton_cpu_backend 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_triton_cpu_backend_1.1_7fcfbb61aa4948d8_.log 2025-08-26T21:54:47.0489548Z 2025-08-26T21:54:50.1255144Z Running inductor/test_op_completeness 1/1 ... [2025-08-26 21:54:50.125094] 2025-08-26T21:54:50.1255626Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:54:50.1262617Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_op_completeness.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:54:50.125671] 2025-08-26T21:54:52.2617561Z Running inductor/test_autoheuristic 1/1 ... [2025-08-26 21:54:52.261079] 2025-08-26T21:54:52.2618037Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:54:52.2624470Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_autoheuristic.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:54:52.261079] 2025-08-26T21:54:53.2919144Z 2025-08-26T21:54:53.2920796Z inductor/test_ck_backend 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_ck_backend_1.1_cb40f67f029aa1c9_.log 2025-08-26T21:54:53.2921512Z 2025-08-26T21:54:55.1056561Z 2025-08-26T21:54:55.1057504Z inductor/test_op_completeness 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_op_completeness_1.1_b3271182b7f4e711_.log 2025-08-26T21:54:55.1058234Z 2025-08-26T21:54:58.5331010Z Running inductor/test_move_constructors_to_cuda 1/1 ... [2025-08-26 21:54:58.532861] 2025-08-26T21:54:58.5331698Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:54:58.5337705Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_move_constructors_to_cuda.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:54:58.533438] 2025-08-26T21:55:00.3855755Z Running dynamo/test_decorators 1/1 ... [2025-08-26 21:55:00.381651] 2025-08-26T21:55:00.3856213Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:55:00.3862563Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_decorators.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:55:00.381651] 2025-08-26T21:55:02.6176933Z 2025-08-26T21:55:02.6177936Z inductor/test_autoheuristic 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_autoheuristic_1.1_89430443038866a7_.log 2025-08-26T21:55:02.6178645Z 2025-08-26T21:55:05.0690692Z 2025-08-26T21:55:05.0692123Z dynamo/test_decorators 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_decorators_1.1_0228ad83b6091379_.log 2025-08-26T21:55:05.0692812Z 2025-08-26T21:55:07.8515929Z Running dynamo/test_recompiles 1/1 ... [2025-08-26 21:55:07.851169] 2025-08-26T21:55:07.8516360Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:55:07.8522982Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_recompiles.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:55:07.851816] 2025-08-26T21:55:08.8256724Z 2025-08-26T21:55:08.8257932Z inductor/test_move_constructors_to_cuda 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_move_constructors_to_cuda_1.1_f8f1d996f2137bab_.log 2025-08-26T21:55:08.8258729Z 2025-08-26T21:55:10.3477975Z Running inductor/test_cooperative_reductions 1/1 ... [2025-08-26 21:55:10.347389] 2025-08-26T21:55:10.3478490Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:55:10.3484648Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cooperative_reductions.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:55:10.347980] 2025-08-26T21:55:12.4657784Z 2025-08-26T21:55:12.4658662Z dynamo/test_recompiles 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_recompiles_1.1_a9ec812a240c6069_.log 2025-08-26T21:55:12.4659371Z 2025-08-26T21:55:14.1642480Z Running inductor/test_smoke 1/1 ... [2025-08-26 21:55:14.163737] 2025-08-26T21:55:14.1643030Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:55:14.1660273Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_smoke.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:55:14.165456] 2025-08-26T21:55:17.7675010Z Running inductor/test_debug_trace 1/1 ... [2025-08-26 21:55:17.767046] 2025-08-26T21:55:17.7675521Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:55:17.7681392Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_debug_trace.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:55:17.767046] 2025-08-26T21:55:20.5012987Z 2025-08-26T21:55:20.5014259Z inductor/test_cooperative_reductions 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cooperative_reductions_1.1_50d5d4de3143ef45_.log 2025-08-26T21:55:20.5015201Z 2025-08-26T21:55:24.4277383Z 2025-08-26T21:55:24.4278351Z inductor/test_smoke 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_smoke_1.1_ea63600d820ccb3e_.log 2025-08-26T21:55:24.4279010Z 2025-08-26T21:55:25.9275512Z Running inductor/test_aot_inductor_package 1/1 ... [2025-08-26 21:55:25.927165] 2025-08-26T21:55:25.9276036Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:55:25.9282118Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_aot_inductor_package.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:55:25.927165] 2025-08-26T21:55:28.2561211Z 2025-08-26T21:55:28.2562440Z inductor/test_debug_trace 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_debug_trace_1.1_c158d1d5dd423950_.log 2025-08-26T21:55:28.2563301Z 2025-08-26T21:55:29.6315704Z Running inductor/test_kernel_optimization 1/1 ... [2025-08-26 21:55:29.630900] 2025-08-26T21:55:29.6316248Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:55:29.6322494Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_kernel_optimization.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:55:29.632092] 2025-08-26T21:55:33.5020180Z Running dynamo/test_buffers_override 1/1 ... [2025-08-26 21:55:33.501461] 2025-08-26T21:55:33.5020710Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:55:33.5026620Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_buffers_override.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:55:33.501461] 2025-08-26T21:55:36.3531534Z 2025-08-26T21:55:36.3532560Z inductor/test_aot_inductor_package 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_aot_inductor_package_1.1_4d8f4202039c7792_.log 2025-08-26T21:55:36.3533359Z 2025-08-26T21:55:38.0666513Z 2025-08-26T21:55:38.0667713Z dynamo/test_buffers_override 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_buffers_override_1.1_4814e71ef4754a7b_.log 2025-08-26T21:55:38.0668644Z 2025-08-26T21:55:39.9570943Z 2025-08-26T21:55:39.9571937Z inductor/test_kernel_optimization 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_kernel_optimization_1.1_5b6cdbcb12407772_.log 2025-08-26T21:55:39.9572704Z 2025-08-26T21:55:41.6852380Z Running inductor/test_combo_kernels 1/1 ... [2025-08-26 21:55:41.677836] 2025-08-26T21:55:41.6852895Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:55:41.6858926Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_combo_kernels.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:55:41.677836] 2025-08-26T21:55:43.2064715Z Running inductor/test_static_cuda_launcher 1/1 ... [2025-08-26 21:55:43.199028] 2025-08-26T21:55:43.2065229Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:55:43.2071182Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_static_cuda_launcher.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:55:43.199028] 2025-08-26T21:55:45.3811707Z Running dynamo/test_ctx_manager 1/1 ... [2025-08-26 21:55:45.380490] 2025-08-26T21:55:45.3812181Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:55:45.3818448Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_ctx_manager.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:55:45.381637] 2025-08-26T21:55:51.9059721Z 2025-08-26T21:55:51.9061713Z inductor/test_combo_kernels 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_combo_kernels_1.1_ee85340dd0fd03f2_.log 2025-08-26T21:55:51.9062498Z 2025-08-26T21:55:54.0753860Z 2025-08-26T21:55:54.0755124Z inductor/test_static_cuda_launcher 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_static_cuda_launcher_1.1_7afd8b37af948b91_.log 2025-08-26T21:55:54.0755921Z 2025-08-26T21:55:56.1192057Z 2025-08-26T21:55:56.1192996Z dynamo/test_ctx_manager 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_ctx_manager_1.1_280ac8475e1acf4b_.log 2025-08-26T21:55:57.0840105Z 2025-08-26T21:55:57.0840656Z Running dynamo/test_nops 1/1 ... [2025-08-26 21:55:57.076058] 2025-08-26T21:55:57.0841132Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:55:57.0847273Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_nops.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:55:57.076058] 2025-08-26T21:55:59.3890885Z Running inductor/test_decompose_mem_bound_mm 1/1 ... [2025-08-26 21:55:59.386510] 2025-08-26T21:55:59.3891454Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:55:59.3897414Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_decompose_mem_bound_mm.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:55:59.386510] 2025-08-26T21:56:01.5558929Z Running dynamo/test_view 1/1 ... [2025-08-26 21:56:01.554239] 2025-08-26T21:56:01.5559382Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:56:01.5565961Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_view.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:56:01.554239] 2025-08-26T21:56:01.7575198Z 2025-08-26T21:56:01.7576399Z dynamo/test_nops 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_nops_1.1_a38055513b59955c_.log 2025-08-26T21:56:01.7577015Z 2025-08-26T21:56:05.9909142Z 2025-08-26T21:56:05.9910087Z dynamo/test_view 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_view_1.1_0a1731ce1c8f586f_.log 2025-08-26T21:56:05.9910716Z 2025-08-26T21:56:07.0833371Z Running inductor/test_inplacing_pass 1/1 ... [2025-08-26 21:56:07.083196] 2025-08-26T21:56:07.0833899Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:56:07.0840106Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_inplacing_pass.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:56:07.083196] 2025-08-26T21:56:09.9121557Z 2025-08-26T21:56:09.9122804Z inductor/test_decompose_mem_bound_mm 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_decompose_mem_bound_mm_1.1_48015012c80b838a_.log 2025-08-26T21:56:09.9123582Z 2025-08-26T21:56:11.4194633Z Running inductor/test_op_dtype_prop 1/1 ... [2025-08-26 21:56:11.419252] 2025-08-26T21:56:11.4195343Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:56:11.4201413Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_op_dtype_prop.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:56:11.419825] 2025-08-26T21:56:15.1193962Z Running inductor/test_online_softmax 1/1 ... [2025-08-26 21:56:15.118883] 2025-08-26T21:56:15.1194528Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:56:15.1200866Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_online_softmax.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:56:15.119454] 2025-08-26T21:56:17.5961659Z 2025-08-26T21:56:17.5962735Z inductor/test_inplacing_pass 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_inplacing_pass_1.1_d27b70e98e3e4006_.log 2025-08-26T21:56:17.5963472Z 2025-08-26T21:56:22.8310622Z Running inductor/test_custom_post_grad_passes 1/1 ... [2025-08-26 21:56:22.830671] 2025-08-26T21:56:22.8311144Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:56:22.8317277Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_custom_post_grad_passes.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:56:22.831275] 2025-08-26T21:56:22.9211016Z 2025-08-26T21:56:22.9212556Z inductor/test_op_dtype_prop 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_op_dtype_prop_1.1_9f88c90b44427e6f_.log 2025-08-26T21:56:22.9213374Z 2025-08-26T21:56:25.4523485Z 2025-08-26T21:56:25.4524658Z inductor/test_online_softmax 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_online_softmax_1.1_421a7d4b403881b1_.log 2025-08-26T21:56:25.4525498Z 2025-08-26T21:56:28.1534697Z Running dynamo/test_graph_region_tracker 1/1 ... [2025-08-26 21:56:28.152868] 2025-08-26T21:56:28.1535173Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:56:28.1541442Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_graph_region_tracker.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:56:28.153969] 2025-08-26T21:56:30.6009517Z Running inductor/test_cpu_select_algorithm 1/1 ... [2025-08-26 21:56:30.591384] 2025-08-26T21:56:30.6010017Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:56:30.6016166Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cpu_select_algorithm.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:56:30.591384] 2025-08-26T21:56:32.8271381Z 2025-08-26T21:56:32.8272627Z dynamo/test_graph_region_tracker 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_graph_region_tracker_1.1_a92e2af23d96bda2_.log 2025-08-26T21:56:32.8273396Z 2025-08-26T21:56:33.1674188Z 2025-08-26T21:56:33.1675231Z inductor/test_custom_post_grad_passes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_custom_post_grad_passes_1.1_6b84d30e7d25300a_.log 2025-08-26T21:56:33.1676029Z 2025-08-26T21:56:38.1530664Z Running dynamo/test_config 1/1 ... [2025-08-26 21:56:38.152515] 2025-08-26T21:56:38.1531153Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:56:38.1538032Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_config.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:56:38.153088] 2025-08-26T21:56:38.4022715Z Running dynamo/test_export_mutations 1/1 ... [2025-08-26 21:56:38.401853] 2025-08-26T21:56:38.4023193Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:56:38.4029626Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_export_mutations.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:56:38.402425] 2025-08-26T21:56:41.6503132Z 2025-08-26T21:56:41.6504087Z inductor/test_cpu_select_algorithm 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cpu_select_algorithm_1.1_f6665c5d705fb740_.log 2025-08-26T21:56:41.6504836Z 2025-08-26T21:56:42.9083473Z 2025-08-26T21:56:42.9084368Z dynamo/test_config 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_config_1.1_13e0e4d0421f69ea_.log 2025-08-26T21:56:42.9084996Z 2025-08-26T21:56:43.2519422Z 2025-08-26T21:56:43.2520468Z dynamo/test_export_mutations 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_export_mutations_1.1_08e58b18f9b45eab_.log 2025-08-26T21:56:43.2521222Z 2025-08-26T21:56:46.8427231Z Running inductor/test_config 1/1 ... [2025-08-26 21:56:46.840603] 2025-08-26T21:56:46.8427675Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:56:46.8434219Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_config.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:56:46.840603] 2025-08-26T21:56:48.3276802Z Running dynamo/test_compile 1/1 ... [2025-08-26 21:56:48.327295] 2025-08-26T21:56:48.3278056Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:56:48.3284816Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_compile.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:56:48.327888] 2025-08-26T21:56:48.4395618Z Running dynamo/test_dicts 1/1 ... [2025-08-26 21:56:48.438994] 2025-08-26T21:56:48.4396101Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:56:48.4402611Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_dicts.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:56:48.439602] 2025-08-26T21:56:53.0631455Z 2025-08-26T21:56:53.0632330Z dynamo/test_dicts 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_dicts_1.1_f32b8dc5536752a0_.log 2025-08-26T21:56:53.0632957Z 2025-08-26T21:56:53.1215004Z 2025-08-26T21:56:53.1216147Z dynamo/test_compile 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_compile_1.1_de7761b544c9e8ce_.log 2025-08-26T21:56:53.1217163Z 2025-08-26T21:56:56.9255100Z 2025-08-26T21:56:56.9255962Z inductor/test_config 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_config_1.1_424a992145568351_.log 2025-08-26T21:56:56.9256665Z 2025-08-26T21:56:58.4307220Z Running dynamo/test_autograd_function 1/1 ... [2025-08-26 21:56:58.424587] 2025-08-26T21:56:58.4313216Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:56:58.4314322Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_autograd_function.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:56:58.424587] 2025-08-26T21:56:58.5145955Z Running dynamo/test_after_aot 1/1 ... [2025-08-26 21:56:58.514431] 2025-08-26T21:56:58.5146412Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:56:58.5152704Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_after_aot.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:56:58.514468] 2025-08-26T21:57:02.1878104Z Running inductor/test_layout_optim 1/1 ... [2025-08-26 21:57:02.187465] 2025-08-26T21:57:02.1878602Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:57:02.1919311Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_layout_optim.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:57:02.189074] 2025-08-26T21:57:03.2529473Z 2025-08-26T21:57:03.2530371Z dynamo/test_after_aot 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_after_aot_1.1_bc11f3084eadf116_.log 2025-08-26T21:57:03.2531020Z 2025-08-26T21:57:08.3855103Z Running dynamo/test_list 1/1 ... [2025-08-26 21:57:08.379810] 2025-08-26T21:57:08.3855536Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:57:08.3861564Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_list.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:57:08.385414] 2025-08-26T21:57:08.5894261Z 2025-08-26T21:57:08.5895339Z dynamo/test_autograd_function 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_autograd_function_1.1_2d9e6cf140b78210_.log 2025-08-26T21:57:08.5896135Z 2025-08-26T21:57:12.2365156Z 2025-08-26T21:57:12.2366137Z inductor/test_layout_optim 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_layout_optim_1.1_5d2ef79bbd107794_.log 2025-08-26T21:57:12.2366827Z 2025-08-26T21:57:13.1337348Z 2025-08-26T21:57:13.1338331Z dynamo/test_list 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_list_1.1_59ae9c43e9115e28_.log 2025-08-26T21:57:13.1338948Z 2025-08-26T21:57:13.8771560Z Running dynamo/test_profiler 1/1 ... [2025-08-26 21:57:13.870416] 2025-08-26T21:57:13.8772042Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:57:13.8778196Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_profiler.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:57:13.870416] 2025-08-26T21:57:17.5946537Z Running inductor/test_minifier_isolate 1/1 ... [2025-08-26 21:57:17.592380] 2025-08-26T21:57:17.5947045Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:57:17.5953032Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_minifier_isolate.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:57:17.592380] 2025-08-26T21:57:18.3854983Z Running inductor/test_binary_folding 1/1 ... [2025-08-26 21:57:18.385211] 2025-08-26T21:57:18.3855498Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:57:18.3862192Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_binary_folding.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:57:18.385211] 2025-08-26T21:57:18.6709976Z 2025-08-26T21:57:18.6710906Z dynamo/test_profiler 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_profiler_1.1_8cb5ac17772094d3_.log 2025-08-26T21:57:18.6711601Z 2025-08-26T21:57:23.8622713Z Running dynamo/test_export 1/1 ... [2025-08-26 21:57:23.861635] 2025-08-26T21:57:23.8623185Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:57:23.8629301Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_export.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:57:23.862775] 2025-08-26T21:57:27.9903524Z 2025-08-26T21:57:27.9904574Z inductor/test_minifier_isolate 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_minifier_isolate_1.1_ae3253bfdaff2879_.log 2025-08-26T21:57:27.9905398Z 2025-08-26T21:57:28.9213865Z 2025-08-26T21:57:28.9214786Z dynamo/test_export 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_export_1.1_5afb3993bc15b21d_.log 2025-08-26T21:57:28.9215534Z 2025-08-26T21:57:30.2423700Z 2025-08-26T21:57:30.2424780Z inductor/test_binary_folding 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_binary_folding_1.1_27784396e9291929_.log 2025-08-26T21:57:30.2425542Z 2025-08-26T21:57:33.2720477Z Running dynamo/test_optimizers 1/1 ... [2025-08-26 21:57:33.271585] 2025-08-26T21:57:33.2720982Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:57:33.2741751Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_optimizers.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:57:33.273932] 2025-08-26T21:57:34.1841239Z Running inductor/test_unbacked_symints 1/1 ... [2025-08-26 21:57:34.183712] 2025-08-26T21:57:34.1841901Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:57:34.1848297Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_unbacked_symints.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:57:34.183712] 2025-08-26T21:57:35.4270726Z Running inductor/test_loop_ordering 1/1 ... [2025-08-26 21:57:35.426704] 2025-08-26T21:57:35.4271212Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:57:35.4277732Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_loop_ordering.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:57:35.427277] 2025-08-26T21:57:37.9834060Z 2025-08-26T21:57:37.9835008Z dynamo/test_optimizers 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_optimizers_1.1_a6b07d6a94b35f17_.log 2025-08-26T21:57:37.9835737Z 2025-08-26T21:57:43.3227845Z Running export/test_nativert 1/1 ... [2025-08-26 21:57:43.314553] 2025-08-26T21:57:43.3228315Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:57:43.3234379Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_nativert.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:57:43.314553] 2025-08-26T21:57:44.4730577Z 2025-08-26T21:57:44.4731837Z inductor/test_unbacked_symints 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_unbacked_symints_1.1_af958f76a3f2104f_.log 2025-08-26T21:57:44.4732602Z 2025-08-26T21:57:46.6592617Z 2025-08-26T21:57:46.6593808Z inductor/test_loop_ordering 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_loop_ordering_1.1_df33501fea35c9b0_.log 2025-08-26T21:57:46.6594705Z 2025-08-26T21:57:49.7295015Z Running inductor/test_mmdecomp 1/1 ... [2025-08-26 21:57:49.729092] 2025-08-26T21:57:49.7295536Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:57:49.7302953Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_mmdecomp.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:57:49.729670] 2025-08-26T21:57:51.9219748Z Running dynamo/test_compiler_bisector 1/1 ... [2025-08-26 21:57:51.913475] 2025-08-26T21:57:51.9225415Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:57:51.9226555Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_compiler_bisector.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:57:51.913475] 2025-08-26T21:57:54.0442987Z 2025-08-26T21:57:54.0444047Z export/test_nativert 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_nativert_1.1_e3df9f4f9c543966_.log 2025-08-26T21:57:54.0444794Z 2025-08-26T21:57:59.2545333Z Running dynamo/test_bytecode_utils 1/1 ... [2025-08-26 21:57:59.251436] 2025-08-26T21:57:59.2545832Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:57:59.2552470Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_bytecode_utils.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:57:59.251436] 2025-08-26T21:57:59.9606880Z 2025-08-26T21:57:59.9607954Z inductor/test_mmdecomp 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_mmdecomp_1.1_ec1974fddd58a8f5_.log 2025-08-26T21:57:59.9608664Z 2025-08-26T21:58:02.1992567Z 2025-08-26T21:58:02.1993797Z dynamo/test_compiler_bisector 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_compiler_bisector_1.1_eea79b456d49e3c7_.log 2025-08-26T21:58:02.1994643Z 2025-08-26T21:58:04.0668148Z 2025-08-26T21:58:04.0669109Z dynamo/test_bytecode_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_bytecode_utils_1.1_dd3570a0a8353479_.log 2025-08-26T21:58:04.0669844Z 2025-08-26T21:58:05.1143083Z Running dynamo/test_exceptions 1/1 ... [2025-08-26 21:58:05.113854] 2025-08-26T21:58:05.1143739Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:58:05.1150053Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_exceptions.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:58:05.114451] 2025-08-26T21:58:07.3872971Z Running export/test_experimental 1/1 ... [2025-08-26 21:58:07.387121] 2025-08-26T21:58:07.3873472Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:58:07.3879670Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_experimental.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:58:07.387799] 2025-08-26T21:58:09.5128891Z Running dynamo/test_minifier 1/1 ... [2025-08-26 21:58:09.510390] 2025-08-26T21:58:09.5129400Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:58:09.5135877Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_minifier.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:58:09.510390] 2025-08-26T21:58:09.8463226Z 2025-08-26T21:58:09.8464202Z dynamo/test_exceptions 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_exceptions_1.1_086ba6e820b4d8c3_.log 2025-08-26T21:58:09.8464961Z 2025-08-26T21:58:12.0382563Z 2025-08-26T21:58:14.2177402Z export/test_experimental 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_experimental_1.1_9910bdab85d3f113_.log 2025-08-26T21:58:14.2178146Z 2025-08-26T21:58:14.2178151Z 2025-08-26T21:58:14.2178690Z dynamo/test_minifier 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_minifier_1.1_2ac516bdcbf475e1_.log 2025-08-26T21:58:14.2179352Z 2025-08-26T21:58:15.1526721Z Running dynamo/test_exc 1/1 ... [2025-08-26 21:58:15.151687] 2025-08-26T21:58:15.1527204Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:58:15.1533466Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_exc.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:58:15.151687] 2025-08-26T21:58:17.3053701Z Running dynamo/test_generator 1/1 ... [2025-08-26 21:58:17.305019] 2025-08-26T21:58:17.3054236Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:58:17.3060661Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_generator.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:58:17.305612] 2025-08-26T21:58:19.5909692Z Running dynamo/test_python_autograd 1/1 ... [2025-08-26 21:58:19.590012] 2025-08-26T21:58:19.5910214Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:58:19.5916207Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_python_autograd.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:58:19.590012] 2025-08-26T21:58:19.8701717Z 2025-08-26T21:58:19.8702788Z dynamo/test_exc 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_exc_1.1_4bd2ed8a3507ca60_.log 2025-08-26T21:58:19.8703441Z 2025-08-26T21:58:21.9505560Z 2025-08-26T21:58:21.9506807Z dynamo/test_generator 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_generator_1.1_d90e807ac1d75ec2_.log 2025-08-26T21:58:21.9507693Z 2025-08-26T21:58:24.2245499Z 2025-08-26T21:58:24.2246527Z dynamo/test_python_autograd 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_python_autograd_1.1_8edc07591b40644e_.log 2025-08-26T21:58:24.2247251Z 2025-08-26T21:58:25.1755097Z Running test_decomp 13/17 ... [2025-08-26 21:58:25.173024] 2025-08-26T21:58:25.1755572Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:58:25.1761424Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'not serial', '--shard-id=13', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:58:25.173024] 2025-08-26T21:58:27.3325989Z Running test_mkldnn_verbose 1/1 ... [2025-08-26 21:58:27.329807] 2025-08-26T21:58:27.3326442Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:58:27.3334902Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_mkldnn_verbose.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:58:27.332900] 2025-08-26T21:58:29.6626608Z Running test_utils_config_module 1/1 ... [2025-08-26 21:58:29.649688] 2025-08-26T21:58:29.6628059Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:58:29.6633286Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_utils_config_module.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:58:29.649688] 2025-08-26T21:58:34.7648259Z 2025-08-26T21:58:34.7649226Z test_utils_config_module 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_utils_config_module_1.1_927bd5ebd0fe168a_.log 2025-08-26T21:58:34.7658421Z Running 22 items in this shard: test/test_utils_config_module.py::TestConfigModule::test_alias, test/test_utils_config_module.py::TestConfigModule::test_bad_jk_type, test/test_utils_config_module.py::TestConfigModule::test_base_value_loading, test/test_utils_config_module.py::TestConfigModule::test_codegen_config, test/test_utils_config_module.py::TestConfigModule::test_codegen_config_function, test/test_utils_config_module.py::TestConfigModule::test_dict_copy_semantics, test/test_utils_config_module.py::TestConfigModule::test_env_name_semantics, test/test_utils_config_module.py::TestConfigModule::test_env_name_string_semantics, test/test_utils_config_module.py::TestConfigModule::test_get_hash, test/test_utils_config_module.py::TestConfigModule::test_invalid_config_float, test/test_utils_config_module.py::TestConfigModule::test_invalid_config_int, test/test_utils_config_module.py::TestConfigModule::test_make_closur_patcher, test/test_utils_config_module.py::TestConfigModule::test_multi_env, test/test_utils_config_module.py::TestConfigModule::test_none_override_semantics, test/test_utils_config_module.py::TestConfigModule::test_overrides, test/test_utils_config_module.py::TestConfigModule::test_patch, test/test_utils_config_module.py::TestConfigModule::test_reference_is_default, test/test_utils_config_module.py::TestConfigModule::test_reference_semantics, test/test_utils_config_module.py::TestConfigModule::test_save_config, test/test_utils_config_module.py::TestConfigModule::test_save_config_portable, test/test_utils_config_module.py::TestConfigModule::test_type_loading, test/test_utils_config_module.py::TestConfigModule::test_unittest_patch 2025-08-26T21:58:34.7665388Z 2025-08-26T21:58:36.7480801Z 2025-08-26T21:58:36.7482073Z test_mkldnn_verbose 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_mkldnn_verbose_1.1_26c7bd574684b25a_.log 2025-08-26T21:58:36.7484152Z Running 2 items in this shard: test/test_mkldnn_verbose.py::TestMKLDNNVerbose::test_verbose_off, test/test_mkldnn_verbose.py::TestMKLDNNVerbose::test_verbose_on 2025-08-26T21:58:36.7485533Z 2025-08-26T21:58:40.6476505Z Running test_ops_jit 1/2 ... [2025-08-26 21:58:40.647342] 2025-08-26T21:58:40.6476915Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:58:40.6483045Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops_jit.py', '-m', 'not serial', '--shard-id=1', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:58:40.647943] 2025-08-26T21:58:42.3025173Z Running test_ops_jit 2/2 ... [2025-08-26 21:58:42.299210] 2025-08-26T21:58:42.3025641Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:58:42.3031691Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops_jit.py', '-m', 'not serial', '--shard-id=2', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:58:42.299210] 2025-08-26T22:09:23.1403063Z 2025-08-26T22:09:23.1403964Z test_ops_jit 1/2 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_jit_1.2_32a8936c30b3348c_.log 2025-08-26T22:09:23.1619243Z Running 598 items in this shard: test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_acos_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_asin_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_atan2_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_clamp_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_div_trunc_rounding_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_erfinv_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_exp2_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_expm1_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_ge_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_i0_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_igamma_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_igammac_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_lgamma_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_linalg_det_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_lt_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_matmul_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_matrix_exp_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_min_binary_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_movedim_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_neg_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_nn_functional_conv_transpose1d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_nn_functional_conv_transpose2d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_nn_functional_group_norm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_nn_functional_layer_norm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_nn_functional_rms_norm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_outer_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_round_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_round_decimals_0_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_round_decimals_3_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_sigmoid_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_sinc_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_softmax_with_dtype_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_sub_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_tanh_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_xlogy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_H_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_H_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_T_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit___radd___cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit___radd___cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit___rdiv___cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit___rmatmul___cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit___rmod___cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit___rpow___cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit___rpow___cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit___rsub___cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit___rsub___cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit__chunk_cat_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit__segment_reduce_offsets_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit__softmax_backward_data_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit__unsafe_masked_index_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit__unsafe_masked_index_put_accumulate_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit__unsafe_masked_index_put_accumulate_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit__upsample_bilinear2d_aa_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_abs_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_acosh_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_add_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_addbmm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_addcdiv_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_addcmul_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_addmm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_addmm_decomposed_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_addmm_decomposed_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_addmv_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_addr_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_addr_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_alias_copy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_all_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_allclose_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_allclose_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_amin_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_angle_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_angle_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_any_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_arange_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_argmax_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_argmin_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_argwhere_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_as_strided_copy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_as_strided_partial_views_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_as_strided_partial_views_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_asin_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_asinh_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_atan2_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_atan_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_atan_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_atleast_1d_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_atleast_1d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_atleast_2d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_baddbmm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_block_diag_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_bmm_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_bmm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_bool_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_bool_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_broadcast_tensors_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_broadcast_tensors_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_broadcast_to_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_broadcast_to_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_bucketize_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cartesian_prod_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cat_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cdouble_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_ceil_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cfloat_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cfloat_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_chalf_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cholesky_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cholesky_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cholesky_inverse_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cholesky_inverse_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cholesky_solve_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_chunk_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_chunk_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_clamp_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_clamp_max_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_column_stack_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_combinations_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_complex_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_conj_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_conj_physical_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_constant_pad_nd_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_contiguous_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_contiguous_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_copysign_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_corrcoef_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_corrcoef_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cos_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cosh_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_count_nonzero_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cov_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cov_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cummax_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cumprod_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_diag_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_diag_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_diag_embed_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_diag_embed_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_diagflat_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_diagonal_copy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_diagonal_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_diagonal_scatter_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_diff_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_digamma_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_dist_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_div_trunc_rounding_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_dot_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_double_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_dsplit_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_dstack_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_einsum_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_empty_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_empty_like_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_empty_like_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_empty_strided_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_eq_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_erfc_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_erfinv_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_exp2_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_exp_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_exp_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_expand_as_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_expand_as_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_expand_copy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_expm1_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_eye_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_eye_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_fft2_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_fft2_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_fftshift_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_hfft2_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_hfft2_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_hfft_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_hfft_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_ifft2_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_ifft2_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_ifftn_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_ifftn_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_ihfft2_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_ihfftn_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_irfft_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_irfft_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_irfftn_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_rfft2_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_rfft_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_rfftn_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_flatten_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_flip_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_flip_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_flipud_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_floor_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_floor_divide_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fmax_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_full_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_full_like_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_gather_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_gather_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_ge_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_geometric_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_grid_sampler_2d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_grid_sampler_3d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_gt_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_half_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_half_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_hash_tensor_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_histc_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_histogramdd_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_hstack_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_hstack_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_hypot_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_i0_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_igamma_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_imag_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_index_add_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_index_add_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_index_copy_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_index_reduce_mean_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_index_select_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_inner_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_int_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_isclose_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_isin_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_isnan_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_isneginf_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_isposinf_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_isreal_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_isreal_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_istft_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_jiterator_2inputs_2outputs_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_jiterator_4inputs_with_extra_args_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_jiterator_binary_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_jiterator_binary_return_by_ref_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_jiterator_binary_return_by_ref_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_jiterator_unary_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_jiterator_unary_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_kron_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_ldexp_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_ldexp_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_le_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_cholesky_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_cross_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_cross_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_det_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_det_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_eig_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_eigh_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_eigh_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_eigvals_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_eigvals_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_eigvalsh_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_inv_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_inv_ex_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_inv_ex_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_ldl_factor_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_ldl_factor_ex_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_ldl_solve_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_lstsq_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_lstsq_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_lstsq_grad_oriented_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_lu_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_lu_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_lu_factor_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_lu_factor_ex_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_lu_solve_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_matrix_power_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_matrix_power_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_matrix_rank_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_multi_dot_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_norm_subgradients_at_zero_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_pinv_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_pinv_singular_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_qr_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_qr_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_solve_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_solve_ex_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_svd_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_svd_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_svdvals_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_tensorinv_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_tensorsolve_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_vander_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_vander_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_vecdot_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_vector_norm_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linspace_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_log1p_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_log2_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_log_softmax_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_log_softmax_with_dtype_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logaddexp2_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logaddexp_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logaddexp_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logcumsumexp_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logcumsumexp_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logdet_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logical_and_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logical_and_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logical_not_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logical_or_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logical_or_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logical_xor_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logical_xor_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logit_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logspace_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_long_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_lt_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_lu_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_lu_solve_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_lu_unpack_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_mH_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_mH_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_mT_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_amax_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_cumprod_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_fill_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_logaddexp_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_logsumexp_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_mean_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_median_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_prod_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_prod_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_select_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_softmin_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_std_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_sum_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_var_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_matmul_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_matmul_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_matrix_exp_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_matrix_exp_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_max_reduction_no_dim_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_maximum_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_mean_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_mean_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_median_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_meshgrid_variadic_tensors_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_min_binary_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_min_reduction_with_dim_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_mm_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_mm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_movedim_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_multinomial_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_mv_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nanmean_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nanmedian_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nanquantile_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_narrow_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_native_batch_norm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_native_layer_norm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_ne_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_neg_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_new_empty_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_new_full_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_new_ones_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_new_ones_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_new_zeros_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nextafter_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_alpha_dropout_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_bilinear_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_binary_cross_entropy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_celu_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_channel_shuffle_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_channel_shuffle_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_conv1d_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_conv1d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_conv2d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_conv3d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_conv_transpose1d_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_conv_transpose1d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_conv_transpose2d_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_conv_transpose2d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_conv_transpose3d_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_cosine_embedding_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_ctc_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_dropout3d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_embedding_bag_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_feature_alpha_dropout_without_train_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_fractional_max_pool2d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_gelu_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_glu_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_hardshrink_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_hardsigmoid_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_interpolate_bilinear_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_interpolate_linear_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_kl_div_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_l1_loss_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_linear_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_linear_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_local_response_norm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_margin_ranking_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_max_pool2d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_max_pool3d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_max_unpool2d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_max_unpool2d_grad_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_max_unpool3d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_max_unpool3d_grad_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_mish_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_mse_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_nll_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_normalize_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_pad_circular_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_pad_constant_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_pad_constant_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_pad_reflect_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_pad_replicate_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_pairwise_distance_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_pixel_shuffle_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_pixel_unshuffle_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_rms_norm_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_rrelu_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_silu_complex_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_smooth_l1_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_softmin_with_dtype_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_softplus_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_softshrink_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_softsign_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_tanhshrink_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_tanhshrink_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_triplet_margin_with_distance_loss_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_unfold_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_unfold_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_upsample_bilinear_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_upsample_nearest_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nonzero_static_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_norm_fro_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_norm_inf_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_norm_inf_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_normal_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_normal_in_place_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_ones_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_ormqr_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_outer_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_pca_lowrank_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_pca_lowrank_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_permute_copy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_pinverse_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_pinverse_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_polar_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_polygamma_polygamma_n_0_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_polygamma_polygamma_n_1_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_pow_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_prod_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_put_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_put_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_quantile_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_randint_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_randint_like_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_randn_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_randn_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_randn_like_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_ravel_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_real_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_reciprocal_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_renorm_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_reshape_as_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_reshape_as_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_reshape_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_resize__cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_resize__cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_resolve_conj_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_roll_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_rot90_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_round_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_round_decimals_3_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_round_decimals_neg_3_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_rsqrt_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_rsub_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_scalar_tensor_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_scatter_add_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_scatter_add_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_scatter_reduce_amax_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_scatter_reduce_amin_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_scatter_reduce_mean_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_scatter_reduce_prod_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_select_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_select_scatter_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_short_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sigmoid_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sigmoid_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_signal_windows_cosine_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_signal_windows_exponential_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_signal_windows_gaussian_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_signal_windows_general_cosine_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_signal_windows_nuttall_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_signbit_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sin_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sin_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sinc_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sinc_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sinh_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_slice_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_slice_scatter_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_softmax_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_softmax_with_dtype_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_softmax_with_dtype_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sort_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sparse_mm_reduce_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_airy_ai_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_bessel_y0_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_chebyshev_polynomial_t_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_chebyshev_polynomial_u_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_chebyshev_polynomial_v_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_chebyshev_polynomial_w_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_entr_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_erfcx_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_hermite_polynomial_he_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_i1_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_laguerre_polynomial_l_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_modified_bessel_i0_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_modified_bessel_i1_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_ndtr_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_spherical_bessel_j0_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_xlog1py_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_split_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_split_list_args_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_split_list_args_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_split_with_sizes_copy_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_split_with_sizes_copy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_split_with_sizes_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sqrt_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_square_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_squeeze_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_squeeze_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_squeeze_multiple_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_stack_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_std_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_std_mean_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_std_mean_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_std_mean_unbiased_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_stft_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sub_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sum_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sum_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_svd_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_svd_lowrank_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_svd_lowrank_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_t_copy_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_t_copy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_t_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_tan_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_tanh_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_tanh_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_tensor_split_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_tile_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_tile_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_to_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_to_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_to_sparse_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_trace_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_transpose_copy_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_transpose_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_transpose_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_trapz_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_triangular_solve_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_tril_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_triu_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_trunc_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unbind_copy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unbind_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unbind_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unfold_copy_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unfold_copy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unfold_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_uniform_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unique_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unsafe_chunk_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unsafe_split_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unsafe_split_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unsqueeze_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_var_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_var_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_var_mean_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_var_mean_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_var_mean_unbiased_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_var_mean_unbiased_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_var_unbiased_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_view_as_real_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_view_copy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_vsplit_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_where_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_zero__cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_zero__cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_zeros_like_cpu_float32 2025-08-26T22:09:23.1818098Z 2025-08-26T22:09:28.5360928Z Running test_modules 1/2 ... [2025-08-26 22:09:28.535918] 2025-08-26T22:09:28.5361415Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:09:28.5367603Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_modules.py', '-m', 'not serial', '--shard-id=1', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:09:28.536026] 2025-08-26T22:09:35.4945542Z 2025-08-26T22:09:35.4946697Z test_ops_jit 2/2 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_jit_2.2_d9d17d86abc249da_.log 2025-08-26T22:09:35.5160877Z Running 540 items in this shard: test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_abs_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_acosh_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_asinh_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_atan_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_atanh_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_cat_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_digamma_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_div_floor_rounding_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_div_no_rounding_mode_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_erf_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_erfc_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_gt_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_le_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_linalg_householder_product_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_linalg_inv_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_linalg_matrix_power_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_log1p_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_log_softmax_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_log_softmax_with_dtype_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_logit_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_logsumexp_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_mH_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_max_binary_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_mul_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_ne_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_nn_functional_conv1d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_nn_functional_conv2d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_nn_functional_conv3d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_nn_functional_conv_transpose3d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_round_decimals_neg_3_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_softmax_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_transpose_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_trunc_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_vstack_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_T_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit___getitem___cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit___getitem___cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit___rdiv___cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit___rmatmul___cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit___rmul___cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit___rmul___cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit__batch_norm_with_update_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit__chunk_cat_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit__native_batch_norm_legit_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit__segment_reduce_lengths_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit__unsafe_masked_index_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_abs_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_acos_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_acos_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_acosh_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_add_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_addbmm_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_addcdiv_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_addcmul_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_addmm_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_addmv_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_alias_copy_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_all_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_amax_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_aminmax_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_any_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_argsort_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_argwhere_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_as_strided_copy_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_as_strided_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_as_strided_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_as_strided_scatter_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_as_strided_scatter_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_asin_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_asinh_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_atanh_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_atanh_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_atleast_2d_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_atleast_3d_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_atleast_3d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_baddbmm_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_bernoulli_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_bfloat16_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_bfloat16_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_block_diag_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_broadcast_shapes_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_byte_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_byte_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cartesian_prod_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cat_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cauchy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cdist_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cdouble_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_chalf_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_char_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_char_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cholesky_solve_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_clamp_min_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_clone_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_clone_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_column_stack_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_combinations_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_conj_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_conj_physical_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_constant_pad_nd_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cos_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cosh_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_count_nonzero_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cross_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cross_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cummin_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cumprod_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cumsum_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cumsum_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cumulative_trapezoid_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cumulative_trapezoid_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_deg2rad_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_diagflat_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_diagonal_copy_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_diagonal_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_diagonal_scatter_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_diff_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_dist_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_div_floor_rounding_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_div_no_rounding_mode_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_div_no_rounding_mode_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_dot_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_double_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_dsplit_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_dstack_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_einsum_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_empty_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_empty_permuted_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_empty_permuted_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_empty_strided_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_eq_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_equal_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_equal_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_erf_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_exp2_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_expand_copy_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_expand_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_expand_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_expm1_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_exponential_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_fft_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_fft_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_fftn_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_fftn_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_fftshift_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_hfftn_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_hfftn_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_ifft_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_ifft_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_ifftshift_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_ifftshift_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_ihfft_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_irfft2_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_irfft2_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_irfftn_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fill_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fill_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_flatten_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fliplr_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fliplr_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_flipud_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_float_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_float_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_float_power_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_float_power_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fmin_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fmod_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_frac_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_frexp_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_full_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_full_like_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_geqrf_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_geqrf_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_gradient_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_gradient_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_heaviside_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_histogram_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_hsplit_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_hsplit_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_igammac_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_index_copy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_index_fill_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_index_fill_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_index_put_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_index_put_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_index_reduce_amax_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_index_reduce_amin_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_index_reduce_prod_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_index_select_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_inner_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_int_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_isclose_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_isfinite_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_isfinite_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_isinf_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_isinf_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_isnan_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_item_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_item_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_jiterator_2inputs_2outputs_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_jiterator_4inputs_with_extra_args_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_jiterator_binary_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_kron_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_kthvalue_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_lerp_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_lerp_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_lgamma_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_cholesky_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_cholesky_ex_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_cholesky_ex_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_cond_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_cond_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_diagonal_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_diagonal_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_eig_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_eigvalsh_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_householder_product_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_householder_product_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_inv_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_ldl_factor_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_ldl_factor_ex_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_ldl_solve_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_lstsq_grad_oriented_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_lu_factor_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_lu_factor_ex_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_lu_solve_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_matrix_norm_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_matrix_norm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_matrix_rank_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_matrix_rank_hermitian_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_matrix_rank_hermitian_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_multi_dot_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_norm_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_norm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_norm_subgradients_at_zero_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_pinv_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_pinv_hermitian_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_pinv_hermitian_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_pinv_singular_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_slogdet_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_slogdet_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_solve_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_solve_ex_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_solve_triangular_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_solve_triangular_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_svdvals_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_tensorinv_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_tensorsolve_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_vecdot_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_vector_norm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linspace_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linspace_tensor_overload_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linspace_tensor_overload_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_log10_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_log10_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_log1p_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_log2_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_log_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_log_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_log_normal_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_log_softmax_with_dtype_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logdet_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logical_not_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logspace_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logspace_tensor_overload_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logspace_tensor_overload_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logsumexp_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logsumexp_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_long_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_lu_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_lu_solve_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_lu_unpack_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_mT_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_amin_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_argmax_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_argmin_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_cumprod_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_cumsum_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_cumsum_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_fill_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_log_softmax_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_logsumexp_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_mean_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_norm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_normalize_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_normalize_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_scatter_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_scatter_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_select_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_softmax_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_std_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_sum_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_var_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_max_binary_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_max_pool2d_with_indices_backward_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_max_reduction_with_dim_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_meshgrid_list_of_tensors_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_meshgrid_list_of_tensors_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_meshgrid_variadic_tensors_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_min_reduction_no_dim_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_minimum_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_mode_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_movedim_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_msort_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_mul_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_mul_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_mv_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nan_to_num_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nansum_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_narrow_copy_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_narrow_copy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_narrow_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_native_dropout_backward_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_ne_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_neg_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_new_empty_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_new_empty_strided_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_new_empty_strided_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_new_full_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_new_zeros_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_avg_pool1d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_avg_pool2d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_avg_pool3d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_batch_norm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_conv2d_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_conv3d_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_conv_transpose3d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_cosine_similarity_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_cross_entropy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_dropout2d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_dropout_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_elu_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_embedding_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_fractional_max_pool3d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_gaussian_nll_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_grid_sample_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_group_norm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_hardswish_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_hardtanh_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_huber_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_instance_norm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_interpolate_area_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_interpolate_bicubic_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_interpolate_nearest_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_interpolate_trilinear_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_l1_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_layer_norm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_leaky_relu_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_logsigmoid_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_max_pool1d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_max_unpool1d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_max_unpool1d_grad_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_multi_head_attention_forward_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_multi_margin_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_multilabel_margin_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_normalize_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_pad_circular_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_pad_reflect_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_pad_replicate_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_pad_replicate_negative_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_pad_replicate_negative_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_pairwise_distance_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_pdist_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_pixel_shuffle_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_pixel_unshuffle_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_prelu_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_relu6_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_relu_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_rms_norm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_selu_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_silu_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_soft_margin_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_softmin_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_softsign_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_threshold_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_triplet_margin_loss_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_triplet_margin_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nonzero_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nonzero_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nonzero_static_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_norm_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_norm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_norm_fro_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_norm_nuc_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_norm_nuc_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_normal_in_place_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_normal_number_mean_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_ones_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_ones_like_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_ones_like_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_ormqr_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_outer_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_permute_copy_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_permute_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_permute_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_polygamma_polygamma_n_2_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_polygamma_polygamma_n_3_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_polygamma_polygamma_n_4_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_positive_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_positive_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_pow_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_prod_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_qr_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_qr_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_rad2deg_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_rand_like_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_rand_like_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_randn_like_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_ravel_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_real_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_reciprocal_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_remainder_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_renorm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_repeat_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_repeat_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_repeat_interleave_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_repeat_interleave_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_reshape_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_resize_as__cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_resize_as__cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_resolve_conj_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_resolve_neg_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_resolve_neg_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_roll_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_rot90_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_round_decimals_0_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_rsqrt_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_rsub_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_scalar_tensor_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_scatter_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_scatter_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_scatter_reduce_sum_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_searchsorted_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_select_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sgn_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sgn_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_short_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sign_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_signal_windows_bartlett_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_signal_windows_blackman_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_signal_windows_general_hamming_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_signal_windows_hamming_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_signal_windows_hann_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_signal_windows_kaiser_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sinh_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_slice_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sparse_sampled_addmm_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sparse_sampled_addmm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_bessel_j0_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_bessel_j1_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_bessel_y1_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_hermite_polynomial_h_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_i0e_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_i1e_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_legendre_polynomial_p_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_log_ndtr_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_modified_bessel_k0_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_modified_bessel_k1_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_ndtri_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_scaled_modified_bessel_k0_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_scaled_modified_bessel_k1_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_zeta_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_split_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_split_with_sizes_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sqrt_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_square_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_squeeze_copy_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_squeeze_copy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_squeeze_multiple_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_stack_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_std_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_std_mean_unbiased_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_std_unbiased_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_std_unbiased_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_stft_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sub_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sum_to_size_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sum_to_size_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_svd_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_t_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_take_along_dim_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_take_along_dim_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_take_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_take_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_tan_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_tensor_split_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_tensordot_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_tensordot_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_to_sparse_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_topk_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_trace_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_transpose_copy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_trapezoid_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_trapezoid_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_trapz_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_triangular_solve_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_tril_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_triu_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_true_divide_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_true_divide_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unbind_copy_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unflatten_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unflatten_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unfold_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_uniform_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unique_consecutive_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unsafe_chunk_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unsqueeze_copy_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unsqueeze_copy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unsqueeze_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_var_unbiased_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_vdot_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_vdot_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_view_as_complex_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_view_as_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_view_as_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_view_copy_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_view_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_view_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_vsplit_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_vstack_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_vstack_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_where_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_xlogy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_zeros_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_zeros_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_zeros_like_cpu_complex64 2025-08-26T22:09:35.5345126Z 2025-08-26T22:09:40.7913728Z Running torch_np/test_dtype 1/1 ... [2025-08-26 22:09:40.791171] 2025-08-26T22:09:40.7914267Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:09:40.7920783Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/test_dtype.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:09:40.791746] 2025-08-26T22:09:46.4963642Z 2025-08-26T22:09:46.4964995Z torch_np/test_dtype 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.test_dtype_1.1_23984890f63d6069_.log 2025-08-26T22:09:46.4992637Z Running 44 items in this shard: test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_'bool_', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_'complex128', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_'complex64', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_'float16', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_'float32', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_'float64', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_'int16', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_'int32', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_'int64', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_'int8', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_'uint16', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_'uint32', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_'uint64', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_'uint8', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_bool, test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.'bool_', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.'complex128', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.'complex64', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.'float16', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.'float32', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.'float64', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.'int16', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.'int32', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.'int64', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.'int8', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.'uint16', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.'uint32', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.'uint64', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.'uint8', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.bool_, test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.complex128, test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.complex64, test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.dtype('bool'), test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.float16, test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.float32, test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.float64, test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.int16, test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.int32, test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.int64, test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.int8, test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.uint16, test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.uint32, test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.uint64, test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.uint8 2025-08-26T22:09:46.5015121Z 2025-08-26T22:09:51.8951750Z Running test_datapipe 1/1 ... [2025-08-26 22:09:51.893378] 2025-08-26T22:09:51.8952225Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:09:51.8961066Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_datapipe.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:09:51.893378] 2025-08-26T22:10:11.0747126Z 2025-08-26T22:10:11.0748225Z test_datapipe 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_datapipe_1.1_9d827b7789843f57_.log 2025-08-26T22:10:11.0779342Z Running 94 items in this shard: test/test_datapipe.py::TestDataChunk::test_as_string, test/test_datapipe.py::TestDataChunk::test_getitem, test/test_datapipe.py::TestDataChunk::test_iter, test/test_datapipe.py::TestDataChunk::test_len, test/test_datapipe.py::TestDataChunk::test_random_shuffle, test/test_datapipe.py::TestDataChunk::test_reverse, test/test_datapipe.py::TestDataChunk::test_sort, test/test_datapipe.py::TestStreamWrapper::test_api, test/test_datapipe.py::TestStreamWrapper::test_dir, test/test_datapipe.py::TestStreamWrapper::test_pickle, test/test_datapipe.py::TestStreamWrapper::test_repr, test/test_datapipe.py::TestIterableDataPipeBasic::test_demux_mux_datapipe, test/test_datapipe.py::TestIterableDataPipeBasic::test_groupby_iterable_datapipe, test/test_datapipe.py::TestIterableDataPipeBasic::test_listdirfiles_iterable_datapipe, test/test_datapipe.py::TestIterableDataPipeBasic::test_listdirfilesdeterministic_iterable_datapipe, test/test_datapipe.py::TestIterableDataPipeBasic::test_map_with_col_file_handle_datapipe, test/test_datapipe.py::TestIterableDataPipeBasic::test_openfilesfromdisk_iterable_datapipe, test/test_datapipe.py::TestIterableDataPipeBasic::test_routeddecoder_iterable_datapipe, test/test_datapipe.py::TestCaptureDataFrame::test_basic_capture, test/test_datapipe.py::TestDataFramesPipes::test_batch, test/test_datapipe.py::TestDataFramesPipes::test_capture, test/test_datapipe.py::TestDataFramesPipes::test_collate, test/test_datapipe.py::TestDataFramesPipes::test_filter, test/test_datapipe.py::TestDataFramesPipes::test_shuffle, test/test_datapipe.py::TestDataFramesPipes::test_unbatch, test/test_datapipe.py::TestFunctionalIterDataPipe::test_batch_iterdatapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_collate_iterdatapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_concat_iterdatapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_demux_iterdatapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_docstring, test/test_datapipe.py::TestFunctionalIterDataPipe::test_filter_datapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_fork_iterdatapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_iterable_wrapper_datapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_map_dict_with_col_iterdatapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_map_iterdatapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_map_tuple_list_with_col_iterdatapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_mux_iterdatapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_sampler_iterdatapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_serializable, test/test_datapipe.py::TestFunctionalIterDataPipe::test_serializable_with_dill, test/test_datapipe.py::TestFunctionalIterDataPipe::test_shuffler_iterdatapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_stream_reader_iterdatapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_unbatch_iterdatapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_zip_iterdatapipe, test/test_datapipe.py::TestFunctionalMapDataPipe::test_batch_mapdatapipe, test/test_datapipe.py::TestFunctionalMapDataPipe::test_concat_mapdatapipe, test/test_datapipe.py::TestFunctionalMapDataPipe::test_docstring, test/test_datapipe.py::TestFunctionalMapDataPipe::test_map_mapdatapipe, test/test_datapipe.py::TestFunctionalMapDataPipe::test_sequence_wrapper_datapipe, test/test_datapipe.py::TestFunctionalMapDataPipe::test_serializable, test/test_datapipe.py::TestFunctionalMapDataPipe::test_serializable_with_dill, test/test_datapipe.py::TestFunctionalMapDataPipe::test_shuffler_mapdatapipe, test/test_datapipe.py::TestFunctionalMapDataPipe::test_zip_mapdatapipe, test/test_datapipe.py::TestTyping::test_compile_time, test/test_datapipe.py::TestTyping::test_construct_time, test/test_datapipe.py::TestTyping::test_isinstance, test/test_datapipe.py::TestTyping::test_issubinstance, test/test_datapipe.py::TestTyping::test_protocol, test/test_datapipe.py::TestTyping::test_reinforce, test/test_datapipe.py::TestTyping::test_runtime, test/test_datapipe.py::TestTyping::test_subtype, test/test_datapipe.py::TestGraph::test_simple_traverse, test/test_datapipe.py::TestGraph::test_traverse_circular_datapipe, test/test_datapipe.py::TestGraph::test_traverse_forked, test/test_datapipe.py::TestGraph::test_traverse_mapdatapipe, test/test_datapipe.py::TestGraph::test_traverse_mixdatapipe, test/test_datapipe.py::TestGraph::test_traverse_unhashable_datapipe, test/test_datapipe.py::TestSerialization::test_spawn_lambdas_iter, test/test_datapipe.py::TestSerialization::test_spawn_lambdas_map, test/test_datapipe.py::TestCircularSerialization::test_circular_serialization_with_dill, test/test_datapipe.py::TestCircularSerialization::test_circular_serialization_with_pickle, test/test_datapipe.py::TestSharding::test_legacy_custom_sharding, test/test_datapipe.py::TestSharding::test_legacy_custom_sharding_with_old_dataloader, test/test_datapipe.py::TestSharding::test_multi_sharding, test/test_datapipe.py::TestSharding::test_old_dataloader, test/test_datapipe.py::TestSharding::test_sharding_groups, test/test_datapipe.py::TestSharding::test_sharding_groups_in_legacy_grouping_package, test/test_datapipe.py::TestSharding::test_sharding_length, test/test_datapipe.py::TestSharding::test_simple_sharding, test/test_datapipe.py::TestIterDataPipeSingletonConstraint::test_iterdatapipe_singleton_buggy, test/test_datapipe.py::TestIterDataPipeSingletonConstraint::test_iterdatapipe_singleton_constraint_multiple_outputs, test/test_datapipe.py::TestIterDataPipeSingletonConstraint::test_iterdatapipe_singleton_generator, test/test_datapipe.py::TestIterDataPipeSingletonConstraint::test_iterdatapipe_singleton_new_object, test/test_datapipe.py::TestIterDataPipeSingletonConstraint::test_iterdatapipe_singleton_self_next, test/test_datapipe.py::TestIterDataPipeCountSampleYielded::test_iterdatapipe_sample_yielded_generator_function, test/test_datapipe.py::TestIterDataPipeCountSampleYielded::test_iterdatapipe_sample_yielded_generator_function_exception, test/test_datapipe.py::TestIterDataPipeCountSampleYielded::test_iterdatapipe_sample_yielded_next, test/test_datapipe.py::TestIterDataPipeCountSampleYielded::test_iterdatapipe_sample_yielded_next_exception, test/test_datapipe.py::TestIterDataPipeCountSampleYielded::test_iterdatapipe_sample_yielded_return_self, test/test_datapipe.py::TestIterDataPipeGraphFastForward::test_simple_snapshot_custom_non_generator, test/test_datapipe.py::TestIterDataPipeGraphFastForward::test_simple_snapshot_custom_self_next, test/test_datapipe.py::TestIterDataPipeGraphFastForward::test_simple_snapshot_graph, test/test_datapipe.py::TestIterDataPipeGraphFastForward::test_simple_snapshot_graph_repeated, test/test_datapipe.py::TestIterDataPipeGraphFastForward::test_simple_snapshot_graph_with_serialization 2025-08-26T22:10:11.0808237Z 2025-08-26T22:10:16.9308237Z Running test_foreach 1/1 ... [2025-08-26 22:10:16.930305] 2025-08-26T22:10:16.9309049Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:10:16.9318829Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_foreach.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:10:16.931476] 2025-08-26T22:10:32.6378744Z 2025-08-26T22:10:32.6379739Z test_decomp 13/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_13.17_9f451ef49d98cccf_.log 2025-08-26T22:10:32.6546222Z Running 531 items in this shard: test/test_decomp.py::TestDecompCPU::test_comprehensive_T_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rand___cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rdiv___cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmul___cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmul___cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive___rsub___cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive__native_batch_norm_legit_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive__segment_reduce_lengths_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive__softmax_backward_data_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_acos_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_acos_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_acos_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_acosh_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_acosh_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_add_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_addbmm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_decomposed_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_decomposed_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmv_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addr_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addr_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_all_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_amax_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_aminmax_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_any_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_arange_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_arange_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_argmin_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_asin_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan2_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_atanh_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_atanh_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_1d_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_2d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_baddbmm_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_bincount_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_and_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_right_shift_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_xor_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_block_diag_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_block_diag_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_bmm_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bool_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_byte_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cat_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cdouble_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_cdouble_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_chalf_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cholesky_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_clone_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_combinations_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_constant_pad_nd_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_contiguous_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_copysign_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cos_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cosh_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cosh_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_count_nonzero_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cross_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cummin_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_deg2rad_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_deg2rad_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_embed_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_embed_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_diff_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_floor_rounding_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_no_rounding_mode_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_dot_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_dstack_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_strided_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_erfinv_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp2_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp2_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_as_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftn_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftshift_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfftn_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifft_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfft_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfftn_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfft2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_flip_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fliplr_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fliplr_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_flipud_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_flipud_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_flipud_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_power_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_power_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_floor_divide_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmax_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmin_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmin_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmod_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_gather_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ge_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_gt_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_heaviside_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_histc_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_hypot_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_add_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_add_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_add_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_put_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_put_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_amax_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_amin_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_amin_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_amin_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_select_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_inner_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_int_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isreal_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_istft_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_item_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_4inputs_with_extra_args_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_return_by_ref_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_kron_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_kron_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_kthvalue_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_lcm_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ldexp_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_le_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_lerp_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cholesky_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_diagonal_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_eigvalsh_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_ldl_factor_ex_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_matrix_norm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_matrix_rank_hermitian_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_norm_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_pinv_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_solve_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_svd_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_tensorsolve_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_vecdot_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_vector_norm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_tensor_overload_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_log10_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_log1p_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logcumsumexp_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_and_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_not_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_not_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_or_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_tensor_overload_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logsumexp_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_logsumexp_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_lt_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_lu_unpack_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mH_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mT_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_amax_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_amin_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_amin_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_argmax_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_argmax_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumprod_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumprod_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_fill_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_fill_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_normalize_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_prod_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_prod_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_scatter_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_scatter_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_with_dim_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_with_dim_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_variadic_tensors_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_variadic_tensors_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_minimum_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mode_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_movedim_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_3_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nan_to_num_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nanmean_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nanmedian_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nanmedian_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_batch_norm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_batch_norm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_dropout_backward_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_dropout_backward_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_layer_norm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ne_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_strided_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_full_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_full_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_zeros_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_batch_norm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_bilinear_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_channel_shuffle_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_channel_shuffle_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv_transpose1d_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv_transpose1d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_cosine_embedding_loss_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_cosine_similarity_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_cosine_similarity_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_elu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_embedding_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_feature_alpha_dropout_without_train_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_gaussian_nll_loss_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_glu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hardtanh_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_instance_norm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_instance_norm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_bilinear_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_trilinear_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_leaky_relu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool2d_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool1d_grad_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool2d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool2d_grad_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool2d_grad_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_reflect_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pairwise_distance_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_shuffle_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_poisson_nll_loss_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_relu_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_rms_norm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_selu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softmin_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softmin_with_dtype_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softplus_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softsign_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_tanhshrink_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_threshold_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_triplet_margin_loss_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_triplet_margin_with_distance_loss_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_static_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_static_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_fro_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_fro_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_normal_in_place_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_normal_number_mean_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_normal_number_mean_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_0_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_4_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_quantile_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_randint_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_randint_like_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_randint_like_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_real_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_real_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_real_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_reciprocal_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_interleave_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_as_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_roll_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_decimals_neg_3_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsqrt_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsqrt_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amin_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_mean_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_prod_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_sum_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_searchsorted_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sgn_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_sign_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_general_hamming_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinc_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinh_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_softmax_with_dtype_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_softmax_with_dtype_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sort_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sparse_sampled_addmm_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_airy_ai_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_y0_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_y1_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_t_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_erfcx_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1e_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_laguerre_polynomial_l_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_legendre_polynomial_p_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_i0_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_i0_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_k1_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_k1_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_polygamma_special_polygamma_n_0_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_spherical_bessel_j0_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_spherical_bessel_j0_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_list_args_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_list_args_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_list_args_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sqrt_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sqrt_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sub_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_to_size_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_svd_lowrank_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_tan_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tanh_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tanh_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_tile_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_topk_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_topk_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_torch_ops_aten__safe_softmax_default_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_tril_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tril_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_trunc_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_trunc_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unflatten_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_chunk_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_mean_unbiased_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_as_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_as_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_as_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_where_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_zero__cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_like_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick__native_batch_norm_legit_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_abs_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_acos_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_add_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_addmm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_addmm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_addmm_decomposed_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_addr_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_addr_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_alias_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_amax_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_amax_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_any_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_arange_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_scatter_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_scatter_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_atan2_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_baddbmm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_bernoulli_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_not_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_bucketize_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_cat_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_cat_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_cat_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_cat_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_ceil_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_clamp_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_clamp_max_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_clamp_min_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_clone_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_constant_pad_nd_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_constant_pad_nd_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_stack_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_transpose_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_tril_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_count_nonzero_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_cumsum_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_diag_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_diag_embed_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_dist_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_div_floor_rounding_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_div_floor_rounding_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_div_trunc_rounding_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_dot_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_dot_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_empty_strided_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_exp2_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_exp2_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_exp2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_exp_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_expm1_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_eye_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fft_fft_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfft_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifft_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifftn_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifftn_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfft2_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfftn_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfftn_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfft_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfftn_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fmin_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fmin_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fmin_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_fmod_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_fmod_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_frac_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_frexp_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_full_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_ge_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_index_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_isin_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_isin_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_isinf_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_item_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_lcm_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_le_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_lerp_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_lgamma_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_lgamma_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_linalg_cross_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_linspace_tensor_overload_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_linspace_tensor_overload_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_linspace_tensor_overload_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_log10_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_log_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_logaddexp_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_logaddexp_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_logaddexp_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_logical_not_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_logical_not_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_logical_or_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_logical_xor_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_logit_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_logspace_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_logsumexp_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_lt_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_masked_fill_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_masked_fill_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_mean_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_variadic_tensors_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_3_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_ne_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_ne_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_neg_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_new_full_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_nextafter_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardsigmoid_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_logsigmoid_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_relu6_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_ones_like_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_ones_like_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_permute_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_prod_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_prod_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_rad2deg_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_reciprocal_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_roll_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_roll_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_roll_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_round_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_rsub_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_select_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_select_scatter_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_select_scatter_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_sgn_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_sigmoid_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_sign_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_signbit_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_signbit_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_sin_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_sin_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_sinc_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_slice_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_special_i1_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_special_log_ndtr_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_special_zeta_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_split_list_args_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_split_list_args_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_sqrt_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_multiple_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_multiple_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_stack_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_std_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_std_mean_unbiased_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_sum_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_sum_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_take_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_transpose_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_tril_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_triu_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_trunc_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_unfold_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_unsafe_split_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_unsafe_split_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_unsafe_split_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_var_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_vdot_cpu_float64, test/test_decomp.py::TestDecompCPU::test_rnn_decomp_module_nn_LSTM_eval_mode_cpu_float32, test/test_decomp.py::DecompOneOffTestsCPU::test_amp_batch_norm_backward_cpu 2025-08-26T22:10:32.6703435Z 2025-08-26T22:10:37.9549446Z Running test_flop_counter 1/1 ... [2025-08-26 22:10:37.952161] 2025-08-26T22:10:37.9549880Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:10:37.9555847Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_flop_counter.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:10:37.952161] 2025-08-26T22:10:43.5299469Z 2025-08-26T22:10:43.5300956Z test_flop_counter 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_flop_counter_1.1_62464273a754e93d_.log 2025-08-26T22:10:43.5312001Z Running 22 items in this shard: test/test_flop_counter.py::TestFlopCounter::test_addmm_out, test/test_flop_counter.py::TestFlopCounter::test_autograd_op, test/test_flop_counter.py::TestFlopCounter::test_backward, test/test_flop_counter.py::TestFlopCounter::test_backward_reset, test/test_flop_counter.py::TestFlopCounter::test_conv_backwards_as_decomposition, test/test_flop_counter.py::TestFlopCounter::test_conv_transpose_loop, test/test_flop_counter.py::TestFlopCounter::test_convs, test/test_flop_counter.py::TestFlopCounter::test_custom, test/test_flop_counter.py::TestFlopCounter::test_custom_op, test/test_flop_counter.py::TestFlopCounter::test_flop_counter_variety, test/test_flop_counter.py::TestFlopCounter::test_hook_registration, test/test_flop_counter.py::TestFlopCounter::test_inference_mode, test/test_flop_counter.py::TestFlopCounter::test_module, test/test_flop_counter.py::TestFlopCounter::test_nested_attention_fake_tensors, test/test_flop_counter.py::TestFlopCounter::test_noop, test/test_flop_counter.py::TestFlopCounter::test_op, test/test_flop_counter.py::TestFlopCounter::test_pytrees, test/test_flop_counter.py::TestFlopCounter::test_scaled_mm, test/test_flop_counter.py::TestFlopCounter::test_sdpa, test/test_flop_counter.py::TestFlopCounter::test_sdpa_nested_tensor, test/test_flop_counter.py::TestFlopCounter::test_torchscript, test/test_flop_counter.py::TestFlopCounter::test_warning 2025-08-26T22:10:43.5322254Z 2025-08-26T22:10:49.6215839Z Running test_expanded_weights 1/1 ... [2025-08-26 22:10:49.617193] 2025-08-26T22:10:49.6216346Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:10:49.6222145Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_expanded_weights.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:10:49.617193] 2025-08-26T22:11:09.1780065Z 2025-08-26T22:11:09.1781280Z test_expanded_weights 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_expanded_weights_1.1_d52390a38efa6146_.log 2025-08-26T22:11:09.1873320Z Running 189 items in this shard: test/test_expanded_weights.py::TestExpandedWeightHelperFunctionCPU::test_forward_helper_cpu, test/test_expanded_weights.py::TestExpandedWeightHelperFunctionCPU::test_forward_helper_failure_args_cpu, test/test_expanded_weights.py::TestExpandedWeightHelperFunctionCPU::test_set_grad_sample_if_exists_cpu, test/test_expanded_weights.py::TestExpandedWeightHelperFunctionCPU::test_set_grad_sample_if_exists_failure_cpu, test/test_expanded_weights.py::TestExpandedWeightHelperFunctionCPU::test_sum_over_all_but_batch_and_last_n_cpu, test/test_expanded_weights.py::TestExpandedWeightHelperFunctionCPU::test_unpack_expanded_weight_or_tensor_cpu, test/test_expanded_weights.py::TestExpandedWeightHelperFunctionCPU::test_unpack_expanded_weight_or_tensor_failure_cpu, test/test_expanded_weights.py::TestExpandedWeightHelperFunctionCPU::test_unpack_expanded_weight_or_tensor_with_custom_function_cpu, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_cnn_model_mean_cpu, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_cnn_model_sum_cpu, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_embedding_model_cpu, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_error_cpu, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv1d_cpu_bfloat16, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv1d_cpu_complex128, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv1d_cpu_complex64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv1d_cpu_float16, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv1d_cpu_float32, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv1d_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv1d_cpu_int64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv2d_cpu_bfloat16, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv2d_cpu_complex128, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv2d_cpu_complex64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv2d_cpu_float16, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv2d_cpu_float32, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv2d_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv2d_cpu_int64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv3d_cpu_bfloat16, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv3d_cpu_complex128, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv3d_cpu_complex64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv3d_cpu_float16, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv3d_cpu_float32, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv3d_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv3d_cpu_int64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_embedding_cpu_bfloat16, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_embedding_cpu_float16, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_embedding_cpu_float32, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_embedding_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_group_norm_cpu_bfloat16, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_group_norm_cpu_float16, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_group_norm_cpu_float32, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_group_norm_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_instance_norm_cpu_bfloat16, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_instance_norm_cpu_float16, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_instance_norm_cpu_float32, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_instance_norm_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_layer_norm_cpu_bfloat16, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_layer_norm_cpu_float16, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_layer_norm_cpu_float32, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_layer_norm_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_linear_cpu_bfloat16, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_linear_cpu_complex128, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_linear_cpu_complex64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_linear_cpu_float16, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_linear_cpu_float32, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_linear_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_linear_cpu_int16, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_linear_cpu_int32, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_linear_cpu_int64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_linear_cpu_int8, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_linear_cpu_uint8, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_per_sample_grad_mean_nn_functional_conv1d_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_per_sample_grad_mean_nn_functional_conv2d_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_per_sample_grad_mean_nn_functional_conv3d_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_per_sample_grad_mean_nn_functional_embedding_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_per_sample_grad_mean_nn_functional_group_norm_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_per_sample_grad_mean_nn_functional_instance_norm_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_per_sample_grad_mean_nn_functional_layer_norm_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_per_sample_grad_mean_nn_functional_linear_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_per_sample_grad_sum_nn_functional_conv1d_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_per_sample_grad_sum_nn_functional_conv2d_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_per_sample_grad_sum_nn_functional_conv3d_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_per_sample_grad_sum_nn_functional_embedding_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_per_sample_grad_sum_nn_functional_group_norm_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_per_sample_grad_sum_nn_functional_instance_norm_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_per_sample_grad_sum_nn_functional_layer_norm_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_per_sample_grad_sum_nn_functional_linear_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weights_per_sample_grad_input_no_grad_nn_functional_conv1d_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weights_per_sample_grad_input_no_grad_nn_functional_conv2d_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weights_per_sample_grad_input_no_grad_nn_functional_conv3d_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weights_per_sample_grad_input_no_grad_nn_functional_embedding_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weights_per_sample_grad_input_no_grad_nn_functional_group_norm_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weights_per_sample_grad_input_no_grad_nn_functional_instance_norm_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weights_per_sample_grad_input_no_grad_nn_functional_layer_norm_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weights_per_sample_grad_input_no_grad_nn_functional_linear_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_group_norm_error_cpu, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_group_norm_model_num_dim_1_cpu, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_group_norm_model_num_dim_2_cpu, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_group_norm_model_num_dim_3_cpu, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_instance_norm_model_num_dim_1_cpu, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_instance_norm_model_num_dim_2_cpu, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_instance_norm_model_num_dim_3_cpu, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_layer_norm_model_num_dim_1_cpu, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_layer_norm_model_num_dim_2_cpu, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_layer_norm_model_num_dim_3_cpu, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_unsupported_expand_weights_nn_functional_conv1d_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_unsupported_expand_weights_nn_functional_conv2d_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_unsupported_expand_weights_nn_functional_conv3d_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_unsupported_expand_weights_nn_functional_embedding_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_unsupported_expand_weights_nn_functional_group_norm_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_unsupported_expand_weights_nn_functional_instance_norm_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_unsupported_expand_weights_nn_functional_layer_norm_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_unsupported_expand_weights_nn_functional_linear_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_circular_stride2_pad2_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_circular_stride2_pad2_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_pad1_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_pad1_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_pad1size1_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_pad1size1_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_pad2_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_pad2_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_pad2size1_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_pad2size1_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_reflect_stride2_pad2_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_reflect_stride2_pad2_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_replicate_stride2_pad2_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_replicate_stride2_pad2_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_stride_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_stride_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_zero_batch_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_zero_batch_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_zeros_stride2_pad2_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_zeros_stride2_pad2_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv2d_circular_stride2_pad2_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv2d_circular_stride2_pad2_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv2d_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv2d_dilated_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv2d_dilated_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv2d_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv2d_no_bias_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv2d_no_bias_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv2d_padding_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv2d_padding_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv2d_reflect_stride2_pad2_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv2d_reflect_stride2_pad2_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv2d_replicate_stride2_pad2_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv2d_replicate_stride2_pad2_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv2d_strided_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv2d_strided_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv2d_zero_batch_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv2d_zero_batch_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv2d_zeros_stride2_pad2_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv2d_zeros_stride2_pad2_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv3d_1x1x1_no_bias_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv3d_1x1x1_no_bias_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv3d_circular_stride2_pad2_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv3d_circular_stride2_pad2_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv3d_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv3d_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv3d_no_bias_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv3d_no_bias_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv3d_replicate_stride2_pad2_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv3d_replicate_stride2_pad2_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv3d_stride_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv3d_stride_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv3d_stride_padding_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv3d_stride_padding_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv3d_zero_batch_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv3d_zero_batch_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv3d_zeros_stride2_pad2_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv3d_zeros_stride2_pad2_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Embedding_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Embedding_discontiguous_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Embedding_discontiguous_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Embedding_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_LayerNorm_3d_no_affine_large_feature_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_LayerNorm_3d_no_affine_large_feature_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Linear_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Linear_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Linear_no_batch_dim_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Linear_no_batch_dim_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Linear_no_bias_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Linear_no_bias_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_module_nn_GRU_eval_mode_cpu_float32, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_module_nn_GRU_eval_mode_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_module_nn_GRU_train_mode_cpu_float32, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_module_nn_GRU_train_mode_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_module_nn_LSTM_eval_mode_cpu_float32, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_module_nn_LSTM_eval_mode_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_module_nn_LSTM_train_mode_cpu_float32, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_module_nn_LSTM_train_mode_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_module_nn_RNN_eval_mode_cpu_float32, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_module_nn_RNN_eval_mode_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_module_nn_RNN_train_mode_cpu_float32, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_module_nn_RNN_train_mode_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_per_sample_api_compute_batch_size_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_per_sample_api_compute_batch_size_not_pytreeable_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_per_sample_api_failing_cpu 2025-08-26T22:11:09.1960927Z 2025-08-26T22:11:14.4856712Z Running test_file_check 1/1 ... [2025-08-26 22:11:14.485007] 2025-08-26T22:11:14.4857195Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:11:14.4869247Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_file_check.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:11:14.486728] 2025-08-26T22:11:22.4719757Z 2025-08-26T22:11:22.4720667Z test_file_check 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_file_check_1.1_6b14dfb4f843b646_.log 2025-08-26T22:11:22.4722150Z Running 2 items in this shard: test/test_file_check.py::TestFileCheck::test_all_python_api, test/test_file_check.py::TestFileCheck::test_not_run 2025-08-26T22:11:22.4722764Z 2025-08-26T22:11:28.0218930Z Running test_functionalization 1/1 ... [2025-08-26 22:11:28.007829] 2025-08-26T22:11:28.0219613Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:11:28.0225301Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_functionalization.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:11:28.007829] 2025-08-26T22:11:41.2681923Z 2025-08-26T22:11:41.2683031Z test_functionalization 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_functionalization_1.1_3c2fdd8c735b1409_.log 2025-08-26T22:11:41.2726599Z Running 112 items in this shard: test/test_functionalization.py::TestFunctionalization::test_advanced_indexing, test/test_functionalization.py::TestFunctionalization::test_advanced_indexing_correct_strides, test/test_functionalization.py::TestFunctionalization::test_aliases_maintained_after_pass_when_reapplying_views, test/test_functionalization.py::TestFunctionalization::test_as_strided, test/test_functionalization.py::TestFunctionalization::test_batch_norm, test/test_functionalization.py::TestFunctionalization::test_cat, test/test_functionalization.py::TestFunctionalization::test_channels_last_contiguous, test/test_functionalization.py::TestFunctionalization::test_copy_, test/test_functionalization.py::TestFunctionalization::test_copy_stride_mismatch, test/test_functionalization.py::TestFunctionalization::test_diagonal, test/test_functionalization.py::TestFunctionalization::test_diagonal_mutated_input, test/test_functionalization.py::TestFunctionalization::test_everything, test/test_functionalization.py::TestFunctionalization::test_expand_symint, test/test_functionalization.py::TestFunctionalization::test_fill_, test/test_functionalization.py::TestFunctionalization::test_freeze, test/test_functionalization.py::TestFunctionalization::test_index_mutation_on_non_input, test/test_functionalization.py::TestFunctionalization::test_inplace_on_non_view, test/test_functionalization.py::TestFunctionalization::test_instance_norm, test/test_functionalization.py::TestFunctionalization::test_metadata_change, test/test_functionalization.py::TestFunctionalization::test_metadata_change_out_op, test/test_functionalization.py::TestFunctionalization::test_mixed_wrappers_invalid, test/test_functionalization.py::TestFunctionalization::test_mixed_wrappers_valid, test/test_functionalization.py::TestFunctionalization::test_multi_out, test/test_functionalization.py::TestFunctionalization::test_multiple_views_of_same_base, test/test_functionalization.py::TestFunctionalization::test_mutable_op_not_inplace_or_other, test/test_functionalization.py::TestFunctionalization::test_mutation_overlapping_mem, test/test_functionalization.py::TestFunctionalization::test_nested_functions_propagate_updates, test/test_functionalization.py::TestFunctionalization::test_only_one_view, test/test_functionalization.py::TestFunctionalization::test_optional_tensor_list, test/test_functionalization.py::TestFunctionalization::test_python_functionalization, test/test_functionalization.py::TestFunctionalization::test_python_functionalization_conj, test/test_functionalization.py::TestFunctionalization::test_python_functionalization_is_conj, test/test_functionalization.py::TestFunctionalization::test_python_functionalization_is_neg, test/test_functionalization.py::TestFunctionalization::test_python_functionalization_lift_fresh, test/test_functionalization.py::TestFunctionalization::test_python_functionalization_lift_fresh_storage, test/test_functionalization.py::TestFunctionalization::test_python_functionalization_neg, test/test_functionalization.py::TestFunctionalization::test_python_functionalization_zero_tensor, test/test_functionalization.py::TestFunctionalization::test_reapply_views_simple, test/test_functionalization.py::TestFunctionalization::test_resize_larger_invalid, test/test_functionalization.py::TestFunctionalization::test_resize_larger_valid, test/test_functionalization.py::TestFunctionalization::test_resize_same_size_diff_rank, test/test_functionalization.py::TestFunctionalization::test_resize_smaller, test/test_functionalization.py::TestFunctionalization::test_save_for_backwards_segfault, test/test_functionalization.py::TestFunctionalization::test_scalars, test/test_functionalization.py::TestFunctionalization::test_set_, test/test_functionalization.py::TestFunctionalization::test_simple, test/test_functionalization.py::TestFunctionalization::test_simple_out, test/test_functionalization.py::TestFunctionalization::test_slice, test/test_functionalization.py::TestFunctionalization::test_split, test/test_functionalization.py::TestFunctionalization::test_split_with_sizes, test/test_functionalization.py::TestFunctionalization::test_tensor_ctr, test/test_functionalization.py::TestFunctionalization::test_tensor_list_composite, test/test_functionalization.py::TestFunctionalization::test_tensor_list_mixed_functional_nonfunctional, test/test_functionalization.py::TestFunctionalization::test_unbind, test/test_functionalization.py::TestFunctionalization::test_view_clone_view_inplace, test/test_functionalization.py::TestFunctionalization::test_view_inplace, test/test_functionalization.py::TestCrossRefFunctionalization::test_advanced_indexing, test/test_functionalization.py::TestCrossRefFunctionalization::test_advanced_indexing_correct_strides, test/test_functionalization.py::TestCrossRefFunctionalization::test_aliases_maintained_after_pass_when_reapplying_views, test/test_functionalization.py::TestCrossRefFunctionalization::test_as_strided, test/test_functionalization.py::TestCrossRefFunctionalization::test_batch_norm, test/test_functionalization.py::TestCrossRefFunctionalization::test_cat, test/test_functionalization.py::TestCrossRefFunctionalization::test_channels_last_contiguous, test/test_functionalization.py::TestCrossRefFunctionalization::test_copy_, test/test_functionalization.py::TestCrossRefFunctionalization::test_copy_stride_mismatch, test/test_functionalization.py::TestCrossRefFunctionalization::test_diagonal, test/test_functionalization.py::TestCrossRefFunctionalization::test_diagonal_mutated_input, test/test_functionalization.py::TestCrossRefFunctionalization::test_everything, test/test_functionalization.py::TestCrossRefFunctionalization::test_expand_symint, test/test_functionalization.py::TestCrossRefFunctionalization::test_fill_, test/test_functionalization.py::TestCrossRefFunctionalization::test_freeze, test/test_functionalization.py::TestCrossRefFunctionalization::test_index_mutation_on_non_input, test/test_functionalization.py::TestCrossRefFunctionalization::test_inplace_on_non_view, test/test_functionalization.py::TestCrossRefFunctionalization::test_instance_norm, test/test_functionalization.py::TestCrossRefFunctionalization::test_metadata_change, test/test_functionalization.py::TestCrossRefFunctionalization::test_metadata_change_out_op, test/test_functionalization.py::TestCrossRefFunctionalization::test_mixed_wrappers_invalid, test/test_functionalization.py::TestCrossRefFunctionalization::test_mixed_wrappers_valid, test/test_functionalization.py::TestCrossRefFunctionalization::test_multi_out, test/test_functionalization.py::TestCrossRefFunctionalization::test_multiple_views_of_same_base, test/test_functionalization.py::TestCrossRefFunctionalization::test_mutable_op_not_inplace_or_other, test/test_functionalization.py::TestCrossRefFunctionalization::test_mutation_overlapping_mem, test/test_functionalization.py::TestCrossRefFunctionalization::test_nested_functions_propagate_updates, test/test_functionalization.py::TestCrossRefFunctionalization::test_only_one_view, test/test_functionalization.py::TestCrossRefFunctionalization::test_optional_tensor_list, test/test_functionalization.py::TestCrossRefFunctionalization::test_python_functionalization, test/test_functionalization.py::TestCrossRefFunctionalization::test_python_functionalization_conj, test/test_functionalization.py::TestCrossRefFunctionalization::test_python_functionalization_is_conj, test/test_functionalization.py::TestCrossRefFunctionalization::test_python_functionalization_is_neg, test/test_functionalization.py::TestCrossRefFunctionalization::test_python_functionalization_lift_fresh, test/test_functionalization.py::TestCrossRefFunctionalization::test_python_functionalization_lift_fresh_storage, test/test_functionalization.py::TestCrossRefFunctionalization::test_python_functionalization_neg, test/test_functionalization.py::TestCrossRefFunctionalization::test_python_functionalization_zero_tensor, test/test_functionalization.py::TestCrossRefFunctionalization::test_reapply_views_simple, test/test_functionalization.py::TestCrossRefFunctionalization::test_resize_larger_invalid, test/test_functionalization.py::TestCrossRefFunctionalization::test_resize_larger_valid, test/test_functionalization.py::TestCrossRefFunctionalization::test_resize_same_size_diff_rank, test/test_functionalization.py::TestCrossRefFunctionalization::test_resize_smaller, test/test_functionalization.py::TestCrossRefFunctionalization::test_save_for_backwards_segfault, test/test_functionalization.py::TestCrossRefFunctionalization::test_scalars, test/test_functionalization.py::TestCrossRefFunctionalization::test_set_, test/test_functionalization.py::TestCrossRefFunctionalization::test_simple, test/test_functionalization.py::TestCrossRefFunctionalization::test_simple_out, test/test_functionalization.py::TestCrossRefFunctionalization::test_slice, test/test_functionalization.py::TestCrossRefFunctionalization::test_split, test/test_functionalization.py::TestCrossRefFunctionalization::test_split_with_sizes, test/test_functionalization.py::TestCrossRefFunctionalization::test_tensor_ctr, test/test_functionalization.py::TestCrossRefFunctionalization::test_tensor_list_composite, test/test_functionalization.py::TestCrossRefFunctionalization::test_tensor_list_mixed_functional_nonfunctional, test/test_functionalization.py::TestCrossRefFunctionalization::test_unbind, test/test_functionalization.py::TestCrossRefFunctionalization::test_view_clone_view_inplace, test/test_functionalization.py::TestCrossRefFunctionalization::test_view_inplace 2025-08-26T22:11:41.2768873Z 2025-08-26T22:11:47.0412916Z Running test_testing 1/1 ... [2025-08-26 22:11:47.040920] 2025-08-26T22:11:47.0413615Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:11:47.0420343Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_testing.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:11:47.040920] 2025-08-26T22:12:06.0844776Z 2025-08-26T22:12:06.0845674Z test_modules 1/2 was successful, full logs can be found in artifacts with path test/test-reports/test_modules_1.2_5f62d028f4f5b89c_.log 2025-08-26T22:12:06.1597668Z Running 1800 items in this shard: test/test_modules.py::TestModuleCPU::test_check_inplace_nn_ELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_check_inplace_nn_Hardswish_cpu_float64, test/test_modules.py::TestModuleCPU::test_check_inplace_nn_LeakyReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_check_inplace_nn_Mish_cpu_float32, test/test_modules.py::TestModuleCPU::test_check_inplace_nn_ReLU6_cpu_float64, test/test_modules.py::TestModuleCPU::test_check_inplace_nn_ReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_check_inplace_nn_ReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_check_inplace_nn_SELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_check_inplace_nn_SiLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_check_inplace_nn_Threshold_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_AdaptiveAvgPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_AdaptiveAvgPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_AdaptiveAvgPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_AdaptiveMaxPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_AvgPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_AvgPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_BCELoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_BCEWithLogitsLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_BatchNorm1d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_BatchNorm1d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_BatchNorm1d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_BatchNorm2d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_BatchNorm2d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_BatchNorm2d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_BatchNorm3d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_BatchNorm3d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_BatchNorm3d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_CELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_CELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_CTCLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_CircularPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_CircularPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_CircularPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_CircularPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ConstantPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ConstantPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ConstantPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Conv1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Conv3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ConvTranspose1d_cpu_complex32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ConvTranspose1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ConvTranspose2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ConvTranspose2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ConvTranspose3d_cpu_complex32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ConvTranspose3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_CrossEntropyLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_FractionalMaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_FractionalMaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_GRUCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_GRU_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_GaussianNLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_GroupNorm_cpu_bfloat16, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_GroupNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Hardshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Hardswish_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Hardtanh_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_HingeEmbeddingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_InstanceNorm1d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_InstanceNorm1d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_InstanceNorm1d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_InstanceNorm2d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_InstanceNorm2d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_InstanceNorm2d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_InstanceNorm3d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_KLDivLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_L1Loss_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_L1Loss_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LPPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LPPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LPPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LPPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LPPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LSTMCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LSTM_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LayerNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LazyConv2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LazyConv3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LazyConv3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LazyConvTranspose1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LazyConvTranspose1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LazyConvTranspose3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LeakyReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LeakyReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LocalResponseNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LogSigmoid_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LogSoftmax_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_MSELoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_MaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_MaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_MaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_MultiLabelMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_MultiMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_MultiheadAttention_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_MultiheadAttention_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_MultiheadAttention_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_MultiheadAttention_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_PReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_PReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_PoissonNLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_PoissonNLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_RMSNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_RNNCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_RNN_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ReLU6_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ReflectionPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ReflectionPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ReflectionPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ReplicationPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ReplicationPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ReplicationPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_SELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_SELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_SiLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Sigmoid_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_SmoothL1Loss_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_SoftMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_SoftMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Softmax2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Softmax_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Softmax_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Softmin_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Softplus_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Softplus_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Softsign_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Softsign_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Tanh_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Tanh_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Tanhshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Tanhshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Threshold_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Threshold_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_TransformerEncoderLayer_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_TransformerEncoderLayer_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_TransformerEncoderLayer_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_TransformerEncoder_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_TransformerEncoder_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_TransformerEncoder_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Transformer_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ZeroPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ZeroPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_AdaptiveAvgPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_AdaptiveMaxPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_AvgPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_AvgPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_AvgPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_BCELoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_BCEWithLogitsLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_BatchNorm1d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_BatchNorm1d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_BatchNorm2d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_BatchNorm2d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_BatchNorm2d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_BatchNorm2d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_BatchNorm3d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_BatchNorm3d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_BatchNorm3d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_BatchNorm3d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Bilinear_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Bilinear_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_CELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_CTCLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_CircularPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_CircularPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_CircularPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ConstantPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ConstantPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ConstantPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Conv1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Conv2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Conv2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Conv3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ConvTranspose1d_cpu_complex128, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ConvTranspose1d_cpu_complex32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ConvTranspose1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ConvTranspose2d_cpu_complex128, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ConvTranspose2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ConvTranspose3d_cpu_complex32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ConvTranspose3d_cpu_complex64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_CosineEmbeddingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Embedding_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Embedding_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_FractionalMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_FractionalMaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_FractionalMaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_GELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_GRU_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_GRU_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_GaussianNLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_GroupNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Hardshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Hardswish_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Hardtanh_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_HingeEmbeddingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_HuberLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_HuberLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_InstanceNorm1d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_InstanceNorm1d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_InstanceNorm1d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_InstanceNorm2d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_InstanceNorm2d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_InstanceNorm2d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_InstanceNorm2d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_InstanceNorm3d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_InstanceNorm3d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_InstanceNorm3d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_InstanceNorm3d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_KLDivLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_L1Loss_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LPPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LPPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LPPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LPPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LPPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LSTM_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LayerNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LayerNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LazyConv1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LazyConv1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LazyConv2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LazyConv3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LazyConvTranspose1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LazyConvTranspose1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LazyConvTranspose2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LazyConvTranspose3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LazyConvTranspose3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Linear_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LogSigmoid_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LogSigmoid_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LogSoftmax_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_MaxPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Mish_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Mish_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_MultiLabelMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_MultiLabelMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_MultiLabelSoftMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_MultiLabelSoftMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_MultiMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_MultiheadAttention_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_PReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_PReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_PoissonNLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_RMSNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_RNNCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_RNN_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_RNN_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ReLU6_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ReflectionPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ReflectionPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ReflectionPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ReflectionPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ReplicationPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ReplicationPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ReplicationPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_SELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_SELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_SmoothL1Loss_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_SoftMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Softplus_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Softshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Softshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Tanh_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Tanhshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_TransformerDecoderLayer_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_TransformerEncoderLayer_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_TransformerEncoder_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Transformer_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Transformer_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ZeroPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ZeroPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_errors_nn_CircularPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_errors_nn_CircularPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_errors_nn_CircularPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_errors_nn_CircularPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_errors_nn_GRUCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_errors_nn_GRUCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_errors_nn_GRU_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_errors_nn_LSTMCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_errors_nn_LSTM_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_errors_nn_RNNCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_errors_nn_RNNCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_errors_nn_RNN_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_errors_nn_RNN_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_AdaptiveAvgPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_AdaptiveAvgPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_AdaptiveAvgPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_AdaptiveMaxPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_AdaptiveMaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_AvgPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_AvgPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_AvgPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_BCELoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_BCELoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_BatchNorm1d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_BatchNorm1d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_BatchNorm2d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_BatchNorm2d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_BatchNorm3d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_BatchNorm3d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_BatchNorm3d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Bilinear_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Bilinear_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_CELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_CTCLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_CTCLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_CircularPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_CircularPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_CircularPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_CircularPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_CircularPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_CircularPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ConstantPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ConstantPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ConstantPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Conv2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Conv2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ConvTranspose1d_cpu_complex64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ConvTranspose1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ConvTranspose2d_cpu_complex128, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ConvTranspose2d_cpu_complex64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ConvTranspose2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ConvTranspose3d_cpu_complex32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ConvTranspose3d_cpu_complex64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ConvTranspose3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_CosineEmbeddingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_CosineEmbeddingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_CrossEntropyLoss_cpu_float16, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_CrossEntropyLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Embedding_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_FractionalMaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_FractionalMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_FractionalMaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_FractionalMaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_GELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_GELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_GRUCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_GRU_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_GaussianNLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_GroupNorm_cpu_bfloat16, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_GroupNorm_cpu_float16, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_GroupNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Hardswish_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Hardtanh_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_HingeEmbeddingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_HuberLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_HuberLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_InstanceNorm1d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_InstanceNorm2d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_InstanceNorm2d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_InstanceNorm2d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_InstanceNorm3d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_InstanceNorm3d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_KLDivLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LPPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LPPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LPPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LPPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LSTMCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LSTMCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LSTM_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LSTM_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LazyConv1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LazyConv2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LazyConv3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LazyConv3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LazyConvTranspose1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LazyConvTranspose2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LeakyReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Linear_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LocalResponseNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LogSigmoid_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LogSoftmax_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LogSoftmax_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_MSELoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_MarginRankingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_MaxPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_MaxPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_MaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_MaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Mish_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_MultiLabelMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_MultiLabelMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_MultiLabelSoftMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_MultiMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_MultiMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_MultiheadAttention_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_MultiheadAttention_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_MultiheadAttention_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_NLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_NLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_PoissonNLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_RNNCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_RNN_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ReLU6_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ReflectionPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ReflectionPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ReflectionPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ReplicationPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_SELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_SELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_SiLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Sigmoid_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_SmoothL1Loss_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_SmoothL1Loss_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_SoftMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Softmax2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Softmax_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Softmin_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Softplus_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Softplus_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Softshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Softsign_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Tanh_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Tanhshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Tanhshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Threshold_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_TransformerEncoderLayer_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_TransformerEncoder_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_TransformerEncoder_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_TransformerEncoder_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_TransformerEncoder_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ZeroPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ZeroPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ZeroPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ZeroPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_AdaptiveAvgPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_AdaptiveAvgPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_AdaptiveAvgPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_AdaptiveAvgPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_AdaptiveMaxPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_AdaptiveMaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_AdaptiveMaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_AvgPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_BatchNorm1d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_BatchNorm1d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_BatchNorm1d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_BatchNorm2d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_BatchNorm2d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_BatchNorm3d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_BatchNorm3d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_BatchNorm3d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_CELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_CTCLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_CircularPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_CircularPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_CircularPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_ConstantPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_ConstantPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_ConstantPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_Conv1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_Conv2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_Conv3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_ConvTranspose1d_cpu_complex128, test/test_modules.py::TestModuleCPU::test_forward_nn_ConvTranspose1d_cpu_complex64, test/test_modules.py::TestModuleCPU::test_forward_nn_ConvTranspose1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_ConvTranspose2d_cpu_complex64, test/test_modules.py::TestModuleCPU::test_forward_nn_ConvTranspose2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_CosineEmbeddingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_CosineEmbeddingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_CrossEntropyLoss_cpu_float16, test/test_modules.py::TestModuleCPU::test_forward_nn_CrossEntropyLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_ELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_Embedding_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_Embedding_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_FractionalMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_GLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_GaussianNLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_GaussianNLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_GroupNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_Hardtanh_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_Hardtanh_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_HingeEmbeddingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_HingeEmbeddingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_HuberLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_HuberLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_InstanceNorm1d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_InstanceNorm1d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_InstanceNorm1d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_InstanceNorm2d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_InstanceNorm2d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_InstanceNorm3d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_InstanceNorm3d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_KLDivLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_L1Loss_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_LPPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_LPPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_LPPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_LSTMCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_LSTM_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_LSTM_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_LayerNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_LazyConv1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_LazyConv2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_LazyConvTranspose1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_LazyConvTranspose2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_LazyConvTranspose2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_LazyConvTranspose3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_Linear_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_LogSigmoid_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_LogSigmoid_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_LogSoftmax_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_MarginRankingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_MarginRankingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_MaxPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_MaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_MaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_MaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_MultiLabelSoftMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_MultiMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_MultiMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_MultiheadAttention_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_MultiheadAttention_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_NLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_PReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_PReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_RMSNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_RNNCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_RNN_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_RNN_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_ReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_ReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_ReflectionPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_ReflectionPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_ReflectionPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_ReflectionPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_ReflectionPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_ReplicationPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_ReplicationPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_SiLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_SmoothL1Loss_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_SoftMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_SoftMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_Softmax2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_Softmax_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_Softmin_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_Softsign_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_Tanh_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_Tanhshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_Threshold_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_TransformerDecoderLayer_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_TransformerEncoderLayer_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_TransformerEncoderLayer_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_TransformerEncoderLayer_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_TransformerEncoder_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_Transformer_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_ZeroPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_ZeroPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_ZeroPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_AdaptiveAvgPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_AvgPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_AvgPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_BCELoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_BatchNorm1d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_BatchNorm1d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_BatchNorm2d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_BatchNorm3d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_BatchNorm3d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_Bilinear_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_CTCLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_CircularPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_CircularPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_CircularPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_ConstantPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_ConstantPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_Conv1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_Conv2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_ConvTranspose2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_ConvTranspose3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_CosineEmbeddingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_ELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_GELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_GRUCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_GRU_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_GaussianNLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_Hardshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_Hardswish_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_HingeEmbeddingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_InstanceNorm1d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_InstanceNorm3d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_LPPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_LPPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_LSTMCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_LSTM_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_LazyConvTranspose2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_MarginRankingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_MaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_MaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_Mish_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_MultiMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_MultiheadAttention_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_MultiheadAttention_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_PoissonNLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_RNNCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_RNN_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_RNN_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_ReLU6_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_ReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_ReflectionPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_ReplicationPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_SELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_SmoothL1Loss_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_SoftMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_Softmax2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_Softmax_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_Softshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_Tanh_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_TransformerEncoderLayer_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_AdaptiveAvgPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_AdaptiveMaxPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_AdaptiveMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_AvgPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_AvgPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_BCELoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_BCEWithLogitsLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_BatchNorm1d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_BatchNorm1d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_BatchNorm3d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_CTCLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_CircularPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_CircularPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_ConstantPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_ConstantPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_ConstantPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_Conv1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_ConvTranspose1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_ConvTranspose3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_CrossEntropyLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_ELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_FractionalMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_GELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_GLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_GRU_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_Hardtanh_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_HingeEmbeddingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_InstanceNorm1d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_InstanceNorm2d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_InstanceNorm3d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_LPPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_LPPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_LPPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_LayerNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_LazyConv1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_LazyConv2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_LazyConvTranspose2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_LazyConvTranspose3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_LeakyReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_Linear_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_LocalResponseNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_LogSigmoid_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_MSELoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_Mish_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_MultiLabelMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_MultiMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_NLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_PReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_RNNCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_ReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_ReflectionPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_ReplicationPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_Sigmoid_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_Softmax_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_Softshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_Softsign_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_Tanh_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_Threshold_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_TransformerDecoderLayer_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_TransformerEncoder_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_Transformer_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_ZeroPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_ZeroPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_AdaptiveAvgPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_AdaptiveAvgPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_AdaptiveAvgPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_AdaptiveAvgPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_AdaptiveMaxPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_AdaptiveMaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_AdaptiveMaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_AvgPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_AvgPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_AvgPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_AvgPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_BCELoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_BatchNorm1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_CELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_CELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_CTCLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_CTCLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_CircularPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_CircularPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ConstantPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ConstantPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ConstantPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Conv1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Conv2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Conv3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Conv3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ConvTranspose1d_cpu_complex128, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ConvTranspose1d_cpu_complex32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ConvTranspose1d_cpu_complex64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ConvTranspose1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ConvTranspose1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ConvTranspose2d_cpu_complex128, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ConvTranspose2d_cpu_complex64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ConvTranspose2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ConvTranspose2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ConvTranspose3d_cpu_complex128, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ConvTranspose3d_cpu_complex32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ConvTranspose3d_cpu_complex64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ConvTranspose3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_CrossEntropyLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_CrossEntropyLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Embedding_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Embedding_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_GLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_GLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_GRUCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_GRUCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_GRU_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_GRU_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_GaussianNLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_GaussianNLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_GroupNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Hardswish_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Hardswish_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Hardtanh_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_HuberLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_KLDivLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_KLDivLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LPPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LPPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LPPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LPPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LSTMCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LayerNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LazyConv1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LazyConv2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LazyConvTranspose1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LazyConvTranspose2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LeakyReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Linear_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LocalResponseNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LogSigmoid_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_MarginRankingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_MaxPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_MaxPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_MaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_MaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_MaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Mish_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_MultiLabelMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_MultiLabelMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_MultiLabelSoftMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_MultiMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_RNNCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_RNNCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_RNN_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_RNN_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ReflectionPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ReflectionPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ReflectionPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ReplicationPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ReplicationPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ReplicationPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ReplicationPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_SELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_SiLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Softmax2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Softmax_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Softmin_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Softplus_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Tanhshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Threshold_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_TransformerDecoderLayer_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_TransformerEncoder_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Transformer_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Transformer_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ZeroPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ZeroPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_AdaptiveAvgPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_AdaptiveAvgPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_AdaptiveAvgPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_AdaptiveAvgPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_AdaptiveMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_AvgPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_AvgPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_AvgPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_AvgPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_AvgPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_BCELoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_BCELoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_BCEWithLogitsLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_BatchNorm1d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_BatchNorm1d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_BatchNorm3d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_BatchNorm3d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_BatchNorm3d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_CELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_CTCLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_CTCLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_CircularPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_CircularPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_CircularPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_CircularPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_CircularPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_CircularPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ConstantPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Conv1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Conv3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ConvTranspose1d_cpu_complex128, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ConvTranspose1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ConvTranspose2d_cpu_complex128, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ConvTranspose2d_cpu_complex32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ConvTranspose3d_cpu_complex128, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ConvTranspose3d_cpu_complex32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ConvTranspose3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_CosineEmbeddingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_CrossEntropyLoss_cpu_float16, test/test_modules.py::TestModuleCPU::test_memory_format_nn_CrossEntropyLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_CrossEntropyLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Embedding_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_FractionalMaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_FractionalMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_FractionalMaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_GRUCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_GRU_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_GRU_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_GroupNorm_cpu_float16, test/test_modules.py::TestModuleCPU::test_memory_format_nn_GroupNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Hardshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Hardswish_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Hardtanh_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Hardtanh_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_HingeEmbeddingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_HingeEmbeddingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_HuberLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_HuberLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_InstanceNorm1d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_InstanceNorm1d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_L1Loss_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_L1Loss_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LPPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LPPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LPPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LPPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LSTM_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LazyConv1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LazyConv2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LazyConvTranspose1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LazyConvTranspose2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LazyConvTranspose3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LeakyReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Linear_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Linear_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LocalResponseNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LogSigmoid_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LogSoftmax_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_MarginRankingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_MaxPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_MaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_MaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_MaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Mish_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_MultiLabelMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_MultiLabelMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_MultiLabelSoftMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_MultiMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_MultiMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_MultiheadAttention_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_MultiheadAttention_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_NLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_NLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_PReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_PoissonNLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_RMSNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_RNNCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_RNNCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_RNN_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_RNN_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ReflectionPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ReplicationPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ReplicationPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_SiLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_SiLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Sigmoid_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Sigmoid_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_SmoothL1Loss_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_SoftMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Softmax2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Softmax_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Softmax_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Softplus_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Softshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Softsign_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Tanh_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Tanhshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Threshold_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_TransformerEncoderLayer_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_TransformerEncoderLayer_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_TransformerEncoderLayer_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_TransformerEncoder_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_TransformerEncoder_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Transformer_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ZeroPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ZeroPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ZeroPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_AdaptiveAvgPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_AdaptiveAvgPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_AdaptiveAvgPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_AdaptiveMaxPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_AdaptiveMaxPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_AdaptiveMaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_AdaptiveMaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_AdaptiveMaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_AvgPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_AvgPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_AvgPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_AvgPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_AvgPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_BCEWithLogitsLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_BCEWithLogitsLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_BatchNorm1d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_BatchNorm1d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_BatchNorm1d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_BatchNorm2d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_BatchNorm2d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_BatchNorm3d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_BatchNorm3d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Bilinear_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Bilinear_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_CELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_CTCLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_CircularPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_CircularPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_CircularPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_CircularPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ConstantPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ConstantPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ConstantPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ConstantPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ConstantPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Conv1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Conv2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Conv3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ConvTranspose1d_cpu_complex128, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ConvTranspose1d_cpu_complex32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ConvTranspose1d_cpu_complex64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ConvTranspose1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ConvTranspose1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ConvTranspose2d_cpu_complex128, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ConvTranspose2d_cpu_complex64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ConvTranspose2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ConvTranspose3d_cpu_complex128, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ConvTranspose3d_cpu_complex64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ConvTranspose3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ConvTranspose3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_CosineEmbeddingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_CosineEmbeddingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Embedding_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Embedding_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_FractionalMaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_FractionalMaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_GELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_GRUCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_GRU_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_GaussianNLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_GroupNorm_cpu_bfloat16, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_GroupNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_GroupNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Hardshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Hardshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Hardswish_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Hardswish_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_HingeEmbeddingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_HuberLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_InstanceNorm1d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_InstanceNorm1d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_InstanceNorm2d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_InstanceNorm2d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_InstanceNorm2d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_InstanceNorm3d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_InstanceNorm3d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_KLDivLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_L1Loss_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_L1Loss_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LPPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LPPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LPPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LSTMCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LSTM_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LSTM_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LSTM_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LazyConv1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LazyConv1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LazyConv2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LazyConv3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LeakyReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LogSigmoid_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LogSigmoid_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LogSoftmax_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_MarginRankingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_MarginRankingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_MaxPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_MaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_MaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Mish_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Mish_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_MultiLabelMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_MultiLabelMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_MultiLabelSoftMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_MultiMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_MultiMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_MultiheadAttention_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_NLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_PReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_PReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_RMSNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_RNNCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_RNNCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_RNN_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_RNN_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ReLU6_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ReLU6_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ReflectionPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ReflectionPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ReflectionPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ReplicationPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ReplicationPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Sigmoid_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Sigmoid_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_SmoothL1Loss_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_SmoothL1Loss_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Softmax2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Softmax2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Softmax_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Softplus_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Softshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Softshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Tanh_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Tanhshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Tanhshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Threshold_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_TransformerDecoderLayer_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_TransformerEncoderLayer_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_TransformerEncoderLayer_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_TransformerEncoderLayer_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_TransformerEncoder_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_TransformerEncoder_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Transformer_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ZeroPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ZeroPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_AdaptiveAvgPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_AdaptiveAvgPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_AdaptiveAvgPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_AdaptiveAvgPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_AdaptiveMaxPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_AdaptiveMaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_AvgPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_AvgPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_AvgPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_AvgPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_BCEWithLogitsLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_BatchNorm2d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_CELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_CTCLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_CTCLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_CircularPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ConstantPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ConstantPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Conv1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Conv3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Conv3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ConvTranspose1d_cpu_complex32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ConvTranspose1d_cpu_complex64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ConvTranspose1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ConvTranspose1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ConvTranspose2d_cpu_complex128, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ConvTranspose2d_cpu_complex32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ConvTranspose2d_cpu_complex64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ConvTranspose2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ConvTranspose2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ConvTranspose3d_cpu_complex32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ConvTranspose3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ConvTranspose3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_CosineEmbeddingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Embedding_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_FractionalMaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_FractionalMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_GELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_GELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_GRUCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_GRUCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_GRU_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_GRU_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_GaussianNLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_GroupNorm_cpu_float16, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_GroupNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Hardshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Hardtanh_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_HingeEmbeddingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_InstanceNorm1d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_InstanceNorm3d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_KLDivLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_KLDivLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_L1Loss_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LPPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LPPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LSTMCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LSTM_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LSTM_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LayerNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LayerNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LazyConv3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LazyConvTranspose1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LazyConvTranspose3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LeakyReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Linear_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Linear_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LocalResponseNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LocalResponseNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LogSigmoid_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LogSoftmax_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_MSELoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_MarginRankingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_MarginRankingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_MaxPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_MaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_MaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_MultiLabelMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_MultiLabelSoftMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_MultiMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_MultiheadAttention_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_PReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_PoissonNLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_RMSNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_RNNCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_RNN_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_RNN_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_RNN_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_RNN_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ReflectionPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ReflectionPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ReplicationPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ReplicationPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ReplicationPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_SELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_SELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_SiLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_SiLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Sigmoid_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Sigmoid_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Softmax2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Softmax_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Softplus_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Softsign_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Tanh_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Tanhshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Threshold_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_TransformerDecoderLayer_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_TransformerEncoderLayer_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_TransformerEncoder_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Transformer_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ZeroPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ZeroPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ZeroPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ZeroPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ZeroPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_AdaptiveAvgPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_AdaptiveAvgPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_AdaptiveAvgPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_AdaptiveMaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_AvgPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_AvgPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_AvgPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_BCELoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_BCEWithLogitsLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_BatchNorm1d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_BatchNorm1d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_BatchNorm2d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_BatchNorm2d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_BatchNorm3d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_BatchNorm3d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_Bilinear_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_CELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_CircularPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_CircularPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_CircularPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_CircularPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_CircularPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_ConstantPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_ConstantPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_ConstantPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_Conv1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_Conv2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_ConvTranspose1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_ConvTranspose2d_cpu_complex128, test/test_modules.py::TestModuleCPU::test_repr_nn_ConvTranspose2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_ConvTranspose2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_ConvTranspose3d_cpu_complex32, test/test_modules.py::TestModuleCPU::test_repr_nn_CosineEmbeddingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_CosineEmbeddingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_CrossEntropyLoss_cpu_float16, test/test_modules.py::TestModuleCPU::test_repr_nn_CrossEntropyLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_ELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_ELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_Embedding_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_FractionalMaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_FractionalMaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_GLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_GRUCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_GRU_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_GaussianNLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_GroupNorm_cpu_bfloat16, test/test_modules.py::TestModuleCPU::test_repr_nn_GroupNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_Hardshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_Hardshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_Hardswish_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_Hardtanh_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_Hardtanh_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_HingeEmbeddingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_HuberLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_InstanceNorm1d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_InstanceNorm2d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_InstanceNorm3d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_InstanceNorm3d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_KLDivLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_KLDivLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_LPPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_LPPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_LPPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_LPPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_LSTMCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_LSTMCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_LSTM_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_LayerNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_LayerNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_LazyConv1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_LazyConv2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_LazyConvTranspose1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_LazyConvTranspose2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_LocalResponseNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_LogSoftmax_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_LogSoftmax_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_MSELoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_MarginRankingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_MaxPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_MaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_MaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_MaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_MaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_Mish_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_MultiLabelSoftMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_MultiMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_MultiMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_MultiheadAttention_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_MultiheadAttention_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_MultiheadAttention_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_NLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_PReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_PoissonNLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_PoissonNLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_RNNCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_RNN_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_RNN_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_ReflectionPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_ReflectionPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_ReflectionPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_ReplicationPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_ReplicationPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_ReplicationPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_SELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_SELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_SiLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_SiLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_Sigmoid_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_SmoothL1Loss_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_SoftMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_SoftMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_Softmax_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_Softplus_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_Softshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_Softsign_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_Tanh_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_Tanhshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_Threshold_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_TransformerDecoderLayer_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_TransformerEncoderLayer_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_TransformerEncoderLayer_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_TransformerEncoderLayer_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_TransformerEncoder_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_Transformer_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_ZeroPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_ZeroPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_ZeroPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_AdaptiveAvgPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_AdaptiveMaxPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_AdaptiveMaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_AdaptiveMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_AdaptiveMaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_AvgPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_AvgPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_BCELoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_BCELoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_BCEWithLogitsLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_BatchNorm1d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_BatchNorm1d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_BatchNorm2d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_BatchNorm2d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_BatchNorm2d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_BatchNorm3d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_BatchNorm3d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_Bilinear_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_Bilinear_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_CELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_CTCLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_CTCLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_CircularPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_CircularPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_CircularPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_ConstantPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_ConstantPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_ConstantPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_ConstantPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_Conv1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_Conv1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_Conv2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_Conv2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_ConvTranspose1d_cpu_complex128, test/test_modules.py::TestModuleCPU::test_save_load_nn_ConvTranspose1d_cpu_complex64, test/test_modules.py::TestModuleCPU::test_save_load_nn_ConvTranspose1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_ConvTranspose2d_cpu_complex128, test/test_modules.py::TestModuleCPU::test_save_load_nn_ConvTranspose2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_ConvTranspose3d_cpu_complex128, test/test_modules.py::TestModuleCPU::test_save_load_nn_CosineEmbeddingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_CosineEmbeddingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_CrossEntropyLoss_cpu_float16, test/test_modules.py::TestModuleCPU::test_save_load_nn_CrossEntropyLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_CrossEntropyLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_ELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_Embedding_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_Embedding_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_FractionalMaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_GELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_GLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_GLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_GRU_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_GRU_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_GRU_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_GaussianNLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_GaussianNLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_GroupNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_Hardswish_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_Hardswish_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_Hardtanh_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_Hardtanh_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_HingeEmbeddingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_HuberLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_InstanceNorm1d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_InstanceNorm2d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_InstanceNorm3d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_InstanceNorm3d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_L1Loss_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_LPPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_LPPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_LPPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_LSTMCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_LSTM_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_LSTM_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_LazyConv2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_LazyConv2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_LazyConvTranspose2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_LazyConvTranspose3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_Linear_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_LocalResponseNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_LogSoftmax_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_LogSoftmax_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_MSELoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_MarginRankingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_MarginRankingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_MaxPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_MaxPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_MaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_MaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_MaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_MultiLabelSoftMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_MultiLabelSoftMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_MultiMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_MultiheadAttention_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_NLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_PReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_PoissonNLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_PoissonNLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_RMSNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_RNNCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_RNN_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_RNN_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_RNN_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_RNN_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_ReLU6_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_ReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_ReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_ReflectionPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_ReflectionPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_ReflectionPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_SELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_SELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_SiLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_SiLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_Sigmoid_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_SmoothL1Loss_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_SoftMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_Softmax2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_Softmax_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_Softmax_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_Softmin_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_Softplus_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_Softplus_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_Softshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_Softshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_Softsign_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_Tanhshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_TransformerDecoderLayer_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_TransformerEncoderLayer_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_TransformerEncoderLayer_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_TransformerEncoderLayer_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_TransformerEncoder_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_TransformerEncoder_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_Transformer_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_Transformer_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_ZeroPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_ZeroPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_to_empty_nn_AdaptiveAvgPool1d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_AdaptiveAvgPool1d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_AdaptiveAvgPool2d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_AdaptiveAvgPool3d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_AdaptiveAvgPool3d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_AdaptiveMaxPool2d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_AdaptiveMaxPool3d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_AdaptiveMaxPool3d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_AvgPool1d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_AvgPool2d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_AvgPool3d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_BCELoss_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_BCEWithLogitsLoss_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_BatchNorm1d_eval_mode_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_BatchNorm1d_eval_mode_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_BatchNorm1d_train_mode_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_BatchNorm1d_train_mode_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_BatchNorm2d_eval_mode_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_BatchNorm3d_eval_mode_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_BatchNorm3d_train_mode_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Bilinear_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Bilinear_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_CELU_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_CELU_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_CTCLoss_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_CircularPad1d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_CircularPad2d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_CircularPad2d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_CircularPad3d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_CircularPad3d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ConstantPad1d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ConstantPad2d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Conv2d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Conv2d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Conv3d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Conv3d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ConvTranspose1d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ConvTranspose1d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ConvTranspose2d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ConvTranspose2d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ConvTranspose3d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ConvTranspose3d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_CosineEmbeddingLoss_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_CrossEntropyLoss_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Embedding_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_FractionalMaxPool2d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_FractionalMaxPool2d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_FractionalMaxPool3d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_GELU_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_GLU_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_GRUCell_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_GRUCell_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_GRU_eval_mode_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Hardswish_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Hardtanh_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_HuberLoss_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_HuberLoss_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_InstanceNorm1d_eval_mode_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_InstanceNorm2d_eval_mode_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_InstanceNorm2d_train_mode_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_InstanceNorm2d_train_mode_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_InstanceNorm3d_eval_mode_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_InstanceNorm3d_train_mode_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_KLDivLoss_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_L1Loss_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_LPPool2d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_LPPool3d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_LPPool3d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_LSTMCell_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_LSTM_eval_mode_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_LSTM_train_mode_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_LayerNorm_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_LeakyReLU_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_LeakyReLU_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Linear_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Linear_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_LocalResponseNorm_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_LocalResponseNorm_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_LogSigmoid_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_MSELoss_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_MaxPool1d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_MaxPool2d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_MaxPool2d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_MaxPool3d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Mish_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Mish_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_MultiLabelSoftMarginLoss_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_MultiMarginLoss_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_MultiMarginLoss_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_MultiheadAttention_train_mode_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_NLLLoss_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_NLLLoss_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_PReLU_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_RNNCell_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_RNN_eval_mode_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_RNN_train_mode_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_RNN_train_mode_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ReLU6_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ReflectionPad1d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ReflectionPad3d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ReflectionPad3d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ReplicationPad1d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ReplicationPad2d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ReplicationPad3d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_SELU_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Sigmoid_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_SmoothL1Loss_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_SoftMarginLoss_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_SoftMarginLoss_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Softmax2d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Softmax2d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Softmax_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Softmin_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Softplus_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Softplus_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Softshrink_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Softsign_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Tanh_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Tanhshrink_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Threshold_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_TransformerDecoderLayer_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_TransformerEncoderLayer_eval_mode_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_TransformerEncoderLayer_train_mode_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_TransformerEncoder_eval_mode_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_TransformerEncoder_eval_mode_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_TransformerEncoder_train_mode_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Transformer_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Transformer_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ZeroPad1d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ZeroPad1d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ZeroPad2d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ZeroPad2d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AdaptiveAvgPool1d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AdaptiveAvgPool1d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AdaptiveAvgPool1d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AdaptiveAvgPool2d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AdaptiveAvgPool2d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AdaptiveAvgPool3d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AdaptiveMaxPool1d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AdaptiveMaxPool1d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AdaptiveMaxPool2d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AdaptiveMaxPool2d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AdaptiveMaxPool3d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AdaptiveMaxPool3d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AvgPool1d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AvgPool2d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AvgPool2d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AvgPool2d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AvgPool3d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AvgPool3d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BCELoss_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BCELoss_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BatchNorm1d_eval_mode_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BatchNorm1d_train_mode_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BatchNorm2d_train_mode_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BatchNorm2d_train_mode_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BatchNorm3d_eval_mode_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BatchNorm3d_eval_mode_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BatchNorm3d_eval_mode_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BatchNorm3d_train_mode_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BatchNorm3d_train_mode_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BatchNorm3d_train_mode_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Bilinear_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_CELU_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_CELU_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_CELU_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_CTCLoss_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_CTCLoss_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_CircularPad1d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_CircularPad1d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_CircularPad1d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_CircularPad2d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_CircularPad2d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_CircularPad3d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ConstantPad1d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ConstantPad1d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ConstantPad2d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ConstantPad2d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ConstantPad2d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ConstantPad3d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ConstantPad3d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ConstantPad3d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ConstantPad3d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Conv1d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Conv1d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Conv2d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Conv2d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Conv2d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Conv3d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Conv3d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ConvTranspose1d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ConvTranspose1d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ConvTranspose1d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ConvTranspose2d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ConvTranspose2d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ConvTranspose3d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ConvTranspose3d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ConvTranspose3d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_CosineEmbeddingLoss_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_CrossEntropyLoss_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_CrossEntropyLoss_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ELU_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ELU_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Embedding_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Embedding_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Embedding_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_FractionalMaxPool2d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_FractionalMaxPool2d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_FractionalMaxPool3d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_FractionalMaxPool3d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_FractionalMaxPool3d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_FractionalMaxPool3d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_GELU_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_GLU_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_GLU_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_GLU_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_GRUCell_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_GRUCell_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_GRU_eval_mode_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_GRU_eval_mode_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_GRU_train_mode_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_GRU_train_mode_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_GaussianNLLLoss_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_GaussianNLLLoss_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_GaussianNLLLoss_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_GroupNorm_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_GroupNorm_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Hardshrink_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Hardshrink_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Hardshrink_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Hardswish_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Hardtanh_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Hardtanh_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Hardtanh_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_HingeEmbeddingLoss_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_HuberLoss_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_InstanceNorm1d_eval_mode_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_InstanceNorm2d_eval_mode_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_InstanceNorm2d_train_mode_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_InstanceNorm2d_train_mode_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_InstanceNorm3d_eval_mode_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_InstanceNorm3d_train_mode_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_KLDivLoss_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_L1Loss_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LPPool1d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LPPool1d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LPPool1d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LPPool1d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LPPool3d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LPPool3d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LSTMCell_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LSTM_eval_mode_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LSTM_eval_mode_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LSTM_eval_mode_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LSTM_train_mode_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LayerNorm_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LayerNorm_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LeakyReLU_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LeakyReLU_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Linear_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LocalResponseNorm_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LocalResponseNorm_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LocalResponseNorm_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LogSigmoid_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LogSigmoid_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LogSigmoid_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LogSigmoid_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LogSoftmax_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LogSoftmax_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MSELoss_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MSELoss_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MSELoss_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MSELoss_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MarginRankingLoss_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MarginRankingLoss_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MarginRankingLoss_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MaxPool1d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MaxPool1d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MaxPool1d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MaxPool2d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MaxPool3d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MaxPool3d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Mish_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Mish_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MultiLabelMarginLoss_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MultiLabelMarginLoss_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MultiLabelSoftMarginLoss_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MultiMarginLoss_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MultiMarginLoss_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MultiheadAttention_eval_mode_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MultiheadAttention_train_mode_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MultiheadAttention_train_mode_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MultiheadAttention_train_mode_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_NLLLoss_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_NLLLoss_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_PReLU_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_PReLU_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_PoissonNLLLoss_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_PoissonNLLLoss_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_PoissonNLLLoss_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_RMSNorm_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_RMSNorm_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_RNNCell_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_RNNCell_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_RNNCell_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_RNN_eval_mode_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_RNN_train_mode_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_RNN_train_mode_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReLU6_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReLU_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReflectionPad1d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReflectionPad2d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReflectionPad2d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReflectionPad2d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReflectionPad3d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReflectionPad3d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReplicationPad1d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReplicationPad2d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReplicationPad2d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReplicationPad2d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReplicationPad3d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_SELU_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_SiLU_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_SiLU_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Sigmoid_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Sigmoid_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_SmoothL1Loss_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_SmoothL1Loss_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_SmoothL1Loss_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Softmax2d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Softmax_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Softmin_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Softplus_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Softshrink_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Softshrink_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Softshrink_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Softsign_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Softsign_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Tanhshrink_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Threshold_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Threshold_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_TransformerDecoderLayer_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_TransformerEncoderLayer_eval_mode_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_TransformerEncoderLayer_eval_mode_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_TransformerEncoderLayer_train_mode_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_TransformerEncoderLayer_train_mode_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_TransformerEncoderLayer_train_mode_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_TransformerEncoder_eval_mode_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_TransformerEncoder_eval_mode_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_TransformerEncoder_train_mode_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Transformer_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Transformer_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Transformer_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ZeroPad1d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ZeroPad1d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ZeroPad2d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ZeroPad2d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ZeroPad3d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ZeroPad3d_swap_True_set_grad_True_cpu_float32 2025-08-26T22:12:06.2326429Z 2025-08-26T22:12:11.4789371Z Running test_jit 1/1 ... [2025-08-26 22:12:11.478690] 2025-08-26T22:12:11.4795585Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:12:11.4796813Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_jit.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:12:11.479266] 2025-08-26T22:12:36.7524114Z 2025-08-26T22:12:36.7524953Z test_testing 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_testing_1.1_6a18ab485a35ae36_.log 2025-08-26T22:12:36.8396870Z Running 2070 items in this shard: test/test_testing.py::TestTestingCPU::test_assertEqual_longMessage_cpu, test/test_testing.py::TestTestingCPU::test_assertEqual_numpy_cpu_bool, test/test_testing.py::TestTestingCPU::test_assertEqual_numpy_cpu_complex128, test/test_testing.py::TestTestingCPU::test_assertEqual_numpy_cpu_complex64, test/test_testing.py::TestTestingCPU::test_assertEqual_numpy_cpu_float16, test/test_testing.py::TestTestingCPU::test_assertEqual_numpy_cpu_float32, test/test_testing.py::TestTestingCPU::test_assertEqual_numpy_cpu_float64, test/test_testing.py::TestTestingCPU::test_assertEqual_numpy_cpu_int16, test/test_testing.py::TestTestingCPU::test_assertEqual_numpy_cpu_int32, test/test_testing.py::TestTestingCPU::test_assertEqual_numpy_cpu_int64, test/test_testing.py::TestTestingCPU::test_assertEqual_numpy_cpu_int8, test/test_testing.py::TestTestingCPU::test_assertEqual_numpy_cpu_uint8, test/test_testing.py::TestTestingCPU::test_cuda_assert_should_not_stop_common_distributed_test_suite_cpu, test/test_testing.py::TestTestingCPU::test_cuda_assert_should_stop_common_device_type_test_suite_cpu, test/test_testing.py::TestTestingCPU::test_cuda_assert_should_stop_common_utils_test_suite_cpu, test/test_testing.py::TestTestingCPU::test_get_supported_dtypes_cpu, test/test_testing.py::TestTestingCPU::test_isclose_atol_rtol_greater_than_zero_cpu_bool, test/test_testing.py::TestTestingCPU::test_isclose_atol_rtol_greater_than_zero_cpu_float16, test/test_testing.py::TestTestingCPU::test_isclose_atol_rtol_greater_than_zero_cpu_float32, test/test_testing.py::TestTestingCPU::test_isclose_atol_rtol_greater_than_zero_cpu_float64, test/test_testing.py::TestTestingCPU::test_isclose_atol_rtol_greater_than_zero_cpu_int16, test/test_testing.py::TestTestingCPU::test_isclose_atol_rtol_greater_than_zero_cpu_int32, test/test_testing.py::TestTestingCPU::test_isclose_atol_rtol_greater_than_zero_cpu_int64, test/test_testing.py::TestTestingCPU::test_isclose_atol_rtol_greater_than_zero_cpu_int8, test/test_testing.py::TestTestingCPU::test_isclose_atol_rtol_greater_than_zero_cpu_uint8, test/test_testing.py::TestTestingCPU::test_isclose_bool_cpu, test/test_testing.py::TestTestingCPU::test_isclose_complex_cpu_complex128, test/test_testing.py::TestTestingCPU::test_isclose_complex_cpu_complex64, test/test_testing.py::TestTestingCPU::test_isclose_equality_shortcut_cpu, test/test_testing.py::TestTestingCPU::test_isclose_float_cpu_float16, test/test_testing.py::TestTestingCPU::test_isclose_float_cpu_float32, test/test_testing.py::TestTestingCPU::test_isclose_float_cpu_float64, test/test_testing.py::TestTestingCPU::test_isclose_integer_cpu_int16, test/test_testing.py::TestTestingCPU::test_isclose_integer_cpu_int32, test/test_testing.py::TestTestingCPU::test_isclose_integer_cpu_int64, test/test_testing.py::TestTestingCPU::test_isclose_integer_cpu_int8, test/test_testing.py::TestTestingCPU::test_isclose_integer_cpu_uint8, test/test_testing.py::TestTestingCPU::test_isclose_nan_equality_shortcut_cpu_complex128, test/test_testing.py::TestTestingCPU::test_isclose_nan_equality_shortcut_cpu_complex64, test/test_testing.py::TestTestingCPU::test_isclose_nan_equality_shortcut_cpu_float16, test/test_testing.py::TestTestingCPU::test_isclose_nan_equality_shortcut_cpu_float32, test/test_testing.py::TestTestingCPU::test_isclose_nan_equality_shortcut_cpu_float64, test/test_testing.py::TestTestingCPU::test_setup_and_teardown_run_for_device_specific_tests_cpu, test/test_testing.py::TestTestingCPU::test_supported_dtypes_abs_cpu, test/test_testing.py::TestFrameworkUtils::test_filtering_env_var, test/test_testing.py::TestAssertClose::test_bool, test/test_testing.py::TestAssertClose::test_default_tolerance_selection_mismatching_dtypes, test/test_testing.py::TestAssertClose::test_docstring_examples, test/test_testing.py::TestAssertClose::test_matching, test/test_testing.py::TestAssertClose::test_matching_atol, test/test_testing.py::TestAssertClose::test_matching_conjugate_bit, test/test_testing.py::TestAssertClose::test_matching_nan, test/test_testing.py::TestAssertClose::test_matching_nan_with_equal_nan, test/test_testing.py::TestAssertClose::test_matching_rtol, test/test_testing.py::TestAssertClose::test_meta, test/test_testing.py::TestAssertClose::test_mismatching_dtype, test/test_testing.py::TestAssertClose::test_mismatching_dtype_no_check, test/test_testing.py::TestAssertClose::test_mismatching_layout, test/test_testing.py::TestAssertClose::test_mismatching_layout_no_check, test/test_testing.py::TestAssertClose::test_mismatching_shape, test/test_testing.py::TestAssertClose::test_mismatching_stride, test/test_testing.py::TestAssertClose::test_mismatching_stride_no_check, test/test_testing.py::TestAssertClose::test_mismatching_types, test/test_testing.py::TestAssertClose::test_mismatching_types_subclasses, test/test_testing.py::TestAssertClose::test_mismatching_types_type_equality, test/test_testing.py::TestAssertClose::test_mismatching_values, test/test_testing.py::TestAssertClose::test_mismatching_values_atol, test/test_testing.py::TestAssertClose::test_mismatching_values_rtol, test/test_testing.py::TestAssertClose::test_none, test/test_testing.py::TestAssertClose::test_none_mismatch, test/test_testing.py::TestAssertClose::test_numpy, test/test_testing.py::TestAssertClose::test_only_atol, test/test_testing.py::TestAssertClose::test_only_rtol, test/test_testing.py::TestAssertClose::test_scalar, test/test_testing.py::TestAssertClose::test_unexpected_error_compare, test/test_testing.py::TestAssertClose::test_unexpected_error_originate, test/test_testing.py::TestAssertClose::test_unknown_layout, test/test_testing.py::TestAssertClose::test_unknown_type, test/test_testing.py::TestAssertCloseErrorMessage::test_abs_diff, test/test_testing.py::TestAssertCloseErrorMessage::test_abs_diff_scalar, test/test_testing.py::TestAssertCloseErrorMessage::test_atol, test/test_testing.py::TestAssertCloseErrorMessage::test_identifier_scalars, test/test_testing.py::TestAssertCloseErrorMessage::test_identifier_tensor_likes, test/test_testing.py::TestAssertCloseErrorMessage::test_mismatched_elements, test/test_testing.py::TestAssertCloseErrorMessage::test_msg_callable, test/test_testing.py::TestAssertCloseErrorMessage::test_msg_str, test/test_testing.py::TestAssertCloseErrorMessage::test_not_close, test/test_testing.py::TestAssertCloseErrorMessage::test_not_equal, test/test_testing.py::TestAssertCloseErrorMessage::test_rel_diff, test/test_testing.py::TestAssertCloseErrorMessage::test_rel_diff_scalar, test/test_testing.py::TestAssertCloseErrorMessage::test_rtol, test/test_testing.py::TestAssertCloseErrorMessage::test_small_float_dtype, test/test_testing.py::TestAssertCloseErrorMessage::test_zero_div_zero, test/test_testing.py::TestAssertCloseContainer::test_mapping_mismatching_keys, test/test_testing.py::TestAssertCloseContainer::test_mapping_mismatching_values_msg, test/test_testing.py::TestAssertCloseContainer::test_sequence_mismatching_len, test/test_testing.py::TestAssertCloseContainer::test_sequence_mismatching_values_msg, test/test_testing.py::TestAssertCloseSparseCOO::test_matching_coalesced, test/test_testing.py::TestAssertCloseSparseCOO::test_matching_uncoalesced, test/test_testing.py::TestAssertCloseSparseCOO::test_mismatching_indices_msg, test/test_testing.py::TestAssertCloseSparseCOO::test_mismatching_nnz, test/test_testing.py::TestAssertCloseSparseCOO::test_mismatching_sparse_dims, test/test_testing.py::TestAssertCloseSparseCOO::test_mismatching_values_msg, test/test_testing.py::TestAssertCloseSparseCSR::test_matching, test/test_testing.py::TestAssertCloseSparseCSR::test_mismatching_col_indices_msg, test/test_testing.py::TestAssertCloseSparseCSR::test_mismatching_crow_indices_msg, test/test_testing.py::TestAssertCloseSparseCSR::test_mismatching_values_msg, test/test_testing.py::TestAssertCloseSparseCSC::test_matching, test/test_testing.py::TestAssertCloseSparseCSC::test_mismatching_ccol_indices_msg, test/test_testing.py::TestAssertCloseSparseCSC::test_mismatching_row_indices_msg, test/test_testing.py::TestAssertCloseSparseCSC::test_mismatching_values_msg, test/test_testing.py::TestAssertCloseSparseBSR::test_matching, test/test_testing.py::TestAssertCloseSparseBSR::test_mismatching_col_indices_msg, test/test_testing.py::TestAssertCloseSparseBSR::test_mismatching_crow_indices_msg, test/test_testing.py::TestAssertCloseSparseBSR::test_mismatching_values_msg, test/test_testing.py::TestAssertCloseSparseBSC::test_matching, test/test_testing.py::TestAssertCloseSparseBSC::test_mismatching_ccol_indices_msg, test/test_testing.py::TestAssertCloseSparseBSC::test_mismatching_row_indices_msg, test/test_testing.py::TestAssertCloseSparseBSC::test_mismatching_values_msg, test/test_testing.py::TestAssertCloseQuantized::test_matching_per_channel, test/test_testing.py::TestAssertCloseQuantized::test_matching_per_tensor, test/test_testing.py::TestAssertCloseQuantized::test_mismatching_is_quantized, test/test_testing.py::TestAssertCloseQuantized::test_mismatching_qscheme, test/test_testing.py::TestMakeTensorCPU::test_exclude_zero_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_exclude_zero_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_exclude_zero_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_exclude_zero_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_exclude_zero_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_exclude_zero_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_exclude_zero_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_exclude_zero_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_exclude_zero_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_exclude_zero_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_exclude_zero_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_exclude_zero_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_exclude_zero_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types0_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types0_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types0_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types0_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types0_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types0_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types0_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types0_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types0_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types0_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types0_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types0_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types0_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types1_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types1_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types1_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types1_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types1_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types1_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types1_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types1_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types1_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types1_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types1_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types1_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types1_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types2_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types2_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types2_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types2_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types2_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types2_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types2_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types2_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types2_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types2_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types2_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types2_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types2_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types3_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types3_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types3_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types3_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types3_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types3_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types3_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types3_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types3_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types3_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types3_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types3_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types3_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types0_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types0_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types0_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types0_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types0_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types0_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types0_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types0_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types0_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types0_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types0_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types0_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types0_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types1_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types1_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types1_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types1_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types1_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types1_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types1_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types1_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types1_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types1_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types1_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types1_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types1_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types2_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types2_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types2_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types2_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types2_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types2_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types2_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types2_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types2_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types2_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types2_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types2_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types2_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types3_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types3_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types3_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types3_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types3_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types3_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types3_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types3_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types3_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types3_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types3_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types3_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types3_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types0_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types0_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types0_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types0_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types0_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types0_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types0_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types0_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types0_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types0_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types0_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types0_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types0_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types1_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types1_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types1_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types1_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types1_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types1_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types1_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types1_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types1_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types1_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types1_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types1_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types1_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types2_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types2_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types2_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types2_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types2_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types2_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types2_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types2_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types2_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types2_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types2_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types2_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types2_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types3_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types3_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types3_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types3_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types3_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types3_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types3_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types3_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types3_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types3_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types3_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types3_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types3_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_high_boolean_integral1_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_high_boolean_integral1_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_high_boolean_integral1_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_high_boolean_integral1_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_high_boolean_integral1_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_high_boolean_integral1_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_high_boolean_integral2_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_high_boolean_integral2_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_high_boolean_integral2_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_high_boolean_integral2_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_high_boolean_integral2_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_high_boolean_integral2_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_high_default_smoke_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_high_default_smoke_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_high_default_smoke_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_high_default_smoke_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_high_default_smoke_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_high_default_smoke_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_high_default_smoke_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_high_default_smoke_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_high_default_smoke_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_high_default_smoke_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_high_default_smoke_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_high_default_smoke_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_high_default_smoke_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high0_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high0_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high0_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high0_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high0_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high0_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high0_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high0_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high0_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high0_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high0_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high0_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high0_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high1_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high1_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high1_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high1_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high1_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high1_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high1_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high1_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high1_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high1_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high1_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high1_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high1_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high2_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high2_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high2_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high2_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high2_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high2_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high2_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high2_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high2_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high2_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high2_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high2_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high2_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_high_outside_valid_range_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_high_outside_valid_range_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_high_outside_valid_range_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_high_outside_valid_range_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_high_outside_valid_range_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_high_outside_valid_range_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_high_outside_valid_range_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_high_outside_valid_range_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_high_outside_valid_range_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_high_outside_valid_range_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_high_outside_valid_range_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_high_outside_valid_range_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_high_outside_valid_range_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_high_smoke_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_high_smoke_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_high_smoke_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_high_smoke_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_high_smoke_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_high_smoke_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_high_smoke_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_high_smoke_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_high_smoke_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_high_smoke_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_high_smoke_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_high_smoke_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_high_smoke_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape0_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape0_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape0_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape0_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape0_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape0_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape0_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape0_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape0_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape0_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape0_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape0_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape0_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape1_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape1_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape1_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape1_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape1_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape1_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape1_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape1_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape1_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape1_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape1_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape1_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape1_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape2_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape2_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape2_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape2_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape2_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape2_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape2_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape2_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape2_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape2_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape2_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape2_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape2_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape3_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape3_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape3_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape3_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape3_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape3_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape3_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape3_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape3_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape3_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape3_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape3_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape3_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape4_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape4_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape4_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape4_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape4_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape4_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape4_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape4_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape4_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape4_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape4_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape4_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape4_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_memory_format_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_memory_format_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_memory_format_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_memory_format_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_memory_format_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_memory_format_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_memory_format_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_memory_format_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_memory_format_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_memory_format_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_memory_format_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_memory_format_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_memory_format_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape0_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape0_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape0_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape0_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape0_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape0_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape0_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape0_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape0_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape0_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape0_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape0_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape0_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape1_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape1_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape1_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape1_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape1_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape1_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape1_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape1_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape1_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape1_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape1_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape1_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape1_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape2_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape2_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape2_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape2_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape2_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape2_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape2_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape2_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape2_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape2_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape2_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape2_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape2_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape3_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape3_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape3_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape3_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape3_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape3_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape3_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape3_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape3_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape3_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape3_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape3_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape3_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape4_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape4_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape4_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape4_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape4_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape4_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape4_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape4_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape4_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape4_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape4_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape4_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape4_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape5_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape5_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape5_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape5_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape5_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape5_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape5_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape5_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape5_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape5_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape5_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape5_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape5_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape6_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape6_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape6_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape6_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape6_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape6_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape6_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape6_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape6_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape6_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape6_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape6_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape6_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape0_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape0_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape0_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape0_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape0_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape0_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape0_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape0_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape0_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape0_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape0_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape0_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape0_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape1_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape1_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape1_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape1_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape1_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape1_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape1_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape1_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape1_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape1_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape1_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape1_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape1_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape2_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape2_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape2_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape2_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape2_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape2_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape2_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape2_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape2_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape2_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape2_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape2_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape2_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape3_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape3_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape3_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape3_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape3_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape3_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape3_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape3_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape3_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape3_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape3_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape3_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape3_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape4_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape4_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape4_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape4_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape4_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape4_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape4_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape4_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape4_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape4_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape4_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape4_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape4_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape5_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape5_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape5_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape5_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape5_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape5_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape5_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape5_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape5_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape5_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape5_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape5_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape5_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape6_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape6_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape6_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape6_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape6_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape6_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape6_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape6_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape6_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape6_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape6_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape6_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape6_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_False_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_False_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_False_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_False_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_False_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_False_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_False_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_False_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_False_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_False_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_False_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_False_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_False_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_True_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_True_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_True_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_True_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_True_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_True_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_True_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_True_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_True_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_True_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_True_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_True_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_True_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_False_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_False_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_False_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_False_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_False_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_False_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_False_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_False_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_False_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_False_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_False_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_False_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_False_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_True_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_True_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_True_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_True_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_True_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_True_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_True_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_True_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_True_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_True_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_True_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_True_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_True_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_False_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_False_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_False_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_False_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_False_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_False_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_False_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_False_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_False_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_False_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_False_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_False_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_False_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_True_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_True_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_True_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_True_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_True_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_True_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_True_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_True_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_True_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_True_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_True_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_True_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_True_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_False_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_False_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_False_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_False_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_False_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_False_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_False_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_False_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_False_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_False_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_False_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_False_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_False_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_True_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_True_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_True_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_True_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_True_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_True_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_True_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_True_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_True_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_True_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_True_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_True_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_True_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_False_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_False_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_False_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_False_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_False_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_False_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_False_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_False_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_False_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_False_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_False_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_False_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_False_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_True_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_True_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_True_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_True_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_True_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_True_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_True_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_True_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_True_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_True_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_True_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_True_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_True_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_False_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_False_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_False_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_False_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_False_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_False_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_False_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_False_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_False_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_False_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_False_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_False_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_False_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_True_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_True_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_True_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_True_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_True_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_True_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_True_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_True_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_True_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_True_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_True_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_True_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_True_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_False_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_False_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_False_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_False_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_False_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_False_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_False_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_False_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_False_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_False_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_False_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_False_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_False_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_True_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_True_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_True_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_True_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_True_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_True_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_True_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_True_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_True_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_True_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_True_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_True_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_True_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_False_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_False_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_False_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_False_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_False_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_False_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_False_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_False_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_False_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_False_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_False_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_False_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_False_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_True_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_True_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_True_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_True_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_True_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_True_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_True_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_True_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_True_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_True_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_True_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_True_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_True_cpu_uint8, test/test_testing.py::TestTestParametrization::test_apply_param_specific_decorators, test/test_testing.py::TestTestParametrization::test_compose_param_specific_decorators, test/test_testing.py::TestTestParametrization::test_default_names, test/test_testing.py::TestTestParametrization::test_modules_decorator_misuse_error, test/test_testing.py::TestTestParametrization::test_multiple_handling_of_same_param_error, test/test_testing.py::TestTestParametrization::test_name_fn, test/test_testing.py::TestTestParametrization::test_ops_decorator_misuse_error, test/test_testing.py::TestTestParametrization::test_reparametrize, test/test_testing.py::TestTestParametrization::test_subtest_expected_failure_x_1, test/test_testing.py::TestTestParametrization::test_subtest_expected_failure_x_2, test/test_testing.py::TestTestParametrization::test_subtest_expected_failure_x_3, test/test_testing.py::TestTestParametrization::test_subtest_names, test/test_testing.py::TestTestParametrization::test_two_things_subtest_expected_failure_x_1_y_4, test/test_testing.py::TestTestParametrization::test_two_things_subtest_expected_failure_x_1_y_5, test/test_testing.py::TestTestParametrization::test_two_things_subtest_expected_failure_x_1_y_6, test/test_testing.py::TestTestParametrization::test_two_things_subtest_expected_failure_x_2_y_4, test/test_testing.py::TestTestParametrization::test_two_things_subtest_expected_failure_x_2_y_5, test/test_testing.py::TestTestParametrization::test_two_things_subtest_expected_failure_x_2_y_6, test/test_testing.py::TestTestParametrization::test_two_things_subtest_expected_failure_x_3_y_4, test/test_testing.py::TestTestParametrization::test_two_things_subtest_expected_failure_x_3_y_5, test/test_testing.py::TestTestParametrization::test_two_things_subtest_expected_failure_x_3_y_6, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_default_name_non_primitive_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_default_names_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_dtypes_composition_invalid_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_dtypes_composition_valid_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_empty_param_list_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_empty_param_names_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_modules_composition_names_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_modules_decorator_applies_module_and_param_specific_decorators_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_multiple_handling_of_same_param_error_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_name_fn_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_ops_composition_names_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_ops_decorator_applies_op_and_param_specific_decorators_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_param_specific_decoration_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_subtest_expected_failure_x_1_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_subtest_expected_failure_x_2_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_subtest_expected_failure_x_3_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_subtest_names_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_two_things_subtest_expected_failure_x_1_y_4_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_two_things_subtest_expected_failure_x_1_y_5_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_two_things_subtest_expected_failure_x_1_y_6_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_two_things_subtest_expected_failure_x_2_y_4_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_two_things_subtest_expected_failure_x_2_y_5_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_two_things_subtest_expected_failure_x_2_y_6_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_two_things_subtest_expected_failure_x_3_y_4_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_two_things_subtest_expected_failure_x_3_y_5_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_two_things_subtest_expected_failure_x_3_y_6_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_unparametrized_names_cpu, test/test_testing.py::TestImports::test_circular_dependencies, test/test_testing.py::TestImports::test_lazy_imports_are_lazy, test/test_testing.py::TestImports::test_no_mutate_global_logging_on_import_path_functorch, test/test_testing.py::TestImports::test_no_mutate_global_logging_on_import_path_torch, test/test_testing.py::TestImports::test_no_warning_on_import, test/test_testing.py::TestImports::test_not_import_sympy, test/test_testing.py::TestOpInfos::test_sample_input, test/test_testing.py::TestOpInfos::test_sample_input_metadata, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_T_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators___radd___cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators___rand___cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators___rdiv___cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators___rmod___cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators___rmul___cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators___ror___cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators___rpow___cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators___rsub___cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators___rxor___cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators__chunk_cat_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_add_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_amax_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_amin_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_aminmax_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_arange_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_as_strided_scatter_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_atan2_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_bernoulli_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_bitwise_and_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_bitwise_left_shift_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_bitwise_or_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_bitwise_right_shift_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_bitwise_xor_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_bucketize_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_cat_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_cauchy_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_clamp_max_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_clamp_min_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_complex_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_copysign_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_cov_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_diag_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_diag_embed_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_diagonal_copy_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_diagonal_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_diff_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_div_floor_rounding_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_div_no_rounding_mode_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_div_trunc_rounding_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_dot_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_dsplit_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_dstack_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_empty_permuted_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_eq_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_exponential_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_eye_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_fft2_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_fft_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_fftn_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_hfft2_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_hfft_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_hfftn_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_ifft2_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_ifft_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_ifftn_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_ihfft2_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_ihfft_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_ihfftn_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_irfft2_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_irfft_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_irfftn_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_rfft2_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_rfft_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_rfftn_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fliplr_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_flipud_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_float_power_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_floor_divide_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fmax_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fmin_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fmod_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_gather_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_gcd_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_ge_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_geometric_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_gradient_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_gt_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_heaviside_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_histogramdd_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_hsplit_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_hstack_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_hypot_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_igamma_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_igammac_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_index_add_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_index_select_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_isclose_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_item_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_jiterator_binary_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_jiterator_binary_return_by_ref_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_kthvalue_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_lcm_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_ldexp_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_le_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_linalg_cross_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_linalg_diagonal_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_linalg_lstsq_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_linalg_lstsq_grad_oriented_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_linspace_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_linspace_tensor_overload_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_log_normal_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_logaddexp_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_logcumsumexp_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_logical_and_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_logical_or_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_logical_xor_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_logspace_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_logspace_tensor_overload_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_lt_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_masked_fill_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_masked_scatter_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_masked_select_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_max_binary_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_maximum_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_mean_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_median_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_min_binary_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_minimum_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_movedim_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_mul_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_multinomial_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_narrow_copy_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_narrow_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_native_layer_norm_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_ne_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_neg_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nextafter_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_adaptive_avg_pool1d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_adaptive_avg_pool2d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_adaptive_avg_pool3d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_adaptive_max_pool1d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_adaptive_max_pool2d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_adaptive_max_pool3d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_avg_pool1d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_avg_pool2d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_avg_pool3d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_conv1d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_conv2d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_conv3d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_embedding_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_gaussian_nll_loss_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_gelu_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_group_norm_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_hardtanh_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_hinge_embedding_loss_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_huber_loss_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_l1_loss_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_margin_ranking_loss_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_max_pool1d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_max_pool2d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_max_pool3d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_multi_margin_loss_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_multilabel_margin_loss_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_poisson_nll_loss_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_prelu_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_rms_norm_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_rrelu_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_soft_margin_loss_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_softshrink_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_triplet_margin_loss_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_triplet_margin_with_distance_loss_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_normal_in_place_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_ormqr_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_polar_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_pow_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_remainder_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_renorm_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_reshape_as_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_reshape_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_roll_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_rot90_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_rsub_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_scatter_add_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_scatter_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_signal_windows_bartlett_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_signal_windows_blackman_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_signal_windows_cosine_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_signal_windows_exponential_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_signal_windows_gaussian_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_signal_windows_general_cosine_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_signal_windows_general_hamming_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_signal_windows_hamming_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_signal_windows_hann_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_signal_windows_kaiser_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_signal_windows_nuttall_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_chebyshev_polynomial_t_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_chebyshev_polynomial_u_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_chebyshev_polynomial_v_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_chebyshev_polynomial_w_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_hermite_polynomial_h_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_hermite_polynomial_he_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_laguerre_polynomial_l_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_legendre_polynomial_p_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_shifted_chebyshev_polynomial_t_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_shifted_chebyshev_polynomial_u_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_shifted_chebyshev_polynomial_v_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_shifted_chebyshev_polynomial_w_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_xlog1py_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_zeta_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_sub_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_sum_to_size_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_t_copy_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_t_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_take_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_trace_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_tril_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_triu_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_true_divide_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_unbind_copy_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_unbind_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_uniform_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_vdot_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_view_as_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_view_copy_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_view_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_vsplit_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_vstack_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_where_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_xlogy_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators___radd___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators___rand___cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators___rdiv___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators___rmod___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators___rmul___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators___ror___cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators___rpow___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators___rsub___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators___rxor___cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_abs_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_acos_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_acosh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_add_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_addcdiv_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_addcmul_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_angle_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_asin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_asinh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_atan2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_atan_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_atanh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_bfloat16_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_bitwise_and_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_bitwise_left_shift_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_bitwise_not_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_bitwise_or_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_bitwise_right_shift_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_bitwise_xor_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_bool_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_broadcast_tensors_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_bucketize_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_byte_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_cat_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_cdouble_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_ceil_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_cfloat_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_chalf_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_char_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_chunk_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_clamp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_clamp_max_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_clamp_min_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_clone_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_complex_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_conj_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_conj_physical_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_contiguous_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_copysign_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_cos_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_cosh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_deg2rad_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_diag_embed_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_diagonal_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_diagonal_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_digamma_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_div_floor_rounding_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_div_no_rounding_mode_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_div_trunc_rounding_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_double_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_empty_like_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_eq_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_erf_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_erfc_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_erfinv_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_exp2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_exp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_expm1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_fill_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_flatten_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_float_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_float_power_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_floor_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_floor_divide_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_fmax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_fmin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_fmod_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_frac_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_frexp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_gcd_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_ge_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_gt_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_half_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_heaviside_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_hypot_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_i0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_igamma_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_igammac_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_imag_cpu_complex64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_index_add_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_index_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_index_fill_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_index_select_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_int_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_isclose_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_isfinite_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_isinf_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_isnan_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_isneginf_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_isposinf_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_isreal_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_jiterator_binary_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_jiterator_binary_return_by_ref_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_jiterator_unary_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_lcm_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_ldexp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_le_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_lgamma_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_log10_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_log1p_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_log2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_log_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_logaddexp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_logical_and_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_logical_not_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_logical_or_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_logical_xor_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_logit_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_logsumexp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_long_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_lt_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_max_binary_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_maximum_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_min_binary_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_minimum_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_movedim_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_mul_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nan_to_num_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_narrow_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_narrow_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_ne_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_neg_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nextafter_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_celu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_elu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_grid_sample_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_group_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_hardshrink_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_hardsigmoid_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_hardtanh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_hinge_embedding_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_interpolate_bicubic_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_interpolate_bilinear_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_logsigmoid_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_margin_ranking_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_mish_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_multi_margin_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_multilabel_margin_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_prelu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_relu6_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_relu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_rrelu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_selu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_silu_complex_cpu_complex64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_silu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_softplus_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_softshrink_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_softsign_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_tanhshrink_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_threshold_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_upsample_bilinear_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_permute_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_permute_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_polar_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_polygamma_polygamma_n_0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_polygamma_polygamma_n_1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_polygamma_polygamma_n_2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_polygamma_polygamma_n_3_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_polygamma_polygamma_n_4_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_positive_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_pow_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_rad2deg_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_real_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_reciprocal_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_remainder_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_reshape_as_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_reshape_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_round_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_round_decimals_0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_round_decimals_3_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_round_decimals_neg_3_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_rsqrt_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_rsub_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_sgn_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_short_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_sigmoid_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_sign_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_signal_windows_bartlett_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_signal_windows_blackman_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_signal_windows_cosine_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_signal_windows_exponential_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_signal_windows_gaussian_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_signal_windows_general_cosine_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_signal_windows_general_hamming_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_signal_windows_hamming_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_signal_windows_hann_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_signal_windows_kaiser_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_signal_windows_nuttall_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_signbit_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_sin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_sinc_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_sinh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_airy_ai_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_bessel_j0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_bessel_j1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_bessel_y0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_bessel_y1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_chebyshev_polynomial_t_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_chebyshev_polynomial_u_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_chebyshev_polynomial_v_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_chebyshev_polynomial_w_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_entr_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_erfcx_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_hermite_polynomial_h_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_hermite_polynomial_he_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_i0e_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_i1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_i1e_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_laguerre_polynomial_l_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_legendre_polynomial_p_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_log_ndtr_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_modified_bessel_i0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_modified_bessel_i1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_modified_bessel_k0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_modified_bessel_k1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_ndtr_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_ndtri_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_scaled_modified_bessel_k0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_scaled_modified_bessel_k1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_spherical_bessel_j0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_xlog1py_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_zeta_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_sqrt_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_square_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_sub_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_tan_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_tanh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_true_divide_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_trunc_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_unsafe_chunk_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_view_as_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_view_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_where_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_xlogy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_H_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_T_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators___getitem___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators___radd___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators___rand___cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators___rdiv___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators___rmatmul___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators___rmod___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators___rmul___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators___ror___cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators___rpow___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators___rsub___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators___rxor___cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators__batch_norm_with_update_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators__chunk_cat_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators__native_batch_norm_legit_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators__segment_reduce_lengths_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators__segment_reduce_offsets_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators__softmax_backward_data_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators__unsafe_masked_index_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators__unsafe_masked_index_put_accumulate_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators__upsample_bilinear2d_aa_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_abs_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_acos_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_acosh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_add_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_addbmm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_addcdiv_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_addcmul_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_addmm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_addmm_decomposed_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_addmv_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_addr_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_alias_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_all_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_allclose_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_amax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_amin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_aminmax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_angle_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_any_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_arange_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_argmax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_argmin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_argsort_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_argwhere_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_as_strided_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_as_strided_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_as_strided_partial_views_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_as_strided_scatter_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_asin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_asinh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_atan2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_atan_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_atanh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_atleast_1d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_atleast_2d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_atleast_3d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_baddbmm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_bernoulli_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_bfloat16_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_bincount_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_bitwise_and_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_bitwise_left_shift_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_bitwise_not_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_bitwise_or_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_bitwise_right_shift_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_bitwise_xor_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_block_diag_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_bmm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_bool_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_broadcast_shapes_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_broadcast_tensors_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_broadcast_to_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_bucketize_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_byte_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cartesian_prod_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cat_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cauchy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cdist_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cdouble_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_ceil_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cfloat_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_chalf_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_char_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cholesky_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cholesky_inverse_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cholesky_solve_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_chunk_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_clamp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_clamp_max_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_clamp_min_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_clone_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_column_stack_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_combinations_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_complex_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_conj_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_conj_physical_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_constant_pad_nd_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_contiguous_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_copysign_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_corrcoef_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cos_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cosh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_count_nonzero_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cov_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cross_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cummax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cummin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cumprod_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cumsum_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cumulative_trapezoid_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_deg2rad_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_diag_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_diag_embed_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_diagflat_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_diagonal_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_diagonal_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_diagonal_scatter_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_diff_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_digamma_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_dist_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_div_floor_rounding_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_div_no_rounding_mode_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_div_trunc_rounding_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_dot_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_double_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_dsplit_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_dstack_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_einsum_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_empty_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_empty_like_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_empty_permuted_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_empty_strided_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_eq_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_equal_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_erf_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_erfc_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_erfinv_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_exp2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_exp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_expand_as_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_expand_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_expand_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_expm1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_exponential_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_eye_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_fft2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_fft_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_fftn_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_fftshift_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_hfft2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_hfft_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_hfftn_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_ifft2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_ifft_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_ifftn_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_ifftshift_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_ihfft2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_ihfft_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_ihfftn_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_irfft2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_irfft_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_irfftn_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_rfft2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_rfft_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_rfftn_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fill_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_flatten_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_flip_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fliplr_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_flipud_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_float_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_float_power_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_floor_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_floor_divide_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fmax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fmin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fmod_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_frac_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_frexp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_full_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_full_like_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_gather_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_gcd_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_ge_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_geometric_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_geqrf_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_gradient_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_grid_sampler_2d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_grid_sampler_3d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_gt_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_half_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_hash_tensor_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_heaviside_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_histc_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_histogram_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_histogramdd_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_hsplit_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_hstack_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_hypot_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_i0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_igamma_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_igammac_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_imag_cpu_complex64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_index_add_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_index_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_index_fill_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_index_put_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_index_reduce_amax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_index_reduce_amin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_index_reduce_mean_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_index_reduce_prod_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_index_select_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_inner_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_int_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_isclose_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_isfinite_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_isin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_isinf_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_isnan_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_isneginf_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_isposinf_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_isreal_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_istft_cpu_complex64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_item_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_jiterator_2inputs_2outputs_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_jiterator_4inputs_with_extra_args_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_jiterator_binary_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_jiterator_binary_return_by_ref_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_jiterator_unary_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_kron_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_kthvalue_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_lcm_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_ldexp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_le_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_lerp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_lgamma_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_cholesky_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_cholesky_ex_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_cond_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_cross_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_det_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_diagonal_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_eig_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_eigh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_eigvals_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_eigvalsh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_householder_product_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_inv_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_inv_ex_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_ldl_factor_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_ldl_factor_ex_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_ldl_solve_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_lstsq_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_lstsq_grad_oriented_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_lu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_lu_factor_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_lu_factor_ex_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_lu_solve_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_matrix_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_matrix_power_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_matrix_rank_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_matrix_rank_hermitian_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_multi_dot_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_norm_subgradients_at_zero_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_pinv_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_pinv_hermitian_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_pinv_singular_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_qr_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_slogdet_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_solve_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_solve_ex_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_solve_triangular_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_svd_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_svdvals_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_tensorinv_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_tensorsolve_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_vander_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_vecdot_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_vector_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linspace_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linspace_tensor_overload_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_log10_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_log1p_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_log2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_log_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_log_normal_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_log_softmax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_log_softmax_with_dtype_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_logaddexp2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_logaddexp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_logcumsumexp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_logdet_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_logical_and_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_logical_not_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_logical_or_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_logical_xor_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_logit_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_logspace_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_logspace_tensor_overload_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_logsumexp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_long_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_lt_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_lu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_lu_solve_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_lu_unpack_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_mH_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_mT_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_amax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_amin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_argmax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_argmin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_cumprod_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_cumsum_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_fill_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_log_softmax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_logaddexp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_logsumexp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_mean_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_median_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_normalize_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_prod_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_scatter_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_select_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_softmax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_softmin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_std_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_sum_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_var_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_matmul_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_matrix_exp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_max_binary_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_max_pool2d_with_indices_backward_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_max_reduction_no_dim_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_max_reduction_with_dim_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_maximum_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_mean_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_median_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_meshgrid_list_of_tensors_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_meshgrid_variadic_tensors_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_min_binary_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_min_reduction_no_dim_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_min_reduction_with_dim_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_minimum_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_mm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_mode_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_movedim_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_msort_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_mul_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_multinomial_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_mv_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nan_to_num_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nanmean_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nanmedian_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nanquantile_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nansum_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_narrow_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_narrow_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_native_batch_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_native_dropout_backward_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_native_layer_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_ne_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_neg_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_new_empty_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_new_empty_strided_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_new_full_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_new_ones_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_new_zeros_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nextafter_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_alpha_dropout_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_avg_pool1d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_avg_pool2d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_avg_pool3d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_batch_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_bilinear_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_binary_cross_entropy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_celu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_channel_shuffle_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_conv1d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_conv2d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_conv3d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_conv_transpose1d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_conv_transpose2d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_conv_transpose3d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_cosine_embedding_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_cosine_similarity_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_cross_entropy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_ctc_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_dropout2d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_dropout3d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_dropout_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_elu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_embedding_bag_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_embedding_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_fractional_max_pool2d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_fractional_max_pool3d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_gaussian_nll_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_gelu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_glu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_grid_sample_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_group_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_hardshrink_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_hardsigmoid_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_hardswish_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_hardtanh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_hinge_embedding_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_huber_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_instance_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_interpolate_area_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_interpolate_bicubic_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_interpolate_bilinear_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_interpolate_linear_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_interpolate_nearest_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_interpolate_trilinear_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_kl_div_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_l1_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_layer_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_leaky_relu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_linear_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_local_response_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_logsigmoid_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_margin_ranking_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_max_pool1d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_max_pool2d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_max_pool3d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_max_unpool1d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_max_unpool1d_grad_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_max_unpool2d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_max_unpool2d_grad_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_max_unpool3d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_max_unpool3d_grad_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_mish_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_mse_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_multi_head_attention_forward_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_multi_margin_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_multilabel_margin_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_nll_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_normalize_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_one_hot_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_pad_circular_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_pad_constant_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_pad_reflect_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_pad_replicate_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_pad_replicate_negative_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_pairwise_distance_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_pdist_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_pixel_shuffle_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_pixel_unshuffle_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_poisson_nll_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_prelu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_relu6_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_relu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_rms_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_rrelu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_selu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_silu_complex_cpu_complex64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_silu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_smooth_l1_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_soft_margin_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_softmin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_softmin_with_dtype_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_softplus_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_softshrink_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_softsign_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_tanhshrink_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_threshold_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_triplet_margin_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_unfold_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_upsample_bilinear_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_upsample_nearest_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nonzero_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nonzero_static_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_norm_fro_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_norm_inf_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_norm_nuc_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_normal_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_normal_in_place_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_normal_number_mean_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_ones_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_ones_like_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_ormqr_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_outer_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_pca_lowrank_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_permute_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_permute_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_pinverse_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_polar_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_polygamma_polygamma_n_0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_polygamma_polygamma_n_1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_polygamma_polygamma_n_2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_polygamma_polygamma_n_3_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_polygamma_polygamma_n_4_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_positive_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_pow_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_prod_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_put_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_qr_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_quantile_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_rad2deg_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_rand_like_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_randint_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_randint_like_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_randn_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_randn_like_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_ravel_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_real_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_reciprocal_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_remainder_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_renorm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_repeat_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_repeat_interleave_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_reshape_as_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_reshape_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_resize__cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_resize_as__cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_resolve_conj_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_resolve_neg_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_roll_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_rot90_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_round_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_round_decimals_0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_round_decimals_3_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_round_decimals_neg_3_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_rsqrt_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_rsub_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_scalar_tensor_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_scatter_add_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_scatter_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_scatter_reduce_amax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_scatter_reduce_amin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_scatter_reduce_mean_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_scatter_reduce_prod_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_scatter_reduce_sum_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_searchsorted_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_select_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_select_scatter_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_sgn_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_short_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_sigmoid_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_sign_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_signal_windows_bartlett_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_signal_windows_blackman_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_signal_windows_cosine_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_signal_windows_exponential_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_signal_windows_gaussian_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_signal_windows_general_cosine_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_signal_windows_general_hamming_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_signal_windows_hamming_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_signal_windows_hann_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_signal_windows_kaiser_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_signal_windows_nuttall_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_signbit_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_sin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_sinc_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_sinh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_slice_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_slice_scatter_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_softmax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_softmax_with_dtype_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_sort_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_sparse_mm_reduce_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_sparse_sampled_addmm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_airy_ai_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_bessel_j0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_bessel_j1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_bessel_y0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_bessel_y1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_chebyshev_polynomial_t_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_chebyshev_polynomial_u_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_chebyshev_polynomial_v_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_chebyshev_polynomial_w_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_entr_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_erfcx_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_hermite_polynomial_h_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_hermite_polynomial_he_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_i0e_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_i1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_i1e_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_laguerre_polynomial_l_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_legendre_polynomial_p_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_log_ndtr_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_modified_bessel_i0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_modified_bessel_i1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_modified_bessel_k0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_modified_bessel_k1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_ndtr_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_ndtri_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_scaled_modified_bessel_k0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_scaled_modified_bessel_k1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_spherical_bessel_j0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_xlog1py_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_zeta_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_split_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_split_list_args_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_split_with_sizes_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_split_with_sizes_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_sqrt_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_square_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_squeeze_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_squeeze_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_squeeze_multiple_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_stack_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_std_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_std_mean_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_std_mean_unbiased_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_std_unbiased_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_stft_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_sub_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_sum_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_sum_to_size_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_svd_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_svd_lowrank_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_t_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_t_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_take_along_dim_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_take_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_tan_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_tanh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_tensor_split_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_tensordot_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_tile_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_to_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_to_sparse_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_topk_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_torch__scaled_mm_cpu_float8_e4m3fn, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_trace_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_transpose_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_transpose_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_trapezoid_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_trapz_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_triangular_solve_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_tril_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_tril_indices_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_triu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_triu_indices_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_true_divide_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_trunc_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_unbind_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_unbind_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_unflatten_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_unfold_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_unfold_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_uniform_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_unique_consecutive_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_unique_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_unravel_index_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_unsafe_chunk_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_unsafe_split_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_unsqueeze_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_unsqueeze_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_var_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_var_mean_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_var_mean_unbiased_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_var_unbiased_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_vdot_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_view_as_complex_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_view_as_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_view_as_real_cpu_complex64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_view_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_view_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_vsplit_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_vstack_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_where_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_xlogy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_zero__cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_zeros_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_zeros_like_cpu_float32 2025-08-26T22:12:36.9235235Z 2025-08-26T22:12:43.0193310Z Running backends/xeon/test_launch 1/1 ... [2025-08-26 22:12:43.018717] 2025-08-26T22:12:43.0194167Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:12:43.0200900Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'backends/xeon/test_launch.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:12:43.018717] 2025-08-26T22:12:48.5966111Z 2025-08-26T22:12:48.5967128Z backends/xeon/test_launch 1/1 was successful, full logs can be found in artifacts with path test/test-reports/backends.xeon.test_launch_1.1_436f2731076e793c_.log 2025-08-26T22:12:48.5968444Z Running 2 items in this shard: test/backends/xeon/test_launch.py::TestTorchrun::test_cpu_info, test/backends/xeon/test_launch.py::TestTorchrun::test_multi_threads 2025-08-26T22:12:48.5969161Z 2025-08-26T22:12:54.0095422Z Running functorch/test_ops 1/8 ... [2025-08-26 22:12:54.009121] 2025-08-26T22:12:54.0095910Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:12:54.0102363Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_ops.py', '-m', 'not serial', '--shard-id=1', '--num-shards=8', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:12:54.009694] 2025-08-26T22:13:06.3656770Z 2025-08-26T22:13:06.3657998Z test_foreach 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_foreach_1.1_52a6b56f05f712e0_.log 2025-08-26T22:13:06.6167255Z Running 3577 items in this shard: test/test_foreach.py::TestForeachCPU::test_0dim_tensor_overload_cpu_ok_cpu, test/test_foreach.py::TestForeachCPU::test_0dim_tensor_overload_exception_cpu, test/test_foreach.py::TestForeachCPU::test_add_scalar_with_empty_list_and_empty_tensor_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_add_scalar_with_empty_list_and_empty_tensor_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_add_scalar_with_empty_list_and_empty_tensor_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_add_scalar_with_empty_list_and_empty_tensor_cpu_float16, test/test_foreach.py::TestForeachCPU::test_add_scalar_with_empty_list_and_empty_tensor_cpu_float32, test/test_foreach.py::TestForeachCPU::test_add_scalar_with_empty_list_and_empty_tensor_cpu_float64, test/test_foreach.py::TestForeachCPU::test_add_scalar_with_empty_list_and_empty_tensor_cpu_int16, test/test_foreach.py::TestForeachCPU::test_add_scalar_with_empty_list_and_empty_tensor_cpu_int32, test/test_foreach.py::TestForeachCPU::test_add_scalar_with_empty_list_and_empty_tensor_cpu_int64, test/test_foreach.py::TestForeachCPU::test_add_scalar_with_empty_list_and_empty_tensor_cpu_int8, test/test_foreach.py::TestForeachCPU::test_add_scalar_with_empty_list_and_empty_tensor_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_abs_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_acos_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_add_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_addcdiv_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_addcmul_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_asin_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_atan_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_ceil_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_clamp_max_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_clamp_min_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_copy_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_cos_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_cosh_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_div_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_erf_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_erfc_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_exp_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_expm1_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_floor_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_frac_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_lerp_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_lgamma_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_log10_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_log1p_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_log2_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_log_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_max_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_maximum_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_minimum_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_mul_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_neg_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_norm_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_pow_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_reciprocal_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_round_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_rsqrt_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_sigmoid_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_sign_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_sin_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_sinh_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_sqrt_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_sub_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_tan_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_tanh_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_trunc_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_zero_cpu_float32, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_abs_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_abs_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_abs_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_abs_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_acos_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_acos_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_acos_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_acos_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_add_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_add_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_add_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_add_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_addcdiv_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_addcdiv_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_addcdiv_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_addcdiv_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_addcmul_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_addcmul_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_addcmul_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_addcmul_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_asin_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_asin_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_asin_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_asin_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_atan_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_atan_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_atan_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_atan_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_ceil_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_ceil_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_ceil_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_ceil_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_clamp_max_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_clamp_max_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_clamp_max_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_clamp_max_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_clamp_min_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_clamp_min_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_clamp_min_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_clamp_min_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_copy_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_copy_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_copy_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_copy_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_cos_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_cos_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_cos_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_cos_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_cosh_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_cosh_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_cosh_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_cosh_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_div_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_div_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_div_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_div_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_erf_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_erf_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_erf_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_erf_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_erfc_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_erfc_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_erfc_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_erfc_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_exp_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_exp_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_exp_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_exp_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_expm1_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_expm1_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_expm1_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_expm1_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_floor_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_floor_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_floor_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_floor_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_frac_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_frac_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_frac_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_frac_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_lerp_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_lerp_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_lerp_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_lerp_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_lgamma_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_lgamma_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_lgamma_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_lgamma_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_log10_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_log10_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_log10_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_log10_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_log1p_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_log1p_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_log1p_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_log1p_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_log2_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_log2_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_log2_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_log2_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_log_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_log_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_log_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_log_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_max_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_max_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_max_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_max_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_maximum_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_maximum_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_maximum_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_maximum_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_minimum_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_minimum_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_minimum_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_minimum_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_mul_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_mul_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_mul_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_mul_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_neg_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_neg_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_neg_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_neg_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_norm_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_norm_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_norm_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_norm_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_pow_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_pow_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_pow_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_pow_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_reciprocal_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_reciprocal_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_reciprocal_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_reciprocal_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_round_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_round_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_round_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_round_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_rsqrt_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_rsqrt_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_rsqrt_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_rsqrt_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sigmoid_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sigmoid_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sigmoid_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sigmoid_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sign_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sign_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sign_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sign_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sin_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sin_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sin_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sin_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sinh_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sinh_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sinh_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sinh_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sqrt_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sqrt_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sqrt_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sqrt_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sub_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sub_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sub_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sub_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_tan_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_tan_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_tan_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_tan_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_tanh_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_tanh_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_tanh_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_tanh_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_trunc_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_trunc_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_trunc_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_trunc_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_zero_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_zero_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_zero_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_zero_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_big_num_tensors__foreach_max_use_cuda_graph_False_w_empty_False_cpu_float32, test/test_foreach.py::TestForeachCPU::test_big_num_tensors__foreach_max_use_cuda_graph_False_w_empty_False_cpu_float64, test/test_foreach.py::TestForeachCPU::test_big_num_tensors__foreach_max_use_cuda_graph_False_w_empty_True_cpu_float32, test/test_foreach.py::TestForeachCPU::test_big_num_tensors__foreach_max_use_cuda_graph_False_w_empty_True_cpu_float64, test/test_foreach.py::TestForeachCPU::test_big_num_tensors__foreach_max_use_cuda_graph_True_w_empty_False_cpu_float32, test/test_foreach.py::TestForeachCPU::test_big_num_tensors__foreach_max_use_cuda_graph_True_w_empty_False_cpu_float64, test/test_foreach.py::TestForeachCPU::test_big_num_tensors__foreach_max_use_cuda_graph_True_w_empty_True_cpu_float32, test/test_foreach.py::TestForeachCPU::test_big_num_tensors__foreach_max_use_cuda_graph_True_w_empty_True_cpu_float64, test/test_foreach.py::TestForeachCPU::test_big_num_tensors__foreach_norm_use_cuda_graph_False_w_empty_False_cpu_float32, test/test_foreach.py::TestForeachCPU::test_big_num_tensors__foreach_norm_use_cuda_graph_False_w_empty_False_cpu_float64, test/test_foreach.py::TestForeachCPU::test_big_num_tensors__foreach_norm_use_cuda_graph_False_w_empty_True_cpu_float32, test/test_foreach.py::TestForeachCPU::test_big_num_tensors__foreach_norm_use_cuda_graph_False_w_empty_True_cpu_float64, test/test_foreach.py::TestForeachCPU::test_big_num_tensors__foreach_norm_use_cuda_graph_True_w_empty_False_cpu_float32, test/test_foreach.py::TestForeachCPU::test_big_num_tensors__foreach_norm_use_cuda_graph_True_w_empty_False_cpu_float64, test/test_foreach.py::TestForeachCPU::test_big_num_tensors__foreach_norm_use_cuda_graph_True_w_empty_True_cpu_float32, test/test_foreach.py::TestForeachCPU::test_big_num_tensors__foreach_norm_use_cuda_graph_True_w_empty_True_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_add_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_add_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_add_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_add_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_clamp_max_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_clamp_max_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_clamp_max_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_clamp_max_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_clamp_min_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_clamp_min_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_clamp_min_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_clamp_min_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_div_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_div_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_div_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_div_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_maximum_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_maximum_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_maximum_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_maximum_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_minimum_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_minimum_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_minimum_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_minimum_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_mul_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_mul_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_mul_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_mul_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_pow_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_pow_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_pow_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_pow_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_sub_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_sub_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_sub_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_sub_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_add_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_add_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_add_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_add_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_add_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_add_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_add_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_add_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_add_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_add_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_add_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_add_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_max_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_max_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_max_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_max_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_max_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_max_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_max_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_max_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_max_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_max_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_max_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_max_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_min_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_min_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_min_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_min_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_min_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_min_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_min_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_min_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_min_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_min_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_min_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_min_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_div_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_div_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_div_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_div_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_div_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_div_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_div_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_div_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_div_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_div_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_div_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_div_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_maximum_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_maximum_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_maximum_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_maximum_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_maximum_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_maximum_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_maximum_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_maximum_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_maximum_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_maximum_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_maximum_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_maximum_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_minimum_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_minimum_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_minimum_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_minimum_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_minimum_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_minimum_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_minimum_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_minimum_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_minimum_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_minimum_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_minimum_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_minimum_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_mul_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_mul_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_mul_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_mul_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_mul_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_mul_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_mul_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_mul_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_mul_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_mul_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_mul_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_mul_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_pow_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_pow_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_pow_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_pow_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_pow_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_pow_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_pow_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_pow_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_pow_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_pow_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_pow_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_pow_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_sub_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_sub_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_sub_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_sub_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_sub_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_sub_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_sub_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_sub_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_sub_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_sub_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_sub_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_sub_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_add_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_add_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_add_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_add_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_add_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_add_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_add_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_add_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_add_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_add_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_add_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_add_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_max_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_max_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_max_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_max_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_max_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_max_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_max_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_max_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_max_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_max_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_max_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_max_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_min_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_min_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_min_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_min_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_min_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_min_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_min_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_min_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_min_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_min_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_min_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_min_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_div_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_div_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_div_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_div_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_div_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_div_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_div_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_div_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_div_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_div_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_div_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_div_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_maximum_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_maximum_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_maximum_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_maximum_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_maximum_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_maximum_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_maximum_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_maximum_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_maximum_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_maximum_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_maximum_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_maximum_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_minimum_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_minimum_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_minimum_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_minimum_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_minimum_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_minimum_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_minimum_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_minimum_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_minimum_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_minimum_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_minimum_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_minimum_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_mul_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_mul_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_mul_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_mul_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_mul_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_mul_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_mul_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_mul_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_mul_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_mul_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_mul_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_mul_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_pow_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_pow_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_pow_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_pow_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_pow_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_pow_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_pow_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_pow_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_pow_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_pow_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_pow_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_pow_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_sub_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_sub_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_sub_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_sub_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_sub_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_sub_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_sub_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_sub_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_sub_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_sub_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_sub_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_sub_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_different_tensor_dtypes__foreach_add_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_different_tensor_dtypes__foreach_clamp_max_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_different_tensor_dtypes__foreach_clamp_min_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_different_tensor_dtypes__foreach_div_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_different_tensor_dtypes__foreach_maximum_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_different_tensor_dtypes__foreach_minimum_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_different_tensor_dtypes__foreach_mul_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_different_tensor_dtypes__foreach_pow_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_different_tensor_dtypes__foreach_sub_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_add_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_add_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_add_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_add_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_add_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_add_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_add_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_add_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_add_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_add_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_add_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_add_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_max_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_max_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_max_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_max_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_max_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_max_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_max_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_max_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_max_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_max_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_max_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_max_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_min_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_min_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_min_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_min_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_min_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_min_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_min_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_min_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_min_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_min_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_min_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_min_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_div_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_div_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_div_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_div_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_div_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_div_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_div_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_div_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_div_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_div_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_div_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_div_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_maximum_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_maximum_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_maximum_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_maximum_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_maximum_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_maximum_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_maximum_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_maximum_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_maximum_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_maximum_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_maximum_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_maximum_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_minimum_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_minimum_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_minimum_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_minimum_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_minimum_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_minimum_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_minimum_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_minimum_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_minimum_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_minimum_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_minimum_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_minimum_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_mul_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_mul_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_mul_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_mul_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_mul_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_mul_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_mul_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_mul_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_mul_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_mul_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_mul_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_mul_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_pow_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_pow_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_pow_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_pow_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_pow_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_pow_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_pow_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_pow_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_pow_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_pow_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_pow_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_pow_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_sub_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_sub_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_sub_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_sub_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_sub_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_sub_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_sub_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_sub_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_sub_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_sub_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_sub_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_sub_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_add_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_add_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_add_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_add_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_add_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_add_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_add_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_add_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_add_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_add_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_add_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_add_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_max_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_max_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_max_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_max_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_max_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_max_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_max_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_max_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_max_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_max_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_max_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_max_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_min_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_min_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_min_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_min_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_min_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_min_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_min_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_min_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_min_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_min_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_min_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_min_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_div_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_div_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_div_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_div_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_div_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_div_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_div_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_div_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_div_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_div_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_div_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_div_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_maximum_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_maximum_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_maximum_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_maximum_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_maximum_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_maximum_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_maximum_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_maximum_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_maximum_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_maximum_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_maximum_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_maximum_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_minimum_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_minimum_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_minimum_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_minimum_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_minimum_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_minimum_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_minimum_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_minimum_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_minimum_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_minimum_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_minimum_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_minimum_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_mul_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_mul_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_mul_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_mul_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_mul_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_mul_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_mul_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_mul_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_mul_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_mul_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_mul_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_mul_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_pow_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_pow_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_pow_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_pow_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_pow_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_pow_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_pow_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_pow_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_pow_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_pow_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_pow_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_pow_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_sub_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_sub_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_sub_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_sub_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_sub_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_sub_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_sub_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_sub_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_sub_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_sub_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_sub_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_sub_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_False_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_False_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_False_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_False_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_False_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_False_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_False_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_False_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_False_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_False_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_False_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_False_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_True_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_True_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_True_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_True_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_True_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_True_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_True_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_True_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_True_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_True_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_True_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_True_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_div_reciprocal_cpu, test/test_foreach.py::TestForeachCPU::test_foreach_check_stride_ignore_dims_of_one_cpu_float32, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_different_device_inputs__foreach_copy_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_different_device_inputs__foreach_copy_cpu_bool, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_different_device_inputs__foreach_copy_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_different_device_inputs__foreach_copy_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_different_device_inputs__foreach_copy_cpu_float16, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_different_device_inputs__foreach_copy_cpu_float32, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_different_device_inputs__foreach_copy_cpu_float64, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_different_device_inputs__foreach_copy_cpu_int16, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_different_device_inputs__foreach_copy_cpu_int32, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_different_device_inputs__foreach_copy_cpu_int64, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_different_device_inputs__foreach_copy_cpu_int8, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_different_device_inputs__foreach_copy_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_device_inputs__foreach_copy_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_device_inputs__foreach_copy_cpu_bool, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_device_inputs__foreach_copy_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_device_inputs__foreach_copy_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_device_inputs__foreach_copy_cpu_float16, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_device_inputs__foreach_copy_cpu_float32, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_device_inputs__foreach_copy_cpu_float64, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_device_inputs__foreach_copy_cpu_int16, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_device_inputs__foreach_copy_cpu_int32, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_device_inputs__foreach_copy_cpu_int64, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_device_inputs__foreach_copy_cpu_int8, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_device_inputs__foreach_copy_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_dtypes__foreach_copy_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_dtypes__foreach_copy_cpu_bool, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_dtypes__foreach_copy_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_dtypes__foreach_copy_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_dtypes__foreach_copy_cpu_float16, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_dtypes__foreach_copy_cpu_float32, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_dtypes__foreach_copy_cpu_float64, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_dtypes__foreach_copy_cpu_int16, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_dtypes__foreach_copy_cpu_int32, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_dtypes__foreach_copy_cpu_int64, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_dtypes__foreach_copy_cpu_int8, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_dtypes__foreach_copy_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_dtypes_large_input_cpu, test/test_foreach.py::TestForeachCPU::test_foreach_l2_large_value_input__foreach_norm_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_foreach_l2_large_value_input__foreach_norm_cpu_float16, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_False_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_False_cpu_bool, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_False_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_False_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_False_cpu_float16, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_False_cpu_float32, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_False_cpu_float64, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_False_cpu_int16, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_False_cpu_int32, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_False_cpu_int64, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_False_cpu_int8, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_False_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_True_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_True_cpu_bool, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_True_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_True_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_True_cpu_float16, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_True_cpu_float32, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_True_cpu_float64, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_True_cpu_int16, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_True_cpu_int32, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_True_cpu_int64, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_True_cpu_int8, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_True_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_False_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_False_cpu_bool, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_False_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_False_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_False_cpu_float16, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_False_cpu_float32, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_False_cpu_float64, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_False_cpu_int16, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_False_cpu_int32, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_False_cpu_int64, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_False_cpu_int8, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_False_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_True_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_True_cpu_bool, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_True_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_True_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_True_cpu_float16, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_True_cpu_float32, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_True_cpu_float64, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_True_cpu_int16, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_True_cpu_int32, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_True_cpu_int64, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_True_cpu_int8, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_True_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_abs_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_acos_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_add_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_addcdiv_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_addcmul_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_asin_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_atan_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_ceil_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_clamp_max_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_clamp_min_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_copy_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_cos_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_cosh_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_div_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_erf_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_erfc_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_exp_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_expm1_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_floor_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_frac_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_lerp_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_lgamma_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_log10_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_log1p_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_log2_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_log_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_maximum_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_minimum_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_mul_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_neg_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_pow_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_reciprocal_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_round_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_rsqrt_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_sigmoid_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_sign_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_sin_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_sinh_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_sqrt_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_sub_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_tan_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_tanh_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_trunc_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_zero_cpu_float32, test/test_foreach.py::TestForeachCPU::test_lifetime_of_grad_fn_when_result_is_saved__foreach_exp_cpu_float32, test/test_foreach.py::TestForeachCPU::test_lifetime_of_grad_fn_when_result_is_saved__foreach_expm1_cpu_float32, test/test_foreach.py::TestForeachCPU::test_lifetime_of_grad_fn_when_result_is_saved__foreach_pow_cpu_float32, test/test_foreach.py::TestForeachCPU::test_lifetime_of_grad_fn_when_result_is_saved__foreach_reciprocal_cpu_float32, test/test_foreach.py::TestForeachCPU::test_lifetime_of_grad_fn_when_result_is_saved__foreach_rsqrt_cpu_float32, test/test_foreach.py::TestForeachCPU::test_lifetime_of_grad_fn_when_result_is_saved__foreach_sigmoid_cpu_float32, test/test_foreach.py::TestForeachCPU::test_lifetime_of_grad_fn_when_result_is_saved__foreach_sqrt_cpu_float32, test/test_foreach.py::TestForeachCPU::test_lifetime_of_grad_fn_when_result_is_saved__foreach_tan_cpu_float32, test/test_foreach.py::TestForeachCPU::test_lifetime_of_grad_fn_when_result_is_saved__foreach_tanh_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_abs_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_acos_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_add_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_addcdiv_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_addcmul_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_asin_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_atan_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_ceil_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_clamp_max_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_clamp_min_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_cos_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_cosh_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_div_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_erf_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_erfc_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_exp_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_expm1_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_floor_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_frac_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_lerp_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_lgamma_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_log10_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_log1p_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_log2_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_log_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_maximum_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_minimum_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_mul_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_neg_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_pow_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_reciprocal_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_round_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_rsqrt_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_sigmoid_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_sign_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_sin_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_sinh_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_sqrt_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_sub_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_tan_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_tanh_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_trunc_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_pointwise_op_tensors_on_different_devices__foreach_addcdiv_cpu_float32, test/test_foreach.py::TestForeachCPU::test_pointwise_op_tensors_on_different_devices__foreach_addcdiv_cpu_float64, test/test_foreach.py::TestForeachCPU::test_pointwise_op_tensors_on_different_devices__foreach_addcmul_cpu_float32, test/test_foreach.py::TestForeachCPU::test_pointwise_op_tensors_on_different_devices__foreach_addcmul_cpu_float64, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_False_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_False_cpu_bool, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_False_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_False_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_False_cpu_float16, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_False_cpu_float32, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_False_cpu_float64, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_False_cpu_int16, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_False_cpu_int32, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_False_cpu_int64, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_False_cpu_int8, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_False_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_True_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_True_cpu_bool, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_True_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_True_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_True_cpu_float16, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_True_cpu_float32, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_True_cpu_float64, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_True_cpu_int16, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_True_cpu_int32, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_True_cpu_int64, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_True_cpu_int8, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_True_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_False_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_False_cpu_bool, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_False_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_False_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_False_cpu_float16, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_False_cpu_float32, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_False_cpu_float64, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_False_cpu_int16, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_False_cpu_int32, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_False_cpu_int64, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_False_cpu_int8, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_False_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_True_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_True_cpu_bool, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_True_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_True_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_True_cpu_float16, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_True_cpu_float32, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_True_cpu_float64, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_True_cpu_int16, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_True_cpu_int32, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_True_cpu_int64, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_True_cpu_int8, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_True_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_tensors_grouping_cpu, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_abs_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_abs_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_abs_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_abs_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_abs_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_abs_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_abs_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_abs_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_abs_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_abs_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_abs_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_abs_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_acos_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_acos_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_acos_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_acos_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_acos_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_acos_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_acos_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_acos_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_acos_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_acos_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_acos_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_acos_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_asin_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_asin_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_asin_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_asin_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_asin_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_asin_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_asin_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_asin_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_asin_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_asin_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_asin_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_asin_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_atan_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_atan_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_atan_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_atan_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_atan_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_atan_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_atan_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_atan_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_atan_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_atan_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_atan_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_atan_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_ceil_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_ceil_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_ceil_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_ceil_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_ceil_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_ceil_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_ceil_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_ceil_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_ceil_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_ceil_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_ceil_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_ceil_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cos_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cos_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cos_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cos_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cos_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cos_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cos_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cos_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cos_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cos_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cos_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cos_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cosh_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cosh_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cosh_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cosh_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cosh_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cosh_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cosh_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cosh_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cosh_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cosh_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cosh_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cosh_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erf_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erf_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erf_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erf_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erf_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erf_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erf_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erf_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erf_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erf_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erf_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erf_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erfc_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erfc_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erfc_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erfc_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erfc_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erfc_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erfc_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erfc_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erfc_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erfc_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erfc_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erfc_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_exp_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_exp_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_exp_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_exp_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_exp_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_exp_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_exp_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_exp_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_exp_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_exp_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_exp_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_exp_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_expm1_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_expm1_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_expm1_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_expm1_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_expm1_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_expm1_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_expm1_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_expm1_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_expm1_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_expm1_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_expm1_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_expm1_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_floor_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_floor_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_floor_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_floor_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_floor_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_floor_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_floor_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_floor_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_floor_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_floor_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_floor_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_floor_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_frac_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_frac_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_frac_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_frac_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_frac_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_frac_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_frac_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_frac_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_frac_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_frac_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_frac_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_frac_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_lgamma_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_lgamma_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_lgamma_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_lgamma_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_lgamma_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_lgamma_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_lgamma_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_lgamma_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_lgamma_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_lgamma_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_lgamma_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_lgamma_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log10_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log10_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log10_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log10_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log10_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log10_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log10_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log10_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log10_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log10_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log10_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log10_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log1p_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log1p_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log1p_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log1p_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log1p_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log1p_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log1p_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log1p_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log1p_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log1p_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log1p_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log1p_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log2_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log2_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log2_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log2_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log2_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log2_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log2_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log2_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log2_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log2_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log2_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log2_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_neg_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_neg_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_neg_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_neg_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_neg_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_neg_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_neg_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_neg_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_neg_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_neg_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_neg_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_neg_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_reciprocal_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_reciprocal_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_reciprocal_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_reciprocal_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_reciprocal_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_reciprocal_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_reciprocal_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_reciprocal_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_reciprocal_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_reciprocal_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_reciprocal_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_reciprocal_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_round_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_round_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_round_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_round_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_round_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_round_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_round_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_round_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_round_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_round_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_round_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_round_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_rsqrt_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_rsqrt_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_rsqrt_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_rsqrt_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_rsqrt_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_rsqrt_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_rsqrt_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_rsqrt_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_rsqrt_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_rsqrt_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_rsqrt_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_rsqrt_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sigmoid_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sigmoid_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sigmoid_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sigmoid_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sigmoid_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sigmoid_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sigmoid_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sigmoid_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sigmoid_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sigmoid_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sigmoid_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sigmoid_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sign_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sign_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sign_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sign_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sign_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sign_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sign_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sign_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sign_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sign_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sign_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sign_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sin_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sin_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sin_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sin_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sin_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sin_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sin_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sin_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sin_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sin_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sin_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sin_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sinh_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sinh_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sinh_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sinh_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sinh_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sinh_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sinh_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sinh_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sinh_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sinh_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sinh_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sinh_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sqrt_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sqrt_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sqrt_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sqrt_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sqrt_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sqrt_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sqrt_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sqrt_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sqrt_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sqrt_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sqrt_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sqrt_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tan_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tan_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tan_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tan_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tan_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tan_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tan_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tan_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tan_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tan_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tan_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tan_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tanh_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tanh_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tanh_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tanh_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tanh_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tanh_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tanh_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tanh_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tanh_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tanh_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tanh_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tanh_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_trunc_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_trunc_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_trunc_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_trunc_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_trunc_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_trunc_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_trunc_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_trunc_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_trunc_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_trunc_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_trunc_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_trunc_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_zero_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_zero_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_zero_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_zero_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_zero_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_zero_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_zero_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_zero_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_zero_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_zero_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_zero_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_zero_cpu_uint8 2025-08-26T22:13:06.8555101Z 2025-08-26T22:13:12.9754807Z Running functorch/test_ops 6/8 ... [2025-08-26 22:13:12.974248] 2025-08-26T22:13:12.9755508Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:13:12.9760983Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_ops.py', '-m', 'not serial', '--shard-id=6', '--num-shards=8', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:13:12.975360] 2025-08-26T22:14:26.7009778Z 2025-08-26T22:14:26.7010985Z test_jit 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_jit_1.1_9e386fa48703ad65_.log 2025-08-26T22:14:26.7898001Z Running 2461 items in this shard: test/test_jit.py::TestTracer::test_call_traced_fn_from_traced_module, test/test_jit.py::TestTracer::test_call_traced_module_from_traced_module, test/test_jit.py::TestTracer::test_canonicalize_tensor_iterator, test/test_jit.py::TestTracer::test_constant, test/test_jit.py::TestTracer::test_conv, test/test_jit.py::TestTracer::test_export_no_reorder, test/test_jit.py::TestTracer::test_force_outplace_check_fill, test/test_jit.py::TestTracer::test_force_outplace_check_zero, test/test_jit.py::TestTracer::test_ge, test/test_jit.py::TestTracer::test_ge_cuda, test/test_jit.py::TestTracer::test_ge_optimized, test/test_jit.py::TestTracer::test_ge_unoptimized, test/test_jit.py::TestTracer::test_index_put, test/test_jit.py::TestTracer::test_index_put_trace_with_view, test/test_jit.py::TestTracer::test_index_put_trace_without_view, test/test_jit.py::TestTracer::test_inplace_check, test/test_jit.py::TestTracer::test_inplace_copy, test/test_jit.py::TestTracer::test_inplace_copy_force_outplace, test/test_jit.py::TestTracer::test_inplace_flags, test/test_jit.py::TestTracer::test_inplace_transplant, test/test_jit.py::TestTracer::test_inplace_warn, test/test_jit.py::TestTracer::test_input_dict_checkTrace_mut, test/test_jit.py::TestTracer::test_input_dict_empty, test/test_jit.py::TestTracer::test_input_dict_empty_list, test/test_jit.py::TestTracer::test_input_dict_insertion_order, test/test_jit.py::TestTracer::test_input_dict_of_dicts, test/test_jit.py::TestTracer::test_input_dict_of_lists, test/test_jit.py::TestTracer::test_input_dict_recursive, test/test_jit.py::TestTracer::test_input_dict_remembers_keys, test/test_jit.py::TestTracer::test_input_dict_unify, test/test_jit.py::TestTracer::test_input_flatten, test/test_jit.py::TestTracer::test_input_list_mixed_type, test/test_jit.py::TestTracer::test_input_list_of_tuples, test/test_jit.py::TestTracer::test_input_list_toplevel_flatten, test/test_jit.py::TestTracer::test_input_list_toplevel_flatten_direct, test/test_jit.py::TestTracer::test_input_tuple_of_dicts, test/test_jit.py::TestTracer::test_interpolate_trace, test/test_jit.py::TestTracer::test_large_nbr_kernel_args, test/test_jit.py::TestTracer::test_lhs_index_fails, test/test_jit.py::TestTracer::test_lhs_index_trivial, test/test_jit.py::TestTracer::test_max_pool, test/test_jit.py::TestTracer::test_nested_inplace, test/test_jit.py::TestTracer::test_non_tensor_tracing, test/test_jit.py::TestTracer::test_output_unflatten, test/test_jit.py::TestTracer::test_python_function, test/test_jit.py::TestTracer::test_python_function_tup, test/test_jit.py::TestTracer::test_repeated_input, test/test_jit.py::TestTracer::test_repeated_output, test/test_jit.py::TestTracer::test_shared_param, test/test_jit.py::TestTracer::test_simple, test/test_jit.py::TestTracer::test_tensor_with_grad_as_constant, test/test_jit.py::TestTracer::test_trace_aliased_parameter, test/test_jit.py::TestTracer::test_trace_annotation, test/test_jit.py::TestTracer::test_trace_arange, test/test_jit.py::TestTracer::test_trace_arange_with_grad, test/test_jit.py::TestTracer::test_trace_autograd_function, test/test_jit.py::TestTracer::test_trace_casts, test/test_jit.py::TestTracer::test_trace_checker_control_flow, test/test_jit.py::TestTracer::test_trace_checker_dot_data, test/test_jit.py::TestTracer::test_trace_checker_dropout_notrain, test/test_jit.py::TestTracer::test_trace_checker_dropout_train, test/test_jit.py::TestTracer::test_trace_checker_inplace_on_view, test/test_jit.py::TestTracer::test_trace_checker_memoization, test/test_jit.py::TestTracer::test_trace_checker_slice_lhs, test/test_jit.py::TestTracer::test_trace_checking_with_deprecated_name, test/test_jit.py::TestTracer::test_trace_checking_with_global_name, test/test_jit.py::TestTracer::test_trace_contiguous, test/test_jit.py::TestTracer::test_trace_contiguous_short_circuit, test/test_jit.py::TestTracer::test_trace_detach, test/test_jit.py::TestTracer::test_trace_detach_inplace, test/test_jit.py::TestTracer::test_trace_detach_inplace_redispatch, test/test_jit.py::TestTracer::test_trace_detach_redispatch, test/test_jit.py::TestTracer::test_trace_dict_input, test/test_jit.py::TestTracer::test_trace_dict_output, test/test_jit.py::TestTracer::test_trace_export_fns, test/test_jit.py::TestTracer::test_trace_export_fns_recursive, test/test_jit.py::TestTracer::test_trace_fork_join_and_module, test/test_jit.py::TestTracer::test_trace_full_dynamic_shape, test/test_jit.py::TestTracer::test_trace_func_argument_names_captured, test/test_jit.py::TestTracer::test_trace_index, test/test_jit.py::TestTracer::test_trace_index_constant, test/test_jit.py::TestTracer::test_trace_indexed_assignment, test/test_jit.py::TestTracer::test_trace_inline_shape, test/test_jit.py::TestTracer::test_trace_inverse, test/test_jit.py::TestTracer::test_trace_invert_module_hierarchy, test/test_jit.py::TestTracer::test_trace_legacy_ctor, test/test_jit.py::TestTracer::test_trace_module_argument_names_captured, test/test_jit.py::TestTracer::test_trace_modulelist, test/test_jit.py::TestTracer::test_trace_multi_output_function, test/test_jit.py::TestTracer::test_trace_namedtuple, test/test_jit.py::TestTracer::test_trace_nested_datatypes, test/test_jit.py::TestTracer::test_trace_nested_fn, test/test_jit.py::TestTracer::test_trace_no_duplicated_lifted_input_output, test/test_jit.py::TestTracer::test_trace_numel, test/test_jit.py::TestTracer::test_trace_optioanl_dtype, test/test_jit.py::TestTracer::test_trace_optional, test/test_jit.py::TestTracer::test_trace_out_operator_with_two_output, test/test_jit.py::TestTracer::test_trace_partial_func_argument_names_captured, test/test_jit.py::TestTracer::test_trace_random, test/test_jit.py::TestTracer::test_trace_records_names, test/test_jit.py::TestTracer::test_trace_save, test/test_jit.py::TestTracer::test_trace_save_load_copy, test/test_jit.py::TestTracer::test_trace_single_tuple, test/test_jit.py::TestTracer::test_trace_size, test/test_jit.py::TestTracer::test_trace_size_with_grad, test/test_jit.py::TestTracer::test_trace_skip_none_submodule, test/test_jit.py::TestTracer::test_trace_slice, test/test_jit.py::TestTracer::test_trace_slice_expr_complete_type, test/test_jit.py::TestTracer::test_trace_slice_full_dim, test/test_jit.py::TestTracer::test_trace_slice_setitem_dynamic_shape, test/test_jit.py::TestTracer::test_trace_slice_with_grad, test/test_jit.py::TestTracer::test_trace_tensor_factory, test/test_jit.py::TestTracer::test_trace_topk, test/test_jit.py::TestTracer::test_trace_tuple, test/test_jit.py::TestTracer::test_trace_variable_instantiation, test/test_jit.py::TestTracer::test_trace_warn, test/test_jit.py::TestTracer::test_trace_with_conditional_property, test/test_jit.py::TestTracer::test_trace_with_nested_strided_tensor_output, test/test_jit.py::TestTracer::test_trace_with_nested_tensor_list_output, test/test_jit.py::TestTracer::test_trace_with_number_list_output, test/test_jit.py::TestTracer::test_trace_with_tensor_list_output, test/test_jit.py::TestTracer::test_trace_with_tuple_tensor, test/test_jit.py::TestTracer::test_traced_module_cuda, test/test_jit.py::TestTracer::test_tracing_backward_hook_error, test/test_jit.py::TestTracer::test_tracing_hooks, test/test_jit.py::TestTracer::test_tracing_multiple_methods, test/test_jit.py::TestTracer::test_type_same_device, test/test_jit.py::TestTracer::test_typeas_trace_check, test/test_jit.py::TestTracer::test_wrapped_number, test/test_jit.py::TestMixTracingScripting::test_call_script_fn_from_traced_module, test/test_jit.py::TestMixTracingScripting::test_call_script_module_from_traced_module, test/test_jit.py::TestMixTracingScripting::test_call_traced_fn_from_script_fn, test/test_jit.py::TestMixTracingScripting::test_call_traced_mod_from_script_fn, test/test_jit.py::TestMixTracingScripting::test_call_tracing_fn_from_script_module, test/test_jit.py::TestMixTracingScripting::test_call_tracing_mod_from_script_module, test/test_jit.py::TestMixTracingScripting::test_jit_trace_callfunction_return_shapes, test/test_jit.py::TestMixTracingScripting::test_script_inline_trace_multiple_args, test/test_jit.py::TestMixTracingScripting::test_trace_dict_mix_script, test/test_jit.py::TestMixTracingScripting::test_trace_hierarchy, test/test_jit.py::TestMixTracingScripting::test_trace_linear, test/test_jit.py::TestMixTracingScripting::test_trace_mixed_by_script_with_dict_output, test/test_jit.py::TestMixTracingScripting::test_trace_of_script, test/test_jit.py::TestMixTracingScripting::test_trace_parameter, test/test_jit.py::TestMixTracingScripting::test_trace_returning_dict_with_tensor_tuples, test/test_jit.py::TestMixTracingScripting::test_trace_script, test/test_jit.py::TestMixTracingScripting::test_trace_script_returning_complex_dict, test/test_jit.py::TestMixTracingScripting::test_trace_with_size, test/test_jit.py::TestMixTracingScripting::test_traced_module_contains_scripted_interface_types, test/test_jit.py::TestMixTracingScripting::test_traced_module_implements_interface, test/test_jit.py::TestMixTracingScripting::test_tracing_indexing, test/test_jit.py::TestMixTracingScripting::test_tracing_slicing, test/test_jit.py::TestRecursiveScript::test_attributes, test/test_jit.py::TestRecursiveScript::test_class_compile, test/test_jit.py::TestRecursiveScript::test_constants_with_final, test/test_jit.py::TestRecursiveScript::test_dir, test/test_jit.py::TestRecursiveScript::test_error_stack, test/test_jit.py::TestRecursiveScript::test_error_stack_annotation, test/test_jit.py::TestRecursiveScript::test_error_stack_class, test/test_jit.py::TestRecursiveScript::test_error_stack_module, test/test_jit.py::TestRecursiveScript::test_failed_function_compilation, test/test_jit.py::TestRecursiveScript::test_function_attribute_in_submodule, test/test_jit.py::TestRecursiveScript::test_ignore_class, test/test_jit.py::TestRecursiveScript::test_inferred_nonetype, test/test_jit.py::TestRecursiveScript::test_init_error, test/test_jit.py::TestRecursiveScript::test_inner_traced_module, test/test_jit.py::TestRecursiveScript::test_iterable_modules, test/test_jit.py::TestRecursiveScript::test_method_call, test/test_jit.py::TestRecursiveScript::test_module_basic, test/test_jit.py::TestRecursiveScript::test_module_function_export, test/test_jit.py::TestRecursiveScript::test_module_name, test/test_jit.py::TestRecursiveScript::test_module_repr, test/test_jit.py::TestRecursiveScript::test_optional_module, test/test_jit.py::TestRecursiveScript::test_override_instance_method_ignore, test/test_jit.py::TestRecursiveScript::test_prepare_scriptable_basic, test/test_jit.py::TestRecursiveScript::test_prepare_scriptable_cycle, test/test_jit.py::TestRecursiveScript::test_prepare_scriptable_escape_hatch, test/test_jit.py::TestRecursiveScript::test_prepare_scriptable_iterable_modules, test/test_jit.py::TestRecursiveScript::test_python_function_attribute, test/test_jit.py::TestRecursiveScript::test_repeated_error_stack, test/test_jit.py::TestRecursiveScript::test_script_after_eval, test/test_jit.py::TestRecursiveScript::test_script_basic, test/test_jit.py::TestRecursiveScript::test_script_function_attribute, test/test_jit.py::TestRecursiveScript::test_script_loaded_module, test/test_jit.py::TestRecursiveScript::test_thread_safe_error_stacks, test/test_jit.py::TestTypeSharing::test_assign_python_attr, test/test_jit.py::TestTypeSharing::test_basic, test/test_jit.py::TestTypeSharing::test_builtin_function_different, test/test_jit.py::TestTypeSharing::test_builtin_function_same, test/test_jit.py::TestTypeSharing::test_constants, test/test_jit.py::TestTypeSharing::test_diff_attr_values, test/test_jit.py::TestTypeSharing::test_failed_attribute_compilation, test/test_jit.py::TestTypeSharing::test_ignored_fns, test/test_jit.py::TestTypeSharing::test_linear, test/test_jit.py::TestTypeSharing::test_loaded_modules_work, test/test_jit.py::TestTypeSharing::test_module_dict_same_type_different_name, test/test_jit.py::TestTypeSharing::test_mutate_attr_value, test/test_jit.py::TestTypeSharing::test_param_vs_attribute, test/test_jit.py::TestTypeSharing::test_python_function_attribute_different, test/test_jit.py::TestTypeSharing::test_python_function_attribute_same, test/test_jit.py::TestTypeSharing::test_same_but_different_classes, test/test_jit.py::TestTypeSharing::test_script_function_attribute_different, test/test_jit.py::TestTypeSharing::test_script_function_attribute_same, test/test_jit.py::TestTypeSharing::test_script_module_containing_traced_module, test/test_jit.py::TestTypeSharing::test_submodules, test/test_jit.py::TestTypeSharing::test_tracing_gives_different_types, test/test_jit.py::TestTypeSharing::test_type_not_shared_ignored_attributes, test/test_jit.py::TestTypeSharing::test_type_shared_ignored_attributes, test/test_jit.py::TestTypeSharing::test_type_sharing_define_in_init, test/test_jit.py::TestTypeSharing::test_type_sharing_disabled, test/test_jit.py::TestLogging::test_bump_numeric_counter, test/test_jit.py::TestLogging::test_counter_aggregation, test/test_jit.py::TestLogging::test_logging_levels_set, test/test_jit.py::TestLogging::test_time_measurement_counter, test/test_jit.py::TestLogging::test_time_measurement_counter_script, test/test_jit.py::TestLogging::test_trace_numeric_counter, test/test_jit.py::TestBackends::test_errors, test/test_jit.py::TestBackends::test_execution, test/test_jit.py::TestBackends::test_save_load, test/test_jit.py::TestBackendsWithCompiler::test_errors, test/test_jit.py::TestBackendsWithCompiler::test_execution, test/test_jit.py::TestNnapiBackend::test_adaptive_avg_pool2d, test/test_jit.py::TestNnapiBackend::test_avg_pool2d, test/test_jit.py::TestNnapiBackend::test_cat, test/test_jit.py::TestNnapiBackend::test_compile_spec_santiy, test/test_jit.py::TestNnapiBackend::test_conv2d, test/test_jit.py::TestNnapiBackend::test_conv2d_transpose, test/test_jit.py::TestNnapiBackend::test_dequantize, test/test_jit.py::TestNnapiBackend::test_detach, test/test_jit.py::TestNnapiBackend::test_flatten, test/test_jit.py::TestNnapiBackend::test_hardtanh, test/test_jit.py::TestNnapiBackend::test_linear, test/test_jit.py::TestNnapiBackend::test_log_softmax, test/test_jit.py::TestNnapiBackend::test_max_pool2d, test/test_jit.py::TestNnapiBackend::test_mean, test/test_jit.py::TestNnapiBackend::test_multi_output, test/test_jit.py::TestNnapiBackend::test_pointwise_binary, test/test_jit.py::TestNnapiBackend::test_pointwise_binary_const, test/test_jit.py::TestNnapiBackend::test_pointwise_unary, test/test_jit.py::TestNnapiBackend::test_prelu, test/test_jit.py::TestNnapiBackend::test_qadd, test/test_jit.py::TestNnapiBackend::test_qlinear, test/test_jit.py::TestNnapiBackend::test_quantize, test/test_jit.py::TestNnapiBackend::test_reshape, test/test_jit.py::TestNnapiBackend::test_seblock_mul, test/test_jit.py::TestNnapiBackend::test_slice, test/test_jit.py::TestNnapiBackend::test_softmax, test/test_jit.py::TestNnapiBackend::test_tensor_input, test/test_jit.py::TestNnapiBackend::test_to, test/test_jit.py::TestNnapiBackend::test_unsqueeze, test/test_jit.py::TestNnapiBackend::test_upsample_nearest2d, test/test_jit.py::TestList::test_comprehension_iterable, test/test_jit.py::TestList::test_comprehension_out_type_not_in_type, test/test_jit.py::TestList::test_comprehensions_basic, test/test_jit.py::TestList::test_comprehensions_basic_float, test/test_jit.py::TestList::test_comprehensions_two_comps, test/test_jit.py::TestList::test_copy_list_immutable, test/test_jit.py::TestList::test_copy_list_mutable, test/test_jit.py::TestList::test_del, test/test_jit.py::TestList::test_dict_keyword_is_correctly_typed, test/test_jit.py::TestList::test_dict_keyword_with_dict_comprehension, test/test_jit.py::TestList::test_dict_keyword_with_dict_comprehension_and_kwargs, test/test_jit.py::TestList::test_dict_keyword_with_empty_dict_comprehension, test/test_jit.py::TestList::test_dict_keyword_with_empty_iterable, test/test_jit.py::TestList::test_dict_keyword_with_internal_aggregate_function, test/test_jit.py::TestList::test_dict_keyword_with_iterable, test/test_jit.py::TestList::test_dict_keyword_with_kwargs, test/test_jit.py::TestList::test_dict_keyword_with_kwargs_using_container_values, test/test_jit.py::TestList::test_dict_keyword_with_mapping, test/test_jit.py::TestList::test_dict_keyword_with_mapping_and_kwargs, test/test_jit.py::TestList::test_dict_keyword_with_mismatched_annotations, test/test_jit.py::TestList::test_dict_keyword_with_nested_call, test/test_jit.py::TestList::test_dict_keyword_with_previously_declared_variable, test/test_jit.py::TestList::test_dict_keyword_with_previously_declared_variable_and_kwargs, test/test_jit.py::TestList::test_extend_list_immutable, test/test_jit.py::TestList::test_extend_list_mutable, test/test_jit.py::TestList::test_in_check, test/test_jit.py::TestList::test_list_bool_conversion, test/test_jit.py::TestList::test_list_count, test/test_jit.py::TestList::test_list_count_not_existing, test/test_jit.py::TestList::test_list_gather, test/test_jit.py::TestList::test_list_index, test/test_jit.py::TestList::test_list_index_not_existing, test/test_jit.py::TestList::test_list_keyword, test/test_jit.py::TestList::test_list_len, test/test_jit.py::TestList::test_list_literal, test/test_jit.py::TestList::test_list_none, test/test_jit.py::TestList::test_list_ops, test/test_jit.py::TestList::test_list_slice, test/test_jit.py::TestList::test_list_sort, test/test_jit.py::TestList::test_list_unification_hint, test/test_jit.py::TestList::test_list_variance, test/test_jit.py::TestList::test_min_bool_list, test/test_jit.py::TestList::test_min_max_list, test/test_jit.py::TestList::test_min_max_single_list, test/test_jit.py::TestList::test_mutable_list_append, test/test_jit.py::TestList::test_mutable_list_append_2, test/test_jit.py::TestList::test_mutable_list_append_if, test/test_jit.py::TestList::test_mutable_list_append_if_else, test/test_jit.py::TestList::test_mutable_list_append_loop, test/test_jit.py::TestList::test_mutable_list_append_loop_if, test/test_jit.py::TestList::test_mutable_list_clear, test/test_jit.py::TestList::test_mutable_list_clear_empty, test/test_jit.py::TestList::test_mutable_list_function_inline, test/test_jit.py::TestList::test_mutable_list_insert, test/test_jit.py::TestList::test_mutable_list_insert_neg_out_of_bounds, test/test_jit.py::TestList::test_mutable_list_insert_negative, test/test_jit.py::TestList::test_mutable_list_insert_out_of_bounds, test/test_jit.py::TestList::test_mutable_list_nested_loop, test/test_jit.py::TestList::test_mutable_list_pop, test/test_jit.py::TestList::test_mutable_list_pop2, test/test_jit.py::TestList::test_mutable_list_pop_at, test/test_jit.py::TestList::test_mutable_list_pop_at2, test/test_jit.py::TestList::test_mutable_list_pop_at_negative, test/test_jit.py::TestList::test_mutable_list_pop_at_negative2, test/test_jit.py::TestList::test_mutable_list_pop_empty, test/test_jit.py::TestList::test_mutable_list_pop_slice, test/test_jit.py::TestList::test_mutable_list_remove, test/test_jit.py::TestList::test_mutable_list_remove2, test/test_jit.py::TestList::test_mutable_list_remove_not_existing, test/test_jit.py::TestList::test_mutable_list_remove_tensor, test/test_jit.py::TestList::test_mutable_list_reverse, test/test_jit.py::TestList::test_mutable_list_reverse_empty, test/test_jit.py::TestList::test_mutable_tensor_list_reverse, test/test_jit.py::TestList::test_no_element_type_annotation, test/test_jit.py::TestList::test_slice_index, test/test_jit.py::TestList::test_tensor_list_count, test/test_jit.py::TestList::test_tensor_list_count_not_existing, test/test_jit.py::TestList::test_tensor_list_index, test/test_jit.py::TestList::test_tensor_list_index_not_existing, test/test_jit.py::TestList::test_to_list, test/test_jit.py::TestList::test_to_list_gpu, test/test_jit.py::TestDict::test_aug_assign, test/test_jit.py::TestDict::test_basic, test/test_jit.py::TestDict::test_clear, test/test_jit.py::TestDict::test_copy, test/test_jit.py::TestDict::test_del, test/test_jit.py::TestDict::test_dict_bool_conversion, test/test_jit.py::TestDict::test_dict_preserves_order, test/test_jit.py::TestDict::test_dict_to_python, test/test_jit.py::TestDict::test_dict_variance, test/test_jit.py::TestDict::test_get, test/test_jit.py::TestDict::test_get_boolkey, test/test_jit.py::TestDict::test_items, test/test_jit.py::TestDict::test_key_type, test/test_jit.py::TestDict::test_keys, test/test_jit.py::TestDict::test_len, test/test_jit.py::TestDict::test_loop, test/test_jit.py::TestDict::test_membership, test/test_jit.py::TestDict::test_mutability, test/test_jit.py::TestDict::test_optional_dict_construct, test/test_jit.py::TestDict::test_ordered_dict, test/test_jit.py::TestDict::test_pop, test/test_jit.py::TestDict::test_popitem, test/test_jit.py::TestDict::test_setdefault, test/test_jit.py::TestDict::test_type_annotation_missing_contained_type, test/test_jit.py::TestDict::test_update, test/test_jit.py::TestDict::test_update_existing_key, test/test_jit.py::TestDict::test_values, test/test_jit.py::TestDict::test_view, test/test_jit.py::TestNamedTuple::test_namedtuple, test/test_jit.py::TestNamedTuple::test_namedtuple_as_attr, test/test_jit.py::TestNamedTuple::test_namedtuple_constant, test/test_jit.py::TestNamedTuple::test_namedtuple_input_forwardref, test/test_jit.py::TestNamedTuple::test_namedtuple_inside_forwardref, test/test_jit.py::TestNamedTuple::test_namedtuple_kwarg_construct, test/test_jit.py::TestNamedTuple::test_namedtuple_lower, test/test_jit.py::TestNamedTuple::test_namedtuple_resolution, test/test_jit.py::TestNamedTuple::test_namedtuple_resolution_forwardref, test/test_jit.py::TestNamedTuple::test_namedtuple_serialization, test/test_jit.py::TestNamedTuple::test_namedtuple_slice_unpack, test/test_jit.py::TestNamedTuple::test_namedtuple_type_annotation, test/test_jit.py::TestNamedTuple::test_namedtuple_wrong_types, test/test_jit.py::TestNamedTuple::test_return_named_tuple, test/test_jit.py::TestScriptDict::test_bool, test/test_jit.py::TestScriptDict::test_contains, test/test_jit.py::TestScriptDict::test_delitem, test/test_jit.py::TestScriptDict::test_getitem, test/test_jit.py::TestScriptDict::test_items, test/test_jit.py::TestScriptDict::test_iter, test/test_jit.py::TestScriptDict::test_len, test/test_jit.py::TestScriptDict::test_nested, test/test_jit.py::TestScriptDict::test_reference_semantics, test/test_jit.py::TestScriptDict::test_repr, test/test_jit.py::TestScriptDict::test_setitem, test/test_jit.py::TestScriptList::test_append, test/test_jit.py::TestScriptList::test_bool, test/test_jit.py::TestScriptList::test_clear, test/test_jit.py::TestScriptList::test_contains, test/test_jit.py::TestScriptList::test_count, test/test_jit.py::TestScriptList::test_defaultdict, test/test_jit.py::TestScriptList::test_delitem, test/test_jit.py::TestScriptList::test_extend, test/test_jit.py::TestScriptList::test_getitem, test/test_jit.py::TestScriptList::test_insert, test/test_jit.py::TestScriptList::test_iter, test/test_jit.py::TestScriptList::test_len, test/test_jit.py::TestScriptList::test_nested, test/test_jit.py::TestScriptList::test_pop, test/test_jit.py::TestScriptList::test_reference_semantics, test/test_jit.py::TestScriptList::test_remove, test/test_jit.py::TestScriptList::test_repr, test/test_jit.py::TestScriptList::test_setitem, test/test_jit.py::TestAsync::test_async_future_type_python, test/test_jit.py::TestAsync::test_async_grad_guard_no_grad, test/test_jit.py::TestAsync::test_async_grad_guard_with_grad, test/test_jit.py::TestAsync::test_async_kwargs, test/test_jit.py::TestAsync::test_async_parsing, test/test_jit.py::TestAsync::test_async_python, test/test_jit.py::TestAsync::test_async_script, test/test_jit.py::TestAsync::test_async_script_capture, test/test_jit.py::TestAsync::test_async_script_error, test/test_jit.py::TestAsync::test_async_script_multi_forks, test/test_jit.py::TestAsync::test_async_script_multi_waits, test/test_jit.py::TestAsync::test_async_script_nested, test/test_jit.py::TestAsync::test_async_script_no_script_mod, test/test_jit.py::TestAsync::test_async_script_trace, test/test_jit.py::TestAsync::test_future_subtyping, test/test_jit.py::TestAsync::test_no_future_subtype_message, test/test_jit.py::TestAsync::test_trace_fork_wait, test/test_jit.py::TestAsync::test_trace_fork_wait_inline, test/test_jit.py::TestAsync::test_trace_fork_wait_leaking, test/test_jit.py::TestAsync::test_trace_fork_wait_list_modulecalls, test/test_jit.py::TestAsync::test_trace_modulecalls_with_different_output_types, test/test_jit.py::TestAwait::test_await_class_arg, test/test_jit.py::TestAwait::test_await_class_return, test/test_jit.py::TestAwait::test_await_eager_lazy, test/test_jit.py::TestAwait::test_await_func_arg, test/test_jit.py::TestAwait::test_await_getattr_implicit_convertion, test/test_jit.py::TestAwait::test_await_isinstance, test/test_jit.py::TestAwait::test_await_multiout_save, test/test_jit.py::TestAwait::test_await_nested, test/test_jit.py::TestAwait::test_await_out_of_interpreter, test/test_jit.py::TestAwait::test_await_python, test/test_jit.py::TestAwait::test_await_type_python, test/test_jit.py::TestAwait::test_awaitable_to_await, test/test_jit.py::TestAwait::test_eager_await_non_scriptable, test/test_jit.py::TestAwait::test_jit_trace, test/test_jit.py::TestAwait::test_nowait, test/test_jit.py::TestAwait::test_nowait_class, test/test_jit.py::TestAwait::test_script, test/test_jit.py::TestDataParallel::test_python_submodule_script, test/test_jit.py::TestDataParallel::test_shared_module, test/test_jit.py::TestDataParallel::test_tensor_sharing, test/test_jit.py::TestDataParallel::test_tensor_sharing_with_forward, test/test_jit.py::TestDataParallel::test_traced_module, test/test_jit.py::TestModels::test_alexnet, test/test_jit.py::TestModels::test_dcgan_models, test/test_jit.py::TestModels::test_dcgan_models_cuda, test/test_jit.py::TestModels::test_mnist, test/test_jit.py::TestModels::test_mnist_cuda, test/test_jit.py::TestModels::test_mnist_training_leaks_no_memory_cuda, test/test_jit.py::TestModels::test_neural_style, test/test_jit.py::TestModels::test_neural_style_cuda, test/test_jit.py::TestModels::test_reinforcement_learning, test/test_jit.py::TestModels::test_reinforcement_learning_cuda, test/test_jit.py::TestModels::test_script_module_script_resnet, test/test_jit.py::TestModels::test_script_module_trace_resnet18, test/test_jit.py::TestModels::test_snli, test/test_jit.py::TestModels::test_snli_cuda, test/test_jit.py::TestModels::test_super_resolution, test/test_jit.py::TestModels::test_super_resolution_cuda, test/test_jit.py::TestModels::test_time_sequence_prediction, test/test_jit.py::TestModels::test_vae, test/test_jit.py::TestModels::test_vae_cuda, test/test_jit.py::TestModules::test_script_module_with_constants_list, test/test_jit.py::TestAutodiffJit::test_autodiff_requires_grad_nograd, test/test_jit.py::TestAutodiffJit::test_requires_grad_outputs, test/test_jit.py::TestAutodiffJit::test_requires_grad_outputs_profiled_twice, test/test_jit.py::TestAutodiffJit::test_requires_grad_outputs_side_effects, test/test_jit.py::TestAutodiffJit::test_undefined_tensor_lists, test/test_jit.py::TestAutodiffSubgraphSlicing::test_aliased_outputs, test/test_jit.py::TestAutodiffSubgraphSlicing::test_bias_as_arg, test/test_jit.py::TestAutodiffSubgraphSlicing::test_bias_as_module_attr, test/test_jit.py::TestAutodiffSubgraphSlicing::test_chunk_constant_script_ad, test/test_jit.py::TestAutodiffSubgraphSlicing::test_constructed_bias, test/test_jit.py::TestAutodiffSubgraphSlicing::test_diff_graph_inline_threshold, test/test_jit.py::TestAutodiffSubgraphSlicing::test_differentiable_graph_ops_requires_grad, test/test_jit.py::TestAutodiffSubgraphSlicing::test_does_not_create_cycles, test/test_jit.py::TestAutodiffSubgraphSlicing::test_does_not_merge_unrelated, test/test_jit.py::TestAutodiffSubgraphSlicing::test_has_profiled_info_aliasing_outputs, test/test_jit.py::TestAutodiffSubgraphSlicing::test_merge_respects_aliasing, test/test_jit.py::TestAutodiffSubgraphSlicing::test_merges_dense, test/test_jit.py::TestAutodiffSubgraphSlicing::test_merges_down, test/test_jit.py::TestAutodiffSubgraphSlicing::test_merges_up, test/test_jit.py::TestAutodiffSubgraphSlicing::test_merges_without_cycles, test/test_jit.py::TestAutodiffSubgraphSlicing::test_prune_grad, test/test_jit.py::TestAutodiffSubgraphSlicing::test_requires_grad_for_tensor_list, test/test_jit.py::TestAutodiffSubgraphSlicing::test_respects_lexical_scoping, test/test_jit.py::TestAutodiffSubgraphSlicing::test_simple_merge, test/test_jit.py::TestAutodiffSubgraphSlicing::test_simple_no_merge, test/test_jit.py::TestCustomOperators::test_calling_scripted_custom_op, test/test_jit.py::TestCustomOperators::test_calling_traced_custom_op, test/test_jit.py::TestCustomOperators::test_default_arguments_are_used, test/test_jit.py::TestCustomOperators::test_dynamic_op_registry, test/test_jit.py::TestCustomOperators::test_generic_list, test/test_jit.py::TestCustomOperators::test_getting_invalid_attr, test/test_jit.py::TestCustomOperators::test_passing_and_returning_lists, test/test_jit.py::TestCustomOperators::test_passing_one_positional_but_not_the_second, test/test_jit.py::TestCustomOperators::test_passing_too_few_args, test/test_jit.py::TestCustomOperators::test_passing_too_many_args, test/test_jit.py::TestCustomOperators::test_passing_unknown_kwargs, test/test_jit.py::TestCustomOperators::test_script_graph_contains_custom_op, test/test_jit.py::TestCustomOperators::test_script_graph_for_custom_ops_matches_traced_graph, test/test_jit.py::TestCustomOperators::test_simply_calling_an_operator, test/test_jit.py::TestCustomOperators::test_where_no_scalar, test/test_jit.py::TestGraphRewritePasses::test_fuse_linear, test/test_jit.py::TestClassType::test_cast_overloads, test/test_jit.py::TestClassType::test_class_attribute_wrong_type, test/test_jit.py::TestClassType::test_class_constant, test/test_jit.py::TestClassType::test_class_constructs_itself, test/test_jit.py::TestClassType::test_class_inheritance, test/test_jit.py::TestClassType::test_class_inheritance_implicit, test/test_jit.py::TestClassType::test_class_sorting, test/test_jit.py::TestClassType::test_class_specialization, test/test_jit.py::TestClassType::test_class_type_as_param, test/test_jit.py::TestClassType::test_classmethod, test/test_jit.py::TestClassType::test_conditional_set_attr, test/test_jit.py::TestClassType::test_custom_delete, test/test_jit.py::TestClassType::test_default_args, test/test_jit.py::TestClassType::test_get_attr, test/test_jit.py::TestClassType::test_get_attr_not_initialized, test/test_jit.py::TestClassType::test_get_with_method, test/test_jit.py::TestClassType::test_imported_classes, test/test_jit.py::TestClassType::test_in, test/test_jit.py::TestClassType::test_init_compiled_first, test/test_jit.py::TestClassType::test_interface, test/test_jit.py::TestClassType::test_optional_type_promotion, test/test_jit.py::TestClassType::test_out_of_order_methods, test/test_jit.py::TestClassType::test_overloaded_fn, test/test_jit.py::TestClassType::test_properties, test/test_jit.py::TestClassType::test_py_class_to_ivalue_missing_attribute, test/test_jit.py::TestClassType::test_python_interop, test/test_jit.py::TestClassType::test_recursive_class, test/test_jit.py::TestClassType::test_recursive_script_builtin_type_resolution, test/test_jit.py::TestClassType::test_recursive_script_module_builtin_type_resolution, test/test_jit.py::TestClassType::test_recursive_scripting, test/test_jit.py::TestClassType::test_recursive_scripting_failed, test/test_jit.py::TestClassType::test_reference_semantics, test/test_jit.py::TestClassType::test_save_load_with_classes, test/test_jit.py::TestClassType::test_save_load_with_classes_nested, test/test_jit.py::TestClassType::test_save_load_with_classes_returned, test/test_jit.py::TestClassType::test_schema_human_readable, test/test_jit.py::TestClassType::test_self_referential_method, test/test_jit.py::TestClassType::test_set_attr_in_method, test/test_jit.py::TestClassType::test_set_attr_non_initialized, test/test_jit.py::TestClassType::test_set_attr_type_mismatch, test/test_jit.py::TestClassType::test_staticmethod, test/test_jit.py::TestClassType::test_type_annotation, test/test_jit.py::TestClassType::test_type_annotations, test/test_jit.py::TestClassType::test_unresolved_class_attributes, test/test_jit.py::TestClassType::test_unused_method, test/test_jit.py::TestBuiltins::test_del, test/test_jit.py::TestBuiltins::test_del_multiple_operands, test/test_jit.py::TestBuiltins::test_has_attr, test/test_jit.py::TestBuiltins::test_has_attr_invalid_args, test/test_jit.py::TestBuiltins::test_torch_check, test/test_jit.py::TestBuiltins::test_torch_check_invalid_args, test/test_jit.py::TestTensorBuiltins::test_method_on_number, test/test_jit.py::TestTensorBuiltins::test_scalar_to_num_conversions, test/test_jit.py::TestTensorBuiltins::test_tensor_item, test/test_jit.py::TestTensorBuiltins::test_tensor_properties, test/test_jit.py::TestTensorBuiltins::test_tensor_subscript_assign, test/test_jit.py::TestTensorBuiltins::test_tensor_subscript_assign_device, test/test_jit.py::TestIgnoreContextManager::test_with_ignore_context_manager_with_inp_out, test/test_jit.py::TestIgnoreContextManager::test_with_ignore_context_manager_with_just_inp, test/test_jit.py::TestIgnoreContextManager::test_with_ignore_context_manager_with_just_out, test/test_jit.py::TestSymbolicShapeAnalysis::test_adaptive_avg_pool2d, test/test_jit.py::TestSymbolicShapeAnalysis::test_arange_shape, test/test_jit.py::TestSymbolicShapeAnalysis::test_binary_shape_fns_inplace, test/test_jit.py::TestSymbolicShapeAnalysis::test_binary_shape_functions, test/test_jit.py::TestSymbolicShapeAnalysis::test_conv_deconv, test/test_jit.py::TestSymbolicShapeAnalysis::test_convolution_backward, test/test_jit.py::TestSymbolicShapeAnalysis::test_cross_entropy_loss, test/test_jit.py::TestSymbolicShapeAnalysis::test_if_propagation, test/test_jit.py::TestSymbolicShapeAnalysis::test_partial_eval_graph_conv, test/test_jit.py::TestSymbolicShapeAnalysis::test_partial_eval_stitching, test/test_jit.py::TestSymbolicShapeAnalysis::test_refinement_through_graph_stitching, test/test_jit.py::TestSymbolicShapeAnalysis::test_register_function_error_checking, test/test_jit.py::TestSymbolicShapeAnalysis::test_returning_input_symbolic_shapes, test/test_jit.py::TestSymbolicShapeAnalysis::test_shape_analysis, test/test_jit.py::TestSymbolicShapeAnalysis::test_shape_concat, test/test_jit.py::TestSymbolicShapeAnalysis::test_shape_embedding_bag, test/test_jit.py::TestSymbolicShapeAnalysis::test_shape_function_includes, test/test_jit.py::TestSymbolicShapeAnalysis::test_shared_shape_graph, test/test_jit.py::TestSymbolicShapeAnalysis::test_size_and_sizes, test/test_jit.py::TestSymbolicShapeAnalysis::test_squeeze_dims, test/test_jit.py::TestSymbolicShapeAnalysis::test_stitching_concat, test/test_jit.py::TestSymbolicShapeAnalysis::test_stitching_multi_output, test/test_jit.py::TestSymbolicShapeAnalysis::test_sym_ir_parsing, test/test_jit.py::TestSymbolicShapeAnalysis::test_unary_shape_fns_inplace, test/test_jit.py::TestSymbolicShapeAnalysis::test_unary_shape_functions, test/test_jit.py::TestSymbolicShapeAnalysis::test_write, test/test_jit.py::TestOpDecompositions::test_op_decomposition, test/test_jit.py::TestOpDecompositions::test_registered_decomposition, test/test_jit.py::TestUnsupportedOps::test_factory_ops_requires_grad_fail, test/test_jit.py::TestUnsupportedOps::test_init_ops, test/test_jit.py::TestFreezing::test_freeze_interface_swapping_two_methods, test/test_jit.py::TestFreezing::test_freeze_interface_within_object, test/test_jit.py::TestFreezing::test_freeze_module, test/test_jit.py::TestFreezing::test_freeze_module_detach_gradient, test/test_jit.py::TestFreezing::test_freeze_module_in_training_mode, test/test_jit.py::TestFreezing::test_freeze_module_inlining, test/test_jit.py::TestFreezing::test_freeze_module_no_forward, test/test_jit.py::TestFreezing::test_freeze_module_return_self, test/test_jit.py::TestFreezing::test_freeze_module_return_sub_module, test/test_jit.py::TestFreezing::test_freeze_module_with_aliased_attr, test/test_jit.py::TestFreezing::test_freeze_module_with_aliased_attr2, test/test_jit.py::TestFreezing::test_freeze_module_with_aliased_attr3, test/test_jit.py::TestFreezing::test_freeze_module_with_aliased_tensor_attr, test/test_jit.py::TestFreezing::test_freeze_module_with_aliased_tensor_attr2, test/test_jit.py::TestFreezing::test_freeze_module_with_aliased_tensor_attr3, test/test_jit.py::TestFreezing::test_freeze_module_with_aliased_tensor_attr4, test/test_jit.py::TestFreezing::test_freeze_module_with_call_method, test/test_jit.py::TestFreezing::test_freeze_module_with_fork, test/test_jit.py::TestFreezing::test_freeze_module_with_fork2, test/test_jit.py::TestFreezing::test_freeze_module_with_fork_calling_module_method, test/test_jit.py::TestFreezing::test_freeze_module_with_helperfunction, test/test_jit.py::TestFreezing::test_freeze_module_with_inplace_mutable, test/test_jit.py::TestFreezing::test_freeze_module_with_list, test/test_jit.py::TestFreezing::test_freeze_module_with_mutable_dict, test/test_jit.py::TestFreezing::test_freeze_module_with_mutable_list, test/test_jit.py::TestFreezing::test_freeze_module_with_mutable_tensor, test/test_jit.py::TestFreezing::test_freeze_module_with_nested_fork, test/test_jit.py::TestFreezing::test_freeze_module_with_nestedaliasing, test/test_jit.py::TestFreezing::test_freeze_module_with_nestedaliasingscalar, test/test_jit.py::TestFreezing::test_freeze_module_with_non_static_module_container_index, test/test_jit.py::TestFreezing::test_freeze_module_with_overlapping_attrs, test/test_jit.py::TestFreezing::test_freeze_module_with_preserve_sub_module, test/test_jit.py::TestFreezing::test_freeze_module_with_preserve_sub_module_and_mutation, test/test_jit.py::TestFreezing::test_freeze_module_with_sharedclasstype, test/test_jit.py::TestFreezing::test_freeze_module_with_submodule, test/test_jit.py::TestFreezing::test_freeze_module_with_tensor, test/test_jit.py::TestFreezing::test_freeze_module_with_tuple, test/test_jit.py::TestFreezing::test_freeze_module_with_tupleoutput_submodule, test/test_jit.py::TestFreezing::test_freeze_module_with_user_preserved_attr, test/test_jit.py::TestFreezing::test_freeze_module_with_user_preserved_attribute_on_submodule, test/test_jit.py::TestFreezing::test_freeze_module_with_user_preserved_attribute_on_unused_submodule, test/test_jit.py::TestFreezing::test_freeze_module_with_user_preserved_method, test/test_jit.py::TestFreezing::test_freeze_module_with_user_preserved_method2, test/test_jit.py::TestFreezing::test_freeze_module_with_user_preserved_method_on_submodule, test/test_jit.py::TestFreezing::test_freeze_no_forward, test/test_jit.py::TestFreezing::test_freeze_non_interface_module_swap, test/test_jit.py::TestFreezing::test_freeze_non_module_class_getattr, test/test_jit.py::TestFreezing::test_freeze_recursive_interfaces, test/test_jit.py::TestFreezing::test_freeze_recursive_interfaces_same_name, test/test_jit.py::TestFreezing::test_freeze_recursive_interfaces_with_reassignment, test/test_jit.py::TestFreezing::test_freeze_with_interface_mutable, test/test_jit.py::TestFreezing::test_freeze_with_swapping_interfaces, test/test_jit.py::TestFreezing::test_module_getattr_indirection, test/test_jit.py::TestFreezing::test_module_with_shared_type_instances, test/test_jit.py::TestFrozenOptimizations::test_bn_not_broadcast_with_linear, test/test_jit.py::TestFrozenOptimizations::test_collapse_adjacent_conversions, test/test_jit.py::TestFrozenOptimizations::test_conv_add_folding, test/test_jit.py::TestFrozenOptimizations::test_conv_bn_folding, test/test_jit.py::TestFrozenOptimizations::test_conv_bn_folding_autocast_scenario_cuda, test/test_jit.py::TestFrozenOptimizations::test_conv_bn_folding_not_forward, test/test_jit.py::TestFrozenOptimizations::test_conv_hardswish, test/test_jit.py::TestFrozenOptimizations::test_conv_mul_add_bn, test/test_jit.py::TestFrozenOptimizations::test_conv_to_mkldnn, test/test_jit.py::TestFrozenOptimizations::test_conv_to_mkldnn_no_mkldnn, test/test_jit.py::TestFrozenOptimizations::test_freeze_conv_relu_fusion, test/test_jit.py::TestFrozenOptimizations::test_freeze_conv_relu_fusion_not_forward, test/test_jit.py::TestFrozenOptimizations::test_freeze_mkdlnn, test/test_jit.py::TestFrozenOptimizations::test_freeze_remove_dropout, test/test_jit.py::TestFrozenOptimizations::test_freeze_remove_feature_dropout, test/test_jit.py::TestFrozenOptimizations::test_hardswish_hardsigmoid, test/test_jit.py::TestFrozenOptimizations::test_incompatible_perf_formats, test/test_jit.py::TestFrozenOptimizations::test_linear_bn_folding, test/test_jit.py::TestFrozenOptimizations::test_linear_bn_folding_autocast_scenario_cuda, test/test_jit.py::TestFrozenOptimizations::test_linear_concat, test/test_jit.py::TestFrozenOptimizations::test_linear_concat_complex, test/test_jit.py::TestFrozenOptimizations::test_linear_concat_different_input, test/test_jit.py::TestFrozenOptimizations::test_linear_multiple_blocks, test/test_jit.py::TestFrozenOptimizations::test_linear_non_constant_weight, test/test_jit.py::TestFrozenOptimizations::test_linear_transpose, test/test_jit.py::TestFrozenOptimizations::test_maxpool_mkldnn, test/test_jit.py::TestFrozenOptimizations::test_mkldnn_fuser_broadcasting, test/test_jit.py::TestFrozenOptimizations::test_mkldnn_inplace_removal, test/test_jit.py::TestFrozenOptimizations::test_numel_less_than_size_with_padding, test/test_jit.py::TestFrozenOptimizations::test_optimize_freeze_module, test/test_jit.py::TestFrozenOptimizations::test_pool2d_batchnorm, test/test_jit.py::TestFrozenOptimizations::test_pool3d_batchnorm, test/test_jit.py::TestFrozenOptimizations::test_remove_detach, test/test_jit.py::TestFrozenOptimizations::test_remove_detach_not_applied, test/test_jit.py::TestFrozenOptimizations::test_scalar_mul, test/test_jit.py::TestMKLDNNReinplacing::test_always_alive_values, test/test_jit.py::TestMKLDNNReinplacing::test_merge_liveness, test/test_jit.py::TestMKLDNNReinplacing::test_successful, test/test_jit.py::TestMKLDNNReinplacing::test_switch_inputs_to_inplace, test/test_jit.py::TestPeephole::test_conv_dim_folding, test/test_jit.py::TestPeephole::test_integer_refinement, test/test_jit.py::TestPeephole::test_noop_peephole, test/test_jit.py::TestPeephole::test_normalized_is_op, test/test_jit.py::TestPeephole::test_normalized_isnot_op, test/test_jit.py::TestPeephole::test_normalized_rsub, test/test_jit.py::TestPeephole::test_optimize_out_comparison_same_value, test/test_jit.py::TestPeephole::test_peephole, test/test_jit.py::TestPeephole::test_peephole_add_zero, test/test_jit.py::TestPeephole::test_peephole_arith, test/test_jit.py::TestPeephole::test_peephole_cuda, test/test_jit.py::TestPeephole::test_peephole_dict_getitem_no_optimization_dict_modified, test/test_jit.py::TestPeephole::test_peephole_dict_getitem_no_optimization_get_input_arg, test/test_jit.py::TestPeephole::test_peephole_dict_getitem_no_optimization_keys_might_overlap, test/test_jit.py::TestPeephole::test_peephole_dict_getitem_no_optimization_missing_key, test/test_jit.py::TestPeephole::test_peephole_dict_getitem_no_optimization_overlapping_keys, test/test_jit.py::TestPeephole::test_peephole_dict_getitem_no_optimization_unsupported_type, test/test_jit.py::TestPeephole::test_peephole_dict_getitem_simple, test/test_jit.py::TestPeephole::test_peephole_dict_len, test/test_jit.py::TestPeephole::test_peephole_dict_len_no_optimization_keys_might_overlap, test/test_jit.py::TestPeephole::test_peephole_dict_len_no_optimization_overlapping_keys, test/test_jit.py::TestPeephole::test_peephole_dict_len_no_optimization_unsupported_type, test/test_jit.py::TestPeephole::test_peephole_dynamic, test/test_jit.py::TestPeephole::test_peephole_int, test/test_jit.py::TestPeephole::test_peephole_len_list, test/test_jit.py::TestPeephole::test_peephole_list_len, test/test_jit.py::TestPeephole::test_peephole_list_ops, test/test_jit.py::TestPeephole::test_peephole_no_output_aliasing, test/test_jit.py::TestPeephole::test_peephole_optional_refine, test/test_jit.py::TestPeephole::test_peephole_slice_all_three_args, test/test_jit.py::TestPeephole::test_peephole_slice_one_empty_arg, test/test_jit.py::TestPeephole::test_peephole_slice_optimization_not_applied_list_modified, test/test_jit.py::TestPeephole::test_peephole_slice_optimization_not_applied_non_const_args, test/test_jit.py::TestPeephole::test_peephole_slice_two_empty_args, test/test_jit.py::TestPeephole::test_peephole_type_refinements, test/test_jit.py::TestPeephole::test_peephole_with_non_output_writes, test/test_jit.py::TestPeephole::test_peephole_with_writes, test/test_jit.py::TestPeephole::test_refine_integer_values, test/test_jit.py::TestPeephole::test_short_circuit_optimization, test/test_jit.py::TestAliasAnalysis::test_becomes_wildcard_annotations, test/test_jit.py::TestAliasAnalysis::test_multiple_compilation_units, test/test_jit.py::TestAliasAnalysis::test_nested_list_construct_not_wildcard, test/test_jit.py::TestAliasAnalysis::test_recursive_calls, test/test_jit.py::TestSaveLoad::test_different_functions, test/test_jit.py::TestSaveLoad::test_different_interfaces, test/test_jit.py::TestSaveLoad::test_different_modules, test/test_jit.py::TestSaveLoad::test_many_collisions, test/test_jit.py::TestSaveLoad::test_save_load_large_string_attribute, test/test_jit.py::TestSaveLoad::test_save_load_meta_tensors, test/test_jit.py::TestSaveLoad::test_save_load_meta_tensors_to_device, test/test_jit.py::TestSaveLoad::test_save_load_params_buffers_submodules, test/test_jit.py::TestSaveLoad::test_save_load_using_pathlib, test/test_jit.py::TestSaveLoad::test_save_load_with_extra_files, test/test_jit.py::TestSaveLoad::test_save_load_with_saved_traced_inputs, test/test_jit.py::TestSaveLoad::test_save_namedtuple_input_only, test/test_jit.py::TestSaveLoad::test_save_namedtuple_input_only_forwardref, test/test_jit.py::TestSaveLoad::test_save_namedtuple_output_only, test/test_jit.py::TestSaveLoad::test_save_nonexit_file, test/test_jit.py::TestSaveLoadFlatbuffer::test_different_functions, test/test_jit.py::TestSaveLoadFlatbuffer::test_different_interfaces, test/test_jit.py::TestSaveLoadFlatbuffer::test_different_modules, test/test_jit.py::TestSaveLoadFlatbuffer::test_many_collisions, test/test_jit.py::TestSaveLoadFlatbuffer::test_module_info_flatbuffer, test/test_jit.py::TestSaveLoadFlatbuffer::test_save_load_params_buffers_submodules, test/test_jit.py::TestSaveLoadFlatbuffer::test_save_load_using_pathlib, test/test_jit.py::TestSaveLoadFlatbuffer::test_save_load_with_extra_files, test/test_jit.py::TestSaveLoadFlatbuffer::test_save_namedtuple_input_only, test/test_jit.py::TestSaveLoadFlatbuffer::test_save_namedtuple_output_only, test/test_jit.py::TestSaveLoadForOpVersion::test_versioned_div_scalar, test/test_jit.py::TestSaveLoadForOpVersion::test_versioned_div_scalar_inplace, test/test_jit.py::TestSaveLoadForOpVersion::test_versioned_div_scalar_reciprocal, test/test_jit.py::TestSaveLoadForOpVersion::test_versioned_div_scalar_scalar, test/test_jit.py::TestSaveLoadForOpVersion::test_versioned_div_tensor, test/test_jit.py::TestSaveLoadForOpVersion::test_versioned_div_tensor_inplace, test/test_jit.py::TestSaveLoadForOpVersion::test_versioned_div_tensor_out, test/test_jit.py::TestSaveLoadForOpVersion::test_versioned_linspace, test/test_jit.py::TestSaveLoadForOpVersion::test_versioned_linspace_out, test/test_jit.py::TestSaveLoadForOpVersion::test_versioned_logspace, test/test_jit.py::TestSaveLoadForOpVersion::test_versioned_logspace_out, test/test_jit.py::TestModuleContainers::test_custom_container_forward, test/test_jit.py::TestModuleContainers::test_empty_dict_override_contains, test/test_jit.py::TestModuleContainers::test_module_inplace_construct, test/test_jit.py::TestModuleContainers::test_module_interface_special_methods, test/test_jit.py::TestModuleContainers::test_module_properties, test/test_jit.py::TestModuleContainers::test_moduledict, test/test_jit.py::TestModuleContainers::test_moduledict_getitem, test/test_jit.py::TestModuleContainers::test_moduledict_keyerror, test/test_jit.py::TestModuleContainers::test_normal_list_attribute_with_modules_error, test/test_jit.py::TestModuleContainers::test_parameterdict_script_getitem, test/test_jit.py::TestModuleContainers::test_parameterlist_script_getitem, test/test_jit.py::TestModuleContainers::test_parameterlist_script_iter, test/test_jit.py::TestModuleContainers::test_script_module_list_sequential, test/test_jit.py::TestModuleContainers::test_script_modulelist_index, test/test_jit.py::TestModuleContainers::test_sequential_intermediary_types, test/test_jit.py::TestModuleContainers::test_special_method_with_override, test/test_jit.py::TestModuleContainers::test_typed_module_dict, test/test_jit.py::TestModuleContainers::test_typed_module_list, test/test_jit.py::TestPythonBindings::test_add_input, test/test_jit.py::TestPythonBindings::test_aliasdb, test/test_jit.py::TestPythonBindings::test_canonicalize, test/test_jit.py::TestPythonBindings::test_cu_create_function, test/test_jit.py::TestPythonBindings::test_cu_get_functions, test/test_jit.py::TestPythonBindings::test_graph_create, test/test_jit.py::TestPythonBindings::test_graph_iterator_keepalive, test/test_jit.py::TestPythonBindings::test_invalidation, test/test_jit.py::TestPythonIr::test_param_strides, test/test_jit.py::TestPythonIr::test_permute_inputs_binding, test/test_jit.py::TestPythonIr::test_python_ir_utils, test/test_jit.py::TestPythonIr::test_python_ir_utils_graph, test/test_jit.py::TestFunctionalBlocks::test_subgraph_creation, test/test_jit.py::TestRemoveMutation::test_aten_inplace, test/test_jit.py::TestRemoveMutation::test_common_pytorch_list_ops, test/test_jit.py::TestRemoveMutation::test_if_output, test/test_jit.py::TestRemoveMutation::test_if_output_fail, test/test_jit.py::TestRemoveMutation::test_list_indexing_removal, test/test_jit.py::TestRemoveMutation::test_lists_append, test/test_jit.py::TestRemoveMutation::test_lists_insert, test/test_jit.py::TestRemoveMutation::test_special_mapped_op, test/test_jit.py::TestTorchbind::test_default_args, test/test_jit.py::TestTorchbind::test_hasattr, test/test_jit.py::TestTorchbind::test_lambda_as_constructor, test/test_jit.py::TestTorchbind::test_profiler_custom_op, test/test_jit.py::TestTorchbind::test_staticmethod, test/test_jit.py::TestTorchbind::test_torchbind, test/test_jit.py::TestTorchbind::test_torchbind_attr_exception, test/test_jit.py::TestTorchbind::test_torchbind_class_attr_recursive, test/test_jit.py::TestTorchbind::test_torchbind_class_attribute, test/test_jit.py::TestTorchbind::test_torchbind_deepcopy, test/test_jit.py::TestTorchbind::test_torchbind_def_property_getter_setter, test/test_jit.py::TestTorchbind::test_torchbind_def_property_just_getter, test/test_jit.py::TestTorchbind::test_torchbind_def_property_readwrite, test/test_jit.py::TestTorchbind::test_torchbind_getattr, test/test_jit.py::TestTorchbind::test_torchbind_getstate, test/test_jit.py::TestTorchbind::test_torchbind_instantiate_missing_class, test/test_jit.py::TestTorchbind::test_torchbind_lambda_method, test/test_jit.py::TestTorchbind::test_torchbind_no_init, test/test_jit.py::TestTorchbind::test_torchbind_optional_explicit_attr, test/test_jit.py::TestTorchbind::test_torchbind_pass_wrong_type, test/test_jit.py::TestTorchbind::test_torchbind_pickle_serialization, test/test_jit.py::TestTorchbind::test_torchbind_python_deepcopy, test/test_jit.py::TestTorchbind::test_torchbind_return_instance, test/test_jit.py::TestTorchbind::test_torchbind_return_instance_from_method, test/test_jit.py::TestTorchbind::test_torchbind_return_tuple, test/test_jit.py::TestTorchbind::test_torchbind_save_load, test/test_jit.py::TestTorchbind::test_torchbind_take_as_arg, test/test_jit.py::TestTorchbind::test_torchbind_take_instance_as_method_arg, test/test_jit.py::TestTorchbind::test_torchbind_tracing, test/test_jit.py::TestTorchbind::test_torchbind_tracing_nested, test/test_jit.py::TestModuleInterface::test_freeze_module_with_inplace_mutation_in_interface, test/test_jit.py::TestModuleInterface::test_freeze_module_with_interface, test/test_jit.py::TestModuleInterface::test_freeze_module_with_interface_and_fork, test/test_jit.py::TestModuleInterface::test_freeze_module_with_mutated_interface, test/test_jit.py::TestModuleInterface::test_freeze_module_with_setattr_in_interface, test/test_jit.py::TestModuleInterface::test_module_apis_interface, test/test_jit.py::TestModuleInterface::test_module_doc_string, test/test_jit.py::TestModuleInterface::test_module_interface, test/test_jit.py::TestModuleInterface::test_module_interface_inheritance, test/test_jit.py::TestModuleInterface::test_module_interface_subtype, test/test_jit.py::TestModuleInterface::test_module_swap, test/test_jit.py::TestModuleInterface::test_module_swap_no_lazy_compile, test/test_jit.py::TestModuleInterface::test_module_swap_no_module_interface, test/test_jit.py::TestModuleInterface::test_module_swap_wrong_module, test/test_jit.py::TestModuleInterface::test_not_submodule_interface_call, test/test_jit.py::TestModuleInterface::test_script_module_as_interface_swap, test/test_jit.py::TestWith::test_with_as, test/test_jit.py::TestWith::test_with_errors, test/test_jit.py::TestWith::test_with_exceptions, test/test_jit.py::TestWith::test_with_no_as, test/test_jit.py::TestWith::test_with_no_grad, test/test_jit.py::TestWith::test_with_record_function, test/test_jit.py::TestEnum::test_closed_over_enum_constant, test/test_jit.py::TestEnum::test_enum_as_const, test/test_jit.py::TestEnum::test_enum_as_module_attribute, test/test_jit.py::TestEnum::test_enum_comp, test/test_jit.py::TestEnum::test_enum_comp_diff_classes, test/test_jit.py::TestEnum::test_enum_explicit_script, test/test_jit.py::TestEnum::test_enum_iterate, test/test_jit.py::TestEnum::test_enum_ivalue_type, test/test_jit.py::TestEnum::test_enum_module_return, test/test_jit.py::TestEnum::test_enum_name, test/test_jit.py::TestEnum::test_enum_return, test/test_jit.py::TestEnum::test_enum_value, test/test_jit.py::TestEnum::test_enum_value_types, test/test_jit.py::TestEnum::test_heterogenous_value_type_enum_error, test/test_jit.py::TestEnum::test_non_existent_enum_value, test/test_jit.py::TestEnum::test_string_enum_as_module_attribute, test/test_jit.py::TestEnum::test_typed_enum, test/test_jit.py::TestStringFormatting::test_modulo_operator, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_alternate_digit_placeholder, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_capital_exponent_placeholder_and_digit_variable, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_char_placeholder_and_char_variable, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_char_placeholder_and_digit_variable, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_char_placeholder_and_true_string_variable, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_digit_placeholder_and_digit_variable, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_digit_placeholder_and_string_variable, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_double_percent_in_string, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_exponent_placeholder_and_string_variable, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_float_placeholder_and_digit_variable, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_float_placeholder_and_float_variable, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_lowercase_exponent_placeholder_and_digit_variable, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_multiple_placeholders, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_percent_in_string, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_string_placeholder_and_digit_variable, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_string_placeholder_and_format_string_variable, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_string_placeholder_and_string_variable, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_subscript, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_too_few_arguments, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_too_many_arguments, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_unknown_format_specifier, test/test_jit.py::TestProfiler::test_aliasing_merge, test/test_jit.py::TestProfiler::test_autograd_fallback_graph, test/test_jit.py::TestProfiler::test_fallback_graph_not_specialized, test/test_jit.py::TestProfiler::test_iterative_fusion, test/test_jit.py::TestProfiler::test_local_fusion_strategy, test/test_jit.py::TestProfiler::test_not_fusing_scalar_ops, test/test_jit.py::TestProfiler::test_not_optimizing_property, test/test_jit.py::TestProfiler::test_specialize_backward, test/test_jit.py::TestProfiler::test_specialized_types, test/test_jit.py::TestProfiler::test_tensor_constant, test/test_jit.py::TestProfiler::test_tensor_type_not_determined_by_inputs, test/test_jit.py::TestProfiler::test_use_not_profiled, test/test_jit.py::TestSlice::test_module_list_slicing, test/test_jit.py::TestSlice::test_slice_as_variable, test/test_jit.py::TestSlice::test_slice_dynamic_index, test/test_jit.py::TestSlice::test_slice_kwarg, test/test_jit.py::TestSlice::test_slice_one_none, test/test_jit.py::TestSlice::test_slice_start_stop, test/test_jit.py::TestSlice::test_slice_start_stop_step, test/test_jit.py::TestSlice::test_slice_start_stop_with_none, test/test_jit.py::TestSlice::test_slice_stop_clipped, test/test_jit.py::TestSlice::test_slice_stop_only, test/test_jit.py::TestSlice::test_slice_stop_only_with_nones, test/test_jit.py::TestSlice::test_slice_string, test/test_jit.py::TestSlice::test_slice_tensor, test/test_jit.py::TestSlice::test_slice_tensor_multidim, test/test_jit.py::TestSlice::test_slice_tensor_multidim_with_dots, test/test_jit.py::TestSlice::test_slice_three_nones, test/test_jit.py::TestSlice::test_slice_two_nones, test/test_jit.py::TestSlice::test_tuple_slicing, test/test_jit.py::TestIgnorableArgs::test_add_out_ignorable_args, test/test_jit.py::TestIgnorableArgs::test_slice_ignorable_args_for_slice, test/test_jit.py::TestHooks::test_forward_tuple_input, test/test_jit.py::TestHooks::test_hook_compilation_hint, test/test_jit.py::TestHooks::test_hook_hook_name_collision, test/test_jit.py::TestHooks::test_hook_method_name_collision, test/test_jit.py::TestHooks::test_module_direct_forward_invocation, test/test_jit.py::TestHooks::test_module_forward_multiple_inputs, test/test_jit.py::TestHooks::test_module_forward_single_input, test/test_jit.py::TestHooks::test_module_hook_return_nothing, test/test_jit.py::TestHooks::test_module_multiple_hooks_multiple_inputs, test/test_jit.py::TestHooks::test_module_multiple_hooks_single_input, test/test_jit.py::TestHooks::test_module_no_forward_input, test/test_jit.py::TestHooks::test_module_same_hook_repeated, test/test_jit.py::TestHooks::test_submodule_called_directly_with_hooks, test/test_jit.py::TestHooks::test_submodule_direct_forward_invocation, test/test_jit.py::TestHooks::test_submodule_forward_multiple_inputs, test/test_jit.py::TestHooks::test_submodule_forward_single_input, test/test_jit.py::TestHooks::test_submodule_forward_single_input_return_not_tupled, test/test_jit.py::TestHooks::test_submodule_hook_return_nothing, test/test_jit.py::TestHooks::test_submodule_multiple_hooks_multiple_inputs, test/test_jit.py::TestHooks::test_submodule_multiple_hooks_single_input, test/test_jit.py::TestHooks::test_submodule_no_forward_input, test/test_jit.py::TestHooks::test_submodule_same_hook_repeated, test/test_jit.py::TestHooks::test_wrong_hook_signatures, test/test_jit.py::TestHooks::test_wrong_pre_hook_signatures, test/test_jit.py::TestWarn::test_warn, test/test_jit.py::TestWarn::test_warn_multiple_calls_multiple_warnings, test/test_jit.py::TestWarn::test_warn_multiple_calls_same_func_diff_stack, test/test_jit.py::TestWarn::test_warn_once_per_func, test/test_jit.py::TestWarn::test_warn_once_per_func_in_loop, test/test_jit.py::TestWarn::test_warn_only_once, test/test_jit.py::TestWarn::test_warn_only_once_in_loop_func, test/test_jit.py::TestIsinstance::test_bool, test/test_jit.py::TestIsinstance::test_dict, test/test_jit.py::TestIsinstance::test_dict_nested, test/test_jit.py::TestIsinstance::test_dict_no_contained_type, test/test_jit.py::TestIsinstance::test_dict_tensor, test/test_jit.py::TestIsinstance::test_empty_container_special_cases, test/test_jit.py::TestIsinstance::test_empty_container_throws_warning_in_eager, test/test_jit.py::TestIsinstance::test_float, test/test_jit.py::TestIsinstance::test_if_else, test/test_jit.py::TestIsinstance::test_in_if, test/test_jit.py::TestIsinstance::test_in_while_loop, test/test_jit.py::TestIsinstance::test_int, test/test_jit.py::TestIsinstance::test_list, test/test_jit.py::TestIsinstance::test_list_nested, test/test_jit.py::TestIsinstance::test_list_no_contained_type, test/test_jit.py::TestIsinstance::test_list_tensor, test/test_jit.py::TestIsinstance::test_list_tensor_type_true, test/test_jit.py::TestIsinstance::test_nontuple_container_rhs_throws_in_eager, test/test_jit.py::TestIsinstance::test_optional, test/test_jit.py::TestIsinstance::test_optional_nested, test/test_jit.py::TestIsinstance::test_optional_no_contained_type, test/test_jit.py::TestIsinstance::test_optional_none, test/test_jit.py::TestIsinstance::test_tensor_type_false, test/test_jit.py::TestIsinstance::test_tuple, test/test_jit.py::TestIsinstance::test_tuple_nested, test/test_jit.py::TestIsinstance::test_tuple_no_contained_type, test/test_jit.py::TestIsinstance::test_tuple_rhs, test/test_jit.py::TestIsinstance::test_tuple_tensor, test/test_jit.py::TestIsinstance::test_type_refinement, test/test_jit.py::TestPythonBuiltinOP::test_add, test/test_jit.py::TestPythonBuiltinOP::test_adv_indexing_list, test/test_jit.py::TestPythonBuiltinOP::test_advancedindex, test/test_jit.py::TestPythonBuiltinOP::test_gather, test/test_jit.py::TestPythonBuiltinOP::test_index, test/test_jit.py::TestPythonBuiltinOP::test_index_ellipses, test/test_jit.py::TestPythonBuiltinOP::test_inf, test/test_jit.py::TestPythonBuiltinOP::test_matmul_py3, test/test_jit.py::TestPythonBuiltinOP::test_mul, test/test_jit.py::TestPythonBuiltinOP::test_pow, test/test_jit.py::TestPythonBuiltinOP::test_random, test/test_jit.py::TestPythonBuiltinOP::test_slice, test/test_jit.py::TestPythonBuiltinOP::test_stepped_tuple_slicing, test/test_jit.py::TestPythonBuiltinOP::test_str_to_float, test/test_jit.py::TestPythonBuiltinOP::test_triple, test/test_jit.py::TestTyping::test_bool_list_io, test/test_jit.py::TestTyping::test_dict_comprehension, test/test_jit.py::TestTyping::test_dict_comprehension_scope, test/test_jit.py::TestTyping::test_dict_comprehension_with_type_annotation, test/test_jit.py::TestTyping::test_dict_in_not_in, test/test_jit.py::TestTyping::test_dict_invalid_annotations, test/test_jit.py::TestTyping::test_dict_type_refinement_annotation_key_mismatch, test/test_jit.py::TestTyping::test_dict_type_refinement_annotation_value_mismatch, test/test_jit.py::TestTyping::test_for_in_dict, test/test_jit.py::TestTyping::test_for_in_string, test/test_jit.py::TestTyping::test_for_tuple_assign, test/test_jit.py::TestTyping::test_for_tuple_unpack, test/test_jit.py::TestTyping::test_inherited_annotations_python_310, test/test_jit.py::TestTyping::test_list_io, test/test_jit.py::TestTyping::test_list_iterables, test/test_jit.py::TestTyping::test_list_sum, test/test_jit.py::TestTyping::test_list_type_refinement_annotation_element_mismatch, test/test_jit.py::TestTyping::test_list_unification, test/test_jit.py::TestTyping::test_multiple_assign, test/test_jit.py::TestTyping::test_namedtuple_error_source_attribution, test/test_jit.py::TestTyping::test_namedtuple_good_error, test/test_jit.py::TestTyping::test_namedtuple_py2, test/test_jit.py::TestTyping::test_namedtuple_redefine, test/test_jit.py::TestTyping::test_nested_list, test/test_jit.py::TestTyping::test_opt_opt_refinement, test/test_jit.py::TestTyping::test_optional_conversion, test/test_jit.py::TestTyping::test_optional_refinement, test/test_jit.py::TestTyping::test_optional_tuple, test/test_jit.py::TestTyping::test_singleton_tuple_unpack, test/test_jit.py::TestTyping::test_sum_list_diff_elms, test/test_jit.py::TestTyping::test_sum_list_empty, test/test_jit.py::TestTyping::test_sum_list_literal, test/test_jit.py::TestTyping::test_sum_list_one, test/test_jit.py::TestTyping::test_sum_list_wrong_type, test/test_jit.py::TestTyping::test_tuple_assignments, test/test_jit.py::TestTyping::test_tuple_create_return, test/test_jit.py::TestTyping::test_tuple_io, test/test_jit.py::TestTyping::test_tuple_keyword, test/test_jit.py::TestTyping::test_tuple_specialization, test/test_jit.py::TestHash::test_hash_bool, test/test_jit.py::TestHash::test_hash_device, test/test_jit.py::TestHash::test_hash_float, test/test_jit.py::TestHash::test_hash_int, test/test_jit.py::TestHash::test_hash_none, test/test_jit.py::TestHash::test_hash_string, test/test_jit.py::TestHash::test_hash_tensor, test/test_jit.py::TestHash::test_hash_tuple, test/test_jit.py::TestHash::test_hash_tuple_nested_unhashable_type, test/test_jit.py::TestComplex::test_binary_op_complex_tensor, test/test_jit.py::TestComplex::test_comparison_ops, test/test_jit.py::TestComplex::test_complex_constants_and_ops, test/test_jit.py::TestComplex::test_complex_constructor, test/test_jit.py::TestComplex::test_complex_list_sum, test/test_jit.py::TestComplex::test_complex_parse, test/test_jit.py::TestComplex::test_complexdict, test/test_jit.py::TestComplex::test_complexlist, test/test_jit.py::TestComplex::test_div, test/test_jit.py::TestComplex::test_infj_nanj_pickle, test/test_jit.py::TestComplex::test_pickle, test/test_jit.py::TestComplex::test_script, test/test_jit.py::TestComplex::test_tensor_attributes, test/test_jit.py::TestComplex::test_torch_complex_constructor_with_tensor, test/test_jit.py::TestJitUtils::test_checkscriptassertraisesregex, test/test_jit.py::TestJitUtils::test_get_callable_argument_names_hybrid, test/test_jit.py::TestJitUtils::test_get_callable_argument_names_keyword_only, test/test_jit.py::TestJitUtils::test_get_callable_argument_names_positional_only, test/test_jit.py::TestJitUtils::test_get_callable_argument_names_positional_or_keyword, test/test_jit.py::TestJitUtils::test_get_callable_argument_names_var_keyword, test/test_jit.py::TestJitUtils::test_get_callable_argument_names_var_positional, test/test_jit.py::TestJitUtils::test_no_tracer_warn_context_manager, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_class_level_annotation_and_init_annotation, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_class_level_annotation_only, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_class_level_jit_annotation, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_empty_dict, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_empty_dict_lowercase, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_empty_list, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_empty_list_lowercase, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_empty_optional, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_empty_tensor, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_falsy_base_type, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_nonempty_container, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_with_jit_attribute, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_with_jit_empty_dict, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_with_jit_empty_dict_lowercase, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_with_jit_empty_list, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_with_jit_empty_list_lowercase, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_with_jit_empty_optional, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_with_torch_jit_import, test/test_jit.py::TestTypesAndAnnotation::test_annotate_outside_init, test/test_jit.py::TestTypesAndAnnotation::test_bad_types, test/test_jit.py::TestTypesAndAnnotation::test_ignore_with_types, test/test_jit.py::TestTypesAndAnnotation::test_ignoring_fn_with_nonscriptable_types, test/test_jit.py::TestTypesAndAnnotation::test_ignoring_module_attributes, test/test_jit.py::TestTypesAndAnnotation::test_inferred_type_error_message, test/test_jit.py::TestTypesAndAnnotation::test_mismatched_annotation, test/test_jit.py::TestTypesAndAnnotation::test_optional_no_element_type_annotation, test/test_jit.py::TestTypesAndAnnotation::test_parser_bug, test/test_jit.py::TestTypesAndAnnotation::test_pep585_type, test/test_jit.py::TestTypesAndAnnotation::test_python_callable, test/test_jit.py::TestTypesAndAnnotation::test_reannotate, test/test_jit.py::TestTypesAndAnnotation::test_tuple_no_element_type_annotation, test/test_jit.py::TestTypesAndAnnotation::test_type_annotate_py3, test/test_jit.py::TestTypesAndAnnotation::test_types_as_values, test/test_jit.py::TestTypesAndAnnotation::test_unimported_type_resolution, test/test_jit.py::TestMisc::test_broadcasting_list, test/test_jit.py::TestMisc::test_export_opnames_interface, test/test_jit.py::TestMisc::test_future_isinstance, test/test_jit.py::TestMisc::test_hacked_twin, test/test_jit.py::TestMisc::test_if_returning_any, test/test_jit.py::TestMisc::test_jit_get_operation_order, test/test_jit.py::TestMisc::test_joined_str, test/test_jit.py::TestMisc::test_kwarg_support, test/test_jit.py::TestMisc::test_legacy_tensor_constructor, test/test_jit.py::TestMisc::test_list_literal_infer, test/test_jit.py::TestMisc::test_math_inf, test/test_jit.py::TestMisc::test_parse_ir_annotate, test/test_jit.py::TestMisc::test_parse_ir_single_element_tensor_negative, test/test_jit.py::TestMisc::test_parse_ir_single_element_tensor_positive, test/test_jit.py::TestMisc::test_pow_multiple_dtype, test/test_jit.py::TestMisc::test_script_many_decorators, test/test_jit.py::TestMisc::test_str_refine_any, test/test_jit.py::TestMisc::test_subexpression_Dict_int_Future, test/test_jit.py::TestMisc::test_subexpression_Future_annotate, test/test_jit.py::TestMisc::test_subexpression_List_Future, test/test_jit.py::TestMisc::test_subexpression_Optional, test/test_jit.py::TestMisc::test_subexpression_Tuple_int_int_Future, test/test_jit.py::TestMisc::test_tuple_subscripted_assign, test/test_jit.py::TestMisc::test_unsafe_hacked_twin, test/test_jit.py::TestUpgraders::test_add_value_to_version_map, test/test_jit.py::TestUpgraders::test_aten_div_scalar_at_3, test/test_jit.py::TestUpgraders::test_aten_div_tensor_at_3, test/test_jit.py::TestUpgraders::test_aten_div_tensor_out_at_3, test/test_jit.py::TestUpgraders::test_aten_full_at_4, test/test_jit.py::TestUpgraders::test_aten_full_other_variants, test/test_jit.py::TestUpgraders::test_aten_full_out_at_4, test/test_jit.py::TestUpgraders::test_aten_linspace, test/test_jit.py::TestUpgraders::test_aten_linspace_out, test/test_jit.py::TestUpgraders::test_aten_logspace, test/test_jit.py::TestUpgraders::test_aten_logspace_out, test/test_jit.py::TestUpgraders::test_aten_test_serialization, test/test_jit.py::TestUpgraders::test_populated_test_upgrader_graph, test/test_jit.py::TestUpgraders::test_populated_upgrader_graph, test/test_jit.py::TestTensorCreationOps::test_randperm_default_dtype, test/test_jit.py::TestTensorCreationOps::test_randperm_specifed_dtype, test/test_jit.py::TestTensorCreationOps::test_tril_indices_default_dtype, test/test_jit.py::TestTensorCreationOps::test_tril_indices_specified_dtype, test/test_jit.py::TestTensorCreationOps::test_triu_indices_default_dtype, test/test_jit.py::TestTensorCreationOps::test_triu_indices_specified_dtype, test/test_jit.py::TestModuleAPIs::test_customized_state_dict_methods, test/test_jit.py::TestModuleAPIs::test_default_state_dict_methods, test/test_jit.py::TestModuleAPIs::test_submodule_customized_state_dict_methods, test/test_jit.py::TestScriptProfile::test_basic, test/test_jit.py::TestScriptProfile::test_empty, test/test_jit.py::TestScriptProfile::test_multi, test/test_jit.py::TestScriptProfile::test_script, test/test_jit.py::TestScriptProfile::test_section, test/test_jit.py::TestFunctionalToInplaceActivation::test_check_no_type_promotion, test/test_jit.py::TestFunctionalToInplaceActivation::test_functional_to_inplace_activation, test/test_jit.py::TestFunctionalToInplaceActivation::test_no_functional_to_inplace, test/test_jit.py::TestFunctionalToInplaceActivation::test_resnet18_correctness, test/test_jit.py::TestInplaceToFunctionalActivation::test_inplace_to_functional_activation, test/test_jit.py::TestInplaceToFunctionalActivation::test_resnet18_correctness, test/test_jit.py::TestParametrization::test_scriptable, test/test_jit.py::TestParametrization::test_traceable, test/test_jit.py::TestGetDefaultAttr::test_getattr_named_tuple, test/test_jit.py::TestGetDefaultAttr::test_getattr_tuple, test/test_jit.py::TestGetDefaultAttr::test_getattr_with_default, test/test_jit.py::TestAtenPow::test_aten_pow_zero_negative_exponent, test/test_jit.py::TestOptimizeForMobilePreserveDebugInfo::test_fuse_activation_with_pack_ops_linear_conv2d_1, test/test_jit.py::TestOptimizeForMobilePreserveDebugInfo::test_fuse_activation_with_pack_ops_linear_conv2d_2, test/test_jit.py::TestOptimizeForMobilePreserveDebugInfo::test_fuse_activation_with_pack_ops_linear_conv2d_3, test/test_jit.py::TestOptimizeForMobilePreserveDebugInfo::test_fuse_activation_with_pack_ops_linear_conv2d_4, test/test_jit.py::TestOptimizeForMobilePreserveDebugInfo::test_insert_pre_packed_linear_before_inline_and_conv_2d_op, test/test_jit.py::TestOptimizeForMobilePreserveDebugInfo::test_insert_pre_packed_linear_op, test/test_jit.py::TestOptimizeForMobilePreserveDebugInfo::test_replace_conv1d_with_conv2d, test/test_jit.py::TestUnion::test_check_union_annotation, test/test_jit.py::TestUnion::test_union_T_None_is_equivalent_to_optional_T, test/test_jit.py::TestUnion::test_union_argument_order_is_ignored, test/test_jit.py::TestUnion::test_union_argument_order_is_ignored_container, test/test_jit.py::TestUnion::test_union_as_annotation, test/test_jit.py::TestUnion::test_union_as_annotation_in_typed_container, test/test_jit.py::TestUnion::test_union_as_annotation_py2, test/test_jit.py::TestUnion::test_union_as_dict_key, test/test_jit.py::TestUnion::test_union_as_dict_value, test/test_jit.py::TestUnion::test_union_as_internal_tuple_type, test/test_jit.py::TestUnion::test_union_branching_does_not_autoinfer_undeclared_union, test/test_jit.py::TestUnion::test_union_branching_does_not_widen_existing_inferred_type, test/test_jit.py::TestUnion::test_union_branching_with_union_return_and_homogenous_types, test/test_jit.py::TestUnion::test_union_does_not_replace_existing_annotated_type, test/test_jit.py::TestUnion::test_union_does_not_replace_existing_annotated_type_empty_container, test/test_jit.py::TestUnion::test_union_does_not_replace_existing_annotated_type_union, test/test_jit.py::TestUnion::test_union_in_class_constructor, test/test_jit.py::TestUnion::test_union_memory_aliasing, test/test_jit.py::TestUnion::test_union_module_with_union_class_variable, test/test_jit.py::TestUnion::test_union_module_with_union_instance_variable, test/test_jit.py::TestUnion::test_union_optional_of_union_is_flattened, test/test_jit.py::TestUnion::test_union_redundant_arguments_are_skipped, test/test_jit.py::TestUnion::test_union_redundant_arguments_are_skipped_container, test/test_jit.py::TestUnion::test_union_redundant_arguments_are_skipped_optional, test/test_jit.py::TestUnion::test_union_redundant_arguments_are_skipped_subtyping, test/test_jit.py::TestUnion::test_union_return_type, test/test_jit.py::TestUnion::test_union_schema_matching_on_internal_type, test/test_jit.py::TestUnion::test_union_serialization_preserves_type_annotations, test/test_jit.py::TestUnion::test_union_subclasses_larger_union, test/test_jit.py::TestUnion::test_union_subtractive_refinement, test/test_jit.py::TestUnion::test_union_subtractive_refinement_with_container, test/test_jit.py::TestUnion::test_union_type_refinement, test/test_jit.py::TestUnion::test_union_type_refinement_internal_declaration, test/test_jit.py::TestUnion::test_union_type_refinement_partial_static_refinement_tuple_rhs, test/test_jit.py::TestUnion::test_union_type_refinement_partial_static_refinement_union_rhs, test/test_jit.py::TestUnion::test_union_type_refinement_statically_false, test/test_jit.py::TestUnion::test_union_type_refinement_statically_true, test/test_jit.py::TestUnion::test_union_type_refinement_tuple_rhs, test/test_jit.py::TestUnion::test_union_type_refinement_tuple_rhs_noncontained_type, test/test_jit.py::TestUnion::test_union_type_refinement_tuple_rhs_union, test/test_jit.py::TestUnion::test_union_type_refinement_union_rhs, test/test_jit.py::TestUnion::test_union_variable_can_be_reassigned, test/test_jit.py::TestUnion::test_union_with_collections, test/test_jit.py::TestUnion::test_union_with_dict_assignment, test/test_jit.py::TestUnion::test_union_with_enum, test/test_jit.py::TestUnion::test_union_with_list_assignment, test/test_jit.py::TestUnion::test_union_with_scalar_values, test/test_jit.py::TestUnion::test_unions_of_a_single_argument_vanish, test/test_jit.py::TestUnion::test_unions_of_unions_are_flattened, test/test_jit.py::TestBatchMM::test_batch_mm_no_mutation, test/test_jit.py::TestBatchMM::test_batch_mm_permitted_mutation, test/test_jit.py::TestBatchMM::test_batch_mm_prohibited_mutation, test/test_jit.py::TestBatchMM::test_batch_mm_prohibited_mutation_if_node, test/test_jit.py::TestBatchMM::test_batch_mm_prohibited_mutation_multiple_adds, test/test_jit.py::TestBatchMM::test_batch_mm_side_permitted_mutation, test/test_jit.py::TestBatchMM::test_batch_mm_side_prohibited_mutation_common_side, test/test_jit.py::TestBatchMM::test_batch_mm_side_prohibited_mutation_uncommon_side, test/test_jit.py::TestDtypeAnalysis::test_binary_scalar, test/test_jit.py::TestDtypeAnalysis::test_binary_tensors, test/test_jit.py::TestDtypeAnalysis::test_combined, test/test_jit.py::TestDtypeAnalysis::test_conv_no_mixed_args, test/test_jit.py::TestDtypeAnalysis::test_custom_rules, test/test_jit.py::TestDtypeAnalysis::test_unary, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_expected_failure_nn_functional_adaptive_max_pool3d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_expected_failure_nn_functional_adaptive_max_pool3d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_expected_failure_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_expected_failure_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_avg_pool1d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_avg_pool1d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_avg_pool2d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_avg_pool2d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_avg_pool3d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_avg_pool3d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_max_pool1d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_max_pool1d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_max_pool2d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_max_pool2d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_avg_pool1d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_avg_pool1d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_avg_pool1d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_avg_pool1d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_avg_pool1d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_avg_pool2d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_avg_pool2d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_avg_pool2d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_avg_pool2d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_avg_pool2d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_avg_pool3d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_avg_pool3d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_avg_pool3d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_batch_norm_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_batch_norm_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_batch_norm_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_batch_norm_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv1d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv1d_cpu_complex128, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv1d_cpu_complex64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv1d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv1d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv1d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv1d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv2d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv2d_cpu_complex128, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv2d_cpu_complex64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv2d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv2d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv2d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv2d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv_transpose2d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv_transpose2d_cpu_complex128, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv_transpose2d_cpu_complex64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv_transpose2d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv_transpose2d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv_transpose2d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv_transpose2d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_hardswish_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_hardswish_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_hardswish_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_hardswish_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool1d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool1d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool1d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool1d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool2d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool2d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool2d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool2d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool2d_cpu_int16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool2d_cpu_int32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool2d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool2d_cpu_int8, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool2d_cpu_uint8, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool3d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool3d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool3d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool3d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool3d_cpu_int16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool3d_cpu_int32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool3d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool3d_cpu_int8, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool3d_cpu_uint8, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_prelu_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_prelu_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_prelu_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_prelu_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_avg_pool1d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_avg_pool1d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_avg_pool2d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_avg_pool2d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_avg_pool3d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_avg_pool3d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_max_pool1d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_max_pool1d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_max_pool2d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_max_pool2d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_avg_pool1d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_avg_pool1d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_avg_pool1d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_avg_pool1d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_avg_pool1d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_avg_pool2d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_avg_pool2d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_avg_pool2d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_avg_pool2d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_avg_pool2d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_avg_pool3d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_avg_pool3d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_avg_pool3d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_batch_norm_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_batch_norm_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_batch_norm_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_batch_norm_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv1d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv1d_cpu_complex128, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv1d_cpu_complex64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv1d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv1d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv1d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv1d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv2d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv2d_cpu_complex128, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv2d_cpu_complex64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv2d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv2d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv2d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv2d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv_transpose2d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv_transpose2d_cpu_complex128, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv_transpose2d_cpu_complex64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv_transpose2d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv_transpose2d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv_transpose2d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv_transpose2d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_hardswish_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_hardswish_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_hardswish_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_hardswish_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool1d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool1d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool1d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool1d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool2d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool2d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool2d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool2d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool2d_cpu_int16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool2d_cpu_int32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool2d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool2d_cpu_int8, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool2d_cpu_uint8, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool3d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool3d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool3d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool3d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool3d_cpu_int16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool3d_cpu_int32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool3d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool3d_cpu_int8, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool3d_cpu_uint8, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_prelu_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_prelu_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_prelu_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_prelu_cpu_float64, test/test_jit.py::TestDeviceAnalysis::test_custom_device_op, test/test_jit.py::TestDeviceAnalysis::test_device_apply, test/test_jit.py::TestDeviceAnalysis::test_device_arg, test/test_jit.py::TestDeviceAnalysis::test_device_if_propagation, test/test_jit.py::TestDeviceAnalysis::test_if_loop_mix, test/test_jit.py::TestDeviceAnalysis::test_loop_device_change, test/test_jit.py::TestDeviceAnalysis::test_loop_simple, test/test_jit.py::TestDeviceAnalysis::test_mobilenet, test/test_jit.py::TestDeviceAnalysis::test_nested_loops, test/test_jit.py::TestDeviceAnalysis::test_set_dtype, test/test_jit.py::TestDeviceAnalysis::test_simple, test/test_jit.py::TestDeviceAnalysis::test_tensor_as_fns, test/test_jit.py::TestDeviceAnalysis::test_while_change, test/test_jit.py::TestDeviceAnalysis::test_zerodim_cpu, test/test_jit.py::TestDeviceAnalysis::test_zerodim_gpu, test/test_jit.py::TestDeviceAnalysis::test_zerodim_no_device, test/test_jit.py::TestDCE::test_mutated_loop, test/test_jit.py::TestDCE::test_mutated_simple, test/test_jit.py::TestDCE::test_setattr_no_aliasdb, test/test_jit.py::TestDCE::test_setattr_removed, test/test_jit.py::TestSparse::test_freeze_sparse_coo, test/test_jit.py::TestSparse::test_freeze_sparse_csr, test/test_jit.py::TestSparse::test_serialize_sparse_coo, test/test_jit.py::TestSparse::test_serialize_sparse_csr, test/test_jit.py::TestTensorMethods::test_getitem, test/test_jit.py::TestTensorMethods::test_getitem_invalid, test/test_jit.py::TestDataclasses::test__post_init__, test/test_jit.py::TestDataclasses::test_comparators, test/test_jit.py::TestDataclasses::test_custom__eq__, test/test_jit.py::TestDataclasses::test_default_factories, test/test_jit.py::TestDataclasses::test_init_vars, test/test_jit.py::TestDataclasses::test_no_source, test/test_jit.py::TestDataclasses::test_use_unregistered_dataclass_raises, test/test_jit.py::TestGenerator::test_default_generator, test/test_jit.py::TestGenerator::test_generator_arg, test/test_jit.py::TestGenerator::test_save_load, test/test_jit.py::TestGenerator::test_script, test/test_jit.py::TestGenerator::test_trace, test/test_jit.py::TestJitProfiler::test_profiler, test/test_jit.py::TestJit::test_ModuleList, test/test_jit.py::TestJit::test_Sequential, test/test_jit.py::TestJit::test_T_mT_H_mH, test/test_jit.py::TestJit::test_add_relu_fusion, test/test_jit.py::TestJit::test_arg_configurations, test/test_jit.py::TestJit::test_attrs, test/test_jit.py::TestJit::test_batchnorm, test/test_jit.py::TestJit::test_big, test/test_jit.py::TestJit::test_conj_transpose, test/test_jit.py::TestJit::test_constant_insertion, test/test_jit.py::TestJit::test_constant_prop_aliasing_type, test/test_jit.py::TestJit::test_constant_prop_exception, test/test_jit.py::TestJit::test_constant_prop_if_constant, test/test_jit.py::TestJit::test_constant_prop_if_inline, test/test_jit.py::TestJit::test_constant_prop_loop_constant, test/test_jit.py::TestJit::test_constant_prop_nested, test/test_jit.py::TestJit::test_constant_prop_none, test/test_jit.py::TestJit::test_constant_prop_print, test/test_jit.py::TestJit::test_constant_prop_rand, test/test_jit.py::TestJit::test_constant_prop_remove_output, test/test_jit.py::TestJit::test_constant_prop_simple, test/test_jit.py::TestJit::test_constants_pkl, test/test_jit.py::TestJit::test_cpp, test/test_jit.py::TestJit::test_cse, test/test_jit.py::TestJit::test_cse_not_introduce_aliasing, test/test_jit.py::TestJit::test_cu_escaped_number, test/test_jit.py::TestJit::test_cuda_export_restore, test/test_jit.py::TestJit::test_debug_flush_compilation_cache, test/test_jit.py::TestJit::test_decompose_addmm, test/test_jit.py::TestJit::test_device_not_equal, test/test_jit.py::TestJit::test_diff_subgraph_clones_constants, test/test_jit.py::TestJit::test_disabled, test/test_jit.py::TestJit::test_dropout, test/test_jit.py::TestJit::test_dropout_cuda, test/test_jit.py::TestJit::test_dropout_func_requires_grad, test/test_jit.py::TestJit::test_dropout_module_requires_grad, test/test_jit.py::TestJit::test_einsum, test/test_jit.py::TestJit::test_element_size, test/test_jit.py::TestJit::test_expand_fold_quant_inputs, test/test_jit.py::TestJit::test_expand_quantlint, test/test_jit.py::TestJit::test_export_batchnorm, test/test_jit.py::TestJit::test_export_dropout, test/test_jit.py::TestJit::test_export_lstm, test/test_jit.py::TestJit::test_export_opnames, test/test_jit.py::TestJit::test_export_rnn, test/test_jit.py::TestJit::test_flags, test/test_jit.py::TestJit::test_function_default_values, test/test_jit.py::TestJit::test_hide_source_ranges_context_manager, test/test_jit.py::TestJit::test_import_method, test/test_jit.py::TestJit::test_inferred_as_tensor, test/test_jit.py::TestJit::test_layout, test/test_jit.py::TestJit::test_matrix_conj_transpose, test/test_jit.py::TestJit::test_matrix_transpose, test/test_jit.py::TestJit::test_module_default_values, test/test_jit.py::TestJit::test_mutable_default_values, test/test_jit.py::TestJit::test_native_dropout_corner_case, test/test_jit.py::TestJit::test_nn_conv, test/test_jit.py::TestJit::test_nn_lp_pool1d, test/test_jit.py::TestJit::test_nn_lp_pool2d, test/test_jit.py::TestJit::test_nn_padding, test/test_jit.py::TestJit::test_nn_padding_functional, test/test_jit.py::TestJit::test_no_erroneous_warnings, test/test_jit.py::TestJit::test_non_ascii_string, test/test_jit.py::TestJit::test_numel, test/test_jit.py::TestJit::test_pattern_based_module_rewrite, test/test_jit.py::TestJit::test_pattern_based_rewrite, test/test_jit.py::TestJit::test_pattern_based_rewrite_with_source_range_preserved, test/test_jit.py::TestJit::test_peephole_optimize_shape_ops, test/test_jit.py::TestJit::test_pretty_printer, test/test_jit.py::TestJit::test_print_classes_module, test/test_jit.py::TestJit::test_print_op_module, test/test_jit.py::TestJit::test_print_torch_ops_modules, test/test_jit.py::TestJit::test_python_bindings, test/test_jit.py::TestJit::test_python_ir, test/test_jit.py::TestJit::test_python_ivalue, test/test_jit.py::TestJit::test_pytorch_jit_env_off, test/test_jit.py::TestJit::test_recursive_cse, test/test_jit.py::TestJit::test_repeat_interleave_script, test/test_jit.py::TestJit::test_restore_device, test/test_jit.py::TestJit::test_restore_device_cuda, test/test_jit.py::TestJit::test_restore_shared_storage_on_cuda, test/test_jit.py::TestJit::test_script_autograd_grad, test/test_jit.py::TestJit::test_script_backward, test/test_jit.py::TestJit::test_script_backward_twice, test/test_jit.py::TestJit::test_script_bool_literal_conversion, test/test_jit.py::TestJit::test_script_fn_pkl, test/test_jit.py::TestJit::test_script_fn_valid_name, test/test_jit.py::TestJit::test_script_tensor_type, test/test_jit.py::TestJit::test_shape_analysis_broadcast, test/test_jit.py::TestJit::test_shape_analysis_masked_select, test/test_jit.py::TestJit::test_shape_analysis_unsqueeze_in_loop, test/test_jit.py::TestJit::test_sparse_csr_tensors, test/test_jit.py::TestJit::test_sparse_tensors, test/test_jit.py::TestJit::test_torch_complex, test/test_jit.py::TestJit::test_torch_load_error, test/test_jit.py::TestJit::test_torch_load_zipfile_check, test/test_jit.py::TestJit::test_torch_ops_kwonly, test/test_jit.py::TestJit::test_torch_ops_overloaded, test/test_jit.py::TestJit::test_torch_sum, test/test_jit.py::TestJit::test_trace_retains_train, test/test_jit.py::TestJit::test_train_eval, test/test_jit.py::TestJit::test_transpose, test/test_jit.py::TestJit::test_unchecked_cast, test/test_jit.py::TestJit::test_unique_state_dict, test/test_jit.py::TestJit::test_verify, test/test_jit.py::TestJit::test_warnings, test/test_jit.py::TestFrontend::test_dictionary_as_example_inputs_for_jit_trace, test/test_jit.py::TestFrontend::test_instancing_error, test/test_jit.py::TestScript::test_add_out, test/test_jit.py::TestScript::test_add_tuple_different_types, test/test_jit.py::TestScript::test_add_tuple_non_optional, test/test_jit.py::TestScript::test_add_tuple_optional, test/test_jit.py::TestScript::test_add_tuple_same_types, test/test_jit.py::TestScript::test_addmm_grad, test/test_jit.py::TestScript::test_alias_covariant_type_containers, test/test_jit.py::TestScript::test_all, test/test_jit.py::TestScript::test_annot_ast_mypy_fn, test/test_jit.py::TestScript::test_annot_ast_mypy_method, test/test_jit.py::TestScript::test_annot_ast_py3_fn, test/test_jit.py::TestScript::test_annot_ast_py3_method, test/test_jit.py::TestScript::test_annot_string_mypy_fn, test/test_jit.py::TestScript::test_annot_string_mypy_method, test/test_jit.py::TestScript::test_annot_string_py3_fn, test/test_jit.py::TestScript::test_annot_string_py3_method, test/test_jit.py::TestScript::test_annotated_script_fn, test/test_jit.py::TestScript::test_annotated_script_fn_arg_mismatch, test/test_jit.py::TestScript::test_annotated_script_fn_return_mismatch, test/test_jit.py::TestScript::test_annotated_script_method, test/test_jit.py::TestScript::test_annoying_doubles, test/test_jit.py::TestScript::test_any, test/test_jit.py::TestScript::test_assert_is_scripting_metacompile, test/test_jit.py::TestScript::test_assertion_optional_refinement, test/test_jit.py::TestScript::test_attr_module_constants, test/test_jit.py::TestScript::test_attr_qscheme_script, test/test_jit.py::TestScript::test_attribute_in_init, test/test_jit.py::TestScript::test_attribute_serialization, test/test_jit.py::TestScript::test_attribute_unpickling, test/test_jit.py::TestScript::test_augmented_assign, test/test_jit.py::TestScript::test_autodiff_complex, test/test_jit.py::TestScript::test_backend_cudnn_enabled, test/test_jit.py::TestScript::test_bad_multiline_annotations, test/test_jit.py::TestScript::test_bailout_loop_carried_deps_name_clash, test/test_jit.py::TestScript::test_bailout_loop_counter_transition, test/test_jit.py::TestScript::test_batch_norm_inference_backward_cuda, test/test_jit.py::TestScript::test_batchnorm_fuser_cpu, test/test_jit.py::TestScript::test_big_float_literals, test/test_jit.py::TestScript::test_big_int_literals, test/test_jit.py::TestScript::test_binary_op_shape, test/test_jit.py::TestScript::test_bitwise_ops, test/test_jit.py::TestScript::test_block_input_grad_in_loop, test/test_jit.py::TestScript::test_bool_augassign_bitwise_and, test/test_jit.py::TestScript::test_bool_augassign_bitwise_or, test/test_jit.py::TestScript::test_bool_augassign_bitwise_xor, test/test_jit.py::TestScript::test_bool_dispatch, test/test_jit.py::TestScript::test_boolean_literal_constant_metacompile, test/test_jit.py::TestScript::test_break_continue_error, test/test_jit.py::TestScript::test_breaks_continues, test/test_jit.py::TestScript::test_builtin_args, test/test_jit.py::TestScript::test_builtin_args_fails, test/test_jit.py::TestScript::test_builtin_function_attributes, test/test_jit.py::TestScript::test_builtin_use_as_value, test/test_jit.py::TestScript::test_call_ge, test/test_jit.py::TestScript::test_call_python_fn_from_script_fn, test/test_jit.py::TestScript::test_call_python_fn_from_script_module, test/test_jit.py::TestScript::test_call_python_fn_from_traced_module, test/test_jit.py::TestScript::test_call_python_fn_from_tracing_fn, test/test_jit.py::TestScript::test_call_python_mod_from_script_fn, test/test_jit.py::TestScript::test_call_python_mod_from_script_module, test/test_jit.py::TestScript::test_call_python_mod_from_traced_module, test/test_jit.py::TestScript::test_call_python_mod_from_tracing_fn, test/test_jit.py::TestScript::test_call_script_fn_from_script_fn, test/test_jit.py::TestScript::test_call_script_fn_from_script_module, test/test_jit.py::TestScript::test_call_script_fn_from_tracing_fn, test/test_jit.py::TestScript::test_call_script_mod_from_script_fn, test/test_jit.py::TestScript::test_call_script_mod_from_script_module, test/test_jit.py::TestScript::test_call_script_mod_from_tracing_fn, test/test_jit.py::TestScript::test_call_traced_fn_from_tracing_fn, test/test_jit.py::TestScript::test_call_traced_mod_from_tracing_fn, test/test_jit.py::TestScript::test_calls_in_type_annotations, test/test_jit.py::TestScript::test_canonicalize_control_outputs, test/test_jit.py::TestScript::test_cast, test/test_jit.py::TestScript::test_cat, test/test_jit.py::TestScript::test_cat_lifts, test/test_jit.py::TestScript::test_chr, test/test_jit.py::TestScript::test_circular_dependency, test/test_jit.py::TestScript::test_class_as_attribute, test/test_jit.py::TestScript::test_class_attribute, test/test_jit.py::TestScript::test_class_attribute_in_script, test/test_jit.py::TestScript::test_class_with_comment_at_lower_indentation, test/test_jit.py::TestScript::test_code_with_constants, test/test_jit.py::TestScript::test_code_with_constants_restore, test/test_jit.py::TestScript::test_comment_ignore_indent, test/test_jit.py::TestScript::test_compare_two_bool_inputs, test/test_jit.py::TestScript::test_compile_module_with_constant, test/test_jit.py::TestScript::test_conditional_casting, test/test_jit.py::TestScript::test_constant_as_attr, test/test_jit.py::TestScript::test_constant_pooling_introduce_aliasing, test/test_jit.py::TestScript::test_constant_pooling_none, test/test_jit.py::TestScript::test_constant_pooling_same_identity, test/test_jit.py::TestScript::test_context_manager, test/test_jit.py::TestScript::test_conv_error, test/test_jit.py::TestScript::test_convert_base, test/test_jit.py::TestScript::test_cpp_function_tensor_str, test/test_jit.py::TestScript::test_cpp_module_iterator, test/test_jit.py::TestScript::test_desugar_module, test/test_jit.py::TestScript::test_device_kwarg, test/test_jit.py::TestScript::test_device_type, test/test_jit.py::TestScript::test_device_type_cuda, test/test_jit.py::TestScript::test_dict_str, test/test_jit.py::TestScript::test_dir, test/test_jit.py::TestScript::test_divmod, test/test_jit.py::TestScript::test_dominated_bailout, test/test_jit.py::TestScript::test_dropout_eval, test/test_jit.py::TestScript::test_dtype_attr, test/test_jit.py::TestScript::test_dtype_op_shape, test/test_jit.py::TestScript::test_dtype_op_shape2, test/test_jit.py::TestScript::test_early_return_closure, test/test_jit.py::TestScript::test_early_return_fork_join, test/test_jit.py::TestScript::test_early_return_rewrite, test/test_jit.py::TestScript::test_early_return_type_refinement, test/test_jit.py::TestScript::test_early_returns_loops, test/test_jit.py::TestScript::test_ellipsis_const_end, test/test_jit.py::TestScript::test_ellipsis_const_mid, test/test_jit.py::TestScript::test_ellipsis_const_mid_select, test/test_jit.py::TestScript::test_ellipsis_const_start, test/test_jit.py::TestScript::test_ellipsis_end, test/test_jit.py::TestScript::test_ellipsis_mid, test/test_jit.py::TestScript::test_ellipsis_mid_select, test/test_jit.py::TestScript::test_ellipsis_start, test/test_jit.py::TestScript::test_embedding_renorm_grad_error, test/test_jit.py::TestScript::test_empty_like_memory_format_bc, test/test_jit.py::TestScript::test_empty_tuple_str, test/test_jit.py::TestScript::test_enumerate_modlist_range, test/test_jit.py::TestScript::test_erase_number_types, test/test_jit.py::TestScript::test_error, test/test_jit.py::TestScript::test_error_stacktrace, test/test_jit.py::TestScript::test_error_stacktrace_interface, test/test_jit.py::TestScript::test_eval_python, test/test_jit.py::TestScript::test_exception_exits_closure, test/test_jit.py::TestScript::test_exceptions_with_control_flow, test/test_jit.py::TestScript::test_expand, test/test_jit.py::TestScript::test_fibb, test/test_jit.py::TestScript::test_fibb_totally_better, test/test_jit.py::TestScript::test_file_format_serialization, test/test_jit.py::TestScript::test_file_line_error, test/test_jit.py::TestScript::test_file_line_error_class_defn, test/test_jit.py::TestScript::test_file_line_graph, test/test_jit.py::TestScript::test_file_line_save_load, test/test_jit.py::TestScript::test_file_line_string, test/test_jit.py::TestScript::test_file_line_trace, test/test_jit.py::TestScript::test_file_reader_no_memory_leak, test/test_jit.py::TestScript::test_filecheck, test/test_jit.py::TestScript::test_filecheck_parse, test/test_jit.py::TestScript::test_first_class_calls, test/test_jit.py::TestScript::test_first_class_module, test/test_jit.py::TestScript::test_floor_div, test/test_jit.py::TestScript::test_floordiv, test/test_jit.py::TestScript::test_for_else, test/test_jit.py::TestScript::test_for_in_dict, test/test_jit.py::TestScript::test_for_in_enumerate, test/test_jit.py::TestScript::test_for_in_range, test/test_jit.py::TestScript::test_for_in_range_ast, test/test_jit.py::TestScript::test_for_in_range_dynamic, test/test_jit.py::TestScript::test_for_in_range_if_ast, test/test_jit.py::TestScript::test_for_in_range_start_end, test/test_jit.py::TestScript::test_for_in_range_start_end_step, test/test_jit.py::TestScript::test_for_in_range_zero_step, test/test_jit.py::TestScript::test_for_in_string, test/test_jit.py::TestScript::test_for_in_tensors, test/test_jit.py::TestScript::test_for_in_tensors_fail_scalar, test/test_jit.py::TestScript::test_for_in_tensors_nested, test/test_jit.py::TestScript::test_for_in_tensors_rank0, test/test_jit.py::TestScript::test_for_in_zip, test/test_jit.py::TestScript::test_for_in_zip_enumerate, test/test_jit.py::TestScript::test_for_tuple_assign, test/test_jit.py::TestScript::test_for_tuple_unpack, test/test_jit.py::TestScript::test_format, test/test_jit.py::TestScript::test_func_call, test/test_jit.py::TestScript::test_function_compilation_caching, test/test_jit.py::TestScript::test_function_overload_misuse, test/test_jit.py::TestScript::test_function_overloading_isinstance, test/test_jit.py::TestScript::test_function_overloads, test/test_jit.py::TestScript::test_fuser_double_float_codegen, test/test_jit.py::TestScript::test_fuser_double_literal_precision, test/test_jit.py::TestScript::test_fuser_multiple_blocks, test/test_jit.py::TestScript::test_gather_dynamic_index, test/test_jit.py::TestScript::test_generic_list_errors, test/test_jit.py::TestScript::test_get_set_state, test/test_jit.py::TestScript::test_get_set_state_with_tensors, test/test_jit.py::TestScript::test_grad_from_script, test/test_jit.py::TestScript::test_hash, test/test_jit.py::TestScript::test_hex_literals, test/test_jit.py::TestScript::test_id, test/test_jit.py::TestScript::test_if, test/test_jit.py::TestScript::test_if_define, test/test_jit.py::TestScript::test_if_different_type, test/test_jit.py::TestScript::test_if_for_in_range, test/test_jit.py::TestScript::test_if_is_none_dispatch, test/test_jit.py::TestScript::test_if_list_cat, test/test_jit.py::TestScript::test_if_nest_while, test/test_jit.py::TestScript::test_if_noelse, test/test_jit.py::TestScript::test_if_not_defined_error, test/test_jit.py::TestScript::test_if_supertype, test/test_jit.py::TestScript::test_ignore_decorator, test/test_jit.py::TestScript::test_ignored_as_value, test/test_jit.py::TestScript::test_ignored_method_binding, test/test_jit.py::TestScript::test_ignored_props, test/test_jit.py::TestScript::test_import_constants_not_specialized, test/test_jit.py::TestScript::test_in_for_and_comp_expr, test/test_jit.py::TestScript::test_in_operator_with_two_strings, test/test_jit.py::TestScript::test_index, test/test_jit.py::TestScript::test_index_select_shape_prop, test/test_jit.py::TestScript::test_index_with_tuple, test/test_jit.py::TestScript::test_indexing_error, test/test_jit.py::TestScript::test_infer_size, test/test_jit.py::TestScript::test_inferred_error_msg, test/test_jit.py::TestScript::test_inherit_method, test/test_jit.py::TestScript::test_inline_and_run_annotated_script_fn, test/test_jit.py::TestScript::test_inlined_graph, test/test_jit.py::TestScript::test_inlining_cleanup, test/test_jit.py::TestScript::test_inplace_add, test/test_jit.py::TestScript::test_inplace_copy_script, test/test_jit.py::TestScript::test_input_keyword_in_schema, test/test_jit.py::TestScript::test_int_cast, test/test_jit.py::TestScript::test_integral_shape_inference, test/test_jit.py::TestScript::test_interpret_graph, test/test_jit.py::TestScript::test_interpreter_fuzz, test/test_jit.py::TestScript::test_intlist_args, test/test_jit.py::TestScript::test_invalid_call_arguments, test/test_jit.py::TestScript::test_invalid_lhs_assignment, test/test_jit.py::TestScript::test_invalid_prefix_annotation, test/test_jit.py::TestScript::test_irparser, test/test_jit.py::TestScript::test_is_after_use, test/test_jit.py::TestScript::test_is_isnot, test/test_jit.py::TestScript::test_is_optional, test/test_jit.py::TestScript::test_is_scripting, test/test_jit.py::TestScript::test_is_scripting_metacompile, test/test_jit.py::TestScript::test_isinstance, test/test_jit.py::TestScript::test_isinstance_dynamic, test/test_jit.py::TestScript::test_isinstance_metacompile, test/test_jit.py::TestScript::test_isinstance_refinement, test/test_jit.py::TestScript::test_jitter_bug, test/test_jit.py::TestScript::test_keyword, test/test_jit.py::TestScript::test_kwarg_expansion_error, test/test_jit.py::TestScript::test_kwargs_error_msg, test/test_jit.py::TestScript::test_lazy_script, test/test_jit.py::TestScript::test_lhs_advanced_indexing_assignment, test/test_jit.py::TestScript::test_lhs_advanced_indexing_augmented_assignment, test/test_jit.py::TestScript::test_lhs_indexing, test/test_jit.py::TestScript::test_lhs_indexing_increment, test/test_jit.py::TestScript::test_lhs_indexing_increment_list, test/test_jit.py::TestScript::test_lhs_indexing_increment_list_prim, test/test_jit.py::TestScript::test_lhs_indexing_list, test/test_jit.py::TestScript::test_lhs_indexing_multi, test/test_jit.py::TestScript::test_linear_grad, test/test_jit.py::TestScript::test_list_comprehension_modulelist, test/test_jit.py::TestScript::test_list_comprehension_variable_write, test/test_jit.py::TestScript::test_list_iterables, test/test_jit.py::TestScript::test_list_python_op, test/test_jit.py::TestScript::test_list_unify, test/test_jit.py::TestScript::test_literal, test/test_jit.py::TestScript::test_literals, test/test_jit.py::TestScript::test_logical_short_circuit, test/test_jit.py::TestScript::test_loop_liveness, test/test_jit.py::TestScript::test_loop_unroll_negative, test/test_jit.py::TestScript::test_loop_unroll_unused_counter, test/test_jit.py::TestScript::test_loop_unrolling, test/test_jit.py::TestScript::test_loop_unrolling_const, test/test_jit.py::TestScript::test_loop_unrolling_nested, test/test_jit.py::TestScript::test_lower_nested_tuples, test/test_jit.py::TestScript::test_math_ops, test/test_jit.py::TestScript::test_maxpool_guard_elimination, test/test_jit.py::TestScript::test_meshgrid, test/test_jit.py::TestScript::test_method_casts_script, test/test_jit.py::TestScript::test_method_no_self, test/test_jit.py::TestScript::test_method_overloading, test/test_jit.py::TestScript::test_missing_getstate, test/test_jit.py::TestScript::test_mm_batching, test/test_jit.py::TestScript::test_module_apis, test/test_jit.py::TestScript::test_module_attrs, test/test_jit.py::TestScript::test_module_copy_with_attributes, test/test_jit.py::TestScript::test_module_copying, test/test_jit.py::TestScript::test_module_error, test/test_jit.py::TestScript::test_module_method_reassignment, test/test_jit.py::TestScript::test_module_none_attrs, test/test_jit.py::TestScript::test_module_parameters_and_buffers, test/test_jit.py::TestScript::test_module_str, test/test_jit.py::TestScript::test_module_with_params_called_fails, test/test_jit.py::TestScript::test_multi_reduction, test/test_jit.py::TestScript::test_multi_starred_expr_lhs, test/test_jit.py::TestScript::test_multiline_annot_ast_py3_fn, test/test_jit.py::TestScript::test_multiline_optional_future_refinement, test/test_jit.py::TestScript::test_multiline_string_dedents, test/test_jit.py::TestScript::test_multiple_assign, test/test_jit.py::TestScript::test_multiple_assignment, test/test_jit.py::TestScript::test_mutable_dce, test/test_jit.py::TestScript::test_mutable_dce_block, test/test_jit.py::TestScript::test_mutable_dce_graph_input, test/test_jit.py::TestScript::test_mutable_dce_indirect_wildcard_write, test/test_jit.py::TestScript::test_mutable_dce_indirect_wildcards, test/test_jit.py::TestScript::test_mutable_dce_list, test/test_jit.py::TestScript::test_mutable_dce_loop, test/test_jit.py::TestScript::test_mutable_dce_wildcards, test/test_jit.py::TestScript::test_mutate_constant, test/test_jit.py::TestScript::test_mypy_type_ignore, test/test_jit.py::TestScript::test_named_buffers_are_iterable, test/test_jit.py::TestScript::test_namedtuple_attr, test/test_jit.py::TestScript::test_namedtuple_default_values_Tensor_type, test/test_jit.py::TestScript::test_namedtuple_default_values_container_type, test/test_jit.py::TestScript::test_namedtuple_default_values_missing, test/test_jit.py::TestScript::test_namedtuple_default_values_simple_type, test/test_jit.py::TestScript::test_namedtuple_default_values_using_factory_constructor, test/test_jit.py::TestScript::test_namedtuple_python, test/test_jit.py::TestScript::test_namedtuple_type_inference, test/test_jit.py::TestScript::test_narrow_copy, test/test_jit.py::TestScript::test_nested_aug_assign, test/test_jit.py::TestScript::test_nested_bailouts, test/test_jit.py::TestScript::test_nested_breaks, test/test_jit.py::TestScript::test_nested_list_construct, test/test_jit.py::TestScript::test_nested_select_assign, test/test_jit.py::TestScript::test_nn_GRU, test/test_jit.py::TestScript::test_nn_LSTM, test/test_jit.py::TestScript::test_nn_LSTM_with_layers, test/test_jit.py::TestScript::test_nn_init, test/test_jit.py::TestScript::test_nn_init_generator, test/test_jit.py::TestScript::test_no_dtype_shape, test/test_jit.py::TestScript::test_no_self_arg_ignore_function, test/test_jit.py::TestScript::test_non_final_return, test/test_jit.py::TestScript::test_none_type_str, test/test_jit.py::TestScript::test_not, test/test_jit.py::TestScript::test_not_initialized_err, test/test_jit.py::TestScript::test_ntuple_builtins, test/test_jit.py::TestScript::test_number_abs, test/test_jit.py::TestScript::test_number_augassign, test/test_jit.py::TestScript::test_number_augassign_bitwise_lshift, test/test_jit.py::TestScript::test_number_augassign_bitwise_pow, test/test_jit.py::TestScript::test_number_augassign_bitwise_rshift, test/test_jit.py::TestScript::test_number_div, test/test_jit.py::TestScript::test_number_math, test/test_jit.py::TestScript::test_number_neg, test/test_jit.py::TestScript::test_oneline_func, test/test_jit.py::TestScript::test_op_dtype, test/test_jit.py::TestScript::test_operator_precedence, test/test_jit.py::TestScript::test_optional_list, test/test_jit.py::TestScript::test_optional_tensor, test/test_jit.py::TestScript::test_ord, test/test_jit.py::TestScript::test_override_magic, test/test_jit.py::TestScript::test_pack_tuple_into_non_var, test/test_jit.py::TestScript::test_pack_unpack_nested, test/test_jit.py::TestScript::test_pack_unpack_state, test/test_jit.py::TestScript::test_parameter_order, test/test_jit.py::TestScript::test_parse_empty_tuple_annotation, test/test_jit.py::TestScript::test_parse_empty_tuple_annotation_element_error, test/test_jit.py::TestScript::test_parse_generator, test/test_jit.py::TestScript::test_parse_nested_names, test/test_jit.py::TestScript::test_parse_none_type_annotation, test/test_jit.py::TestScript::test_parse_scalar_tensor_constants, test/test_jit.py::TestScript::test_parse_tensor_constants, test/test_jit.py::TestScript::test_parser_kwargonly, test/test_jit.py::TestScript::test_parser_type_annotations, test/test_jit.py::TestScript::test_parser_type_annotations_comment, test/test_jit.py::TestScript::test_parser_type_annotations_incompatible_expression, test/test_jit.py::TestScript::test_parser_type_annotations_subscript_non_ident, test/test_jit.py::TestScript::test_parser_type_annotations_subscript_tensor, test/test_jit.py::TestScript::test_parser_type_annotations_unknown_type, test/test_jit.py::TestScript::test_partial_returns, test/test_jit.py::TestScript::test_pass, test/test_jit.py::TestScript::test_pickle_checkpoint, test/test_jit.py::TestScript::test_pickle_checkpoint_cuda, test/test_jit.py::TestScript::test_pickle_checkpoint_tup, test/test_jit.py::TestScript::test_pow_scalar_backward_cuda, test/test_jit.py::TestScript::test_pretty_print_function, test/test_jit.py::TestScript::test_prim_grad_undefined, test/test_jit.py::TestScript::test_print, test/test_jit.py::TestScript::test_print_kwargs, test/test_jit.py::TestScript::test_profiling_graph_executor, test/test_jit.py::TestScript::test_profiling_merge, test/test_jit.py::TestScript::test_pybind_type_comparisons, test/test_jit.py::TestScript::test_python_call, test/test_jit.py::TestScript::test_python_call_annotation, test/test_jit.py::TestScript::test_python_call_annoytation_failure, test/test_jit.py::TestScript::test_python_call_failure, test/test_jit.py::TestScript::test_python_call_non_tensor, test/test_jit.py::TestScript::test_python_call_non_tensor_wrong, test/test_jit.py::TestScript::test_python_frontend, test/test_jit.py::TestScript::test_python_frontend_py3, test/test_jit.py::TestScript::test_python_frontend_source_range, test/test_jit.py::TestScript::test_python_op_builtins, test/test_jit.py::TestScript::test_python_op_name, test/test_jit.py::TestScript::test_python_val_doesnt_have_attr, test/test_jit.py::TestScript::test_rand, test/test_jit.py::TestScript::test_rand_profiling, test/test_jit.py::TestScript::test_range_args, test/test_jit.py::TestScript::test_reassign_module_lhs, test/test_jit.py::TestScript::test_reassign_module_rhs, test/test_jit.py::TestScript::test_refine_tuple_types, test/test_jit.py::TestScript::test_remove_dropout, test/test_jit.py::TestScript::test_repeated_script_on_function, test/test_jit.py::TestScript::test_request_bailout, test/test_jit.py::TestScript::test_requires_grad_loop, test/test_jit.py::TestScript::test_rescripting_loaded_modules, test/test_jit.py::TestScript::test_resize_input_ops, test/test_jit.py::TestScript::test_return, test/test_jit.py::TestScript::test_return_stmt_not_at_end, test/test_jit.py::TestScript::test_return_tuple, test/test_jit.py::TestScript::test_robust_op_resolution, test/test_jit.py::TestScript::test_round, test/test_jit.py::TestScript::test_save_load_attr_error, test/test_jit.py::TestScript::test_script_annotation, test/test_jit.py::TestScript::test_script_bool_constant, test/test_jit.py::TestScript::test_script_chunk, test/test_jit.py::TestScript::test_script_clamp_none, test/test_jit.py::TestScript::test_script_copy, test/test_jit.py::TestScript::test_script_cu, test/test_jit.py::TestScript::test_script_define_order, test/test_jit.py::TestScript::test_script_define_order_recursive_fail, test/test_jit.py::TestScript::test_script_docstring, test/test_jit.py::TestScript::test_script_forward_method_replacement, test/test_jit.py::TestScript::test_script_get_device_cuda, test/test_jit.py::TestScript::test_script_get_tracing_state, test/test_jit.py::TestScript::test_script_is_tracing, test/test_jit.py::TestScript::test_script_kwargs_fn_call, test/test_jit.py::TestScript::test_script_method_docstring, test/test_jit.py::TestScript::test_script_method_torch_function_overload, test/test_jit.py::TestScript::test_script_module, test/test_jit.py::TestScript::test_script_module_call_noscript, test/test_jit.py::TestScript::test_script_module_const, test/test_jit.py::TestScript::test_script_module_const_submodule_fail, test/test_jit.py::TestScript::test_script_module_export_blocks, test/test_jit.py::TestScript::test_script_module_export_shared_storage, test/test_jit.py::TestScript::test_script_module_export_submodule, test/test_jit.py::TestScript::test_script_module_export_tensor_cuda, test/test_jit.py::TestScript::test_script_module_export_tensor_type, test/test_jit.py::TestScript::test_script_module_fail_exist, test/test_jit.py::TestScript::test_script_module_for, test/test_jit.py::TestScript::test_script_module_for2, test/test_jit.py::TestScript::test_script_module_invalid_consts, test/test_jit.py::TestScript::test_script_module_nochange_submodule, test/test_jit.py::TestScript::test_script_module_none_exist_fail, test/test_jit.py::TestScript::test_script_module_not_tuple, test/test_jit.py::TestScript::test_script_module_param_buffer_mutation, test/test_jit.py::TestScript::test_script_module_star_assign2, test/test_jit.py::TestScript::test_script_module_star_assign2_inplace, test/test_jit.py::TestScript::test_script_module_star_assign_fail_builtin, test/test_jit.py::TestScript::test_script_module_star_assign_fail_pythonop, test/test_jit.py::TestScript::test_script_module_tensor_subclass_argument, test/test_jit.py::TestScript::test_script_nested_mod_list, test/test_jit.py::TestScript::test_script_non_tensor_args_outputs, test/test_jit.py::TestScript::test_script_optional_none, test/test_jit.py::TestScript::test_script_outputs, test/test_jit.py::TestScript::test_script_pack_padded_sequence, test/test_jit.py::TestScript::test_script_pad_sequence_pack_sequence, test/test_jit.py::TestScript::test_script_scope, test/test_jit.py::TestScript::test_script_sequential_for, test/test_jit.py::TestScript::test_script_sequential_in_mod_list, test/test_jit.py::TestScript::test_script_sequential_multi_output_fail, test/test_jit.py::TestScript::test_script_sequential_orderdict, test/test_jit.py::TestScript::test_script_sequential_sliced_iteration, test/test_jit.py::TestScript::test_script_star_assign, test/test_jit.py::TestScript::test_script_star_expr, test/test_jit.py::TestScript::test_script_star_expr_string, test/test_jit.py::TestScript::test_scriptable_fn_as_attr, test/test_jit.py::TestScript::test_scriptmodule_multi_head_attn_cuda, test/test_jit.py::TestScript::test_scriptmodule_releases_tensors_cuda, test/test_jit.py::TestScript::test_scriptmodule_transformer_cuda, test/test_jit.py::TestScript::test_select_after_chunk, test/test_jit.py::TestScript::test_sequence_parsing, test/test_jit.py::TestScript::test_sequential_intermediary_types, test/test_jit.py::TestScript::test_serialization_big_ints, test/test_jit.py::TestScript::test_serialization_sharing, test/test_jit.py::TestScript::test_serialize_long_lines, test/test_jit.py::TestScript::test_serialized_source_ranges, test/test_jit.py::TestScript::test_serialized_source_ranges2, test/test_jit.py::TestScript::test_serialized_source_ranges_dont_jitter, test/test_jit.py::TestScript::test_serialized_source_ranges_graph, test/test_jit.py::TestScript::test_serialized_source_ranges_no_dups, test/test_jit.py::TestScript::test_set_attribute_through_optional, test/test_jit.py::TestScript::test_shape_analysis_grad_property, test/test_jit.py::TestScript::test_shape_analysis_loop, test/test_jit.py::TestScript::test_shape_prop_promote_scalar_arg, test/test_jit.py::TestScript::test_shape_prop_promotion, test/test_jit.py::TestScript::test_signed_float_zero, test/test_jit.py::TestScript::test_single_starred_expr_for_loop, test/test_jit.py::TestScript::test_single_starred_lhs, test/test_jit.py::TestScript::test_singleton_tuple_unpack, test/test_jit.py::TestScript::test_slice_guard_elimination, test/test_jit.py::TestScript::test_split, test/test_jit.py::TestScript::test_stack, test/test_jit.py::TestScript::test_static_if_prop, test/test_jit.py::TestScript::test_static_method_on_module, test/test_jit.py::TestScript::test_static_methods, test/test_jit.py::TestScript::test_str_cast, test/test_jit.py::TestScript::test_string_cu, test/test_jit.py::TestScript::test_string_device_implicit_conversion, test/test_jit.py::TestScript::test_string_frontend_elif, test/test_jit.py::TestScript::test_string_index, test/test_jit.py::TestScript::test_string_len, test/test_jit.py::TestScript::test_string_list, test/test_jit.py::TestScript::test_string_new_line, test/test_jit.py::TestScript::test_string_ops, test/test_jit.py::TestScript::test_string_print, test/test_jit.py::TestScript::test_string_single_escape, test/test_jit.py::TestScript::test_string_slicing, test/test_jit.py::TestScript::test_string_sort, test/test_jit.py::TestScript::test_string_sorted, test/test_jit.py::TestScript::test_submodule_attribute_serialization, test/test_jit.py::TestScript::test_submodule_twice, test/test_jit.py::TestScript::test_sum, test/test_jit.py::TestScript::test_sum_list_diff_elms, test/test_jit.py::TestScript::test_sum_list_empty, test/test_jit.py::TestScript::test_sum_list_literal, test/test_jit.py::TestScript::test_sum_list_one, test/test_jit.py::TestScript::test_sum_list_wrong_type, test/test_jit.py::TestScript::test_sys_stdout_override, test/test_jit.py::TestScript::test_tensor_as_tensor_shape_prop, test/test_jit.py::TestScript::test_tensor_data, test/test_jit.py::TestScript::test_tensor_device, test/test_jit.py::TestScript::test_tensor_dtype, test/test_jit.py::TestScript::test_tensor_grad, test/test_jit.py::TestScript::test_tensor_import_export, test/test_jit.py::TestScript::test_tensor_len, test/test_jit.py::TestScript::test_tensor_number_math, test/test_jit.py::TestScript::test_tensor_number_math_cuda, test/test_jit.py::TestScript::test_tensor_requires_grad, test/test_jit.py::TestScript::test_tensor_shape, test/test_jit.py::TestScript::test_tensor_subclasses, test/test_jit.py::TestScript::test_tensor_to, test/test_jit.py::TestScript::test_tensor_to_cpu, test/test_jit.py::TestScript::test_tensor_to_cuda, test/test_jit.py::TestScript::test_tensor_to_device, test/test_jit.py::TestScript::test_ternary, test/test_jit.py::TestScript::test_ternary_module_type_hint, test/test_jit.py::TestScript::test_ternary_right_associative, test/test_jit.py::TestScript::test_ternary_static_if, test/test_jit.py::TestScript::test_torch_any, test/test_jit.py::TestScript::test_torch_functional, test/test_jit.py::TestScript::test_torch_functional_tensordot_int, test/test_jit.py::TestScript::test_torch_functional_tensordot_list, test/test_jit.py::TestScript::test_torch_functional_tensordot_tensor, test/test_jit.py::TestScript::test_torch_functional_tensordot_tuple, test/test_jit.py::TestScript::test_torch_ignore_conversion_to_none, test/test_jit.py::TestScript::test_torch_manual_seed, test/test_jit.py::TestScript::test_torch_pow, test/test_jit.py::TestScript::test_torch_tensor_as_tensor, test/test_jit.py::TestScript::test_torch_tensor_as_tensor_empty_list, test/test_jit.py::TestScript::test_torch_tensor_bad_input, test/test_jit.py::TestScript::test_torch_tensor_dtype, test/test_jit.py::TestScript::test_torchscript_memoryformat, test/test_jit.py::TestScript::test_torchscript_multi_head_attn, test/test_jit.py::TestScript::test_torchscript_multi_head_attn_fast_path, test/test_jit.py::TestScript::test_training_param, test/test_jit.py::TestScript::test_tuple_assignments, test/test_jit.py::TestScript::test_tuple_error_msg, test/test_jit.py::TestScript::test_tuple_index_to_list, test/test_jit.py::TestScript::test_tuple_indexing, test/test_jit.py::TestScript::test_tuple_len, test/test_jit.py::TestScript::test_tuple_nested_sort, test/test_jit.py::TestScript::test_tuple_sort, test/test_jit.py::TestScript::test_tuple_sort_reverse, test/test_jit.py::TestScript::test_tuple_sorted, test/test_jit.py::TestScript::test_tuple_str, test/test_jit.py::TestScript::test_tuple_to_opt_list, test/test_jit.py::TestScript::test_tuple_unsortable_diff_type, test/test_jit.py::TestScript::test_tuple_unsortable_element_type, test/test_jit.py::TestScript::test_tuple_unsortable_nested_diff_type, test/test_jit.py::TestScript::test_type_annotate, test/test_jit.py::TestScript::test_type_annotation_module, test/test_jit.py::TestScript::test_type_annotation_py3, test/test_jit.py::TestScript::test_type_annotations, test/test_jit.py::TestScript::test_type_annotations_repeated_list, test/test_jit.py::TestScript::test_type_annotations_varargs, test/test_jit.py::TestScript::test_type_call_in_script, test/test_jit.py::TestScript::test_type_cast, test/test_jit.py::TestScript::test_type_comments_in_body, test/test_jit.py::TestScript::test_type_inferred_from_empty_annotation, test/test_jit.py::TestScript::test_unbind, test/test_jit.py::TestScript::test_unfold_zero_dim, test/test_jit.py::TestScript::test_unicode_comments, test/test_jit.py::TestScript::test_uninitialized, test/test_jit.py::TestScript::test_union_to_number, test/test_jit.py::TestScript::test_unknown_builtin, test/test_jit.py::TestScript::test_unmatched_type_annotation, test/test_jit.py::TestScript::test_unspecialized_any_binding, test/test_jit.py::TestScript::test_unsqueeze_guard_elimination, test/test_jit.py::TestScript::test_unsupported_builtin_error, test/test_jit.py::TestScript::test_unused_decorator, test/test_jit.py::TestScript::test_unwrap_optional_builtin, test/test_jit.py::TestScript::test_var_aug_assign, test/test_jit.py::TestScript::test_vararg_zeros, test/test_jit.py::TestScript::test_view_listconstruct_shape_prop, test/test_jit.py::TestScript::test_view_shape_prop, test/test_jit.py::TestScript::test_view_write, test/test_jit.py::TestScript::test_weak_cuda, test/test_jit.py::TestScript::test_where, test/test_jit.py::TestScript::test_where_method, test/test_jit.py::TestScript::test_while, test/test_jit.py::TestScript::test_while_nest_if, test/test_jit.py::TestScript::test_while_nonexistent_cond_value, test/test_jit.py::TestScript::test_while_nonexistent_value, test/test_jit.py::TestScript::test_while_write_outer_then_read, test/test_jit.py::TestScript::test_wrong_attr_lookup, test/test_jit.py::TestScript::test_wrong_implicit_expand, test/test_jit.py::TestScript::test_wrong_method_call_inputs, test/test_jit.py::TestScript::test_wrong_module_attr_lookup, test/test_jit.py::TestScript::test_wrong_return_type, test/test_jit.py::TestScript::test_wrong_use_as_callable, test/test_jit.py::TestScript::test_wrong_use_as_tuple, test/test_jit.py::TestScript::test_zero_dimension_tensor_trace, test/test_jit.py::TestScript::test_zeros, test/test_jit.py::TestScript::test_zip_enumerate_modulelist, test/test_jit.py::TestJitGeneratedModule::test_nn_BCELoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_BCELoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_BCELoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_BCELoss_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_BCELoss_no_reduce_scalar, test/test_jit.py::TestJitGeneratedModule::test_nn_BCELoss_weights_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_BCELoss_weights_no_reduce_scalar, test/test_jit.py::TestJitGeneratedModule::test_nn_BCEWithLogitsLoss_legacy_enum, test/test_jit.py::TestJitGeneratedModule::test_nn_BCEWithLogitsLoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_BCEWithLogitsLoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_BCEWithLogitsLoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_BCEWithLogitsLoss_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_BCEWithLogitsLoss_no_reduce_scalar, test/test_jit.py::TestJitGeneratedModule::test_nn_Bilinear, test/test_jit.py::TestJitGeneratedModule::test_nn_CELU_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_circular_stride2_pad2, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_dilated, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_groups, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_pad1, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_pad1size1, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_pad2, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_pad2size1, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_pad_same, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_pad_same2, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_pad_same_dilated, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_pad_valid, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_reflect_stride2_pad2, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_replicate_stride2_pad2, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_stride, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_zero_batch, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_zeros_stride2_pad2, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_circular_stride2_pad2, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_depthwise, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_depthwise_dilated, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_depthwise_padded, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_depthwise_strided, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_depthwise_with_multiplier, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_dilated, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_groups, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_groups_thnn, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_no_bias, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_pad_same, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_pad_same_dilated, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_pad_valid, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_padding, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_reflect_stride2_pad2, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_replicate_stride2_pad2, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_strided, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_zero_batch, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_zeros_stride2_pad2, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_1x1x1_no_bias, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_circular_stride2_pad2, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_dilated, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_dilated_strided, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_groups, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_no_bias, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_pad_same, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_pad_same_dilated, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_pad_valid, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_replicate_stride2_pad2, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_stride, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_stride_padding, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_zero_batch, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_zeros_stride2_pad2, test/test_jit.py::TestJitGeneratedModule::test_nn_ConvTranspose1d, test/test_jit.py::TestJitGeneratedModule::test_nn_ConvTranspose1d_dilated, test/test_jit.py::TestJitGeneratedModule::test_nn_ConvTranspose1d_groups, test/test_jit.py::TestJitGeneratedModule::test_nn_ConvTranspose1d_no_bias, test/test_jit.py::TestJitGeneratedModule::test_nn_ConvTranspose2d, test/test_jit.py::TestJitGeneratedModule::test_nn_ConvTranspose2d_dilated, test/test_jit.py::TestJitGeneratedModule::test_nn_ConvTranspose2d_groups, test/test_jit.py::TestJitGeneratedModule::test_nn_ConvTranspose2d_no_bias, test/test_jit.py::TestJitGeneratedModule::test_nn_ConvTranspose3d, test/test_jit.py::TestJitGeneratedModule::test_nn_ConvTranspose3d_dilated, test/test_jit.py::TestJitGeneratedModule::test_nn_CosineEmbeddingLoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_CosineEmbeddingLoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_CosineEmbeddingLoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_CrossMapLRN2d, test/test_jit.py::TestJitGeneratedModule::test_nn_ELU_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Embedding, test/test_jit.py::TestJitGeneratedModule::test_nn_EmbeddingBag_discontiguous, test/test_jit.py::TestJitGeneratedModule::test_nn_EmbeddingBag_max, test/test_jit.py::TestJitGeneratedModule::test_nn_EmbeddingBag_max_padding_idx, test/test_jit.py::TestJitGeneratedModule::test_nn_EmbeddingBag_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_EmbeddingBag_mean_padding_idx, test/test_jit.py::TestJitGeneratedModule::test_nn_EmbeddingBag_sparse, test/test_jit.py::TestJitGeneratedModule::test_nn_EmbeddingBag_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_EmbeddingBag_sum_padding_idx, test/test_jit.py::TestJitGeneratedModule::test_nn_Embedding_discontiguous, test/test_jit.py::TestJitGeneratedModule::test_nn_Embedding_sparse, test/test_jit.py::TestJitGeneratedModule::test_nn_Flatten, test/test_jit.py::TestJitGeneratedModule::test_nn_Flatten_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Fold, test/test_jit.py::TestJitGeneratedModule::test_nn_Fold_int_input, test/test_jit.py::TestJitGeneratedModule::test_nn_Fold_no_batch_dim_input, test/test_jit.py::TestJitGeneratedModule::test_nn_Fold_no_batch_dim_int_input, test/test_jit.py::TestJitGeneratedModule::test_nn_GELU_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_GLU_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_GRUCell, test/test_jit.py::TestJitGeneratedModule::test_nn_Hardshrink_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Hardsigmoid_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Hardswish_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Hardtanh_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_HingeEmbeddingLoss_margin_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_HingeEmbeddingLoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_HingeEmbeddingLoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_HingeEmbeddingLoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_HingeEmbeddingLoss_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_HuberLoss_delta, test/test_jit.py::TestJitGeneratedModule::test_nn_HuberLoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_HuberLoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_HuberLoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_KLDivLoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_KLDivLoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_KLDivLoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_KLDivLoss_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_KLDivLoss_no_reduce_log_target, test/test_jit.py::TestJitGeneratedModule::test_nn_KLDivLoss_no_reduce_scalar, test/test_jit.py::TestJitGeneratedModule::test_nn_KLDivLoss_no_reduce_scalar_log_target, test/test_jit.py::TestJitGeneratedModule::test_nn_KLDivLoss_with_log_target_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_KLDivLoss_with_target_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_L1Loss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_L1Loss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_L1Loss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_L1Loss_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_L1Loss_no_reduce_complex, test/test_jit.py::TestJitGeneratedModule::test_nn_L1Loss_no_reduce_scalar, test/test_jit.py::TestJitGeneratedModule::test_nn_LSTMCell, test/test_jit.py::TestJitGeneratedModule::test_nn_LayerNorm_3d_no_affine_large_feature, test/test_jit.py::TestJitGeneratedModule::test_nn_LeakyReLU_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Linear, test/test_jit.py::TestJitGeneratedModule::test_nn_Linear_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Linear_no_bias, test/test_jit.py::TestJitGeneratedModule::test_nn_LogSigmoid_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_MSELoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_MSELoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_MSELoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_MSELoss_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_MSELoss_no_reduce_scalar, test/test_jit.py::TestJitGeneratedModule::test_nn_MarginRankingLoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_MarginRankingLoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_MarginRankingLoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_Mish_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiLabelMarginLoss_0d_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiLabelMarginLoss_1d_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiLabelMarginLoss_index_neg, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiLabelMarginLoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiLabelMarginLoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiLabelMarginLoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiLabelMarginLoss_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiLabelSoftMarginLoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiLabelSoftMarginLoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiLabelSoftMarginLoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiLabelSoftMarginLoss_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiLabelSoftMarginLoss_weights_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiMarginLoss_1d_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiMarginLoss_margin_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiMarginLoss_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiMarginLoss_p_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiMarginLoss_weights_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiheadAttention, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLoss2d_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLoss2d_no_reduce_ignore_index, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLoss2d_no_reduce_weights, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLossNd_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLossNd_no_reduce_ignore_index, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLossNd_no_reduce_weights, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLoss_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLoss_no_reduce_ignore_index, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLoss_no_reduce_weights, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLoss_no_reduce_weights_ignore_index, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLoss_no_reduce_weights_ignore_index_neg, test/test_jit.py::TestJitGeneratedModule::test_nn_PReLU_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_PairwiseDistance, test/test_jit.py::TestJitGeneratedModule::test_nn_PairwiseDistance_broadcast_lhs, test/test_jit.py::TestJitGeneratedModule::test_nn_PairwiseDistance_broadcast_rhs, test/test_jit.py::TestJitGeneratedModule::test_nn_PairwiseDistance_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_PairwiseDistance_with_non_default_args, test/test_jit.py::TestJitGeneratedModule::test_nn_PixelShuffle, test/test_jit.py::TestJitGeneratedModule::test_nn_PixelUnshuffle, test/test_jit.py::TestJitGeneratedModule::test_nn_PoissonNLLLoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_PoissonNLLLoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_PoissonNLLLoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_PoissonNLLLoss_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_RNNCell, test/test_jit.py::TestJitGeneratedModule::test_nn_RReLU, test/test_jit.py::TestJitGeneratedModule::test_nn_RReLU_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_RReLU_with_up_down, test/test_jit.py::TestJitGeneratedModule::test_nn_RReLU_with_up_down_scalar, test/test_jit.py::TestJitGeneratedModule::test_nn_ReLU6_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_ReLU_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_ReplicationPad3d, test/test_jit.py::TestJitGeneratedModule::test_nn_ReplicationPad3d_complex, test/test_jit.py::TestJitGeneratedModule::test_nn_ReplicationPad3d_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_SELU_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_SiLU_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Sigmoid_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_SmoothL1Loss_beta, test/test_jit.py::TestJitGeneratedModule::test_nn_SmoothL1Loss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_SmoothL1Loss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_SmoothL1Loss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_SmoothL1Loss_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_SmoothL1Loss_no_reduce_scalar, test/test_jit.py::TestJitGeneratedModule::test_nn_SmoothL1Loss_zero_beta, test/test_jit.py::TestJitGeneratedModule::test_nn_SoftMarginLoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_SoftMarginLoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_SoftMarginLoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_SoftMarginLoss_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_Softplus_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Softshrink_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Softsign_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Tanh_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Tanhshrink_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Threshold_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Transformer, test/test_jit.py::TestJitGeneratedModule::test_nn_TransformerDecoderLayer_gelu_activation, test/test_jit.py::TestJitGeneratedModule::test_nn_TransformerDecoderLayer_relu_activation, test/test_jit.py::TestJitGeneratedModule::test_nn_TransformerEncoderLayer_gelu_activation, test/test_jit.py::TestJitGeneratedModule::test_nn_TransformerEncoderLayer_relu_activation, test/test_jit.py::TestJitGeneratedModule::test_nn_Transformer_multilayer_coder, test/test_jit.py::TestJitGeneratedModule::test_nn_TripletMarginLoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_TripletMarginLoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_TripletMarginLoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_Unflatten_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Unfold, test/test_jit.py::TestJitGeneratedModule::test_nn_Unfold_int_input, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bicubic_2d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bicubic_2d_zero_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bicubic_scale_2d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bicubic_scale_tuple_shared_2d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bicubic_scale_tuple_skewed_2d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bicubic_scale_tuple_skewed_2d_align_corners, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bicubic_tuple_2d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bicubic_tuple_2d_align_corners, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bilinear_2d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bilinear_2d_zero_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bilinear_scale_2d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bilinear_scale_tuple_shared_2d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bilinear_scale_tuple_skewed_2d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bilinear_scale_tuple_skewed_2d_align_corners, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bilinear_tuple_2d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bilinear_tuple_2d_align_corners, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_linear_1d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_linear_1d_align_corners, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_linear_1d_zero_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_linear_scale_1d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_linear_scale_1d_align_corners, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_linear_tuple_1d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_nearest_1d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_nearest_1d_zero_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_nearest_2d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_nearest_2d_launch_configs, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_nearest_2d_zero_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_nearest_3d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_nearest_3d_zero_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_nearest_scale_1d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_nearest_scale_2d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_nearest_scale_3d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_nearest_tuple_1d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_nearest_tuple_2d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_nearest_tuple_3d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_trilinear_3d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_trilinear_3d_zero_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_trilinear_scale_3d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_trilinear_scale_3d_align_corners, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_trilinear_tuple_3d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_trilinear_tuple_3d_align_corners, test/test_jit.py::TestJitGeneratedModule::test_nn_log_softmax_dim0, test/test_jit.py::TestJitGeneratedModule::test_nn_log_softmax_dim3, test/test_jit.py::TestJitGeneratedModule::test_nn_log_softmax_lastdim, test/test_jit.py::TestJitGeneratedModule::test_nn_log_softmax_scalar, test/test_jit.py::TestJitGeneratedModule::test_nn_log_softmax_spatial, test/test_jit.py::TestJitGeneratedModule::test_nn_log_softmax_spatial_special, test/test_jit.py::TestJitGeneratedModule::test_nn_multimarginloss_1d_input_0d_target_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_softmax_functional_dim0, test/test_jit.py::TestJitGeneratedModule::test_nn_softmax_functional_dim3, test/test_jit.py::TestJitGeneratedModule::test_nn_softmax_functional_scalar, test/test_jit.py::TestJitGeneratedModule::test_nn_softmax_lastdim, test/test_jit.py::TestJitGeneratedModule::test_nn_softmax_lastdim_dtype, test/test_jit.py::TestJitGeneratedModule::test_nn_softmax_spatial, test/test_jit.py::TestJitGeneratedModule::test_nn_softmax_spatial_dtype, test/test_jit.py::TestJitGeneratedModule::test_nn_softmax_spatial_special, test/test_jit.py::TestProducerVersion::test_version 2025-08-26T22:14:26.8566900Z 2025-08-26T22:14:32.7279980Z Running functorch/test_ops 7/8 ... [2025-08-26 22:14:32.727335] 2025-08-26T22:14:32.7281162Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:14:32.7289977Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_ops.py', '-m', 'not serial', '--shard-id=7', '--num-shards=8', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:14:32.728571] 2025-08-26T22:20:37.5823049Z 2025-08-26T22:20:37.5824369Z functorch/test_ops 6/8 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ops_6.8_7934606725891e9f_.log 2025-08-26T22:20:37.6664890Z Running 1250 items in this shard: test/functorch/test_ops.py::TestOperatorsCPU::test_grad_H_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_NumpyTakeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad___radd___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad___rmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad__native_batch_norm_legit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad__segment_reduce_lengths_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad__unsafe_masked_index_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_as_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_cfloat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_clamp_max_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_count_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_diagonal_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_empty_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_expand_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fft_hfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fft_ihfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fliplr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_float_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_half_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_histogramdd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_index_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_isinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_jiterator_2inputs_2outputs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_det_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_householder_product_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_pinv_singular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_vector_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_log_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_logdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_logspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_mT_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_masked_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_masked_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_masked_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_masked_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_mm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nanquantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_new_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_conv2d_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_cosine_similarity_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_ctc_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_dropout2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_glu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_huber_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_mse_loss_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_pad_constant_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_prelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_selu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_silu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nonzero_static_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_pinverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_randint_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_randint_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_round_decimals_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_round_decimals_neg_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_scatter_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_short_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_short_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_signal_windows_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_signal_windows_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_signal_windows_hann_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_signbit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_i0e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_laguerre_polynomial_l_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_ndtri_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_shifted_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_split_with_sizes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_std_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_tan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_topk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_var_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_ZeroGradientsGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_angle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_as_strided_partial_views_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_bfloat16_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_bmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_bool_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_broadcast_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_chalf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_char_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_char_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_cholesky_inverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_diagonal_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_div_trunc_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_double_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_exp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_eye_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fft_hfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fft_ihfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fft_rfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_flatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fliplr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_float_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_hash_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_histc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_igamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_igammac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_inner_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_isfinite_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_isneginf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_jiterator_2inputs_2outputs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_lerp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_cond_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_det_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_ldl_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_lstsq_grad_oriented_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_logical_and_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_logical_not_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_logical_xor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_long_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_fill_functorch_Scalar_only_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_min_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_minimum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_msort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_new_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nextafter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_adaptive_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_adaptive_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_conv2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_conv2d_stride_depthwise_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_conv2d_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_embedding_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_grid_sample_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_interpolate_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_interpolate_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_max_unpool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_max_unpool3d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_pad_constant_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_pad_reflect_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_pairwise_distance_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_pdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_pixel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_softplus_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_norm_nuc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_positive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_pow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_rand_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_randint_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_randn_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_real_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_remainder_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_signal_windows_bartlett_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_signal_windows_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_signal_windows_hann_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_signal_windows_nuttall_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_sinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_shifted_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_svd_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_take_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_torch_ops_aten__safe_softmax_default_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_unique_consecutive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_var_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_vstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpjvpvmap_NumpyMulAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpjvpvmap_NumpyTakeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpjvpvmap_SelectAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_NumpyTakeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp__batch_norm_with_update_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_addcdiv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_as_strided_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_as_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_as_strided_partial_views_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_as_strided_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_asin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_atleast_1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_baddbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_char_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_contiguous_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_cumulative_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_diff_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_digamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_eq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fft_ifft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fft_ihfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fft_irfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_gather_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_int_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_eigvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_norm_subgradients_at_zero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_solve_triangular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_matmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_max_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_meshgrid_variadic_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_mvlgamma_mvlgamma_p_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_new_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_adaptive_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_adaptive_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_adaptive_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_celu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_conv1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_conv2d_strided_padding_dilation_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_conv_transpose2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_embedding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_gelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_instance_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_interpolate_nearest-exact_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_logsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_max_unpool3d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_mish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_mse_loss_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_pixel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_silu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_softsign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_triplet_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_upsample_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_polygamma_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_rad2deg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_randint_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_real_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_resolve_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_select_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_signal_windows_kaiser_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_signal_windows_nuttall_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_slice_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_hermite_polynomial_h_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_legendre_polynomial_p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_log_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_ndtri_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_shifted_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_squeeze_multiple_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_std_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_tile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_unbind_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_unfold_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_unsafe_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_var_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjpvmap_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmap_SortGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmapvmap_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmapvmap_NumpySortAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_bool_raises_topk_cpu_bool, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_amax_cpu_complex32, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_argmin_cpu_complex128, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_le_cpu_complex64, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_sort_cpu_complex32, test/functorch/test_ops.py::TestOperatorsCPU::test_tensor_with_scalar_list_cpu, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_diagonal_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_list_return_split_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_mT_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_permute_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_permute_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_CubeGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_SelectAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp___getitem___functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp__segment_reduce_offsets_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_abs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_acosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_addr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_atleast_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_bfloat16_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_bmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_bool_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_broadcast_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_cdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_column_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_conj_physical_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_copysign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_diff_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_digamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_div_floor_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_double_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_dstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_empty_permuted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_erfc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_exp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_eye_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fft_rfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_flip_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fliplr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_floor_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_gather_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_index_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_isclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_jiterator_4inputs_with_extra_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_lstsq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_matrix_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_slogdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_solve_triangular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_vecdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_long_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_mH_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_matmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_matrix_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nanmean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_narrow_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_native_dropout_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_new_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nextafter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_binary_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_conv2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_conv2d_stride_padding_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_conv2d_stride_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_conv_transpose3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_interpolate_nearest-exact_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_interpolate_trilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_multi_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_pad_reflect_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_norm_inf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_norm_nuc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_ops_aten__new_zeros_with_same_feature_meta_functorchonly_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_pca_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_permute_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_polygamma_polygamma_n_4_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_resolve_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_scatter_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_sgn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_signal_windows_blackman_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_signal_windows_general_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_signal_windows_hann_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_sinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_slice_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_hermite_polynomial_he_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_modified_bessel_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_polygamma_special_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_split_with_sizes_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_split_with_sizes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_sqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_std_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_std_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_to_sparse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_tril_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_xlogy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_NumpySortAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_T_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp___getitem___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp__chunk_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp__unsafe_masked_index_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_aminmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_atleast_3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_byte_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_cholesky_inverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_contiguous_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_copysign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_cos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_cumulative_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_deg2rad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_diagonal_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_digamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fft_fft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fft_ifft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fft_ifftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fft_ihfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_full_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_half_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_igamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_isin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_jiterator_unary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_cholesky_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_eigh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_matrix_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_pinv_singular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_lu_unpack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_max_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nanmedian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nansum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_native_dropout_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_alpha_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_conv2d_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_conv3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_fractional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_glu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_hardswish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_max_unpool3d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_multi_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_multilabel_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_pad_replicate_negative_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_pixel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_pixel_unshuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_softshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_permute_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_ravel_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_signal_windows_bartlett_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_signal_windows_general_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_signal_windows_nuttall_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_signbit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_bessel_y1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_legendre_polynomial_p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_scaled_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_shifted_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_zeta_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_split_with_sizes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_t_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_tan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_tensordot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_tile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_trapz_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_unsafe_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_vsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_xlogy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_zero__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjpvmap_SortGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap___rpow___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_addcdiv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_atleast_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_broadcast_shapes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_conj_physical_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_div_no_rounding_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_empty_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_erf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fft_fft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fft_hfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fft_hfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fft_ifftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fft_ihfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fft_ihfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_float_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_frac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_geqrf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_grid_sampler_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_hypot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_int_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_isinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_jiterator_2inputs_2outputs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_cholesky_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_ldl_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_ldl_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_norm_subgradients_at_zero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_log_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_logaddexp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_matrix_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_max_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_meshgrid_list_of_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_mm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_mvlgamma_mvlgamma_p_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nanmean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nanmedian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_narrow_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_native_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_conv2d_stride_padding_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_dropout2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_elu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_embedding_bag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_fractional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_grid_sample_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_hardshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_kl_div_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_rms_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_selu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_tanhshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_threshold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_norm_fro_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_polygamma_polygamma_n_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_polygamma_polygamma_n_4_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_rand_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_resolve_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_short_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_sigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_sign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_signal_windows_blackman_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_signal_windows_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_sort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_polygamma_special_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_shifted_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_std_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_std_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_take_along_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_tanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_tile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_to_sparse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_triu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_unbind_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_unsafe_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_var_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_zero__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_zeros_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmapvmap_CubeGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmapvmap_NumpyExpMarkDirtyAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmapvmap_NumpyTakeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmapvmap_SortGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmapvmap_ZeroGradientsGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_CubeGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_NumpyCubeAutogradFunction_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_SortGenVmapAutogradFunction_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ZeroGradientsGenVmapAutogradFunction_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad___rmatmul___cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad___rmul___cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad___rpow___cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad__batch_norm_with_update_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad__chunk_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad__segment_reduce_offsets_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_acosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_addbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_addmm_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_all_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_atleast_1d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_broadcast_shapes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_broadcast_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_broadcast_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_byte_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cauchy_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_chalf_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_clamp_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_clamp_max_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cov_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cumsum_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_deg2rad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_diag_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_diag_embed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_diff_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_div_floor_rounding_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_div_trunc_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_hfft2_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_hfft_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_ifft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_ifft2_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_ifft_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_irfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_rfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_flatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_frexp_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_full_like_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_geqrf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_geqrf_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_gradient_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_half_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_hash_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_histogram_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_i0_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_index_add_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_index_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_index_reduce_amin_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_index_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_int_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_isclose_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_isin_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_isnan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_isnan_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_isneginf_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_kron_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_le_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_eigvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_eigvalsh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_lu_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_norm_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_tensorinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_tensorinv_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_tensorsolve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_vector_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_log1p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logical_and_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logical_or_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logical_xor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_long_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_amin_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_argmax_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_argmin_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_fill_functorch_Scalar_only_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_mean_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_norm_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_max_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_max_binary_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_max_reduction_no_dim_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_max_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_meshgrid_variadic_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_msort_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nanquantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_native_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ne_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_new_full_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_adaptive_avg_pool2d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_adaptive_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_avg_pool2d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_avg_pool3d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_binary_cross_entropy_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_celu_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv2d_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv2d_stride_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv2d_stride_with_bias_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_embedding_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_hardtanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_hinge_embedding_loss_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_interpolate_area_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_logsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_max_unpool2d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_mse_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_multilabel_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_pad_reflect_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_pairwise_distance_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_prelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_rms_norm_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_selu_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_softmin_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_upsample_bilinear_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_upsample_nearest_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nonzero_static_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ops_aten__new_zeros_with_same_feature_meta_functorchonly_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ops_aten_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_permute_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_permute_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_pinverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_polar_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_polygamma_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_polygamma_polygamma_n_2_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_polygamma_polygamma_n_3_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_prod_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_qr_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_real_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_renorm_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_resize__cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_round_decimals_neg_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_rsub_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_select_scatter_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_short_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signal_windows_gaussian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signal_windows_general_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signal_windows_hann_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signal_windows_nuttall_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sin_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_slice_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_slice_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sparse_mm_reduce_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_chebyshev_polynomial_u_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_hermite_polynomial_he_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_polygamma_special_polygamma_n_0_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_std_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_std_mean_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_svd_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_tanh_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_tensor_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_torch_ops_aten__safe_softmax_default_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_triangular_solve_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_tril_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_unbind_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_xlogy_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_zero__cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_SelectAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall___rsub___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall__unsafe_masked_index_put_accumulate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_addr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_angle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_as_strided_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_atleast_3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_cfloat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_cholesky_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_constant_pad_nd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_copysign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_cos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_cov_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_dist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_erfinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fft_fftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fft_hfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fft_ifft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fft_irfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fft_irfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_flipud_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_float_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_floor_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_ge_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_SelectGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule___rdiv___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule___rmod___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule__chunk_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_argsort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_copysign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_dstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_erfinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fft_fft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fft_ihfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_floor_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_frac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_gather_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_gt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_heaviside_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_isfinite_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_isnan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_lstsq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_pinv_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_pinv_singular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_solve_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_vector_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_logcumsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_logit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_logspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_long_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_lu_unpack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_matrix_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_meshgrid_variadic_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_native_dropout_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nextafter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_binary_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_channel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_conv2d_stride_depthwise_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_conv2d_stride_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_max_unpool3d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_multi_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_multilabel_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_softplus_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_softsign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_normal_in_place_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_outer_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_permute_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_real_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_reshape_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_roll_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_short_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_sigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_signal_windows_general_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_slice_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_bessel_j1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_scaled_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_tril_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_unfold_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_view_as_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_vsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_hsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_index_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_index_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_int_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_isnan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_isposinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_jiterator_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_jiterator_unary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_eigvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_logical_not_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_lt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_matrix_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_max_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_mul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_ne_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_new_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_new_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_channel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_conv2d_stride_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_cosine_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_cosine_similarity_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_dropout2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_elu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_embedding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_fractional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_grid_sample_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_interpolate_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_logsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_pad_replicate_negative_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_rms_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_scaled_dot_product_attention_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_threshold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_norm_nuc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_pca_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_polygamma_polygamma_n_4_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_resize__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_round_decimals_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_scalar_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_scatter_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_sign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_signal_windows_blackman_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_signal_windows_kaiser_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_bessel_y0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_i0e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_scaled_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_split_with_sizes_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_sum_to_size_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_take_along_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_take_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_transpose_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_uniform_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp___rsub___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_as_strided_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_asin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_bucketize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_char_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_contiguous_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_copysign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_cov_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_einsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fft_ifftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fft_ihfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fft_rfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_flatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_flipud_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_frexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_histogram_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_jiterator_4inputs_with_extra_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_jiterator_binary_return_by_ref_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_le_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_cond_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_eig_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_ldl_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_solve_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_tensorsolve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_vector_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_logcumsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_logdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_long_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_max_pool2d_with_indices_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_min_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_mm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_native_dropout_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_binary_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_celu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_conv2d_stride_depthwise_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_conv2d_stride_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_conv2d_strided_padding_dilation_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_embedding_bag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_interpolate_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_interpolate_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_max_unpool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_mish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_pdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_scaled_dot_product_attention_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_tanhshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_norm_nuc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_permute_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_polygamma_polygamma_n_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_ravel_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_repeat_interleave_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_round_decimals_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_rsqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_select_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_short_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_signal_windows_blackman_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_signal_windows_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_signal_windows_nuttall_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_sparse_mm_reduce_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_bessel_y1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_split_with_sizes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_t_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_take_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_transpose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_unique_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvmap_NumpyCubeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_H_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp__chunk_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_acos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_addbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_addcdiv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_addr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_as_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_asinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_atanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_byte_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_ceil_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_chalf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_cummin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_diagonal_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_dist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_erfc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_expm1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fft_hfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fmod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_frac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_grid_sampler_3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_H_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_NumpyExpMarkDirtyAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_T_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule__batch_norm_with_update_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_addbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_alias_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_as_strided_partial_views_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_asin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_atanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_bernoulli_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_bfloat16_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_block_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_bool_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_cholesky_inverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_count_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_diagonal_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_erfc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fft_hfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fft_ihfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_float_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_geometric_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_index_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_isfinite_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_isneginf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_item_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_jiterator_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_matrix_rank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_multi_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_solve_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_svdvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_logdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_logical_xor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_logit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_long_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_mT_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_matrix_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_max_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_mul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_ne_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_conv2d_stride_padding_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_conv3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_conv_transpose1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_cosine_similarity_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_ctc_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_kl_div_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_logsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_max_unpool2d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_pairwise_distance_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_poisson_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_softplus_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_upsample_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_outer_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_polar_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_pow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_rand_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_resolve_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_roll_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_round_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_scalar_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_scatter_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_short_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_signal_windows_nuttall_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_sinc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_slice_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_airy_ai_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_bessel_y1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_hermite_polynomial_h_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_i0e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_scaled_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_split_with_sizes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_sum_to_size_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_t_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_tanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_tensordot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_tile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_topk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_tril_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_unique_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_var_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_view_as_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_vsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_zero__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_heaviside_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_index_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_int_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_int_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_jiterator_4inputs_with_extra_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_cholesky_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_eigh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_lstsq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_lu_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_matrix_rank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_multi_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_lt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_fill_functorch_Scalar_only_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_matrix_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_max_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_min_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_mvlgamma_mvlgamma_p_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_adaptive_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_conv2d_stride_depthwise_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_conv2d_stride_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_cosine_similarity_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_ctc_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_embedding_bag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_embedding_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_fractional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_glu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_interpolate_trilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_max_unpool1d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_max_unpool3d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_multi_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_multilabel_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_pad_replicate_negative_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_poisson_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_softplus_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_softsign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_norm_inf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_ops_aten__new_zeros_with_same_feature_meta_functorchonly_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_randint_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_randn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_real_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_sign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_signal_windows_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_signal_windows_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_signbit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_laguerre_polynomial_l_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_std_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_std_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_stft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_unsafe_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_unsqueeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_view_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_view_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_zeros_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_CubeGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_SortGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_ZeroGradientsGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_addcdiv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_all_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_arange_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_atan2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_atanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_cdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_expand_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_fft_rfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_fft_rfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_float_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_gradient_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_half_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_heaviside_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_histogramdd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_index_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_index_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_index_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_inner_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_int_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_cholesky_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_inv_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_matrix_rank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_tensorinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_logical_or_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_masked_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_masked_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_matrix_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_min_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_min_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_native_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_native_dropout_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_binary_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_conv2d_stride_depthwise_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_embedding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_interpolate_nearest-exact_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_local_response_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_max_unpool3d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_selu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_triplet_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_pca_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_pinverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_polygamma_polygamma_n_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_scalar_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_sigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_signal_windows_blackman_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_signal_windows_general_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_sin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_slice_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_bessel_j1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_entr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_log_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_svd_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_tensordot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_unflatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_unique_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvmapjvp_linalg_solve_cpu 2025-08-26T22:20:37.7389719Z 2025-08-26T22:20:43.2381880Z Running test_ops 2/9 ... [2025-08-26 22:20:43.237624] 2025-08-26T22:20:43.2382586Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:20:43.2389109Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops.py', '-m', 'not serial', '--shard-id=2', '--num-shards=9', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:20:43.238219] 2025-08-26T22:22:06.8122306Z 2025-08-26T22:22:06.8123379Z functorch/test_ops 1/8 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ops_1.8_1fc67495a6683ef6_.log 2025-08-26T22:22:06.8611181Z Running 1271 items in this shard: test/functorch/test_ops.py::TestOperatorsCPU::test_data_write_errors_under_transform_cpu, test/functorch/test_ops.py::TestOperatorsCPU::test_extremal_numerics_cross_entropy_cpu, test/functorch/test_ops.py::TestOperatorsCPU::test_extremal_numerics_l1_loss_cpu, test/functorch/test_ops.py::TestOperatorsCPU::test_extremal_numerics_log_softmax_cpu, test/functorch/test_ops.py::TestOperatorsCPU::test_extremal_numerics_mse_loss_cpu, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_NumpyExpMarkDirtyAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_NumpySortAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad___rmatmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad__chunk_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_angle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_any_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_as_strided_partial_views_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_atan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_bfloat16_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_cholesky_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_clamp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_clamp_min_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_combinations_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_copysign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_diagflat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_eq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_eye_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fft_rfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_flipud_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_float_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_floor_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_index_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_isin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_isnan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_kron_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_eigvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_ldl_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_norm_subgradients_at_zero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_pinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_slogdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_tensorinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_log10_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_log1p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_log2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_logaddexp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_logical_and_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_lt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_masked_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_masked_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_multinomial_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nanmedian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_narrow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_native_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_adaptive_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_celu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_conv2d_stride_padding_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_conv2d_stride_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_conv2d_strided_padding_dilation_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_fractional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_group_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_hardshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_interpolate_trilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_mse_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_pixel_unshuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_norm_nuc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_pca_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_pow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_randn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_resize__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_searchsorted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_select_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_sgn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_sign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_signal_windows_gaussian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_signal_windows_general_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_split_with_sizes_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_svd_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_transpose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_trapz_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_unique_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_NumpyCubeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_SelectGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_addr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_broadcast_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_cholesky_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_cos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_deg2rad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_dist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_dstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fft_fft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fft_hfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_gather_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_gradient_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_grid_sampler_3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_half_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_half_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_index_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_index_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_isposinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_kthvalue_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_matrix_rank_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_solve_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_log_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_logdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_logspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_lt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_max_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_meshgrid_list_of_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_movedim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_narrow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_channel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_conv2d_strided_padding_dilation_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_embedding_bag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_hardswish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_hinge_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_interpolate_trilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_pixel_unshuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_poisson_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_upsample_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_normal_in_place_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_normal_number_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_permute_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_polar_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_polygamma_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_polygamma_polygamma_n_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_polygamma_polygamma_n_2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_ravel_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_repeat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_roll_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_round_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_sign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_sin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_slice_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_sort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_hermite_polynomial_h_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_scaled_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_shifted_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_shifted_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_shifted_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_xlog1py_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_sub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_tan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_tensor_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_tile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp___rmatmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp___rmod___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_atanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_bool_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_byte_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_cfloat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_clamp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_corrcoef_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_cosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_cummin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_diag_embed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_diagonal_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_dist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fft_fftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fft_ifftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_eig_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_lu_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_solve_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_log1p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_log_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_logit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_logspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_logspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_max_pool2d_with_indices_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_min_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_min_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_msort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_multinomial_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nan_to_num_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nanmedian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nansum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_native_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_native_dropout_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_ctc_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_gaussian_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_hardshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_multi_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_selu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_smooth_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_outer_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_pinverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_randint_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_repeat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_resize_as__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_scalar_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_scatter_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_sgn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_sigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_signal_windows_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_slice_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_bessel_j1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_hermite_polynomial_he_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_shifted_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_sqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_squeeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_std_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_take_along_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_trace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_tril_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_true_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_trunc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_unflatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_view_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_zero__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjpvmap_NumpyExpMarkDirtyAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjpvmap_SelectAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmap_NumpyExpMarkDirtyAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmapvmap_CubeGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmapvmap_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_argmax_cpu_complex64, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_floor_cpu_complex128, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_floor_cpu_complex64, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_lt_cpu_complex32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_conj_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_contiguous_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_flatten_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_list_return_hsplit_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_list_return_split_list_args_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_list_return_split_list_args_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_reshape_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_resolve_neg_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_unsqueeze_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_unsqueeze_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_NumpyMulAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_SelectGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp___radd___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp___rdiv___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp__unsafe_masked_index_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_as_strided_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_asin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_atan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_bfloat16_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_broadcast_shapes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_clamp_max_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_div_trunc_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fft_ihfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fft_irfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_float_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_floor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_gt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_index_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_inner_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_jiterator_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_kron_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_lerp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_inv_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_matrix_rank_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_logdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_logical_and_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_logical_or_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_logspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_lu_unpack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_min_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_min_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_mul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_new_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_new_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_adaptive_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_adaptive_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_conv2d_stride_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_dropout2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_group_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_interpolate_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_logsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_max_unpool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_multilabel_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_pdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_prelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_relu6_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_selu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_silu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_softplus_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_softshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nonzero_static_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_polar_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_ravel_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_round_decimals_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_round_decimals_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_scatter_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_signal_windows_kaiser_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_sort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_bessel_j1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_zeta_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_tile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_triangular_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_triu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_true_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_unflatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_unique_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_unsqueeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_zeros_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp___rsub___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp__native_batch_norm_legit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp__unsafe_masked_index_put_accumulate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_addcdiv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_clamp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_column_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_div_trunc_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_erfc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fft_ihfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_floor_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_frac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_heaviside_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_histogramdd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_index_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_isclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_cond_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_eig_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_eigvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_ldl_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_ldl_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_slogdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_log2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_log_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_logaddexp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_logdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_matmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_matrix_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_max_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_maximum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_mvlgamma_mvlgamma_p_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_mvlgamma_mvlgamma_p_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_mvlgamma_mvlgamma_p_5_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nan_to_num_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nanmean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_new_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_adaptive_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_conv2d_stride_groups_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_conv2d_stride_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_conv_transpose1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_embedding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_embedding_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_grid_sample_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_hinge_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_mse_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_multi_head_attention_forward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_pad_constant_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_pairwise_distance_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_poisson_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_tanhshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_threshold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_normal_in_place_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_ones_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_polygamma_polygamma_n_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_polygamma_polygamma_n_4_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_real_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_scatter_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_scatter_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_short_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_signal_windows_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_bessel_j1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_i0e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_shifted_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_shifted_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_shifted_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_sqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_take_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_tanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_unbind_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_var_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_view_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_view_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjpvmap_SelectAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap___rdiv___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap__batch_norm_with_update_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_acos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_addmm_decomposed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_angle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_any_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_as_strided_partial_views_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_atan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_atleast_1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_bfloat16_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_bfloat16_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_broadcast_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_bucketize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_contiguous_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_cosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_count_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_cumulative_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_deg2rad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_digamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_dsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_expand_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fft_ifftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fft_rfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_flatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_floor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_gather_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_ge_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_index_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_inner_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_int_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_isfinite_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_item_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_cond_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_householder_product_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_matrix_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_matrix_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_pinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_pinv_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_solve_triangular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_svdvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_log_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_maximum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_min_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_movedim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_adaptive_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_conv3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_conv_transpose2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_conv_transpose3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_cosine_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_glu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_mse_loss_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_pad_replicate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_pad_replicate_negative_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_softshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_permute_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_renorm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_reshape_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_scatter_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_searchsorted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_signal_windows_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_signal_windows_gaussian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_signal_windows_general_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_sparse_sampled_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_modified_bessel_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_scaled_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_split_with_sizes_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_topk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_torch_ops_aten__safe_softmax_default_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_trunc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_unflatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_unique_consecutive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmapvmap_NumpyCubeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmapvmap_SelectAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_SelectAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad__upsample_bilinear2d_aa_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_acos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_amin_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_as_strided_scatter_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_atleast_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_atleast_3d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_block_diag_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_bool_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_bool_functorch_no_channels_last_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_broadcast_to_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cdouble_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cholesky_inverse_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_clamp_max_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_combinations_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_count_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cross_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cumulative_trapezoid_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_diagflat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_diagonal_copy_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_diagonal_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_diagonal_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_empty_permuted_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_erf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_erfc_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_erfinv_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_expand_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_ihfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_ihfft2_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_ihfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_irfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fill_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_float_functorch_no_channels_last_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fmod_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ge_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_gradient_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_half_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_half_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_half_functorch_no_channels_last_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_heaviside_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_histc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_histc_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_histogram_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_histogramdd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_hsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_int_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_isfinite_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_isinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_isposinf_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_isreal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_jiterator_binary_return_by_ref_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_jiterator_unary_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_lerp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_lerp_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_lgamma_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_cholesky_ex_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_cond_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_cross_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_eigh_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_householder_product_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_householder_product_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_inv_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_ldl_factor_ex_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_lu_factor_ex_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_slogdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_solve_triangular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_svd_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_log_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_log_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_log_softmax_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logical_and_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_long_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_lt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_matmul_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_meshgrid_list_of_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_min_binary_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_msort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_multinomial_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_mv_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_mvlgamma_mvlgamma_p_3_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nan_to_num_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_narrow_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_narrow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_narrow_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ne_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_adaptive_avg_pool1d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_channel_shuffle_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv2d_no_bias_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv_transpose3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_embedding_bag_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_embedding_functorch_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_feature_alpha_dropout_without_train_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_grid_sample_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_instance_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_instance_norm_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_interpolate_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_kl_div_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_max_unpool1d_grad_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_max_unpool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_max_unpool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_multi_head_attention_forward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_multi_head_attention_forward_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_pdist_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_scaled_dot_product_attention_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_softmin_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_threshold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_threshold_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_triplet_margin_loss_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nonzero_static_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_norm_fro_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_normal_in_place_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ones_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ops_aten_index_put_functorch_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ormqr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_outer_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_pca_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_positive_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_repeat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_reshape_as_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_reshape_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_round_decimals_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_round_decimals_0_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_round_decimals_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_scalar_tensor_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_scatter_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_scatter_reduce_prod_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sgn_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_short_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signal_windows_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signal_windows_general_hamming_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sparse_sampled_addmm_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_airy_ai_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_airy_ai_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_chebyshev_polynomial_v_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_entr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_i1e_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_laguerre_polynomial_l_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_ndtr_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_shifted_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_xlog1py_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_split_list_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_split_with_sizes_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sqrt_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_stack_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_std_mean_unbiased_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_stft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_trace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_true_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_unflatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_unique_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_unsafe_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_unsafe_split_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_view_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_CubeGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_SortGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_ZeroGradientsGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall___radd___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall___rmatmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall__batch_norm_with_update_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall__softmax_backward_data_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_addcdiv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_as_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_atan2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_atleast_1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_block_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_bool_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_chalf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_char_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_cholesky_inverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_corrcoef_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_cumulative_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_digamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_div_no_rounding_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_double_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_eq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_expm1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fft_fft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fft_hfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fft_ifft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fft_ifftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fft_ihfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fft_rfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_flip_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_grid_sampler_3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_CubeGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_NumpySortAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_T_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule___getitem___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule__unsafe_masked_index_put_accumulate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_acos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_acosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_bfloat16_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_bool_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_broadcast_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_broadcast_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_byte_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_cartesian_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_clamp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_column_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_contiguous_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_cos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_cosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_diag_embed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_double_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_dsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_erf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_eye_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fft_ifft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fft_ifftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_flatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_ge_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_grid_sampler_3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_half_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_hstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_index_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_int_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_isclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_isinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_jiterator_4inputs_with_extra_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_jiterator_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_ldexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_matrix_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_tensorsolve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_log_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_log_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_log_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_logical_and_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_logspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_max_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_max_pool2d_with_indices_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_movedim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nan_to_num_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_new_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_adaptive_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_alpha_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_conv2d_stride_groups_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_conv2d_stride_padding_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_conv2d_strided_padding_dilation_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_ctc_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_embedding_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_huber_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_interpolate_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_leaky_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_logsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_pad_replicate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nonzero_static_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_ormqr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_polygamma_polygamma_n_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_randint_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_remainder_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_rsqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_searchsorted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_signal_windows_blackman_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_sinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_bessel_y1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_modified_bessel_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_polygamma_special_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_std_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_tile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_trapz_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_unique_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_unsafe_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_unsqueeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_zeros_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_histogramdd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_hstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_hypot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_index_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_isfinite_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_jiterator_4inputs_with_extra_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_lgamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_cond_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_ldl_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_lu_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_matrix_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_solve_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_mv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_narrow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_new_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_new_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_conv3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_ctc_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_leaky_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_pad_replicate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_pixel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_relu6_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_ops_aten_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_permute_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_polygamma_polygamma_n_2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_randint_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_randn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_ravel_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_remainder_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_scatter_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_signal_windows_gaussian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_signal_windows_general_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_signal_windows_hann_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_slice_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_sort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_i1e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_shifted_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_split_with_sizes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_square_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_std_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_std_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_topk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_trace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_triangular_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_trunc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_unbind_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_unsafe_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_var_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_vdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_view_as_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_xlogy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_zero__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_NumpyCubeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_NumpyTakeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp___rmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp__segment_reduce_offsets_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp__unsafe_masked_index_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_addcmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_atanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_bernoulli_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_clamp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_clone_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_constant_pad_nd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_cos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_diagflat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_div_no_rounding_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fft_ifft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fft_irfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_float_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_histogramdd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_hsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_int_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_isfinite_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_isin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_jiterator_unary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_ldexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_eigvalsh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_inv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_ldl_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_lstsq_grad_oriented_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_multi_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_logaddexp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_logspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_minimum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_mvlgamma_mvlgamma_p_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_narrow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_adaptive_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_alpha_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_conv2d_stride_groups_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_conv2d_stride_padding_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_conv_transpose2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_dropout2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_elu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_fractional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_group_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_hardswish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_interpolate_area_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_kl_div_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_multilabel_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_pad_circular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_smooth_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_softmin_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_softshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_upsample_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_pinverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_repeat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_resolve_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_rot90_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_scatter_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_scatter_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_scatter_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_sgn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_slice_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_bessel_y0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_torch_ops_aten__safe_softmax_default_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_trapz_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_uniform_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_var_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_view_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_view_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_vsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvmap_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvmap_NumpyCubeNotComposableAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvmap_NumpyMulAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvmap_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_NumpyCubeNotComposableAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_NumpySortAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_ZeroGradientsGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp___rdiv___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp___rmod___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp__unsafe_masked_index_put_accumulate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_argsort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_atan2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_cauchy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_combinations_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_deg2rad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_div_floor_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_double_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_dsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fft_fft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fft_ifftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_flipud_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_half_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_NumpyMulAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_addcdiv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_argsort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_as_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_asinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_atan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_atleast_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_baddbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_bfloat16_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_cartesian_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_clamp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_combinations_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_conj_physical_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_corrcoef_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_cosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_div_no_rounding_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_double_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_erf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_expand_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_eye_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fft_fftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fft_ihfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fft_irfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_floor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_histc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_igamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_index_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_index_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_index_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_inner_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_isreal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_inv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_lu_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_norm_subgradients_at_zero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_fill_functorch_Scalar_only_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_matmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_meshgrid_list_of_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_min_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_multinomial_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_native_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_new_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_adaptive_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_conv2d_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_conv2d_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_conv_transpose2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_cosine_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_glu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_interpolate_bicubic_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_interpolate_trilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_max_unpool3d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_multi_head_attention_forward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_multilabel_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_pad_reflect_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_pixel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_scaled_dot_product_attention_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_triplet_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nonzero_static_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_norm_inf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_reciprocal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_remainder_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_reshape_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_round_decimals_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_signal_windows_bartlett_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_signal_windows_kaiser_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_entr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_scaled_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_xlog1py_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_split_with_sizes_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_transpose_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_unsafe_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_unsqueeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_var_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_view_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_histc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_hsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_hypot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_index_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_index_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_inner_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_isnan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_jiterator_binary_return_by_ref_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_lgamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_ldl_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_mT_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_maximum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_meshgrid_list_of_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_min_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_min_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nanmedian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nansum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_new_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_new_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_new_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_conv2d_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_conv2d_stride_padding_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_gelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_hardshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_hardsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_instance_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_local_response_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_logsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_pad_constant_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_pca_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_polygamma_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_rad2deg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_randn_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_reciprocal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_remainder_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_resolve_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_rsqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_scatter_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_scatter_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_scatter_reduce_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_sgn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_signal_windows_nuttall_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_erfcx_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_hermite_polynomial_h_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_i0e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_modified_bessel_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_scaled_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_shifted_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_shifted_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_spherical_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_std_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_sum_to_size_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_tensordot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_tile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_topk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_trunc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_unfold_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_vdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_view_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_where_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_H_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_SelectAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_addmm_decomposed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_as_strided_partial_views_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_ceil_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_cholesky_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_combinations_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_diagflat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_dstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_empty_permuted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_equal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_erfinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_fft_fft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_fft_ifft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_fft_ifftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_grid_sampler_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_gt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_half_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_hypot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_index_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_index_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_item_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_jiterator_2inputs_2outputs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_jiterator_4inputs_with_extra_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_eigvalsh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_ldl_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_ldl_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_matrix_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_pinv_singular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_solve_triangular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_log_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_logcumsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_logical_and_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_logical_not_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_long_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_masked_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_minimum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_mm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_movedim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_mvlgamma_mvlgamma_p_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_new_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_new_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nextafter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_adaptive_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_conv2d_stride_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_conv2d_strided_padding_dilation_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_cosine_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_embedding_bag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_fractional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_grid_sample_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_hardtanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_huber_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_leaky_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_margin_ranking_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_max_unpool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_mish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_multi_head_attention_forward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_pad_replicate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_normal_in_place_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_ormqr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_outer_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_polar_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_ravel_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_repeat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_repeat_interleave_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_reshape_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_resolve_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_scatter_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_short_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_signal_windows_nuttall_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_sinc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_sort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_bessel_y0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_hermite_polynomial_he_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_scaled_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_zeta_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_to_sparse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_trace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_transpose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_triu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_var_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_var_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_vdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_zeros_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvmap_CubeGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvmap_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvmap_NumpyCubeAutogradFunction_cpu_float32 2025-08-26T22:22:06.9081771Z 2025-08-26T22:22:12.8140104Z Running test_ops 7/9 ... [2025-08-26 22:22:12.813297] 2025-08-26T22:22:12.8140558Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:22:12.8146345Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops.py', '-m', 'not serial', '--shard-id=7', '--num-shards=9', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:22:12.814443] 2025-08-26T22:25:35.3990373Z 2025-08-26T22:25:35.3992031Z functorch/test_ops 7/8 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ops_7.8_9a967eaa70bc9c80_.log 2025-08-26T22:25:35.4808966Z Running 1307 items in this shard: test/functorch/test_ops.py::TestOperatorsCPU::test_grad_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad___rpow___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad__segment_reduce_offsets_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_acos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_addbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_addmv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_broadcast_shapes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_bucketize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_cauchy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_cos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_diagonal_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_diff_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_digamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_dist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_dsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_dstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_erf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fft_fftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fft_ifft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fft_ihfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_flatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fmod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_frexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_histc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_igamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_index_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_item_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_jiterator_unary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_eigh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_ldl_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_lu_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_matrix_rank_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_solve_triangular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_masked_fill_functorch_Scalar_only_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_max_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_native_dropout_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_native_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nextafter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_fractional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_hardtanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_kl_div_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_local_response_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_pixel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_poisson_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_softplus_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_norm_fro_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_ones_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_real_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_reciprocal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_reshape_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_scatter_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_signal_windows_general_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_sinc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_hermite_polynomial_he_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_spherical_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_stft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_tensor_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_tile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_to_sparse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_triu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_trunc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_zero__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_H_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_T_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp___rpow___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp__chunk_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp__softmax_backward_data_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_addmv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_allclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_aminmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_argsort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_atan2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_cdouble_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_ceil_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_cfloat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_combinations_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_conj_physical_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_constant_pad_nd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_digamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_div_no_rounding_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_empty_permuted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_erf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fft_ifftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fft_ihfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fft_irfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_frexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_ge_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_geometric_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_histogram_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_histogramdd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_hstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_index_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_jiterator_4inputs_with_extra_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_lgamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_eigvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_inv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_inv_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_norm_subgradients_at_zero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_tensorsolve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_log_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_logspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_mT_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_max_pool2d_with_indices_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_meshgrid_variadic_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_min_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_adaptive_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_binary_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_conv2d_stride_groups_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_conv2d_stride_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_conv2d_strided_padding_dilation_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_conv_transpose2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_ctc_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_glu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_interpolate_area_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_logsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_max_unpool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_mish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_mse_loss_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_pad_circular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_rrelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_softshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_threshold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_norm_fro_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_pinverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_polygamma_polygamma_n_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_quantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_select_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_signal_windows_blackman_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_airy_ai_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_laguerre_polynomial_l_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_modified_bessel_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_scaled_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_zeta_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_sqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_squeeze_multiple_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_tensordot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_topk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_trapz_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_true_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_unbind_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_unflatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_unfold_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_uniform_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_unsafe_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_view_as_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_zero__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpjvpvmap_NumpyCubeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_NumpyCubeNotComposableAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_ZeroGradientsGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_addbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_addmv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_any_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_argwhere_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_bfloat16_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_bmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_byte_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_char_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_copysign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_einsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_empty_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_erf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_erfc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fft_hfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_flipud_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fmod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_frexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_full_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_histc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_histogram_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_igammac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_int_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_ldexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_cholesky_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_lu_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_matrix_rank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_vecdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_log10_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_long_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_lt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_matrix_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_movedim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_ne_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_adaptive_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_conv2d_stride_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_conv2d_stride_padding_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_conv2d_stride_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_conv2d_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_cosine_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_interpolate_area_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_interpolate_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_max_unpool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_max_unpool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_max_unpool2d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_multilabel_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_pad_constant_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_pad_replicate_negative_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_poisson_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_relu6_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_rms_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nonzero_static_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_norm_fro_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_ops_aten__new_zeros_with_same_feature_meta_functorchonly_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_randn_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_remainder_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_scatter_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_searchsorted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_short_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_signal_windows_blackman_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_signal_windows_general_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_sinc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_airy_ai_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_spherical_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_square_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_sub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_sum_to_size_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_var_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_view_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_where_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmap_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmap_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_ceil_cpu_complex128, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_ceil_cpu_complex64, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_lt_cpu_complex64, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_maximum_cpu_complex128, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_expand_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_list_return_unbind_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_mT_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_narrow_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_select_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_special_grad_op_jvp_cpu, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_NumpySortAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_NumpyTakeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp__segment_reduce_lengths_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_aminmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_angle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_as_strided_partial_views_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_asinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_byte_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_cfloat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_clamp_min_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_clone_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_cos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_cov_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_cummax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_erf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_expand_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_expand_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_expm1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fft_hfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fft_ifft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fft_ifftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_float_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_float_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_frexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_int_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_isin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_isinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_ldexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_ldl_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_matrix_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_norm_subgradients_at_zero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_pinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_pinv_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_solve_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_log10_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_log2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_logit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_max_pool2d_with_indices_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_maximum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_msort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_narrow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_adaptive_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_conv1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_conv2d_stride_depthwise_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_conv2d_stride_groups_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_conv_transpose2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_ctc_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_elu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_hardtanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_huber_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_margin_ranking_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_mish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_pad_constant_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_pairwise_distance_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_smooth_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_triplet_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_ormqr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_positive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_rand_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_randint_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_randn_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_reciprocal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_roll_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_scatter_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_scatter_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_entr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_squeeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_squeeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_take_along_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_take_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_tensordot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_transpose_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_transpose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_unbind_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_view_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_vsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_CubeGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_SortGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp___rmod___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp__upsample_bilinear2d_aa_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_acos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_addcmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_addmm_decomposed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_alias_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_all_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_allclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_argwhere_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_as_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_as_strided_partial_views_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_bmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_cfloat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_clamp_min_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_div_no_rounding_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_expm1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fft_hfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fft_ihfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fft_rfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_flatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_float_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_geometric_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_index_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_index_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_kthvalue_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_multi_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_pinv_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_vector_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_log10_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_max_pool2d_with_indices_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_msort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_native_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_new_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_adaptive_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_adaptive_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_conv2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_interpolate_bicubic_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_max_unpool1d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_mish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_mse_loss_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_pad_reflect_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_pdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_scaled_dot_product_attention_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_smooth_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_softmin_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_softsign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_ops_aten__new_zeros_with_same_feature_meta_functorchonly_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_pca_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_permute_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_pinverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_polygamma_polygamma_n_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_rand_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_remainder_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_repeat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_roll_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_scatter_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_signal_windows_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_sinc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_entr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_i1e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_laguerre_polynomial_l_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_spherical_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_split_list_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_std_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_sub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_svd_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_true_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_uniform_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_var_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_view_as_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjpvmap_NumpyCubeNotComposableAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_NumpySortAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_addbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_addr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_arange_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_as_strided_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_atan2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_atleast_3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_baddbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_bernoulli_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_cartesian_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_char_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_cholesky_inverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_copysign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_corrcoef_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_cummax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_diagonal_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_diff_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_dist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_double_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_exp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_expm1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fft_fftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fft_irfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fft_irfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fft_rfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_histc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_hstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_igammac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_index_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_isposinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_jiterator_4inputs_with_extra_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_kron_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_ldexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_lgamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_eig_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_eigvalsh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_lstsq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_pinv_singular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_tensorsolve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_logical_xor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_long_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_minimum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nan_to_num_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_adaptive_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_binary_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_cosine_similarity_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_gaussian_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_interpolate_nearest-exact_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_max_unpool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_multilabel_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_pixel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_scaled_dot_product_attention_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nonzero_static_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_ones_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_ops_aten__new_zeros_with_same_feature_meta_functorchonly_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_pinverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_randint_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_roll_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_round_decimals_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_scalar_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_slice_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_slice_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_sparse_mm_reduce_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_bessel_y0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_legendre_polynomial_p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_split_with_sizes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_sub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_true_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_unfold_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_vsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_vstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmapvmap_SelectGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_H_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_NumpyTakeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ScaleGradGenVmapAutogradFunction_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_T_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad___getitem___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad___getitem___cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad___radd___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad___rmod___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad___rsub___cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad__native_batch_norm_legit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad__segment_reduce_lengths_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad__softmax_backward_data_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_acos_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_addcmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_addmm_decomposed_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_aminmax_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_as_strided_partial_views_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_as_strided_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_atanh_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_atleast_1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_baddbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_bernoulli_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_bucketize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_byte_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cartesian_prod_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cauchy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cdouble_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_char_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cholesky_solve_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_conj_physical_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_constant_pad_nd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cummin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cumprod_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_digamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_digamma_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_div_floor_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_double_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_dsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_empty_permuted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_eq_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_exp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_exp2_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_expand_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_expand_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_fft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_fftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_hfftn_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_ihfft_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_irfft2_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_rfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_float_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_float_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_float_power_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_floor_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fmin_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_frac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_frac_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_gather_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_heaviside_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_histogramdd_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_hsplit_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_hstack_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_hypot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_igamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_index_fill_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_index_reduce_amax_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_inner_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_jiterator_2inputs_2outputs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_jiterator_2inputs_2outputs_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ldexp_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_lgamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_cholesky_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_det_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_eigvals_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_lstsq_grad_oriented_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_lu_solve_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_matrix_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_matrix_rank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_norm_subgradients_at_zero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_pinv_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_pinv_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_solve_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_vecdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linspace_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_log10_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_log_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_log_softmax_with_dtype_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logcumsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_lt_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_mT_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_prod_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_softmin_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_std_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_sum_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_var_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_matmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_matrix_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_maximum_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_min_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_min_reduction_no_dim_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_minimum_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_movedim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_mul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_mvlgamma_mvlgamma_p_1_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nanmean_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nanmedian_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_native_dropout_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_native_dropout_backward_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_new_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_new_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_new_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nextafter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_batch_norm_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_binary_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_celu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv1d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv2d_stride_groups_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv2d_stride_padding_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv2d_strided_padding_dilation_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv2d_strided_padding_dilation_with_bias_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv3d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv_transpose1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv_transpose3d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_cosine_similarity_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_cosine_similarity_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_ctc_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_dropout3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_embedding_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_hardshrink_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_hardsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_hinge_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_interpolate_bilinear_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_leaky_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_local_response_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_max_unpool3d_grad_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_mse_loss_functorch_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_multi_margin_loss_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_pixel_unshuffle_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_selu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_triplet_margin_with_distance_loss_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_unfold_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_norm_nuc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ops_aten__new_zeros_with_same_feature_meta_functorchonly_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_pinverse_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_polygamma_polygamma_n_0_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_rand_like_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_randint_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ravel_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_resize__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_roll_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_rsub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_scatter_reduce_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_scatter_reduce_sum_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_searchsorted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_select_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signal_windows_blackman_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signal_windows_blackman_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signal_windows_gaussian_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signal_windows_general_cosine_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sinc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_bessel_j0_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_bessel_y0_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_chebyshev_polynomial_w_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_entr_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_laguerre_polynomial_l_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_legendre_polynomial_p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_shifted_chebyshev_polynomial_t_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_shifted_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_spherical_bessel_j0_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_split_list_args_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_split_with_sizes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_squeeze_copy_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_squeeze_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_stft_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sum_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_tan_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_tensordot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_trunc_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_unbind_copy_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_unfold_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_unique_consecutive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_unique_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_var_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_var_mean_unbiased_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_view_as_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_view_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_zeros_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_zeros_like_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_H_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_NumpyCubeNotComposableAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_SelectGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall___rmod___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall__native_batch_norm_legit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall__segment_reduce_offsets_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_acosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_addbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_alias_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_as_strided_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_bfloat16_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_bool_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_byte_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_cdouble_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_cummin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_diag_embed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_diff_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_dstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_expand_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fft_ifftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fliplr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_frexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_gather_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_gradient_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_grid_sampler_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule___rsub___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule__batch_norm_with_update_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule__segment_reduce_lengths_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_addbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_addcdiv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_addr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_arange_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_as_strided_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_as_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_asin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_atan2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_baddbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_bucketize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_cholesky_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_corrcoef_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_count_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_cov_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_diff_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_dist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_empty_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_exp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fft_fftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fft_hfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fft_ifft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fft_ifftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fft_rfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_float_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_floor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_frexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_geometric_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_grid_sampler_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_half_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_index_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_index_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_inner_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_isin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_item_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_jiterator_binary_return_by_ref_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_le_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_householder_product_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_ldl_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_ldl_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_svdvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_tensorinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_vander_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_log2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_long_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_lt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_fill_functorch_Scalar_only_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_max_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_multinomial_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_mvlgamma_mvlgamma_p_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_new_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_adaptive_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_celu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_conv1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_conv3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_conv_transpose2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_conv_transpose3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_grid_sample_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_interpolate_area_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_interpolate_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_interpolate_nearest-exact_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_local_response_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_max_unpool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_max_unpool2d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_mse_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_pixel_unshuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_scaled_dot_product_attention_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_upsample_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_ops_aten__new_zeros_with_same_feature_meta_functorchonly_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_polar_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_polygamma_polygamma_n_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_positive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_rad2deg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_repeat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_repeat_interleave_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_round_decimals_neg_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_signbit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_sinc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_entr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_erfcx_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_log_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_scaled_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_xlog1py_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_svd_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_triangular_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_unique_consecutive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_unsafe_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_var_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_vdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_view_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_where_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_igamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_index_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_index_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_isin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_jiterator_binary_return_by_ref_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_cholesky_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_eigvalsh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_ldl_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_lstsq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_svdvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_log2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_log_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_logaddexp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_maximum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_min_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nansum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_adaptive_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_celu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_conv2d_stride_groups_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_conv2d_stride_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_hardswish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_local_response_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_max_unpool3d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_prelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_softmin_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_softplus_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_normal_in_place_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_outer_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_permute_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_positive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_resize_as__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_searchsorted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_sgn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_signal_windows_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_signal_windows_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_signbit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_legendre_polynomial_p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_shifted_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_spherical_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_tensordot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_torch_ops_aten__safe_softmax_default_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_var_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_view_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_view_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_NumpyMulAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_NumpySortAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_T_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_acos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_arange_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_argwhere_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_as_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_atan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_atleast_1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_baddbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_bool_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_broadcast_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_byte_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_cholesky_inverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_combinations_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_count_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_diag_embed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_digamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_double_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_empty_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fft_fftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fft_irfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_float_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_geqrf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_grid_sampler_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_grid_sampler_3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_hypot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_index_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_index_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_index_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_lgamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_eigvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_matrix_rank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_norm_subgradients_at_zero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_pinv_singular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_slogdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_vecdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_logical_xor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_lu_unpack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_maximum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_mv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_native_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nextafter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_channel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_conv3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_conv_transpose1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_grid_sample_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_hardtanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_local_response_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_max_unpool3d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_pad_reflect_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_softplus_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_upsample_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_normal_number_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_ormqr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_randint_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_reciprocal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_renorm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_reshape_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_signal_windows_general_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_signbit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_sinc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_shifted_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_sqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_std_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_triangular_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_true_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_unfold_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_var_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_where_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_zero__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvmap_NumpyTakeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_NumpyTakeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp___rmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp__upsample_bilinear2d_aa_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_addcmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_addmv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_argwhere_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_as_strided_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_bmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_bool_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_cdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_cholesky_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_clamp_max_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_column_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_cummax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_diag_embed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_div_no_rounding_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_double_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_expand_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fft_ifft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_gt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule___rmod___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule__chunk_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule__segment_reduce_lengths_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_addcmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_addmm_decomposed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_addmv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_aminmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_as_strided_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_bmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_broadcast_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_cdouble_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_char_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_clamp_max_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_double_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_equal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_expand_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fft_fft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fft_fftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fft_irfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_flip_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_float_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_floor_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_gather_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_ge_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_gt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_hash_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_index_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_kron_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_det_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_eigh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_householder_product_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_matrix_rank_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_log10_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_logcumsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_logspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_lu_unpack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_movedim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_mv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_conv2d_stride_groups_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_dropout3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_embedding_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_gaussian_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_hardshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_huber_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_interpolate_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_margin_ranking_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_mish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_ravel_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_repeat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_resize_as__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_signal_windows_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_erfcx_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_legendre_polynomial_p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_shifted_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_sub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_tensor_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_trace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_triu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_true_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_unbind_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_view_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_vstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_hash_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_igammac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_index_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_isreal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_eig_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_eigvalsh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_solve_triangular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_vecdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_log2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_logical_and_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_logit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_logspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_matmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_max_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nan_to_num_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_new_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_adaptive_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_adaptive_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_conv2d_strided_padding_dilation_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_dropout2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_huber_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_mse_loss_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_pad_reflect_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_pairwise_distance_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_pdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_pixel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_scaled_dot_product_attention_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_norm_nuc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_polygamma_polygamma_n_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_quantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_rand_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_renorm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_sinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_bessel_j1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_log_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_ndtri_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_shifted_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_split_list_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_split_with_sizes_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_split_with_sizes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_squeeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_tensor_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_triu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_true_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_unbind_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_vstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_zero__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp___rmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp___rpow___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp__softmax_backward_data_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp__unsafe_masked_index_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp__unsafe_masked_index_put_accumulate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_addmv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_alias_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_any_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_argwhere_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_block_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_bmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_cdouble_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_clamp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_clamp_min_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_conj_physical_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_cumulative_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_deg2rad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_diagonal_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_digamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_div_trunc_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_expand_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_expm1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_fft_hfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_flipud_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_float_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_geqrf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_index_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_ldexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_le_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_lerp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_cond_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_det_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_solve_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_vander_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_log2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_logspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_masked_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_masked_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_masked_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_matmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_meshgrid_list_of_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_meshgrid_variadic_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_mul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_multinomial_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nan_to_num_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nanmean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nanquantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_conv2d_stride_padding_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_cosine_similarity_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_group_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_hardshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_interpolate_bicubic_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_interpolate_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_interpolate_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_interpolate_trilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_max_unpool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_multilabel_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_poisson_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_smooth_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_norm_fro_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_ops_aten__new_zeros_with_same_feature_meta_functorchonly_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_ops_aten_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_randn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_randn_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_roll_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_short_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_signal_windows_gaussian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_hermite_polynomial_h_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_i0e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_legendre_polynomial_p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_modified_bessel_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_scaled_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_shifted_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_std_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_sum_to_size_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_topk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_trapz_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_triangular_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_trunc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_unbind_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_var_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_view_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_view_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvmap_NumpyTakeAutogradFunction_cpu_float32 2025-08-26T22:25:35.5603920Z 2025-08-26T22:25:42.3428557Z Running test_ops 8/9 ... [2025-08-26 22:25:42.338723] 2025-08-26T22:25:42.3428976Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:25:42.3446699Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops.py', '-m', 'not serial', '--shard-id=8', '--num-shards=9', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:25:42.338723] 2025-08-26T22:29:11.1049185Z 2025-08-26T22:29:11.1050312Z test_ops 2/9 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_2.9_ac86499dfeab206f_.log 2025-08-26T22:29:11.2541081Z Running 3753 items in this shard: test/test_ops.py::TestCommonCPU::test_compare_cpu__refs__conversions_long_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_as_strided_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_bucketize_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_column_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_div_floor_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_hstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_igammac_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_linalg_diagonal_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_movedim_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_nn_functional_hardtanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_permute_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_special_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_zeros_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_addmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_addmm_decomposed_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_bool_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_cdist_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_diagonal_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_dsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_fft_ifftshift_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_fliplr_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_float_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_fmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_isin_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_lstsq_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_slogdet_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linspace_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_log_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_logspace_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_long_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_masked_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_masked_select_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_meshgrid_list_of_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nextafter_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_binary_cross_entropy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_embedding_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_fractional_max_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_fractional_max_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_grid_sample_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_pad_replicate_negative_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_relu6_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_softmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_norm_inf_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_normal_number_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_polar_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_resolve_neg_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_scatter_reduce_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_special_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_special_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_special_hermite_polynomial_he_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_special_laguerre_polynomial_l_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_take_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_trapezoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_triangular_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_unsqueeze_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_zeros_cpu_float32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_T_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_cdouble_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_eq_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_neg_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_new_ones_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_rand_like_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_real_cpu_complex32, test/test_ops.py::TestCommonCPU::test_dtypes___rand___cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs__conversions_int_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_abs_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_addcdiv_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_atan_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_bitwise_left_shift_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_bitwise_xor_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_block_diag_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_ceil_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_clamp_max_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_cumprod_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_diagonal_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_div_trunc_rounding_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_empty_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_erfc_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_erfinv_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_expand_as_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fft_hfftn_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fft_ihfftn_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_gcd_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_index_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_isclose_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_linalg_vector_norm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_linspace_tensor_overload_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_log1p_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_log2_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_log_normal_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_logical_or_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_masked_fill_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_pairwise_distance_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_softmin_with_dtype_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_tanhshrink_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_normal__in_place_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_sinc_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_sinh_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_softmax_with_dtype_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_special_multigammaln_mvlgamma_p_5_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_special_zeta_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_stack_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_t_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_tanh_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_trace_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_tril_indices_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_true_divide_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_unbind_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_unfold_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_unfold_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_unsqueeze_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_var_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_vstack_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_abs_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_acos_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_add_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_addbmm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_addcdiv_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_arange_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_atanh_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_atleast_3d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_bincount_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_bitwise_left_shift_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_bitwise_or_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_broadcast_tensors_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_byte_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_cdist_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_cdouble_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_ceil_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_diagflat_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_div_no_rounding_mode_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_dsplit_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_dstack_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_erf_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_expand_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_exponential_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fft_fft2_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fft_irfft_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fft_irfftn_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_flatten_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_geqrf_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_index_reduce_amax_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_isreal_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_istft_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_item_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_diagonal_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_eig_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_pinv_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_slogdet_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_solve_ex_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_svd_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_log1p_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_logaddexp_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_logspace_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_lu_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_mH_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_cumprod_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_fill_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_prod_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_movedim_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_multinomial_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_mvlgamma_mvlgamma_p_3_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nan_to_num_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_native_layer_norm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_new_empty_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_adaptive_max_pool2d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_batch_norm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_conv3d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_elu_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_embedding_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_grid_sample_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_interpolate_linear_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_interpolate_nearest_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_local_response_norm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_max_unpool3d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_multi_margin_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_nll_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_pad_constant_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_prelu_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_relu6_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_upsample_bilinear_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_ones_like_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_pca_lowrank_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_resize__cpu, test/test_ops.py::TestCommonCPU::test_dtypes_resize_as__cpu, test/test_ops.py::TestCommonCPU::test_dtypes_rsqrt_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_scatter_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_scatter_reduce_sum_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_searchsorted_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_signal_windows_kaiser_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_sinh_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_slice_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_slice_scatter_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_bessel_y1_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_laguerre_polynomial_l_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_modified_bessel_k0_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_split_with_sizes_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_sqrt_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_squeeze_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_stack_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_svd_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_tensordot_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_to_sparse_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_topk_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_transpose_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_triangular_solve_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_triu_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_unfold_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_vdot_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_view_cpu, test/test_ops.py::TestCommonCPU::test_errors___rmod___cpu, test/test_ops.py::TestCommonCPU::test_errors_as_strided_scatter_cpu, test/test_ops.py::TestCommonCPU::test_errors_fft_fft2_cpu, test/test_ops.py::TestCommonCPU::test_errors_fft_hfft_cpu, test/test_ops.py::TestCommonCPU::test_errors_fft_hfftn_cpu, test/test_ops.py::TestCommonCPU::test_errors_floor_divide_cpu, test/test_ops.py::TestCommonCPU::test_errors_kthvalue_cpu, test/test_ops.py::TestCommonCPU::test_errors_ldexp_cpu, test/test_ops.py::TestCommonCPU::test_errors_linalg_lstsq_cpu, test/test_ops.py::TestCommonCPU::test_errors_maximum_cpu, test/test_ops.py::TestCommonCPU::test_errors_mean_cpu, test/test_ops.py::TestCommonCPU::test_errors_min_binary_cpu, test/test_ops.py::TestCommonCPU::test_errors_nextafter_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_adaptive_max_pool2d_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_margin_ranking_loss_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_max_pool2d_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_multi_margin_loss_cpu, test/test_ops.py::TestCommonCPU::test_errors_signal_windows_general_hamming_cpu, test/test_ops.py::TestCommonCPU::test_errors_signal_windows_hamming_cpu, test/test_ops.py::TestCommonCPU::test_errors_sparse_randn_like_layout3_cpu, test/test_ops.py::TestCommonCPU::test_errors_special_xlog1py_cpu, test/test_ops.py::TestCommonCPU::test_errors_t_cpu, test/test_ops.py::TestCommonCPU::test_errors_tril_cpu, test/test_ops.py::TestCommonCPU::test_errors_true_divide_cpu, test/test_ops.py::TestCommonCPU::test_errors_where_cpu, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch__batch_norm_with_update_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_acosh_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_alias_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_angle_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_cos_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_erf_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_exp_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_fft_fft_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_fft_irfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_fft_irfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_hstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_hypot_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_index_reduce_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_index_reduce_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_index_select_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_ldexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_householder_product_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_solve_triangular_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_svdvals_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_vecdot_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_log1p_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_logaddexp2_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_lt_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_lu_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_min_binary_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_msort_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_nansum_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_nn_functional_linear_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_nn_functional_logsigmoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_norm_inf_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_sigmoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_sign_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_bessel_j1_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_ndtr_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_take_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_topk_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_zeros_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_H_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_T_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices__batch_norm_with_update_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_acos_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_addr_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_alias_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_any_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_argmin_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_as_strided_partial_views_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_asinh_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_atan2_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_atleast_2d_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_baddbmm_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_broadcast_shapes_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_broadcast_to_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_cartesian_prod_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_cauchy_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_cdouble_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_cfloat_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_chalf_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_clamp_min_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_contiguous_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_corrcoef_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_cosh_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_count_nonzero_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_cummin_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_diag_embed_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_diagonal_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_diagonal_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_diff_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_expm1_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_hfft_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_ihfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_flip_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_float_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_floor_divide_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_gcd_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_geometric_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_heaviside_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_index_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_index_put_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_int_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_isclose_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_isin_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_jiterator_binary_return_by_ref_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_kthvalue_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_lgamma_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_inv_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_lu_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_matrix_rank_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_tensorsolve_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_vander_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_vecdot_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linspace_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_log10_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_logical_not_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_logical_or_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_logspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_lu_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_mH_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_mT_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_mT_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_amax_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_softmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_var_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_var_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_max_binary_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_max_binary_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_median_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_min_binary_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_mode_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nanmedian_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_native_layer_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_avg_pool1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_conv_transpose1d_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_conv_transpose2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_embedding_bag_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_mse_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_multilabel_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_pairwise_distance_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_relu_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_rms_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_softmin_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_softsign_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_threshold_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_threshold_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_ones_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_permute_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_polygamma_polygamma_n_1_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_polygamma_polygamma_n_2_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_pow_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_randint_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_ravel_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_reciprocal_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_resize_as__cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_scalar_tensor_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_scatter_reduce_amax_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_scatter_reduce_amin_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_sgn_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_signal_windows_hann_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_signbit_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_chebyshev_polynomial_v_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_hermite_polynomial_he_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_i0e_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_laguerre_polynomial_l_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_modified_bessel_k0_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_modified_bessel_k0_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_scaled_modified_bessel_k1_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_shifted_chebyshev_polynomial_w_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_sqrt_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_squeeze_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_sum_to_size_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_svd_lowrank_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_tanh_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_tensor_split_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_tensordot_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_trapz_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_unbind_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_unsqueeze_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_vdot_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_where_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_where_cpu_int64, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values___getitem___cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_aminmax_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_as_strided_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_as_strided_partial_views_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_atanh_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_atleast_3d_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_bitwise_xor_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_chalf_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_clamp_min_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_cos_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_empty_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_equal_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_expand_as_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_expand_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_eye_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_fft_ihfft_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_fft_irfft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_index_fill_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_log1p_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_logit_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_masked_fill_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_masked_sum_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_minimum_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_nn_functional_cosine_embedding_loss_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_nn_functional_unfold_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_scatter_reduce_amax_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_select_scatter_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_sgn_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_slice_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_bessel_j1_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_chebyshev_polynomial_t_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_modified_bessel_k1_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_stack_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_tensor_split_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_unsafe_chunk_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_view_cpu_bool, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___rdiv___cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___rpow___cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___rxor___cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_addbmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_addmv_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_addmv_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_addr_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_addr_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_any_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_arange_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_argmax_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_atleast_1d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_atleast_1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_atleast_2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_atleast_3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_atleast_3d_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_baddbmm_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_bernoulli_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_bucketize_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cdouble_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_chalf_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_chalf_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_chunk_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_column_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_corrcoef_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_count_nonzero_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_count_nonzero_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cross_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diag_embed_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diagonal_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_div_no_rounding_mode_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_einsum_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_empty_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_empty_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_empty_permuted_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_empty_strided_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_eq_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_erf_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_erfinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_expand_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_fft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_fftn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_ifftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_ifftshift_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_flatten_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_flatten_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_flip_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_float_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fmod_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_gradient_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_grid_sampler_3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_i0_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_fill_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_put_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_put_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_reduce_prod_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_int_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_isin_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_isnan_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_isnan_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_jiterator_unary_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_le_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_cholesky_ex_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_cholesky_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_diagonal_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_eig_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_lu_factor_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_matrix_power_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_svd_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linspace_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linspace_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linspace_tensor_overload_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_log_normal_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logaddexp2_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logspace_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logsumexp_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_lu_solve_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_lu_unpack_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_mH_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_mH_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_argmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_cumsum_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_logsumexp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_logsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_normalize_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_normalize_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_select_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_median_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_meshgrid_variadic_tensors_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_min_reduction_with_dim_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_minimum_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_movedim_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_mv_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_mvlgamma_mvlgamma_p_1_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nan_to_num_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nanmedian_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nextafter_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_batch_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_channel_shuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_conv1d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_conv2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_conv_transpose1d_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_conv_transpose3d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_feature_alpha_dropout_without_train_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_hardsigmoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_max_pool2d_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_mish_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pad_replicate_negative_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pairwise_distance_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pixel_shuffle_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pixel_shuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pixel_unshuffle_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pixel_unshuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_relu_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_smooth_l1_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_threshold_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nonzero_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_ones_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_ones_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_pca_lowrank_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_permute_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_positive_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_pow_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_prod_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_qr_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_rand_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_randint_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_randn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_randn_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_ravel_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_real_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_real_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_repeat_interleave_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_reshape_as_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_reshape_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_resolve_neg_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_roll_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_rot90_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_rot90_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_round_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_rsqrt_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sigmoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_signal_windows_general_hamming_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_signal_windows_kaiser_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_slice_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_bessel_y0_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_i1_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_log_ndtr_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_modified_bessel_i0_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_squeeze_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_take_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_to_sparse_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unfold_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unsafe_split_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_var_mean_unbiased_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_view_as_complex_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_view_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_view_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_where_cpu_complex64, test/test_ops.py::TestCommonCPU::test_numpy_ref_addbmm_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_argwhere_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_clone_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_diag_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_flatten_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_nn_functional_mse_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_nn_functional_pairwise_distance_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_nn_functional_rms_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_roll_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_signal_windows_general_hamming_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_tile_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_triu_indices_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_unbind_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_unbind_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_view_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_out___rand___cpu_int64, test/test_ops.py::TestCommonCPU::test_out___rmatmul___cpu_float32, test/test_ops.py::TestCommonCPU::test_out___rmod___cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_abs_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_as_strided_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_atleast_2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_bitwise_right_shift_cpu_int64, test/test_ops.py::TestCommonCPU::test_out__refs_cat_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_contiguous_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_cosh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_count_nonzero_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_deg2rad_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_expand_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_eye_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fft_fft_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fft_ifftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_flatten_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_gcd_cpu_int64, test/test_ops.py::TestCommonCPU::test_out__refs_ge_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_geometric_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_heaviside_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_index_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_index_select_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_isclose_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_isnan_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_isposinf_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_lcm_cpu_int64, test/test_ops.py::TestCommonCPU::test_out__refs_lgamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_linalg_diagonal_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_ne_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_new_empty_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_dropout_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_gelu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_nll_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_special_bessel_j1_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_special_i0e_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_special_i1e_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_special_multigammaln_mvlgamma_p_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_squeeze_multiple_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_trunc_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_unbind_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_vsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__segment_reduce_offsets_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_addcmul_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_asinh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_atanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_atleast_3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_bincount_cpu_int64, test/test_ops.py::TestCommonCPU::test_out_bool_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_cfloat_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_cholesky_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_clamp_max_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_corrcoef_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_cosh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_count_nonzero_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_cummin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_cumulative_trapezoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_diag_embed_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_div_floor_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_dsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_dstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_einsum_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_empty_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_empty_permuted_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_expand_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_exponential_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_fft_fftshift_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_fft_hfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_fft_ihfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_frexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_gcd_cpu_int64, test/test_ops.py::TestCommonCPU::test_out_ge_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_heaviside_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_i0_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_index_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_integral_dtype__refs_sum_cpu_int16, test/test_ops.py::TestCommonCPU::test_out_isposinf_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_eigvals_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_matrix_power_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_svdvals_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_logical_xor_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_logsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_long_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_lt_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_masked_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_masked_logsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_masked_normalize_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_masked_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_max_pool2d_with_indices_backward_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_max_reduction_no_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_min_reduction_no_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_msort_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_ne_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_new_empty_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nextafter_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_alpha_dropout_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_binary_cross_entropy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_gelu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_max_unpool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_mish_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_mse_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_pca_lowrank_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_permute_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_qr_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_repeat_interleave_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error__native_batch_norm_legit_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_acosh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_asin_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_atanh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_bernoulli_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_cat_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_cholesky_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_clamp_min_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_conj_physical_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_cumprod_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_exp2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_rfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_full_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_hypot_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_inner_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_kthvalue_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_cond_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_eigh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_householder_product_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_householder_product_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linspace_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_logspace_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_logsumexp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_matmul_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_mv_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_nanquantile_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_ones_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_polygamma_polygamma_n_0_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_polygamma_polygamma_n_1_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_polygamma_polygamma_n_2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_polygamma_polygamma_n_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_round_decimals_0_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_sin_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_sinc_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_sinc_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_sinh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_sparse_sampled_addmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_special_ndtr_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_square_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_triangular_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_resolve_neg_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_round_decimals_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_select_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_slice_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_sort_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_legendre_polynomial_p_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_ndtri_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_scaled_modified_bessel_k0_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_sqrt_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_square_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_squeeze_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_view_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_warning___getitem___cpu, test/test_ops.py::TestCommonCPU::test_out_warning___radd___cpu, test/test_ops.py::TestCommonCPU::test_out_warning___rdiv___cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs__conversions_short_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_arange_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_as_strided_partial_views_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_as_strided_scatter_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_atleast_1d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_bitwise_xor_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_block_diag_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_column_stack_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_cumsum_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_diagonal_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_dsplit_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_empty_strided_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_eq_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_erf_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_erfinv_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_expand_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_eye_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fft_fft2_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fmax_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_frexp_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_gcd_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_imag_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_log2_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_logical_and_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_logspace_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_ne_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_channel_shuffle_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_hardshrink_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_hardtanh_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_l1_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_selu_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_renorm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_rsqrt_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_special_multigammaln_mvlgamma_p_3_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_special_ndtr_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_tan_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_tanh_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_triu_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_true_divide_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_var_mean_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_view_as_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_view_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_vstack_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__upsample_bilinear2d_aa_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_add_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_angle_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_asin_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_baddbmm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_bmm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_cat_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_cdist_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_cholesky_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_clamp_max_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_clone_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_cumulative_trapezoid_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_diagflat_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_double_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_expand_as_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fft_irfftn_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fft_rfft2_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_gather_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_ge_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_index_reduce_prod_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_istft_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_cross_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_det_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_diagonal_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_lu_factor_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_pinv_hermitian_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_slogdet_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_logaddexp_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_logical_or_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_long_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_mH_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_masked_mean_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_masked_scatter_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_masked_select_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_neg_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_adaptive_max_pool1d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_adaptive_max_pool3d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_batch_norm_without_cudnn_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_conv_transpose2d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_embedding_bag_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_feature_alpha_dropout_without_train_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_fractional_max_pool3d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_hardshrink_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_hinge_embedding_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_instance_norm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_pad_circular_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_rrelu_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_softmin_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_unfold_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_normal_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_put_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_qr_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_real_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_signal_windows_general_cosine_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_sin_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_chebyshev_polynomial_t_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_chebyshev_polynomial_u_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_log_ndtr_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_shifted_chebyshev_polynomial_u_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_shifted_chebyshev_polynomial_v_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_trace_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_unsafe_chunk_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_view_as_complex_cpu, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_acos_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_acosh_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_asin_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_asinh_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_atan_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_atan_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_copysign_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_cos_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_cosh_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_deg2rad_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_deg2rad_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_digamma_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_erfc_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_erfinv_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_erfinv_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_expm1_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_float_power_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_float_power_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_logit_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_masked_std_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_masked_std_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_mvlgamma_mvlgamma_p_3_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_0_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_2_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_2_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_reciprocal_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_reciprocal_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sinc_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_v_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_v_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_hermite_polynomial_he_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_laguerre_polynomial_l_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_legendre_polynomial_p_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_shifted_chebyshev_polynomial_u_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_shifted_chebyshev_polynomial_v_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_zeta_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_zeta_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sqrt_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sqrt_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_tanh_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_true_divide_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_xlogy_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_xlogy_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_xlogy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_T_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_T_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_T_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_T_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_T_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bfloat16_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bfloat16_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bool_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_byte_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_byte_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cdouble_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cfloat_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_char_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_char_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_double_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_double_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_float_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_half_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_half_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_int_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_int_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_int_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_short_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_short_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_abs_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acos_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addcdiv_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addcmul_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_alias_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_all_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_allclose_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_amax_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_amax_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_arange_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_arange_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_partial_views_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_partial_views_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_partial_views_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_scatter_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_scatter_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_scatter_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asin_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asinh_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atanh_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_1d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_3d_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_and_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_not_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_right_shift_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_block_diag_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_block_diag_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_block_diag_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_tensors_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_to_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_to_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_to_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cat_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cat_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cauchy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cauchy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ceil_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_chunk_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_chunk_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_max_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_max_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_min_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clone_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clone_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clone_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clone_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_column_stack_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_physical_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_contiguous_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_contiguous_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_contiguous_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_copysign_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_copysign_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_copysign_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_count_nonzero_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumsum_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_deg2rad_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_scatter_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_trunc_rounding_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dot_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dot_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dsplit_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dsplit_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_like_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_strided_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_strided_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eq_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erf_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erfinv_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expm1_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eye_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fft2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fft2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fft_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fftn_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fftn_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fftshift_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfft_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfftn_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifft2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftshift_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftshift_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ihfft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ihfft2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ihfft2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ihfft_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ihfft_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ihfft_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfft_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfft_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfftn_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfft_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfftn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfftn_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfftn_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flip_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flip_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fliplr_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fliplr_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flipud_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_float_power_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_floor_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_floor_divide_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_floor_divide_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmax_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmax_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmin_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_gcd_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ge_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_geometric_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hsplit_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hsplit_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_i0_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_add_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_fill_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_fill_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_fill_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_select_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_select_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_select_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isclose_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isclose_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isinf_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isnan_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isposinf_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isreal_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isreal_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isreal_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isreal_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_item_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_le_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_le_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_le_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lerp_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lgamma_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_cross_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_svdvals_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_vecdot_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linspace_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linspace_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linspace_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linspace_tensor_overload_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log10_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_softmax_with_dtype_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_softmax_with_dtype_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_not_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_xor_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logspace_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logspace_tensor_overload_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logspace_tensor_overload_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_masked_fill_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_masked_fill_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_maximum_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_meshgrid_list_of_tensors_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_meshgrid_variadic_tensors_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_minimum_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_minimum_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_mul_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nan_to_num_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ne_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ne_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ne_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ne_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_empty_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_empty_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_empty_strided_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_full_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_ones_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_ones_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_ones_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_ones_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_ones_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_zeros_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_channel_shuffle_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_channel_shuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_gelu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_glu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_hardshrink_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_hardtanh_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_hardtanh_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_layer_norm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_leaky_relu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_log_softmax_with_dtype_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_log_softmax_with_dtype_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_log_softmax_with_dtype_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_margin_ranking_loss_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_margin_ranking_loss_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_mse_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_nll_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pairwise_distance_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_shuffle_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_shuffle_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_relu6_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_smooth_l1_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmin_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softplus_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_threshold_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_triplet_margin_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_triplet_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_triplet_margin_loss_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_norm_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_positive_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_pow_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rad2deg_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rad2deg_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rad2deg_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_real_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_real_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_real_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_renorm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_as_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_roll_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_roll_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rot90_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_round_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_round_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_round_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_round_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsub_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsub_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsub_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_select_scatter_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_select_scatter_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sgn_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sgn_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sgn_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sign_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sign_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_signbit_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sin_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinh_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinh_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_bessel_j1_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_erfcx_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_erfcx_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i0e_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i1e_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_log_softmax_with_dtype_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_logit_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_logit_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_logit_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_1_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_1_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_5_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_5_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_5_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_ndtr_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_xlog1py_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_zeta_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_zeta_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_split_with_sizes_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_split_with_sizes_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sqrt_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_square_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_multiple_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_multiple_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_multiple_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_stack_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_stack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_stack_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_stack_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_stack_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_std_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_std_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sub_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sub_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_to_size_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_to_size_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_to_size_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_take_along_dim_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_take_along_dim_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tan_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tan_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tensor_split_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_to_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tril_indices_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_triu_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_true_divide_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_var_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_as_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_as_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vsplit_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vsplit_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vsplit_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_xlogy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_zeros_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_zeros_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_bitwise_right_shift_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_fft_fft_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_fft_hfft2_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_float_power_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_linalg_cross_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_narrow_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_nn_functional_group_norm_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_pow_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_t_copy_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_T_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bfloat16_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bfloat16_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bool_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bool_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bool_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_byte_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_cdouble_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_cfloat_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_chalf_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_chalf_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_chalf_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_chalf_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_char_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_char_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_double_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_float_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_half_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_half_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_half_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_int_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_int_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_short_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_short_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_abs_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_abs_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_acos_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_acosh_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_acosh_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_add_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addcdiv_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addcdiv_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addcdiv_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addcmul_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addr_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addr_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_alias_copy_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_alias_copy_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_all_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_all_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_all_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_amax_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_amin_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_arange_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_arange_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_arange_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_copy_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_copy_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_partial_views_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_partial_views_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_scatter_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_scatter_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asinh_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asinh_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atan2_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atan2_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atan2_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atan_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atanh_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_1d_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_3d_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_3d_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_3d_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_and_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_left_shift_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_not_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_block_diag_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_block_diag_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bucketize_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cat_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ceil_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_min_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clone_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clone_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_physical_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_physical_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_constant_pad_nd_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_copysign_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cos_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cosh_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cumprod_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cumsum_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cumsum_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_embed_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_embed_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_copy_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_no_rounding_mode_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_no_rounding_mode_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_trunc_rounding_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dot_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dot_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dot_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dsplit_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dstack_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_like_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_strided_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eq_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eq_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_equal_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_equal_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erf_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erf_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erfinv_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erfinv_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_exp_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_exp_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_as_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_copy_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_copy_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expm1_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expm1_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eye_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eye_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fft2_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fftn_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fftn_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fftshift_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fftshift_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfft_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifft2_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifft_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifftshift_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ihfft_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ihfft_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ihfft_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ihfftn_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfft2_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfft2_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfftn_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_rfft_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fill_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flatten_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flip_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flip_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flip_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fliplr_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fliplr_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fliplr_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fliplr_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fliplr_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flipud_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flipud_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_float_power_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_float_power_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_floor_divide_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_floor_divide_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_floor_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmax_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmax_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmin_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmod_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_frac_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_frexp_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_gcd_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ge_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hsplit_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hsplit_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hsplit_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hstack_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_i0_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_i0_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_igammac_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_igammac_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_add_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_copy_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_select_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isclose_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isinf_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isinf_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isneginf_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isposinf_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isreal_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isreal_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isreal_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_item_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lerp_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_cross_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_cross_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_cross_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_matrix_norm_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_norm_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_svdvals_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_vector_norm_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linspace_tensor_overload_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linspace_tensor_overload_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log10_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log10_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log10_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log2_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log2_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_softmax_with_dtype_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_softmax_with_dtype_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logaddexp2_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_and_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_and_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_or_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_or_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_or_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_or_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_xor_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_xor_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logspace_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logspace_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logspace_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logspace_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logspace_tensor_overload_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_mean_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_meshgrid_variadic_tensors_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_minimum_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_movedim_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_mul_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nan_to_num_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nan_to_num_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ne_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ne_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ne_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ne_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_neg_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_neg_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_neg_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_strided_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_full_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_full_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_ones_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_zeros_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_zeros_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_zeros_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_channel_shuffle_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_elu_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_glu_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_log_softmax_with_dtype_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_margin_ranking_loss_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_mse_loss_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pairwise_distance_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_unshuffle_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_poisson_nll_loss_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_relu6_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_relu_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softmax_with_dtype_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softmin_with_dtype_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softmin_with_dtype_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softmin_with_dtype_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softshrink_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softshrink_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_tanhshrink_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_threshold_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_triplet_margin_loss_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_triplet_margin_loss_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_triplet_margin_loss_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_normal__in_place_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_permute_copy_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_permute_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_pow_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_pow_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_pow_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_pow_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rad2deg_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ravel_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_real_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reciprocal_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_remainder_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_repeat_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reshape_as_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reshape_as_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reshape_as_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_roll_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rot90_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rot90_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rot90_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_round_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_round_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_round_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_round_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rsqrt_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rsub_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rsub_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_select_scatter_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_select_scatter_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_select_scatter_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sgn_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sigmoid_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sign_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_signbit_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sin_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinc_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinh_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinh_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_softmax_with_dtype_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_softmax_with_dtype_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_bessel_j1_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_bessel_j1_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_entr_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i1_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i1e_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i1e_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_log_ndtr_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_log_softmax_with_dtype_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_logit_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_logit_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_logit_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_logit_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_1_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_1_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_3_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_3_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_ndtr_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_ndtri_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_softmax_with_dtype_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_zeta_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sqrt_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_copy_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_copy_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_copy_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_multiple_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_stack_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_stack_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_std_mean_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sum_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sum_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_t_copy_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_t_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_take_along_dim_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tan_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tanh_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tensor_split_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tensor_split_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tensor_split_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tensor_split_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tensor_split_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tensor_split_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_to_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_to_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_trace_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_trace_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_copy_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_copy_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_copy_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tril_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_triu_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_triu_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_triu_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_triu_indices_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_true_divide_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_trunc_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_copy_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_copy_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unflatten_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_copy_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_var_mean_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vdot_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_as_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_as_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_copy_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vstack_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_where_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_xlogy_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_xlogy_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_xlogy_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_T_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bool_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cdouble_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cdouble_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cdouble_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cfloat_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_chalf_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_complex_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_double_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_float_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_half_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_half_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_int_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_int_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_int_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_int_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_int_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_acos_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_acos_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_acos_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_acosh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_acosh_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addcdiv_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addcdiv_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addcmul_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addr_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addr_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_alias_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_all_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_allclose_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_allclose_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_amin_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_amin_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_any_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_arange_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_partial_views_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_asin_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_asin_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_asinh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_asinh_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_asinh_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atan2_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atan2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atan2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atan2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atan2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atan_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atanh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atanh_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_1d_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_1d_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_2d_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_2d_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_3d_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_3d_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_3d_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_left_shift_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_block_diag_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_tensors_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_to_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cauchy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_chunk_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_chunk_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_chunk_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clone_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_physical_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_constant_pad_nd_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_contiguous_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_copysign_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_copysign_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_copysign_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cos_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_count_nonzero_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cumprod_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cumsum_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_deg2rad_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_deg2rad_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_scatter_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_digamma_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_digamma_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_no_rounding_mode_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_no_rounding_mode_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dot_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dot_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dsplit_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dsplit_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dstack_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_like_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_strided_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_strided_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eq_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eq_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_equal_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_equal_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erf_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erfc_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_as_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_as_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expm1_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fft_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fftn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fftn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fftshift_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fftshift_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fftshift_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fftshift_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfft_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifft2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifftn_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifftshift_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifftshift_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifftshift_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfft2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfft_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfft_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfftn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfftn_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_rfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_rfft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_rfft_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_rfft_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fill_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fill_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flatten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fliplr_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flipud_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flipud_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flipud_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_float_power_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_float_power_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_floor_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_floor_divide_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmin_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmod_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_gcd_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ge_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ge_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_heaviside_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hsplit_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hsplit_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hypot_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hypot_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_i0_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_igamma_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_igamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_igammac_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_fill_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_fill_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_fill_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_fill_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isclose_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isfinite_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isfinite_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isnan_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isneginf_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isposinf_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_item_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lgamma_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_cross_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_svdvals_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log10_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log10_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log10_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log1p_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_and_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_not_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_xor_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_xor_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_tensor_overload_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logsumexp_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logsumexp_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logsumexp_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logsumexp_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lt_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_masked_fill_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_masked_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_masked_fill_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_masked_fill_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_maximum_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_list_of_tensors_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_minimum_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_minimum_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_movedim_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_movedim_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_mul_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_mul_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nan_to_num_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ne_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ne_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ne_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_strided_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_strided_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_ones_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nextafter_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_celu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_dropout_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_group_norm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_hardtanh_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_huber_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_l1_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_log_softmax_with_dtype_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_log_softmax_with_dtype_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_margin_ranking_loss_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_mse_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_nll_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pairwise_distance_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pairwise_distance_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pairwise_distance_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pdist_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pixel_unshuffle_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pixel_unshuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_relu6_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmin_with_dtype_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmin_with_dtype_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_threshold_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_normal_number_mean_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ones_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ones_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_positive_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_pow_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_pow_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_pow_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_prod_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rad2deg_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rad2deg_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ravel_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_real_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_real_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_remainder_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_remainder_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_repeat_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_as_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rsqrt_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rsqrt_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sigmoid_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sigmoid_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sigmoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sigmoid_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_signbit_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sin_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_softmax_with_dtype_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_softmax_with_dtype_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_softmax_with_dtype_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i0e_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i0e_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i1_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i1_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i1_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i1e_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i1e_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_log_ndtr_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_log_ndtr_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_logit_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_logit_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_1_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_1_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_1_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_1_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_3_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_ndtr_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_softmax_with_dtype_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_softmax_with_dtype_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_softmax_with_dtype_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_spherical_bessel_j0_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_xlog1py_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_zeta_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_zeta_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_zeta_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sqrt_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sqrt_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_square_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_square_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_multiple_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_stack_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_stft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sub_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sub_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sub_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_to_size_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_take_along_dim_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_take_along_dim_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tan_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tanh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tensor_split_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tensor_split_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tensor_split_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tensor_split_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tensor_split_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tril_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tril_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_trunc_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unflatten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unsqueeze_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unsqueeze_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unsqueeze_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_var_mean_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_as_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_as_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_as_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vsplit_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_where_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_where_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_xlogy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_xlogy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_xlogy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_zeros_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_zeros_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_bfloat16_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_bfloat16_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_bool_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_byte_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_byte_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_cdouble_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_cdouble_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_cdouble_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_cfloat_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_chalf_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_chalf_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_char_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_char_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_complex_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_double_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_double_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_float_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_float_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_float_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_half_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_polar_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_short_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_short_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_abs_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_abs_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_abs_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acos_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acosh_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addcmul_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addr_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_alias_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_all_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_allclose_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_allclose_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_amax_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_amin_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_amin_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_any_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_any_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_arange_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_arange_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_partial_views_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_partial_views_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asin_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asinh_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asinh_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atan2_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atan2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atan_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atanh_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_1d_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_1d_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_1d_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_3d_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_and_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_or_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_right_shift_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_right_shift_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_block_diag_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_block_diag_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_block_diag_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_broadcast_shapes_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_broadcast_tensors_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_broadcast_tensors_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_broadcast_tensors_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_broadcast_to_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_broadcast_to_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_broadcast_to_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bucketize_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cat_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cat_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cat_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cat_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cauchy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ceil_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_chunk_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_max_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_min_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_min_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_min_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clone_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clone_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_physical_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_physical_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_physical_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_physical_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_contiguous_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_copysign_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cos_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cosh_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cosh_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_count_nonzero_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cumprod_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cumsum_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cumsum_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diag_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diag_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diag_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diag_embed_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_scatter_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_digamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_digamma_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_floor_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_no_rounding_mode_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_trunc_rounding_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_trunc_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dot_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dstack_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dstack_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_like_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_like_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_strided_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_strided_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_strided_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eq_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eq_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_equal_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erf_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erf_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erf_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erfc_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erfc_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erfc_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erfinv_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erfinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp2_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_as_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expm1_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fft_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fft_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fft_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fft_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fft_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fftn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fftn_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fftshift_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fftshift_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfft_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfftn_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfftn_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfftn_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifft2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifft2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifft_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifft_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifft_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifftn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifftshift_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifftshift_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfft2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfft_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfft_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfftn_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_rfft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_rfft2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_rfft_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fill_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fill_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flatten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flip_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flip_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fliplr_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fliplr_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flipud_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmax_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmin_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmod_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ge_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_geometric_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_gt_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_gt_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_heaviside_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hsplit_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hstack_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hypot_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_i0_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_igamma_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_add_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_fill_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_select_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isclose_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isclose_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isfinite_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isnan_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isnan_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isneginf_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isposinf_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isreal_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isreal_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isreal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lcm_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lcm_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_le_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_le_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lerp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lerp_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lgamma_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lgamma_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_cross_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_diagonal_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_matrix_norm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_matrix_norm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_svd_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_vecdot_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_vecdot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_vecdot_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_vector_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_vector_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linspace_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log10_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log10_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log10_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_softmax_with_dtype_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_softmax_with_dtype_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logaddexp_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logaddexp_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_and_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_not_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_or_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_or_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_xor_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_xor_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logspace_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lt_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_masked_fill_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_maximum_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_maximum_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_maximum_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_mean_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_meshgrid_list_of_tensors_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_minimum_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_minimum_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_movedim_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_movedim_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_mul_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nan_to_num_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_narrow_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_narrow_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_narrow_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_narrow_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_native_layer_norm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ne_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_strided_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_strided_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_strided_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_full_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_ones_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_zeros_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_zeros_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_channel_shuffle_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_gelu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_hardtanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_hardtanh_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_l1_loss_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_layer_norm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_log_softmax_with_dtype_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_margin_ranking_loss_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_margin_ranking_loss_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_margin_ranking_loss_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_mish_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_mse_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_nll_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_nll_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pairwise_distance_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pairwise_distance_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pixel_shuffle_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pixel_shuffle_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pixel_shuffle_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pixel_unshuffle_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_relu6_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_relu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_relu_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmax_with_dtype_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_threshold_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_threshold_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_normal_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ones_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_positive_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_pow_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_prod_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_randn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ravel_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ravel_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ravel_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reciprocal_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_remainder_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_repeat_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_as_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_as_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rot90_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rot90_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_round_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rsqrt_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rsqrt_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rsub_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_select_scatter_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sigmoid_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sigmoid_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sin_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinc_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_softmax_with_dtype_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_softmax_with_dtype_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_bessel_j1_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_entr_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_entr_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_entr_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_erfcx_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_erfcx_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i0e_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i0e_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_log_ndtr_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_logit_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_logit_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_logit_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_logit_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_1_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_5_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_ndtr_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_softmax_with_dtype_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_xlog1py_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_zeta_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_zeta_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sqrt_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_square_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_std_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sum_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sum_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sum_to_size_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sum_to_size_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sum_to_size_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_take_along_dim_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_take_along_dim_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_take_along_dim_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tanh_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tensor_split_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_true_divide_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_true_divide_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unbind_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unbind_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unbind_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unbind_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unbind_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unflatten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unsqueeze_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unsqueeze_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unsqueeze_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_as_complex_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_as_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_as_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_as_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vsplit_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vsplit_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vstack_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_where_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_where_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_where_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_xlogy_cpu_int16, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager__native_batch_norm_legit_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager__softmax_backward_data_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_addcmul_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_allclose_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_any_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_block_diag_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_chalf_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cholesky_inverse_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cholesky_inverse_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_clone_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_conj_physical_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_corrcoef_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cumprod_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cumsum_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_diag_embed_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_double_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_empty_permuted_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_erf_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_exp2_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_ihfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_irfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_floor_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_frac_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_frexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_full_like_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_ge_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_hsplit_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_index_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_isclose_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_jiterator_2inputs_2outputs_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_ldexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_cholesky_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_cross_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_diagonal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_eigh_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_householder_product_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_lstsq_grad_oriented_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_matrix_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_norm_subgradients_at_zero_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_pinv_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_pinv_hermitian_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_slogdet_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_solve_ex_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_logaddexp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_logdet_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_logical_or_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_logical_or_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_logspace_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_logspace_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_cumprod_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_logsumexp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_normalize_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_normalize_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_max_reduction_with_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nansum_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_new_empty_strided_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_new_empty_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_cosine_similarity_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_glu_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_group_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_hardsigmoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_hardtanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_max_unpool1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_max_unpool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_max_unpool3d_grad_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_silu_complex_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_softplus_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_tanhshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_outer_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_permute_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_positive_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_positive_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_pow_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_put_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_ravel_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_ravel_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_real_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_repeat_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_repeat_interleave_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_resize_as__cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_resolve_neg_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_round_decimals_neg_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_rsqrt_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_scatter_reduce_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_signal_windows_bartlett_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_sinc_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_modified_bessel_i1_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_split_list_args_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_squeeze_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_std_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_std_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_tanh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_tril_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_triu_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_unflatten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_unsqueeze_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_view_as_complex_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_view_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_zeros_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_acosh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_addr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_as_strided_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_atanh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_atleast_3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_bmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_cat_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_clamp_min_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_corrcoef_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_diagonal_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fft_ihfftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fft_irfft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_lgamma_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_inv_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_tensorinv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_mH_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_amin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_log_softmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_softmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_sum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_median_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_meshgrid_list_of_tensors_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_min_binary_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_minimum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_conv3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_cosine_embedding_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_interpolate_nearest_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_logsigmoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_norm_inf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_normal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_polygamma_polygamma_n_1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_ravel_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_round_decimals_0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_scatter_reduce_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_sign_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_slice_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_special_i0e_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_special_ndtri_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_split_with_sizes_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_sub_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_sum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_svd_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_tile_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_unflatten_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_var_mean_unbiased_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_vdot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_H_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input___radd___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input___rdiv___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input__segment_reduce_offsets_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_addmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_any_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_bool_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_cat_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_conj_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_cos_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_cosh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_cummin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_diag_embed_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_diagonal_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_empty_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_empty_strided_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_erf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_erfc_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_eye_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fft_ifft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fft_ifftshift_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_hash_tensor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_hstack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_isposinf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_ldexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_cholesky_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_lstsq_grad_oriented_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_matrix_rank_hermitian_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_multi_dot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_log_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_logaddexp2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_lu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_lu_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_lu_unpack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_masked_logaddexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nansum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_cosine_embedding_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_dropout3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_fractional_max_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_hardtanh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_interpolate_bilinear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_interpolate_nearest_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_layer_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_max_unpool1d_grad_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_max_unpool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_max_unpool3d_grad_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_multi_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_pairwise_distance_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nonzero_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_put_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_qr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_randn_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_reshape_as_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_resize__cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_resolve_neg_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_scalar_tensor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_signal_windows_exponential_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_sinh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_airy_ai_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_log_ndtr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_modified_bessel_i0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_split_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_squeeze_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_sum_to_size_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_take_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_tensor_split_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_topk_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_unflatten_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_unique_consecutive_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_addcmul_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_amax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_angle_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_atan2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_cdouble_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_chunk_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_column_stack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fft_fftshift_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fft_ifft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fft_ifft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fft_rfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fft_rfft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_float_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_floor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_gather_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_geqrf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_hypot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_index_reduce_amax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_item_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_cholesky_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_vecdot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_log_normal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_logaddexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_masked_amax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_masked_amin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_masked_sum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_min_reduction_with_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_neg_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_new_zeros_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_avg_pool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_avg_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_bilinear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_conv_transpose1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_fractional_max_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_hardswish_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_mish_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_mse_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_polygamma_polygamma_n_1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_polygamma_polygamma_n_4_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_quantile_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_roll_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_round_decimals_0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_scatter_reduce_amax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_signal_windows_exponential_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_signal_windows_nuttall_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_signbit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_softmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_sort_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_i1e_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_legendre_polynomial_p_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_modified_bessel_k0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_spherical_bessel_j0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_split_list_args_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_svd_lowrank_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_trace_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_unbind_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_unique_consecutive_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_xlogy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator___rmod___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator__native_batch_norm_legit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_alias_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_amax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_aminmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_angle_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_as_strided_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_bernoulli_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_cdouble_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_ceil_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_clone_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_cummax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_cumsum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_dstack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_empty_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_eq_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_exponential_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_float_power_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_floor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_index_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_index_select_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_int_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_isfinite_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_isposinf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_item_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_lerp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_cholesky_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_eigvals_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_lu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_pinv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_vander_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_vecdot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linspace_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_log_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_softmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_softmin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_max_binary_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_median_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_mul_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_narrow_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_neg_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_avg_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_batch_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_celu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_embedding_bag_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_fractional_max_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_hardsigmoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_interpolate_bilinear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_interpolate_linear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_leaky_relu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_max_unpool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_max_unpool3d_grad_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_pad_replicate_negative_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_rrelu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_smooth_l1_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_unfold_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_upsample_bilinear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nonzero_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_norm_inf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_outer_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_polygamma_polygamma_n_4_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_quantile_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_roll_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_scatter_reduce_amin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_sign_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_sinc_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_entr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_erfcx_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_zeta_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_std_mean_unbiased_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_tile_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_var_mean_unbiased_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_xlogy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_H_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay___rdiv___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_amax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_arange_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_as_strided_partial_views_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_asin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_broadcast_tensors_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_cfloat_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_char_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_cholesky_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_column_stack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_conj_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_cummax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_deg2rad_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_div_floor_rounding_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_equal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_exp2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_expand_as_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fft_ihfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_float_power_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_hypot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_index_reduce_amax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_index_select_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_isreal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_jiterator_2inputs_2outputs_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_lgamma_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_inv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_ldl_factor_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_lu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_matrix_power_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_norm_subgradients_at_zero_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_svdvals_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_log2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_logaddexp2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_logspace_tensor_overload_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_matrix_exp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nansum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_neg_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_batch_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_conv_transpose2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_cosine_similarity_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_ctc_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_interpolate_linear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_normalize_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_pad_replicate_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_selu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_ones_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_ormqr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_permute_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_polar_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_polygamma_polygamma_n_2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_round_decimals_0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_rsqrt_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_scalar_tensor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_scatter_add_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_scatter_reduce_amax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_sign_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_signal_windows_cosine_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_slice_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_sort_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_entr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_i1e_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_modified_bessel_k0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_ndtri_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_tensordot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_tile_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_true_divide_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_unfold_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_vsplit_cpu_float32, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs__conversions_cfloat_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_add_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_addr_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_asin_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_asinh_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_broadcast_to_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_clone_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_cumsum_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_diag_embed_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_diagonal_scatter_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_dstack_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_expand_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_hsplit_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_isclose_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_isnan_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_item_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_logaddexp_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_narrow_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_nn_functional_tanhshrink_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_ones_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_real_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_reshape_as_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_rsqrt_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_rsub_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_split_with_sizes_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_squeeze_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_stack_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_tanh_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_trace_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_unbind_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_addmm_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_char_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_clone_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_diag_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_diagonal_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_diff_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_empty_like_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_eq_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_fft_irfft2_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_index_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_isfinite_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_isinf_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_det_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_diagonal_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_ldl_solve_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_lu_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_matrix_norm_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_matrix_power_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_logsumexp_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_mH_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_new_zeros_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_feature_alpha_dropout_without_train_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_rms_norm_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_ormqr_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_outer_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_pinverse_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_renorm_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_resolve_neg_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_roll_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_select_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_t_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_view_as_real_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_view_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_vstack_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_T_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_cat_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_column_stack_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_contiguous_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_diagonal_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_dsplit_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_empty_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_expand_as_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_fliplr_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_index_fill_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_isreal_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_log1p_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_logsumexp_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_movedim_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_new_ones_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_positive_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_ravel_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_sigmoid_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_sin_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_special_log_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_special_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_std_mean_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_stft_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_t_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_tril_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_unfold_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_add_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_as_strided_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_cartesian_prod_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_clone_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_diag_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_diff_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_dot_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_empty_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_fft_fftn_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_imag_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_index_add_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_isnan_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_jiterator_binary_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_inv_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_norm_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_solve_triangular_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_svdvals_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_logical_and_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_logical_not_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_logical_or_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_logspace_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_long_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_mT_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_masked_prod_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nn_functional_linear_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nn_functional_pad_constant_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nn_functional_pad_replicate_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nn_functional_pairwise_distance_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nn_functional_pixel_unshuffle_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nn_functional_softsign_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nn_functional_tanhshrink_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_outer_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_put_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_reciprocal_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_renorm_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_resolve_conj_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_scalar_tensor_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_sparse_sampled_addmm_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_stft_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_tanh_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_trace_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_unfold_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_unsafe_split_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_unsqueeze_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_where_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_view___rpow___cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs__conversions_bfloat16_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs__conversions_chalf_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_alias_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_atleast_1d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_clamp_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_count_nonzero_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_dstack_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_empty_like_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_exp_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_expand_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_expand_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fliplr_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_hypot_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_isneginf_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_item_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_linalg_vector_norm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_linspace_tensor_overload_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_log_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_logical_not_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_elu_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_group_norm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_smooth_l1_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_normal_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_ones_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_permute_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_repeat_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_softmax_with_dtype_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_special_softmax_with_dtype_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_squeeze_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_trunc_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_vdot_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__upsample_bilinear2d_aa_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_add_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_addbmm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_as_strided_partial_views_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_atan2_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_baddbmm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_bool_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_cholesky_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_cholesky_inverse_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_clamp_min_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_clone_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_contiguous_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_corrcoef_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_cosh_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_cummax_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_digamma_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_div_no_rounding_mode_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_double_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_exp_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_expand_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fft_fft_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fill_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_frexp_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_ge_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_half_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_index_select_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_jiterator_binary_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_cond_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_norm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_vector_norm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linspace_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_log_softmax_with_dtype_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_logcumsumexp_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_lt_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_mT_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_logaddexp_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_median_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_norm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_scatter_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_max_reduction_with_dim_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_maximum_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_mul_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nan_to_num_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nansum_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_avg_pool1d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_avg_pool3d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_conv3d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_conv_transpose1d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_hardsigmoid_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_interpolate_bilinear_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_l1_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_leaky_relu_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_max_unpool1d_grad_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_normalize_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_pad_replicate_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_pixel_unshuffle_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_prelu_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_softshrink_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_upsample_bilinear_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nonzero_static_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_polygamma_polygamma_n_3_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_pow_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_randint_like_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_ravel_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_rot90_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_round_decimals_3_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_scatter_add_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_select_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_signal_windows_blackman_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_signal_windows_kaiser_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_sin_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_softmax_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_i1_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_modified_bessel_k0_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_squeeze_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_squeeze_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_std_mean_unbiased_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_tensordot_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_topk_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_transpose_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_trapezoid_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_var_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_where_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_zeros_cpu_float64, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_addr_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_amax_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_amin_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_any_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_as_strided_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_as_strided_scatter_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_bitwise_xor__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_clamp_max_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_erfc_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_exp__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_expm1__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_float_power__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_float_power_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_gcd__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_i0__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_igamma__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_index_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_is_complex_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_le__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_log1p_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_log2__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_log_softmax_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_logical_and__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_logical_not__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_logical_or__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_new_empty_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nextafter__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_elu_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_gelu_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_margin_ranking_loss_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_pow_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_rad2deg_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_ravel_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_reciprocal_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_remainder__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_sign__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_signbit_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_special_entr_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_trunc__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_unfold_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_zeros_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_zeros_like_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_T_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs__conversions_complex_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs__conversions_long_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_abs_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_alias_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_asin_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_bitwise_not_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_bitwise_or_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_ceil__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_copysign__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_count_nonzero_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_diagonal_scatter_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_empty_like_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_exp2__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fft_fft_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fft_ifftn_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_floor_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fmax_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fmod_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_hstack_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_index_fill__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_isnan_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_item_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_log10_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_log1p_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_logaddexp_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_movedim_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nan_to_num_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_neg__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_channel_shuffle_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_mish_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_threshold__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_permute_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_real_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_remainder_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_repeat_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_rsqrt__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_scalar_tensor_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_sigmoid_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_sin_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_special_bessel_j0_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_special_log_ndtr_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_sum_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_trunc_divide_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_vdot_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_view_as_complex_cpu, test/test_ops.py::TestFakeTensorCPU::test_fake__chunk_cat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake__native_batch_norm_legit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake__segment_reduce_offsets_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake__upsample_bilinear2d_aa_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_addmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_addr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_all_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_amax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_atan2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_addbmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_all_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_amin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_angle_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_atleast_1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_atleast_3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_baddbmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_bfloat16_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_bincount_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_bitwise_left_shift_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_bitwise_right_shift_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_cat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_cfloat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_clamp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_clamp_min_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_combinations_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_constant_pad_nd_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_diag_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_eq_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_expand_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fft_hfftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fft_rfft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fliplr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_gradient_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_isinf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_le_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_householder_product_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_ldl_factor_ex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_pinv_hermitian_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_svd_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_log_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_logical_not_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_logspace_tensor_overload_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_mH_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_prod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_matrix_exp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_median_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_mode_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nansum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_neg_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_alpha_dropout_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_avg_pool1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_binary_cross_entropy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_cosine_embedding_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_ctc_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_embedding_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_interpolate_area_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_logsigmoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_relu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_softmin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_normal_in_place_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_ormqr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_outer_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_polygamma_polygamma_n_3_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_put_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_scalar_tensor_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_sigmoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_signal_windows_exponential_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_signbit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_airy_ai_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_modified_bessel_i0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_spherical_bessel_j0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_square_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_squeeze_multiple_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_tanh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_to_sparse_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_topk_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_trapz_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_cartesian_prod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_clamp_max_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_copysign_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_cosh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp___rpow___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_alias_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_atanh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_cat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_cumprod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_diag_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_diagonal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_fft_fft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_fft_ihfft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_fliplr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_grid_sampler_2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_norm_subgradients_at_zero_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_svd_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_tensorsolve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_log2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_logaddexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_lu_unpack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_mH_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_masked_cumprod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_masked_softmin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_meshgrid_list_of_tensors_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_minimum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_movedim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_narrow_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_dropout2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_dropout3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_embedding_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_gaussian_nll_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_huber_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_max_pool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_mish_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_pairwise_distance_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_unfold_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_polygamma_polygamma_n_2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_positive_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_round_decimals_0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_rsqrt_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_rsub_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_sinc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_sort_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_std_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_svd_lowrank_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_take_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_transpose_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_true_divide_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_trunc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_unbind_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_var_mean_unbiased_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_view_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_zero__cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp__native_batch_norm_legit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_abs_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_addcdiv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_angle_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_atan_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_atleast_1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_chalf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_chunk_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_dot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_einsum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_fft_ifftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_flatten_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_fliplr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_float_power_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_gather_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_grid_sampler_2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_index_fill_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_index_put_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_inv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_qr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_log_softmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_masked_fill_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_masked_logaddexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_masked_softmin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_matrix_exp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_native_batch_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_bilinear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_conv1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_conv_transpose3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_cross_entropy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_ctc_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_gelu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_max_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_max_unpool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_pdist_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_prelu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_relu6_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_softsign_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_threshold_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_normal_number_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_pca_lowrank_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_positive_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_roll_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_rsqrt_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_softmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_special_i1e_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_special_xlog1py_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_squeeze_multiple_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_std_mean_unbiased_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_std_unbiased_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_sum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_sum_to_size_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_svd_lowrank_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_t_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_triu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_unbind_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_unsafe_chunk_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_unsqueeze_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_xlogy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_div_floor_rounding_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_div_trunc_rounding_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_double_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_empty_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_erf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_histogramdd_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_index_add_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_index_reduce_amin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_index_select_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_inner_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_isfinite_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_isposinf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_item_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_ldexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_householder_product_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_lu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_vander_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_log2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_mT_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_masked_fill_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_masked_softmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_matmul_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_meshgrid_list_of_tensors_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nanmean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nanmedian_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nansum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_native_batch_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_new_empty_strided_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_cosine_similarity_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_dropout3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_glu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_grid_sample_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_instance_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_interpolate_linear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_interpolate_nearest_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_max_unpool1d_grad_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_max_unpool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_relu6_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_soft_margin_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_put_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_qr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_real_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_reshape_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_scatter_reduce_amin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_scatter_reduce_prod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_scatter_reduce_sum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_signal_windows_blackman_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_signal_windows_exponential_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_signal_windows_general_hamming_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_airy_ai_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_bessel_j0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_bessel_y0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_bessel_y1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_i1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_modified_bessel_k0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_modified_bessel_k1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_ndtri_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_sqrt_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_sum_to_size_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_take_along_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_tril_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_unsafe_chunk_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_unsqueeze_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_var_mean_unbiased_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_vdot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_H_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops___rpow___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops___rsub___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops__native_batch_norm_legit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops__segment_reduce_lengths_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops__segment_reduce_offsets_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops__upsample_bilinear2d_aa_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_argsort_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_argwhere_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_asin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_atan_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_atleast_2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_bitwise_and_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_bitwise_xor_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_block_diag_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_complex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_contiguous_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_cumprod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_diff_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_empty_permuted_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_eq_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_equal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_expand_as_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_eye_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_float_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_full_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_ge_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_istft_cpu_complex64, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_cond_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_lu_factor_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_pinv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_vander_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_vector_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_log1p_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_log_softmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_logical_and_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_logical_or_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_long_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_lu_unpack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_mT_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_masked_logsumexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_masked_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_masked_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_masked_softmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_min_reduction_no_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_msort_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nanmedian_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_ne_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_alpha_dropout_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_binary_cross_entropy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_conv3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_elu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_fractional_max_pool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_gaussian_nll_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_gelu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_hardshrink_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_max_unpool3d_grad_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_relu6_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_silu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_triplet_margin_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_upsample_nearest_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_randint_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_reciprocal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_roll_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_scatter_reduce_amax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_scatter_reduce_prod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_signal_windows_kaiser_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_signal_windows_nuttall_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_sparse_mm_reduce_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_scaled_modified_bessel_k0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_std_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_std_mean_unbiased_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_t_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_take_along_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_tensordot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_to_sparse_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_topk_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_transpose_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_unbind_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_var_mean_unbiased_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_zeros_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_zeros_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_arange_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_arange_cpu_float64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_linspace_cpu_float64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_linspace_tensor_overload_cpu_int16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_zeros_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_arange_cpu_float64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_arange_cpu_int16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_full_cpu_complex32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_full_cpu_float16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_full_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_linspace_cpu_complex128, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_logspace_cpu_bfloat16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_logspace_cpu_complex128, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_logspace_cpu_int32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_logspace_cpu_uint8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_logspace_tensor_overload_cpu_complex128, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_ones_cpu_float64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_zeros_cpu_float16, test/test_ops.py::TestTagsCPU::test_tags___ror___cpu_int64, test/test_ops.py::TestTagsCPU::test_tags__refs_T_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs__conversions_byte_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs__conversions_short_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_acosh_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_add_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_as_strided_scatter_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_asinh_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_diag_embed_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fft_fft2_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fft_ifftshift_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fft_rfftn_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_flip_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_floor_divide_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_frexp_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_geometric_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_imag_cpu_complex64, test/test_ops.py::TestTagsCPU::test_tags__refs_isinf_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_lerp_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_lgamma_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_linalg_matrix_norm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_log1p_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_logaddexp2_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_logspace_tensor_overload_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_movedim_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_new_zeros_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nextafter_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_alpha_dropout_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_dropout_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_mse_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_prelu_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_rot90_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_rsqrt_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_sign_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_special_xlog1py_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_squeeze_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_sum_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_t_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_t_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_tanh_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_unbind_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__softmax_backward_data_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_addmv_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_alias_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_atleast_1d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_bitwise_and_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags_bitwise_or_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags_broadcast_to_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_byte_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_cdist_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_combinations_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_constant_pad_nd_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_cumprod_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_digamma_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_erfc_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_exp2_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fft_fft_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fill_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_flatten_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fmax_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_frac_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_frexp_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_histogramdd_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_hstack_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_int_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_isneginf_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_jiterator_4inputs_with_extra_args_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_le_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_cholesky_ex_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_householder_product_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_ldl_factor_ex_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_lu_factor_ex_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_pinv_singular_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_qr_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_logical_or_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_masked_logsumexp_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_masked_normalize_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_masked_softmax_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_min_binary_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_mode_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_movedim_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_multinomial_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nanquantile_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_narrow_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_new_empty_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_new_zeros_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_cosine_embedding_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_grid_sample_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_instance_norm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_max_pool2d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_max_unpool1d_grad_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_max_unpool3d_grad_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_multilabel_margin_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_pad_constant_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_rrelu_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_smooth_l1_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_softsign_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_qr_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_randint_like_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_randn_like_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_resize__cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_rsub_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_sin_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_sort_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_laguerre_polynomial_l_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_modified_bessel_i1_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_split_with_sizes_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_square_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_squeeze_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_svd_lowrank_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_tensordot_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_topk_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_unfold_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_unsafe_chunk_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_unsafe_split_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_vstack_cpu_float32 2025-08-26T22:29:11.4256911Z 2025-08-26T22:29:17.3230479Z Running xpu/test_gemm 1/1 ... [2025-08-26 22:29:17.322451] 2025-08-26T22:29:17.3231238Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:29:17.3239643Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'xpu/test_gemm.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:29:17.323701] 2025-08-26T22:29:23.3663826Z 2025-08-26T22:29:23.3665575Z xpu/test_gemm 1/1 was successful, full logs can be found in artifacts with path test/test-reports/xpu.test_gemm_1.1_dafd4b77df4026fa_.log 2025-08-26T22:29:23.3667273Z Running 0 items in this shard: 2025-08-26T22:29:23.3667778Z 2025-08-26T22:29:30.2147964Z Running test_cuda_multigpu 1/1 ... [2025-08-26 22:29:30.209044] 2025-08-26T22:29:30.2148637Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:29:30.2156499Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_cuda_multigpu.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:29:30.209044] 2025-08-26T22:29:36.7383389Z 2025-08-26T22:29:36.7384888Z test_cuda_multigpu 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_cuda_multigpu_1.1_de6ccda25db9f656_.log 2025-08-26T22:29:36.7386686Z Running 0 items in this shard: 2025-08-26T22:29:36.7387021Z 2025-08-26T22:29:43.6575079Z Running test_meta 2/4 ... [2025-08-26 22:29:43.656909] 2025-08-26T22:29:43.6575712Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:29:43.6583899Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_meta.py', '-m', 'not serial', '--shard-id=2', '--num-shards=4', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:29:43.658068] 2025-08-26T22:31:51.1991436Z 2025-08-26T22:31:51.1992421Z test_ops 7/9 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_7.9_0e4d005259ebdaa1_.log 2025-08-26T22:31:51.3400057Z Running 3770 items in this shard: test/test_ops.py::TestSelfKwarg::test_self_kwargs, test/test_ops.py::TestCommonCPU::test_compare_cpu_H_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_T_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu___rmod___cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs__conversions_bool_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs__conversions_cdouble_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_as_strided_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_copysign_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_dot_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_empty_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_expand_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_flip_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_geometric_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_igamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_index_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_masked_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_nn_functional_hardshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_nn_functional_nll_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_nn_functional_pixel_unshuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_normal_number_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_reshape_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_split_with_sizes_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_stft_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_triu_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_true_divide_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_unfold_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_unfold_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_vdot_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_view_as_complex_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__segment_reduce_lengths_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_alias_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_argsort_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_as_strided_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_baddbmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_bmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_cartesian_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_cdouble_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_cholesky_inverse_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_cummax_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_diagonal_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_double_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_einsum_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_exponential_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_flip_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_hstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_cholesky_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_inv_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_ldl_factor_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_matrix_power_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_multi_dot_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_pinv_singular_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_masked_cumsum_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_masked_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_max_reduction_no_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_new_empty_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_embedding_bag_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_margin_ranking_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_max_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_max_unpool1d_grad_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_max_unpool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nonzero_static_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_pca_lowrank_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_quantile_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_reshape_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_scatter_reduce_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_scatter_reduce_sum_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_slice_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_sparse_mm_reduce_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_split_list_args_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_split_with_sizes_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_split_with_sizes_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_tensordot_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_unfold_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_unfold_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_unsafe_chunk_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_unsafe_split_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_vstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_add_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_as_strided_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_char_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_contiguous_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_empty_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_index_fill_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_nonzero_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_nonzero_static_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_norm_inf_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_ones_like_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_permute_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_positive_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_randn_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_slice_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_squeeze_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_transpose_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_unbind_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_dtypes__batch_norm_with_update_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs__conversions_bool_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs__conversions_chalf_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_alias_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_as_strided_scatter_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_asin_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_atan2_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_atleast_3d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_diag_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_dot_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_expm1_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fft_irfft_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fill_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_i0_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_le_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_linalg_diagonal_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_linalg_norm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_linalg_vecdot_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_log_softmax_with_dtype_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_new_ones_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nextafter_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_hinge_embedding_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_pdist_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_threshold_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_positive_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_ravel_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_reshape_as_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_sign_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_special_ndtri_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_tan_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_to_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_transpose_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_tril_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_unflatten_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_cat_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_cholesky_inverse_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_conj_physical_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_diagonal_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_empty_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_empty_strided_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fft_hfft2_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fft_ihfftn_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fft_rfftn_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fmod_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_hsplit_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_hstack_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_index_select_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_isin_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_isnan_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_kron_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_ldexp_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_cholesky_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_eigh_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_ldl_factor_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_lu_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_lu_factor_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_lu_solve_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_matrix_norm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_svdvals_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_vander_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_log2_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_mT_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_median_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_normalize_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_softmin_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_matmul_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_new_empty_strided_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_new_full_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_conv_transpose1d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_cross_entropy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_embedding_bag_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_feature_alpha_dropout_with_train_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_gaussian_nll_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_hardswish_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_kl_div_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_linear_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_max_pool2d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_max_unpool1d_grad_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_pad_replicate_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_pixel_shuffle_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_scaled_dot_product_attention_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_softmin_with_dtype_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_threshold_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_norm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_normal_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_normal_number_mean_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_reciprocal_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_roll_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_round_decimals_3_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_select_scatter_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_signal_windows_nuttall_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_sin_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_bessel_y0_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_chebyshev_polynomial_v_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_i1e_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_polygamma_special_polygamma_n_0_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_shifted_chebyshev_polynomial_t_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_square_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_std_unbiased_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_sum_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_tanh_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_to_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_transpose_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_trunc_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_unsqueeze_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_vstack_cpu, test/test_ops.py::TestCommonCPU::test_errors___rdiv___cpu, test/test_ops.py::TestCommonCPU::test_errors___rmul___cpu, test/test_ops.py::TestCommonCPU::test_errors_bernoulli_cpu, test/test_ops.py::TestCommonCPU::test_errors_bitwise_left_shift_cpu, test/test_ops.py::TestCommonCPU::test_errors_cov_cpu, test/test_ops.py::TestCommonCPU::test_errors_div_floor_rounding_cpu, test/test_ops.py::TestCommonCPU::test_errors_div_no_rounding_mode_cpu, test/test_ops.py::TestCommonCPU::test_errors_dot_cpu, test/test_ops.py::TestCommonCPU::test_errors_exponential_cpu, test/test_ops.py::TestCommonCPU::test_errors_fft_ifft2_cpu, test/test_ops.py::TestCommonCPU::test_errors_fmod_cpu, test/test_ops.py::TestCommonCPU::test_errors_igamma_cpu, test/test_ops.py::TestCommonCPU::test_errors_lcm_cpu, test/test_ops.py::TestCommonCPU::test_errors_masked_scatter_cpu, test/test_ops.py::TestCommonCPU::test_errors_narrow_copy_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_adaptive_avg_pool2d_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_avg_pool2d_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_max_pool1d_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_triplet_margin_loss_cpu, test/test_ops.py::TestCommonCPU::test_errors_signal_windows_general_cosine_cpu, test/test_ops.py::TestCommonCPU::test_errors_sparse_randn_like_layout2_cpu, test/test_ops.py::TestCommonCPU::test_errors_sparse_sum_layout1_cpu, test/test_ops.py::TestCommonCPU::test_errors_sparse_sum_layout4_cpu, test/test_ops.py::TestCommonCPU::test_errors_sparse_zeros_like_layout2_cpu, test/test_ops.py::TestCommonCPU::test_errors_sparse_zeros_like_layout3_cpu, test/test_ops.py::TestCommonCPU::test_errors_special_shifted_chebyshev_polynomial_t_cpu, test/test_ops.py::TestCommonCPU::test_errors_sub_cpu, test/test_ops.py::TestCommonCPU::test_errors_vstack_cpu, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch__chunk_cat_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch__native_batch_norm_legit_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_addbmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_addmv_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_atanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_bmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_bucketize_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_cholesky_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_eq_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_fft_hfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_fft_ifft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_fft_ihfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_floor_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_ge_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_gt_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_histc_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_lerp_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_cholesky_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_eigvals_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_inv_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_matrix_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_matrix_rank_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_multi_dot_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_pinv_hermitian_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_log2_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_logcumsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_logical_not_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_min_reduction_no_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_min_reduction_with_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_nan_to_num_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_nn_functional_avg_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_norm_fro_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_polygamma_polygamma_n_2_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_renorm_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_round_decimals_0_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_scatter_reduce_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_scatter_reduce_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_sort_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_i1_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_log_ndtr_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_t_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_tanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_unsqueeze_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_H_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices___rdiv___cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices___rsub___cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices__chunk_cat_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices__unsafe_masked_index_put_accumulate_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_addcdiv_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_addcmul_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_addmm_decomposed_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_addmv_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_as_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_as_strided_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_asin_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_bitwise_or_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_bitwise_xor_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_bmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_broadcast_tensors_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_bucketize_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_byte_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_clone_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_cos_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_cov_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_cov_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_deg2rad_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_diag_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_double_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_double_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_dsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_dsplit_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_empty_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_empty_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_equal_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_expand_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_fft_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_fftshift_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_hfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_ifftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_ifftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_irfft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_rfft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fill_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_float_power_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_fmax_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_half_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_hsplit_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_i0_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_index_reduce_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_index_select_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_isneginf_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_isreal_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_isreal_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_jiterator_2inputs_2outputs_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_lerp_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_diagonal_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_lu_factor_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_norm_subgradients_at_zero_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_pinv_singular_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_slogdet_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_solve_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linspace_tensor_overload_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_cumsum_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_logsumexp_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_median_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_select_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_min_binary_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_movedim_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_msort_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_mv_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nan_to_num_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_native_batch_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_ne_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_new_ones_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_conv2d_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_conv3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_conv_transpose3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_embedding_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_group_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_interpolate_bicubic_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_interpolate_nearest_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_layer_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_pad_reflect_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_tanhshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_tanhshrink_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nonzero_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nonzero_static_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_polar_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_polygamma_polygamma_n_0_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_put_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_rad2deg_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_rand_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_randint_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_randn_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_remainder_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_reshape_as_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_roll_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_round_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_round_decimals_0_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_round_decimals_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_scatter_reduce_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_sgn_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_short_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_signal_windows_bartlett_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_signal_windows_blackman_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_sinh_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_slice_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_sort_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_sparse_sampled_addmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_bessel_y1_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_i1_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_modified_bessel_i0_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_modified_bessel_k1_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_scaled_modified_bessel_k0_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_split_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_std_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_sum_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_take_along_dim_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_to_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_topk_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_torch_ops_aten__safe_softmax_default_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_transpose_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_triu_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_true_divide_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_unbind_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_unfold_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_unique_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_unsafe_chunk_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_view_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_zeros_cpu_int64, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values___radd___cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values___rdiv___cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values___rmul___cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_amin_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_byte_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_clamp_max_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_clone_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_combinations_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_conj_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_constant_pad_nd_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_cummin_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_diag_embed_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_diff_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_double_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_dsplit_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_eq_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_fft_ifftshift_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_fft_ihfftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_isneginf_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_jiterator_2inputs_2outputs_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_logical_or_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_lt_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_mT_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_mul_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_narrow_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_nonzero_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_polygamma_polygamma_n_2_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_reshape_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_scatter_reduce_prod_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_softmax_with_dtype_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_erfcx_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_modified_bessel_i0_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_split_with_sizes_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_t_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_unbind_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_unsqueeze_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_view_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_H_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_H_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___radd___cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___rmul___cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___ror___cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___rpow___cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples__segment_reduce_offsets_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_allclose_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_angle_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_asin_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_asinh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_asinh_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_baddbmm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_bitwise_left_shift_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_bmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cfloat_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cholesky_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cholesky_inverse_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_conj_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_conj_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cummax_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cummax_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cumprod_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diag_embed_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diagflat_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diagonal_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diff_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_digamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_div_trunc_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_dsplit_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_dstack_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_empty_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_equal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_erfc_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_expand_as_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_expand_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_eye_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_eye_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_hfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_hfft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_hfft_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_ifft2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_flipud_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_float_power_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_frexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_full_like_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_gcd_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_ge_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_geometric_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_histogram_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_hstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_hypot_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_imag_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_add_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_put_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_reduce_amax_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_select_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_inner_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_isinf_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_jiterator_4inputs_with_extra_args_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_jiterator_binary_return_by_ref_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_ldexp_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_cond_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_cross_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_ldl_factor_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_ldl_solve_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_lstsq_grad_oriented_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_matrix_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_matrix_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_matrix_power_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_norm_subgradients_at_zero_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_solve_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_svd_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_vector_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_log_softmax_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logcumsumexp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logdet_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logical_or_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logical_xor_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logspace_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_amax_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_logaddexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_prod_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_matmul_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_matrix_exp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_max_binary_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_max_reduction_no_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_native_batch_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_ne_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_new_ones_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_avg_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_cosine_embedding_loss_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_instance_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_interpolate_area_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_interpolate_bilinear_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_margin_ranking_loss_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_max_pool3d_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_normalize_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pad_circular_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pad_replicate_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_selu_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_permute_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_permute_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_polygamma_polygamma_n_1_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_positive_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_prod_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_put_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_put_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_qr_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_rad2deg_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_ravel_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_round_decimals_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_rsqrt_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_scatter_add_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sgn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sgn_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sign_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_signal_windows_exponential_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_signal_windows_general_cosine_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_signal_windows_nuttall_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sinc_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sinc_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sinh_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_bessel_j0_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_bessel_y1_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_chebyshev_polynomial_v_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_erfcx_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_hermite_polynomial_h_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_hermite_polynomial_he_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_i1e_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_laguerre_polynomial_l_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_modified_bessel_k0_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_modified_bessel_k1_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_ndtr_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_ndtri_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_scaled_modified_bessel_k0_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_shifted_chebyshev_polynomial_u_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_square_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_std_mean_unbiased_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_std_unbiased_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_std_unbiased_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sum_to_size_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_t_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_take_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_tile_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_tile_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_to_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_to_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_trapezoid_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_trapz_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_triangular_solve_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unfold_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unique_consecutive_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_var_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_var_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_view_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_vsplit_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_where_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_addbmm_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_cat_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_diag_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_diff_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_equal_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_flatten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_item_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_linalg_tensorsolve_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_linalg_vander_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_nn_functional_gelu_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_ravel_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_searchsorted_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_signal_windows_nuttall_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_squeeze_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_squeeze_multiple_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_transpose_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_unbind_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_out___radd___cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs__conversions_complex_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs__conversions_short_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_acosh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_asin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_atanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_atleast_3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_bitwise_not_cpu_int64, test/test_ops.py::TestCommonCPU::test_out__refs_bucketize_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_clone_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_dsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fft_fftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fft_irfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fft_rfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fft_rfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_float_power_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_frac_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_frexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_hsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_imag_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out__refs_isneginf_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_linalg_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_linalg_svd_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_linalg_svdvals_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_logical_not_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_minimum_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_movedim_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_narrow_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_new_empty_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_mish_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_selu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_softplus_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_normal_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_permute_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_repeat_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_round_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_sinc_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_stft_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_take_along_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_tensor_split_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_triu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_unfold_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_unsqueeze_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_acosh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_addmv_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_addr_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_as_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_atan_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_broadcast_to_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_cartesian_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_ceil_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_column_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_diff_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_igammac_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_jiterator_binary_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_lu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_lu_factor_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_pinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_pinv_hermitian_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_qr_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_vecdot_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_masked_cumsum_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_masked_log_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_masked_select_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_max_binary_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_median_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_mm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_native_batch_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_gaussian_nll_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_linear_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_pdist_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_rrelu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_selu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_upsample_nearest_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_ones_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_randint_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_reciprocal_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_renorm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_addr_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_bmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_cholesky_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_conj_physical_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_digamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_div_floor_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_expand_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_expm1_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_fft_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_hfftn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_ifft_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_rfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_float_power_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_index_reduce_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_index_select_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_matrix_power_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_pinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_qr_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_vector_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_log1p_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_log_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_logit_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_lu_unpack_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_masked_select_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_mm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_nanmean_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_nn_functional_gelu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_nn_functional_normalize_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_nn_functional_softplus_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_norm_fro_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_norm_inf_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_outer_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_quantile_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_scatter_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_scatter_reduce_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_sgn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_sgn_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_sigmoid_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_sign_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_slice_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_sort_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_special_erfcx_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_split_with_sizes_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_sqrt_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_square_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_squeeze_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_tensordot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_tril_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_triu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_xlogy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_resolve_conj_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_rsqrt_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_scatter_reduce_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_signal_windows_general_cosine_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_signal_windows_hann_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_std_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_sum_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_svd_lowrank_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_t_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_tan_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_tanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_triu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_var_mean_unbiased_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_vdot_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_warning__batch_norm_with_update_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__native_batch_norm_legit_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs__conversions_cdouble_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_acos_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_addcmul_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_addr_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_any_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_as_strided_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_atleast_3d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_clone_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_contiguous_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_diag_embed_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_dot_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fft_fftn_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fft_ifftshift_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fft_ihfft2_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fft_irfft_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_flip_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_hsplit_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_hstack_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_isfinite_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_linalg_diagonal_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_logical_or_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_logical_xor_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_maximum_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_neg_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_layer_norm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_pdist_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_normal__in_place_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_reciprocal_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_round_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_select_scatter_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_sin_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_sinc_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_special_bessel_j0_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_special_i1_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_special_i1e_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_special_multigammaln_mvlgamma_p_5_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_special_xlog1py_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_split_with_sizes_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_squeeze_multiple_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_t_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_take_along_dim_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_unsqueeze_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_any_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_asinh_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_atleast_2d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_bincount_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_cosh_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_cov_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_dist_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_equal_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_eye_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fft_fft2_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fft_hfftn_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fft_rfft_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_flip_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_heaviside_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_index_put_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_index_select_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_inner_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_isfinite_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_isnan_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_jiterator_binary_return_by_ref_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_kron_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_eigvalsh_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_householder_product_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_pinv_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_log_softmax_with_dtype_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_logcumsumexp_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_masked_amin_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_masked_median_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_max_reduction_with_dim_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_median_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_movedim_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nansum_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_narrow_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_new_zeros_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nextafter_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_adaptive_avg_pool2d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_interpolate_nearest_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_layer_norm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_mish_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_multi_margin_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_nll_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_threshold_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_normal_number_mean_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_randint_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_rsub_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_scatter_add_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_scatter_reduce_prod_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_select_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_signal_windows_blackman_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_signal_windows_kaiser_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_signal_windows_nuttall_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_sparse_mm_reduce_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_sparse_sampled_addmm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_bessel_y1_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_xlog1py_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_split_list_args_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_split_with_sizes_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_sum_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_svd_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_to_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_topk_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_trapz_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_unflatten_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_var_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_var_mean_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_zero__cpu, test/test_ops.py::TestCommonCPU::test_out_where_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_zeros_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float___rdiv___cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float___rdiv___cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_acos_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_asinh_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_cos_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_digamma_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_erfc_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_erfc_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_erfinv_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_erfinv_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_exp2_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_exp2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_float_power_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_float_power_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_lgamma_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log10_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log1p_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_logit_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_masked_std_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_mvlgamma_mvlgamma_p_1_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_mvlgamma_mvlgamma_p_5_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_mvlgamma_mvlgamma_p_5_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_3_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_4_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_4_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sigmoid_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sinc_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_t_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_u_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_v_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_hermite_polynomial_h_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_hermite_polynomial_he_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_legendre_polynomial_p_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_shifted_chebyshev_polynomial_t_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_shifted_chebyshev_polynomial_v_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_shifted_chebyshev_polynomial_v_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_xlog1py_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_tan_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_T_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bfloat16_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bool_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bool_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_byte_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cdouble_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cfloat_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cfloat_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_chalf_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_double_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_float_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_half_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_half_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_half_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_int_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_int_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_long_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_short_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_short_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_short_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_short_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acos_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acos_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acos_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acos_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acos_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_add_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_add_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_add_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_add_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_add_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addcmul_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addr_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addr_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_alias_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_all_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_all_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_amin_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_any_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_any_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_any_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_arange_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_arange_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asin_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asinh_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asinh_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atan2_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atan_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atanh_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atanh_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atanh_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_1d_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_1d_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_2d_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_3d_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_and_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_left_shift_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_block_diag_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_to_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bucketize_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bucketize_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cat_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_chunk_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_chunk_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_max_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_max_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_max_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_min_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_min_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_column_stack_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_column_stack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_column_stack_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_physical_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_contiguous_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_contiguous_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_contiguous_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cos_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cosh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cosh_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cosh_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_count_nonzero_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_count_nonzero_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumprod_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumprod_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumsum_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_deg2rad_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_embed_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_floor_rounding_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_trunc_rounding_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dot_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dsplit_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dstack_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_strided_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eq_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erfc_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erfc_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erfinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_as_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expm1_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fft_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fftshift_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfft2_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifft_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftshift_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftshift_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftshift_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ihfftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfft_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfft_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfft_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfft_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfft_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fill_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fill_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flatten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flatten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fliplr_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fliplr_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fliplr_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_float_power_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_floor_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_floor_divide_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmax_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmin_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_frexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_gcd_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ge_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_geometric_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_geometric_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_gt_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_gt_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_heaviside_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hstack_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_i0_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_i0_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_add_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isnan_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isneginf_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isposinf_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isposinf_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_item_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lcm_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lerp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lgamma_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_cross_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_cross_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_cross_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_diagonal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_norm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_svd_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_svdvals_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_vector_norm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linspace_tensor_overload_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log10_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log1p_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_softmax_with_dtype_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logaddexp2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logaddexp_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_not_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_not_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_not_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_or_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_xor_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logspace_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logspace_tensor_overload_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logsumexp_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logsumexp_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_masked_fill_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_masked_fill_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_maximum_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_maximum_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_mean_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_meshgrid_list_of_tensors_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_meshgrid_list_of_tensors_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_meshgrid_variadic_tensors_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_meshgrid_variadic_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_meshgrid_variadic_tensors_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_movedim_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_movedim_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_movedim_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_movedim_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nan_to_num_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ne_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ne_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_neg_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_neg_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_neg_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_empty_strided_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_ones_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_zeros_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nextafter_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nextafter_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nextafter_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_channel_shuffle_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_dropout_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_dropout_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_elu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_group_norm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_hardshrink_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_hinge_embedding_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_l1_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_l1_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_log_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_log_softmax_with_dtype_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_mish_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_mish_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_nll_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pairwise_distance_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pdist_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_unshuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_poisson_nll_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_poisson_nll_loss_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_relu6_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_relu6_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_relu6_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_relu6_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_relu6_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_relu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_relu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmin_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmin_with_dtype_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_tanhshrink_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_threshold_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_triplet_margin_loss_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_positive_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_positive_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_pow_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_prod_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_prod_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_prod_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rad2deg_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_real_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reciprocal_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reciprocal_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_remainder_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_remainder_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_repeat_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_repeat_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_roll_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rot90_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsqrt_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsqrt_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_select_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_select_scatter_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sgn_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sigmoid_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sigmoid_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_signbit_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sin_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinh_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinh_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinh_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_entr_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_erfcx_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i0e_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i0e_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i1_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i1_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i1_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i1e_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i1e_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_log_softmax_with_dtype_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_logit_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_1_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_3_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_5_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_ndtr_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_ndtri_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_softmax_with_dtype_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_spherical_bessel_j0_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_xlog1py_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_zeta_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_split_with_sizes_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_std_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_to_size_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_to_size_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_to_size_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_take_along_dim_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tan_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tanh_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tensor_split_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tensor_split_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_to_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_to_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_trace_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_trace_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tril_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tril_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_triu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_triu_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_triu_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_true_divide_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_true_divide_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_trunc_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unflatten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_var_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_var_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vdot_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vdot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vdot_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vdot_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_as_complex_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vsplit_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vstack_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_xlogy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_zeros_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_zeros_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_zeros_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs__conversions_complex_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs__conversions_polar_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_add_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_bitwise_left_shift_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_cauchy_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_div_floor_rounding_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_fft_ifft_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_fft_irfft2_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_fft_rfft2_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_fft_rfftn_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_ge_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_gt_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_le_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_maximum_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_normal__in_place_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_remainder_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_reshape_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_vdot_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_where_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_xlogy_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_T_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bfloat16_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bfloat16_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_cdouble_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_cdouble_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_cdouble_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_complex_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_float_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_float_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_half_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_half_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_int_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_int_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_int_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_long_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_abs_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_add_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_add_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_add_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_add_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addcdiv_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addr_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_amin_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_any_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_any_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_any_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_arange_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_copy_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_partial_views_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_partial_views_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_partial_views_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_scatter_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_scatter_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asin_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asin_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asinh_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asinh_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atan_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atanh_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_1d_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_1d_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_1d_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_2d_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_3d_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_3d_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_3d_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_and_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_and_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_not_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_or_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_or_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_block_diag_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_block_diag_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_block_diag_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_tensors_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_to_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_to_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_to_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bucketize_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cat_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cat_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ceil_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_min_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clone_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_column_stack_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_column_stack_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_column_stack_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_physical_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_constant_pad_nd_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_contiguous_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cosh_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cosh_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_count_nonzero_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_count_nonzero_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cumprod_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cumprod_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_scatter_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_scatter_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_scatter_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_scatter_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_digamma_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_floor_rounding_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dsplit_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dsplit_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_like_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_like_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_like_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_like_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_strided_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eq_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_equal_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erf_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erfinv_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_exp2_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_exp_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_as_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_copy_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expm1_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expm1_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eye_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eye_executor_aten_cpu_float8_e5m2fnuz, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eye_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fft2_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fft_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fft_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fftn_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fftn_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fftshift_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fftshift_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfft_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfftn_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifft2_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifft2_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifft_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifft_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifft_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifftn_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifftn_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifftshift_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifftshift_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ihfft2_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ihfftn_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ihfftn_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfft2_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_rfft2_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_rfftn_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flatten_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fliplr_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fliplr_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flipud_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_float_power_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_floor_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_floor_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmax_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmax_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmod_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmod_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ge_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_gt_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_heaviside_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_heaviside_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_heaviside_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_heaviside_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hsplit_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hstack_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hstack_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hstack_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hstack_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hstack_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hypot_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_i0_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_igamma_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_fill_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_fill_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_fill_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_select_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isclose_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isclose_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isnan_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isnan_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isneginf_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isposinf_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isreal_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_item_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_item_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_le_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lgamma_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_cross_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_diagonal_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_diagonal_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_diagonal_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_matrix_norm_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_matrix_norm_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_svd_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linspace_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linspace_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linspace_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linspace_tensor_overload_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log10_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log10_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log10_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log1p_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log1p_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_softmax_with_dtype_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_and_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_and_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_not_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_or_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_xor_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_xor_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_xor_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logspace_tensor_overload_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logsumexp_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logsumexp_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logsumexp_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logsumexp_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logsumexp_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lt_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lt_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_masked_fill_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_masked_fill_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_maximum_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_mean_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_meshgrid_variadic_tensors_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_movedim_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_movedim_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_movedim_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_mul_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nan_to_num_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nan_to_num_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_copy_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ne_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_neg_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_strided_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_ones_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nextafter_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_alpha_dropout_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_celu_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_channel_shuffle_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_gelu_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_hardshrink_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_hardtanh_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_hardtanh_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_hinge_embedding_loss_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_leaky_relu_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_log_softmax_with_dtype_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_log_softmax_with_dtype_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_log_softmax_with_dtype_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_margin_ranking_loss_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pairwise_distance_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_shuffle_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_poisson_nll_loss_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_poisson_nll_loss_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_poisson_nll_loss_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_relu_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_selu_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_tanhshrink_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_tanhshrink_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_tanhshrink_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_triplet_margin_loss_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_normal__in_place_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_normal_number_mean_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ones_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_permute_copy_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_permute_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_positive_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_pow_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_prod_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rad2deg_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ravel_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ravel_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_real_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_real_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reciprocal_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reciprocal_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_remainder_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_renorm_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_renorm_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_repeat_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_repeat_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reshape_as_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reshape_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_roll_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rot90_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rot90_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rsqrt_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sigmoid_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sigmoid_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_signbit_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_signbit_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sin_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sin_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinc_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinc_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinh_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinh_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinh_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinh_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_softmax_with_dtype_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_softmax_with_dtype_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_bessel_j0_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_bessel_j1_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i0e_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i1_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_1_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_ndtr_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_ndtri_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_softmax_with_dtype_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_softmax_with_dtype_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_xlog1py_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_zeta_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_split_with_sizes_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_square_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_square_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_square_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_square_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_square_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_copy_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_multiple_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_multiple_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_stack_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_std_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_std_mean_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_t_copy_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_t_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_take_along_dim_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_take_along_dim_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tan_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tanh_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tanh_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tanh_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tanh_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_to_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_to_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_copy_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_copy_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tril_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tril_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_triu_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_triu_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_true_divide_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_true_divide_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_trunc_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_trunc_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_copy_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unflatten_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unflatten_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_copy_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_copy_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_copy_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_copy_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_copy_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_var_mean_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vdot_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vdot_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_as_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_copy_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_copy_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_copy_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vsplit_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vsplit_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vsplit_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_where_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_where_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_xlogy_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_zeros_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_zeros_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_zeros_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_T_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_T_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bfloat16_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bfloat16_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bfloat16_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cdouble_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_chalf_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_chalf_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_char_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_char_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_float_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_float_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_half_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_half_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_int_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_int_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_long_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_short_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_short_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_short_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_abs_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_acosh_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_acosh_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_add_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_add_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addcdiv_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addcmul_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addcmul_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_alias_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_all_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_all_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_all_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_amax_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_amin_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_amin_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atan2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atan_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_1d_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_2d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_2d_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_3d_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_left_shift_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_or_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_tensors_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_to_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_to_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_to_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cat_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cat_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cauchy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_chunk_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_chunk_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_chunk_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_min_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_min_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clone_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clone_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_physical_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_constant_pad_nd_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_contiguous_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_contiguous_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cos_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cosh_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_count_nonzero_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cumprod_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cumprod_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cumprod_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_deg2rad_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_deg2rad_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_embed_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_embed_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_scatter_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_scatter_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_digamma_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_digamma_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_digamma_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_digamma_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_no_rounding_mode_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_trunc_rounding_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dot_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dsplit_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dstack_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_like_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_strided_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eq_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_equal_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erf_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erf_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erfc_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erfinv_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_as_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expm1_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expm1_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exponential_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eye_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fft_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fftn_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fftshift_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfft2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfft_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifft_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifftn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifftn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifftn_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifftshift_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfft_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfft_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfft2_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfft2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfft_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfft_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfft_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfftn_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfftn_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_rfft2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_rfft_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_rfftn_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fill_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flatten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flatten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flatten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flip_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flip_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flip_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fliplr_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fliplr_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flipud_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_float_power_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_floor_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmax_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmod_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_gcd_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ge_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_gt_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_heaviside_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hsplit_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hstack_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_i0_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_i0_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_fill_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_select_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_select_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isclose_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isclose_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isfinite_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isneginf_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isneginf_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isposinf_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isreal_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isreal_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isreal_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isreal_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_item_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_item_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_diagonal_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_diagonal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_diagonal_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_matrix_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_norm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_svdvals_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_vecdot_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_tensor_overload_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log10_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logaddexp_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_and_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_or_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_or_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_xor_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_xor_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_tensor_overload_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logsumexp_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lt_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_masked_fill_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_mean_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_list_of_tensors_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_variadic_tensors_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_variadic_tensors_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_minimum_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_minimum_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_mul_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_mul_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_mul_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nan_to_num_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_neg_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_neg_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_neg_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_strided_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_full_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_ones_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_ones_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_ones_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_zeros_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_channel_shuffle_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_channel_shuffle_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_channel_shuffle_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_dropout_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_gelu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_glu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_hardshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_hinge_embedding_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_huber_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_leaky_relu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_log_softmax_with_dtype_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_margin_ranking_loss_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_margin_ranking_loss_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_mish_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_mish_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pixel_unshuffle_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_prelu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_prelu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_relu6_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_relu6_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_relu6_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_relu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_selu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_selu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_smooth_l1_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmin_with_dtype_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softplus_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softplus_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_tanhshrink_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_tanhshrink_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_tanhshrink_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_threshold_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_threshold_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_triplet_margin_loss_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_triplet_margin_loss_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ones_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_positive_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_positive_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_positive_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_pow_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ravel_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ravel_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ravel_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_real_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_remainder_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_remainder_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_remainder_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_repeat_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_repeat_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_repeat_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_repeat_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_as_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_roll_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_roll_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_roll_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_roll_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_round_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rsub_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rsub_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sgn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sgn_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sign_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sin_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinc_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinc_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinc_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinh_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_softmax_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_bessel_j0_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_entr_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_erfcx_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_erfcx_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i1_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i1e_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_log_ndtr_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_log_softmax_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_logit_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_ndtr_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_ndtr_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_xlog1py_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_zeta_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_zeta_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_split_with_sizes_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_split_with_sizes_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sqrt_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sqrt_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sqrt_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_square_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_multiple_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_stft_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_t_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_t_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_t_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_t_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_take_along_dim_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tan_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tanh_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tanh_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_to_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_trace_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tril_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tril_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tril_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_triu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_triu_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_triu_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_true_divide_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_true_divide_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_trunc_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unflatten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unflatten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unsqueeze_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unsqueeze_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unsqueeze_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_as_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_as_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_as_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vsplit_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_where_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_where_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_xlogy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_zeros_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_T_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_bfloat16_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_bfloat16_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_byte_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_byte_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_cfloat_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_cfloat_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_cfloat_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_chalf_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_char_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_char_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_half_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_int_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_int_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_long_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_long_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_long_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_short_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_abs_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acos_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acos_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acosh_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acosh_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addcdiv_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addcdiv_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addcdiv_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addcmul_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addr_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addr_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addr_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_alias_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_alias_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_alias_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_all_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_allclose_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_amax_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_any_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_arange_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_partial_views_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asin_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asin_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asinh_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asinh_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atan_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_2d_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_2d_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_3d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_3d_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_or_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_xor_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_xor_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_block_diag_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_broadcast_to_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bucketize_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cat_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cauchy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ceil_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ceil_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_max_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_max_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_max_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_max_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_max_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_min_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clone_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clone_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clone_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_column_stack_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_physical_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_physical_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_contiguous_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_copysign_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cosh_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_count_nonzero_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cumprod_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cumprod_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cumsum_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_deg2rad_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_deg2rad_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diag_embed_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_scatter_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_digamma_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_floor_rounding_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_floor_rounding_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_trunc_rounding_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_trunc_rounding_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dsplit_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dstack_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dstack_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dstack_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_like_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_strided_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_strided_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_equal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erfc_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erfc_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erfinv_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expm1_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exponential_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eye_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eye_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fftn_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfft_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifftn_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifftshift_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifftshift_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfft2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfftn_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfft2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfft_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_rfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fill_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flatten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flatten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flip_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fliplr_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fliplr_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_float_power_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_floor_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_floor_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmax_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmod_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmod_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_frexp_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_gcd_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ge_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_gt_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_heaviside_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hstack_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hypot_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_i0_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_add_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_fill_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_select_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isfinite_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isinf_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isnan_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isreal_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_item_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lcm_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_le_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lerp_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lgamma_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_cross_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_cross_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_cross_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_svdvals_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_vector_norm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linspace_tensor_overload_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log1p_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log2_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_normal_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_not_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_or_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_xor_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_xor_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logspace_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logspace_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logsumexp_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lt_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_masked_fill_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_maximum_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_meshgrid_list_of_tensors_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_meshgrid_variadic_tensors_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_meshgrid_variadic_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_meshgrid_variadic_tensors_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_movedim_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_movedim_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_movedim_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nan_to_num_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_narrow_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_narrow_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_narrow_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_narrow_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_narrow_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_native_layer_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_native_layer_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ne_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_neg_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_strided_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_full_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_full_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_full_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_full_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_ones_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_ones_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_zeros_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_celu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_channel_shuffle_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_dropout_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_glu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_glu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_hinge_embedding_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_l1_loss_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_layer_norm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_mish_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_nll_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pairwise_distance_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pairwise_distance_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pixel_shuffle_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pixel_shuffle_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pixel_unshuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pixel_unshuffle_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_poisson_nll_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_relu6_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_relu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_selu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_smooth_l1_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmax_with_dtype_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmin_with_dtype_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmin_with_dtype_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmin_with_dtype_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softshrink_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_tanhshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_tanhshrink_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_tanhshrink_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_triplet_margin_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_triplet_margin_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_normal_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_normal_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ones_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rad2deg_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ravel_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ravel_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_remainder_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_remainder_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_renorm_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_renorm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_repeat_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_as_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_roll_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rot90_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rot90_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_round_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rsqrt_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rsub_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rsub_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rsub_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_select_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sgn_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sigmoid_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sign_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sign_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sign_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_signbit_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sin_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sin_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinc_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinh_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinh_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinh_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinh_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_entr_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_erfcx_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i0e_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i0e_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i1_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i1e_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_log_ndtr_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_log_ndtr_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_log_ndtr_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_log_softmax_with_dtype_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_1_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_3_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_3_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_5_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_ndtr_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_ndtr_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_ndtri_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_ndtri_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_softmax_with_dtype_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_softmax_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_spherical_bessel_j0_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_xlog1py_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_zeta_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_zeta_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_split_with_sizes_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_split_with_sizes_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_split_with_sizes_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sqrt_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_square_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_square_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_square_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_multiple_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_multiple_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_stack_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_stack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_std_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_stft_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_stft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sub_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_take_along_dim_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tan_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tan_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tanh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tensor_split_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tensor_split_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_to_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_to_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_to_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_to_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_trace_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tril_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tril_indices_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_triu_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_trunc_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unbind_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unbind_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unflatten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unflatten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unflatten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unflatten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unsqueeze_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unsqueeze_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unsqueeze_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unsqueeze_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unsqueeze_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_var_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vsplit_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vsplit_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vstack_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vstack_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_where_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_where_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_where_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_where_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_zeros_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_zeros_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_zeros_cpu_float64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager___rmod___cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_abs_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_addbmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_addcdiv_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_any_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_as_strided_partial_views_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_asin_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_asinh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_atleast_1d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_atleast_3d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_bfloat16_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_broadcast_to_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_broadcast_to_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cartesian_prod_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cartesian_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cauchy_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_chalf_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_char_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_clamp_max_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_clone_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_complex_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_copysign_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cross_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cross_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_diag_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_diagflat_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_div_no_rounding_mode_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_einsum_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_empty_permuted_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_eq_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_exp_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_expand_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_expand_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_fft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_ifftshift_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_flipud_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_full_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_heaviside_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_index_put_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_inner_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_inner_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_int_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_isclose_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_isinf_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_isreal_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_jiterator_4inputs_with_extra_args_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_jiterator_unary_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_ldexp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_cholesky_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_lstsq_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_lstsq_grad_oriented_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_lu_factor_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_lu_factor_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_matrix_rank_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_multi_dot_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_pinv_hermitian_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_tensorinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_log1p_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_log1p_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_log2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_log2_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_logit_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_logsumexp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_long_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_logaddexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_median_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_std_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_var_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_matrix_exp_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_median_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_movedim_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nan_to_num_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nanmean_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_native_batch_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_conv3d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_instance_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_interpolate_bilinear_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_linear_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_logsigmoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_max_pool1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_normalize_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_pad_replicate_negative_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_pdist_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_pixel_unshuffle_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_relu6_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_rrelu_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_silu_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_softsign_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_norm_inf_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_normal_in_place_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_normal_number_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_ones_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_permute_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_polar_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_polygamma_polygamma_n_1_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_reshape_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_round_decimals_0_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_rsub_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_signal_windows_blackman_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_signal_windows_general_cosine_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_signal_windows_general_hamming_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_signal_windows_kaiser_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_sinc_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_scaled_modified_bessel_k1_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_xlog1py_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_split_with_sizes_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_squeeze_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_sum_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_t_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_take_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_transpose_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_transpose_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_transpose_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_uniform_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_vstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_where_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_zeros_like_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_zeros_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward___getitem___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward__native_batch_norm_legit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_cartesian_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_contiguous_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_cov_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_diagonal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_diff_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_div_trunc_rounding_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_dot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fft_fft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fft_hfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fft_hfft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fft_ihfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_flip_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_flipud_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_frac_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_index_reduce_amax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_index_reduce_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_kthvalue_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_lu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_lu_factor_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_matrix_power_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_qr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_log_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_logcumsumexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_median_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_matmul_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_max_pool2d_with_indices_backward_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_min_reduction_with_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_movedim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nansum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_instance_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_l1_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_max_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_mse_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_multilabel_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_pad_constant_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_relu6_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_softsign_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_threshold_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_normal_number_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_polygamma_polygamma_n_3_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_quantile_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_scatter_reduce_amin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_scatter_reduce_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_sin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_sinh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_t_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_t_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_tensor_split_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_triangular_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_where_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_xlogy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input__batch_norm_with_update_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_acos_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_addcdiv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_amax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_amin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_atanh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_broadcast_tensors_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_char_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_cumsum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_diagonal_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fft_ihfftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fft_rfftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_frac_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_igammac_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_index_fill_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_index_reduce_amax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_isinf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_isnan_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_jiterator_binary_return_by_ref_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_jiterator_unary_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_lerp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_cross_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_norm_subgradients_at_zero_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_pinv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_slogdet_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_tensorinv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_tensorsolve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_vector_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_log1p_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_log2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_masked_cumsum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_masked_softmin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_meshgrid_variadic_tensors_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_minimum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_mul_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_ne_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_conv2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_embedding_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_gelu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_hardsigmoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_interpolate_trilinear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_max_unpool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_softsign_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_triplet_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_norm_fro_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_normal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_outer_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_resize_as__cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_round_decimals_0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_select_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_signal_windows_bartlett_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_i0e_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_modified_bessel_k1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_stack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_std_unbiased_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_var_mean_unbiased_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_zeros_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad___rpow___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad__segment_reduce_lengths_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_any_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_as_strided_partial_views_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_asinh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_cholesky_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_cholesky_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_complex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_copysign_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_cosh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_cumulative_trapezoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_diagonal_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_diff_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_dsplit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_dstack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_einsum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_empty_strided_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_expand_as_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fft_ihfft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fill_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_flatten_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_hash_tensor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_le_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_cholesky_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_cond_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_eigh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_solve_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_logical_or_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_lu_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_mH_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_masked_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_masked_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_max_reduction_with_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_maximum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nanmean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nanmedian_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_narrow_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_binary_cross_entropy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_conv_transpose3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_cross_entropy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_elu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_hardsigmoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_instance_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_max_pool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_max_unpool3d_grad_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_normalize_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_relu6_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_selu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_upsample_bilinear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_norm_nuc_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_repeat_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_rot90_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_scatter_reduce_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_scatter_reduce_sum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_select_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_signal_windows_hann_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_sinh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_sparse_sampled_addmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_airy_ai_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_bessel_y1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_scaled_modified_bessel_k0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_split_with_sizes_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_sqrt_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_stack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_t_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_take_along_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_trapezoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_unflatten_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_unsqueeze_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator___radd___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator___rsub___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator__upsample_bilinear2d_aa_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_acosh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_any_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_as_strided_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_atleast_1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_bmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_broadcast_shapes_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_clamp_min_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_diagonal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_dsplit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fft_ifftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fft_irfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fft_rfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fft_rfft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_float_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_histogramdd_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_isclose_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_isin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_isinf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_isnan_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_ldl_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_lstsq_grad_oriented_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_matrix_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_matrix_power_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_lu_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_mH_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_mT_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_amin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_logaddexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_var_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_min_reduction_with_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_conv1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_conv2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_cross_entropy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_interpolate_area_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_interpolate_nearest_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_mish_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_pad_replicate_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_pixel_shuffle_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_pixel_unshuffle_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_soft_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_tanhshrink_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_triplet_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_norm_fro_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_normal_number_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_ormqr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_permute_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_reshape_as_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_legendre_polynomial_p_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_modified_bessel_i0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_modified_bessel_k0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_xlog1py_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_squeeze_multiple_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_take_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_tensordot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_trace_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_transpose_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_trapezoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_trapz_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_unfold_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_unfold_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_var_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_vdot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay___rmatmul___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_addmm_decomposed_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_argmin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_argsort_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_as_strided_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_bool_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_broadcast_to_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_cartesian_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_cummin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_diag_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_diagonal_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_exponential_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_eye_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fft_hfftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fft_ifftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fft_ihfft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fft_irfft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fft_rfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fft_rfft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_flip_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_grid_sampler_2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_gt_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_histc_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_hsplit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_hstack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_index_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_inner_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_jiterator_unary_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_vander_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_logcumsumexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_logical_not_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_logical_xor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_lu_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_masked_amax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_masked_cumprod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_masked_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_max_binary_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_maximum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_mode_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nan_to_num_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_new_full_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_conv1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_conv2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_dropout2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_interpolate_bilinear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_linear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_local_response_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_max_pool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_rrelu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_softplus_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_softsign_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_norm_inf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_normal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_select_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_signal_windows_exponential_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_airy_ai_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_i0e_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_legendre_polynomial_p_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_spherical_bessel_j0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_split_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_std_mean_unbiased_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_to_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_trapezoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_unbind_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_unique_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_view_as_complex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_zeros_cpu_float32, test/test_ops.py::TestMathBitsCPU::test_conj_view___rmatmul___cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs__conversions_cdouble_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs__conversions_double_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs__conversions_half_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_abs_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_addcmul_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_allclose_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_as_strided_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_constant_pad_nd_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_cos_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_div_no_rounding_mode_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_exp2_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_fft_ifft_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_fft_ifftn_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_hstack_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_log10_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_log1p_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_logical_and_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_logsumexp_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_mul_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_nn_functional_channel_shuffle_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_nn_functional_softmin_with_dtype_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_rot90_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_sinh_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_sub_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_t_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_unsqueeze_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_vdot_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_where_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_acos_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_addcdiv_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_addmv_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_addr_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_angle_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_atan_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_atleast_1d_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_cdouble_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_cfloat_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_conj_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_conj_physical_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_cumsum_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_diag_embed_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_diagonal_scatter_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_eye_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_fft_irfftn_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_flipud_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_gradient_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_index_add_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_inner_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_item_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_ldexp_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_eigh_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_householder_product_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_lu_factor_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_lu_solve_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_norm_subgradients_at_zero_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_solve_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_vander_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_logical_not_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_masked_cumsum_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_conv1d_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_conv_transpose2d_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_softmin_with_dtype_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_unfold_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_normal_in_place_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_pca_lowrank_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_permute_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_put_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_repeat_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_scalar_tensor_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_sinc_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_squeeze_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_squeeze_multiple_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_std_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_take_along_dim_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_to_sparse_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_unsafe_chunk_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_unsafe_split_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view___rpow___cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_allclose_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_as_strided_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_as_strided_scatter_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_atanh_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_block_diag_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_constant_pad_nd_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_count_nonzero_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_diag_embed_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_exp2_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_fft_fftshift_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_fft_hfftn_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_fft_ifft_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_fft_ifftn_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_hstack_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_isfinite_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_istft_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_logspace_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_logspace_tensor_overload_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_neg_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_nn_functional_channel_shuffle_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_nn_functional_pixel_unshuffle_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_nn_functional_softmin_with_dtype_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_nn_functional_tanhshrink_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_permute_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_randn_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_renorm_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_squeeze_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_tan_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_trace_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_unbind_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_unsqueeze_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_where_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_any_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_cholesky_inverse_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_conj_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_constant_pad_nd_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_diagflat_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_diagonal_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_empty_permuted_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_equal_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_exp2_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_hstack_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_index_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_jiterator_unary_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_ldl_factor_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_solve_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_vecdot_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_logical_xor_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_lu_unpack_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_masked_cumsum_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_new_full_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nn_functional_pad_reflect_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_repeat_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_resize__cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_roll_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_std_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_t_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_triu_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_uniform_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_unsafe_chunk_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_view___rmul___cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs__conversions_long_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_abs_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_addcdiv_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_addcmul_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_as_strided_scatter_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_asin_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_copysign_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_exp2_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fft_rfftn_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_flatten_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_geometric_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_isclose_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_isinf_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_isreal_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_linalg_cross_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_logspace_tensor_overload_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_masked_fill_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_maximum_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_new_full_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_alpha_dropout_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_hinge_embedding_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_leaky_relu_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_tanhshrink_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_renorm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_reshape_as_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_rot90_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_special_bessel_j1_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_special_erfcx_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_special_xlog1py_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_sum_to_size_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_tensor_split_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_transpose_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_unsqueeze_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_acos_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_addcdiv_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_argmin_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_as_strided_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_byte_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_cartesian_prod_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_cov_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_diagonal_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_diff_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_div_floor_rounding_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_dstack_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fft_hfft2_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fft_irfftn_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fft_rfft_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_float_power_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_floor_divide_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_heaviside_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_hsplit_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_index_put_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_isin_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_isnan_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_kron_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_lerp_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_cholesky_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_cholesky_ex_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_ldl_factor_ex_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_ldl_solve_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_lstsq_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_lu_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_vander_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_logical_and_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_logical_not_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_logspace_tensor_overload_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_long_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_sum_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_min_reduction_with_dim_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_movedim_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_multinomial_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_narrow_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_new_empty_strided_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_binary_cross_entropy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_celu_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_cosine_embedding_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_cosine_similarity_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_embedding_bag_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_fractional_max_pool2d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_hardshrink_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_max_unpool2d_grad_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_nll_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_silu_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_unfold_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_repeat_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_reshape_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_resize__cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_resolve_conj_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_roll_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_round_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_rsub_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_scatter_reduce_prod_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_short_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_chebyshev_polynomial_w_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_i0e_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_squeeze_multiple_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_sum_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_take_along_dim_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_take_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_trace_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_tril_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_unbind_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_unflatten_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_view_as_complex_cpu_float64, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs__conversions_char_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs__conversions_short_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_abs_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_addcmul__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_alias_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_asin_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_atleast_2d_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_broadcast_to_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_clamp_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_conj_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_cos__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_cosh__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_div__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_dstack_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_equal_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_expand_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fft_fftn_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fft_fftshift_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fft_hfftn_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fft_ihfft_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fft_irfft_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_flip_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fliplr_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_igammac_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_isnan_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_linspace_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_log1p__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_log_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_logical_xor__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_logical_xor_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_logsumexp_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_narrow_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_ne_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nextafter_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_dropout_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_group_norm_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_layer_norm_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_threshold__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_threshold_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_real_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_reshape_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_rpow_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_rtruediv_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_sinh__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_special_ndtr_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_special_ndtri_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_special_xlog1py_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_sqrt_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_square__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_t_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_tensor_split_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_triu__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_triu_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_var_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_view_as_complex_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_view_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_view_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_vstack_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_acos__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_acosh__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_add__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_bitwise_left_shift_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_bitwise_or__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_block_diag_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_broadcast_tensors_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_bucketize_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_chunk_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_clamp_max_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_clamp_min_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_column_stack_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_cumsum_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_diagonal_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_diagonal_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_div__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_empty_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_empty_permuted_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_eq__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_erf_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_expand_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fft_fftn_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fft_ifft2_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fft_irfft_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_flip_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fliplr_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_float_power__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fmin_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_full_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_gt__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_heaviside__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_igammac__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_imag_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_lerp__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_lerp_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_logical_and__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_logical_xor__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_lt_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_mean_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_mul_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_narrow_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_native_group_norm_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_ne__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_new_empty_strided_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_dropout_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_gelu_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_pdist_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_selu_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_softmin_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_pow_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_randn_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_reshape_as_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_sgn__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_sgn_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_sin__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_sinh__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_special_i1e_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_sum_to_size_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_transpose_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_triu__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_triu_indices_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_unfold_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_xlogy_cpu, test/test_ops.py::TestFakeTensorCPU::test_fake__batch_norm_with_update_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake__unsafe_masked_index_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_abs_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_argsort_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_argwhere_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_asin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_atanh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_atleast_3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast___radd___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast___rand___cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast___rxor___cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast__chunk_cat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast__segment_reduce_offsets_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast__softmax_backward_data_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast__unsafe_masked_index_put_accumulate_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_addmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_arange_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_argsort_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_as_strided_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_as_strided_partial_views_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_as_strided_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_cosh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_cummax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_cummin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_digamma_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_dsplit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_einsum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_empty_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_empty_strided_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_erfc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_exp2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_expand_as_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_expm1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fft_fft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fft_ifftshift_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fft_rfft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_flatten_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_float_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_floor_divide_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fmod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_heaviside_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_histc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_index_fill_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_index_reduce_amax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_index_reduce_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_index_select_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_cross_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_det_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_eigh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_inv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_lu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_lu_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_pinv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_log1p_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_log_normal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_logit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_logaddexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_logsumexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_median_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_matmul_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_max_pool2d_with_indices_backward_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_meshgrid_variadic_tensors_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_hardshrink_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_interpolate_linear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_max_unpool1d_grad_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_mse_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_pad_circular_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_pad_constant_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_silu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_norm_fro_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_norm_nuc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_permute_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_resolve_neg_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_select_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_sgn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_erfcx_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_zeta_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_split_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_split_with_sizes_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_sum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_transpose_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_tril_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_unsqueeze_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_var_mean_unbiased_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_view_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_xlogy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_bitwise_not_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_broadcast_shapes_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_bucketize_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_byte_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_cauchy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_cfloat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_cholesky_inverse_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_cholesky_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_complex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp___rmul___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp__segment_reduce_offsets_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp__unsafe_masked_index_put_accumulate_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_atan_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_baddbmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_cdouble_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_ceil_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_cfloat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_combinations_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_copysign_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_cos_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_cosh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_diag_embed_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_erfc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_expand_as_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_fft_ihfft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_half_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_hstack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_index_select_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_det_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_eig_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_inv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_lu_factor_ex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_matrix_power_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_svdvals_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_log_softmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_masked_amax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_masked_cumsum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_masked_normalize_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_min_reduction_no_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_mm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_msort_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_mul_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nanmedian_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_avg_pool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_batch_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_conv_transpose2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_ctc_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_fractional_max_pool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_grid_sample_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_hardsigmoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_interpolate_trilinear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_layer_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_max_unpool2d_grad_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_mse_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_pixel_shuffle_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_prelu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_softsign_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_threshold_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_upsample_nearest_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_permute_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_polar_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_round_decimals_neg_3_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_select_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_slice_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_slice_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_special_entr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_special_i0e_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_squeeze_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_sub_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_sum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_svd_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_tensordot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_to_sparse_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_trapezoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_unfold_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_unsqueeze_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_xlogy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_asin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_cfloat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_cholesky_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_diff_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_fft_fftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_flipud_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_fmod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_index_reduce_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_cholesky_ex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_pinv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_slogdet_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_solve_ex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_tensorsolve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_lu_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_mT_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_masked_prod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_max_pool2d_with_indices_backward_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_median_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_meshgrid_list_of_tensors_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_min_reduction_with_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nan_to_num_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_native_dropout_backward_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_avg_pool1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_conv_transpose1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_cosine_similarity_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_group_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_hardshrink_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_kl_div_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_layer_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_linear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_max_pool1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_nll_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_pixel_shuffle_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_norm_fro_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_outer_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_sign_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_sin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_special_erfcx_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_special_i0e_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_special_ndtri_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_sub_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_take_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_tensordot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_unfold_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_vdot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_view_as_complex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_view_as_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_vsplit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_exp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_fftshift_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_flipud_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_float_power_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_ge_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_histogram_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_index_reduce_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_isclose_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_isnan_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_eigh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_lu_factor_ex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_matrix_power_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_pinv_hermitian_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_log_normal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_long_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_masked_argmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_masked_cumprod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_masked_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_masked_select_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_masked_std_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_matrix_exp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_meshgrid_variadic_tensors_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_minimum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nanquantile_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_native_dropout_backward_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_avg_pool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_fractional_max_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_max_unpool1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_multi_head_attention_forward_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_rms_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_unfold_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nonzero_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nonzero_static_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_polygamma_polygamma_n_4_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_reciprocal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_remainder_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_repeat_interleave_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_short_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_sin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_sparse_mm_reduce_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_entr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_legendre_polynomial_p_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_scaled_modified_bessel_k1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_zeta_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_std_unbiased_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_svd_lowrank_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_triangular_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_uniform_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops___rmul___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_addmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_as_strided_partial_views_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_asinh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_bool_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_broadcast_tensors_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_cholesky_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_combinations_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_cov_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_diagflat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_empty_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_empty_strided_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_exp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_hsplit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_index_add_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_index_fill_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_index_select_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_isinf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_kron_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_lcm_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_inv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_ldl_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_matrix_rank_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_svd_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linspace_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_logcumsumexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_logical_not_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_matmul_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_max_reduction_with_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_maximum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_min_reduction_with_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_new_empty_strided_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_conv1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_dropout3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_hardswish_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_interpolate_area_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_interpolate_linear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_max_unpool2d_grad_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_pad_replicate_negative_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_pairwise_distance_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nonzero_static_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_norm_inf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_normal_in_place_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_pinverse_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_prod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_rad2deg_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_rand_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_randn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_ravel_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_rot90_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_short_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_signal_windows_exponential_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_signal_windows_general_cosine_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_sort_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_entr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_erfcx_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_modified_bessel_k0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_ndtr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_scaled_modified_bessel_k1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_split_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_square_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_stack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_sub_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_take_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_unfold_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_vdot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_where_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_linspace_cpu_bfloat16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_linspace_tensor_overload_cpu_complex64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_linspace_tensor_overload_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_cpu_int8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_tensor_overload_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_tensor_overload_cpu_float64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_tensor_overload_cpu_int16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_tensor_overload_cpu_uint8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_ones_cpu_complex64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_ones_cpu_float16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_ones_cpu_uint8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_arange_cpu_float16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_full_cpu_complex128, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_full_cpu_complex64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_full_cpu_int32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_full_cpu_int8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_linspace_cpu_int16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_linspace_tensor_overload_cpu_bfloat16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_logspace_cpu_float64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_logspace_cpu_int16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_logspace_tensor_overload_cpu_int32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_ones_cpu_complex32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_ones_cpu_int32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_ones_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_zeros_cpu_complex32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_zeros_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_zeros_cpu_int16, test/test_ops.py::TestTagsCPU::test_tags___getitem___cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_acos_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_allclose_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_as_strided_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_atleast_1d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_atleast_3d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_bitwise_left_shift_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags__refs_bitwise_right_shift_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags__refs_bucketize_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_clamp_max_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_column_stack_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_deg2rad_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_dstack_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_empty_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fft_ifft_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fft_irfft_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fft_rfft2_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_heaviside_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_isclose_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_item_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_log2_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_log_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_log_normal_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_logical_xor_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_mish_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_pixel_unshuffle_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_ones_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_reciprocal_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_select_scatter_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_sin_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_special_i1e_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_special_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_special_softmax_with_dtype_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_take_along_dim_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_tril_indices_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags__refs_true_divide_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__unsafe_masked_index_put_accumulate_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_addbmm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_addmm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_all_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_as_strided_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_asin_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_atan2_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_atleast_2d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_bitwise_right_shift_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags_cat_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_cholesky_solve_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_clamp_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_clamp_max_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_corrcoef_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_cosh_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_cumulative_trapezoid_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_dist_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_dsplit_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_erf_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_expand_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fft_hfft2_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fft_irfftn_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fft_rfft2_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_gt_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_half_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_index_fill_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_index_reduce_amin_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_index_reduce_prod_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_index_select_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_diagonal_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_inv_ex_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_ldl_solve_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_norm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_vecdot_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_logical_not_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_lu_unpack_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_masked_argmax_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_masked_cumprod_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_masked_logaddexp_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_mean_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_median_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_meshgrid_list_of_tensors_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_mv_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_narrow_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nextafter_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_binary_cross_entropy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_cross_entropy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_group_norm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_linear_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_mish_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_pad_replicate_negative_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_pdist_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_relu6_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_softmin_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_norm_inf_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_polygamma_polygamma_n_0_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_polygamma_polygamma_n_1_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_polygamma_polygamma_n_2_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_polygamma_polygamma_n_3_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_prod_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_randint_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_signal_windows_kaiser_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_bessel_y0_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_modified_bessel_i0_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_scaled_modified_bessel_k0_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_t_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_tril_indices_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags_unflatten_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_unfold_cpu_float32 2025-08-26T22:31:51.4835445Z 2025-08-26T22:31:56.9137177Z Running test_content_store 1/1 ... [2025-08-26 22:31:56.913517] 2025-08-26T22:31:56.9137677Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:31:56.9144857Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_content_store.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:31:56.914254] 2025-08-26T22:32:18.2294654Z 2025-08-26T22:32:18.2295908Z test_content_store 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_content_store_1.1_87b453fcda454e97_.log 2025-08-26T22:32:18.2297727Z Running 4 items in this shard: test/test_content_store.py::TestContentStoreCPU::test_basic_cpu, test/test_content_store.py::TestContentStoreCPU::test_load_tensor_cpu, test/test_content_store.py::TestContentStoreCPU::test_repeated_hash_cpu, test/test_content_store.py::TestContentStoreCPU::test_scalar_cpu 2025-08-26T22:32:18.2299122Z 2025-08-26T22:32:23.8358459Z Running test_stateless 1/1 ... [2025-08-26 22:32:23.834186] 2025-08-26T22:32:23.8359162Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:32:23.8365883Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_stateless.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:32:23.834186] 2025-08-26T22:32:40.6717207Z 2025-08-26T22:32:40.6718142Z test_stateless 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_stateless_1.1_f43321736979ca00_.log 2025-08-26T22:32:40.6742948Z Running 50 items in this shard: test/test_stateless.py::TestStatelessFunctionalAPI::test_circular_references_stateless, test/test_stateless.py::TestStatelessFunctionalAPI::test_circular_references_torch_func, test/test_stateless.py::TestStatelessFunctionalAPI::test_functional_batch_norm_stateless, test/test_stateless.py::TestStatelessFunctionalAPI::test_functional_batch_norm_torch_func, test/test_stateless.py::TestStatelessFunctionalAPI::test_functional_call_member_reference_stateless, test/test_stateless.py::TestStatelessFunctionalAPI::test_functional_call_member_reference_torch_func, test/test_stateless.py::TestStatelessFunctionalAPI::test_functional_call_multiple_dicts_error, test/test_stateless.py::TestStatelessFunctionalAPI::test_functional_call_stateless, test/test_stateless.py::TestStatelessFunctionalAPI::test_functional_call_torch_func, test/test_stateless.py::TestStatelessFunctionalAPI::test_functional_call_tuple_dicts, test/test_stateless.py::TestStatelessFunctionalAPI::test_functional_call_with_data_parallel_error_stateless, test/test_stateless.py::TestStatelessFunctionalAPI::test_functional_call_with_data_parallel_error_torch_func, test/test_stateless.py::TestStatelessFunctionalAPI::test_functional_call_with_data_parallel_stateless, test/test_stateless.py::TestStatelessFunctionalAPI::test_functional_call_with_data_parallel_torch_func, test/test_stateless.py::TestStatelessFunctionalAPI::test_functional_call_with_gradient_stateless, test/test_stateless.py::TestStatelessFunctionalAPI::test_functional_call_with_gradient_torch_func, test/test_stateless.py::TestStatelessFunctionalAPI::test_functional_call_with_jit_stateless, test/test_stateless.py::TestStatelessFunctionalAPI::test_functional_call_with_jit_torch_func, test/test_stateless.py::TestStatelessFunctionalAPI::test_functional_call_with_kwargs_stateless, test/test_stateless.py::TestStatelessFunctionalAPI::test_functional_call_with_kwargs_torch_func, test/test_stateless.py::TestStatelessFunctionalAPI::test_in_place_operator_stateless, test/test_stateless.py::TestStatelessFunctionalAPI::test_in_place_operator_torch_func, test/test_stateless.py::TestStatelessFunctionalAPI::test_reparametrize_module_fail_reset_to_original_stateless, test/test_stateless.py::TestStatelessFunctionalAPI::test_reparametrize_module_fail_reset_to_original_torch_func, test/test_stateless.py::TestStatelessFunctionalAPI::test_reparametrize_some_weights_stateless, test/test_stateless.py::TestStatelessFunctionalAPI::test_reparametrize_some_weights_torch_func, test/test_stateless.py::TestStatelessFunctionalAPI::test_reparametrize_special_stateless, test/test_stateless.py::TestStatelessFunctionalAPI::test_reparametrize_special_torch_func, test/test_stateless.py::TestStatelessFunctionalAPI::test_reparametrize_strict_stateless, test/test_stateless.py::TestStatelessFunctionalAPI::test_reparametrize_strict_torch_func, test/test_stateless.py::TestStatelessFunctionalAPI::test_reparametrize_tie_some_weights_stateless, test/test_stateless.py::TestStatelessFunctionalAPI::test_reparametrize_tie_some_weights_torch_func, test/test_stateless.py::TestStatelessFunctionalAPI::test_reparametrize_tie_weights_stateless, test/test_stateless.py::TestStatelessFunctionalAPI::test_reparametrize_tie_weights_strict_stateless, test/test_stateless.py::TestStatelessFunctionalAPI::test_reparametrize_tie_weights_strict_torch_func, test/test_stateless.py::TestStatelessFunctionalAPI::test_reparametrize_tie_weights_torch_func, test/test_stateless.py::TestStatelessFunctionalAPI::test_reparametrized_module_change_parametrization_original_stateless, test/test_stateless.py::TestStatelessFunctionalAPI::test_reparametrized_module_change_parametrization_original_torch_func, test/test_stateless.py::TestStatelessFunctionalAPI::test_setattr_stateless, test/test_stateless.py::TestStatelessFunctionalAPI::test_setattr_strict_stateless, test/test_stateless.py::TestStatelessFunctionalAPI::test_setattr_strict_torch_func, test/test_stateless.py::TestStatelessFunctionalAPI::test_setattr_torch_func, test/test_stateless.py::TestStatelessFunctionalAPI::test_tied_weights_errors_stateless, test/test_stateless.py::TestStatelessFunctionalAPI::test_tied_weights_errors_torch_func, test/test_stateless.py::TestStatelessFunctionalAPI::test_tied_weights_no_error_without_flag, test/test_stateless.py::TestStatelessFunctionalAPI::test_tied_weights_warns_stateless, test/test_stateless.py::TestStatelessFunctionalAPI::test_tied_weights_warns_torch_func, test/test_stateless.py::TestStatelessDeprecation::test_private_stateless_warns, test/test_stateless.py::TestStatelessDeprecation::test_stateless_functional_call_warns, test/test_stateless.py::TestPythonOptimizeMode::test_runs_with_optimize_flag 2025-08-26T22:32:40.6764470Z 2025-08-26T22:32:47.5306613Z Running test_numpy_interop 1/1 ... [2025-08-26 22:32:47.530184] 2025-08-26T22:32:47.5307348Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:32:47.5314314Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_numpy_interop.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:32:47.530767] 2025-08-26T22:32:55.2941550Z 2025-08-26T22:32:55.2943158Z test_numpy_interop 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_numpy_interop_1.1_0702d279801e2fa5_.log 2025-08-26T22:32:55.2966113Z Running 44 items in this shard: test/test_numpy_interop.py::TestNumPyInteropCPU::test___eq___cpu_bool, test/test_numpy_interop.py::TestNumPyInteropCPU::test___eq___cpu_complex128, test/test_numpy_interop.py::TestNumPyInteropCPU::test___eq___cpu_complex64, test/test_numpy_interop.py::TestNumPyInteropCPU::test___eq___cpu_float16, test/test_numpy_interop.py::TestNumPyInteropCPU::test___eq___cpu_float32, test/test_numpy_interop.py::TestNumPyInteropCPU::test___eq___cpu_float64, test/test_numpy_interop.py::TestNumPyInteropCPU::test___eq___cpu_int16, test/test_numpy_interop.py::TestNumPyInteropCPU::test___eq___cpu_int32, test/test_numpy_interop.py::TestNumPyInteropCPU::test___eq___cpu_int64, test/test_numpy_interop.py::TestNumPyInteropCPU::test___eq___cpu_int8, test/test_numpy_interop.py::TestNumPyInteropCPU::test___eq___cpu_uint8, test/test_numpy_interop.py::TestNumPyInteropCPU::test_ctor_with_invalid_numpy_array_sequence_cpu, test/test_numpy_interop.py::TestNumPyInteropCPU::test_ctor_with_numpy_scalar_ctor_cpu, test/test_numpy_interop.py::TestNumPyInteropCPU::test_empty_tensors_interop_cpu, test/test_numpy_interop.py::TestNumPyInteropCPU::test_from_list_of_ndarray_warning_cpu, test/test_numpy_interop.py::TestNumPyInteropCPU::test_from_numpy_cpu, test/test_numpy_interop.py::TestNumPyInteropCPU::test_from_numpy_no_leak_on_invalid_dtype_cpu, test/test_numpy_interop.py::TestNumPyInteropCPU::test_from_numpy_zero_element_type_cpu, test/test_numpy_interop.py::TestNumPyInteropCPU::test_has_storage_numpy_cpu, test/test_numpy_interop.py::TestNumPyInteropCPU::test_multiplication_numpy_scalar_cpu, test/test_numpy_interop.py::TestNumPyInteropCPU::test_ndarray_astype_object_graph_break_2_cpu, test/test_numpy_interop.py::TestNumPyInteropCPU::test_ndarray_astype_object_graph_break_cpu, test/test_numpy_interop.py::TestNumPyInteropCPU::test_numpy_array_interface_cpu, test/test_numpy_interop.py::TestNumPyInteropCPU::test_numpy_index_cpu, test/test_numpy_interop.py::TestNumPyInteropCPU::test_numpy_index_multi_cpu, test/test_numpy_interop.py::TestNumPyInteropCPU::test_numpy_non_writeable_cpu, test/test_numpy_interop.py::TestNumPyInteropCPU::test_numpy_scalar_cmp_cpu_bfloat16, test/test_numpy_interop.py::TestNumPyInteropCPU::test_numpy_scalar_cmp_cpu_bool, test/test_numpy_interop.py::TestNumPyInteropCPU::test_numpy_scalar_cmp_cpu_complex128, test/test_numpy_interop.py::TestNumPyInteropCPU::test_numpy_scalar_cmp_cpu_complex64, test/test_numpy_interop.py::TestNumPyInteropCPU::test_numpy_scalar_cmp_cpu_float16, test/test_numpy_interop.py::TestNumPyInteropCPU::test_numpy_scalar_cmp_cpu_float32, test/test_numpy_interop.py::TestNumPyInteropCPU::test_numpy_scalar_cmp_cpu_float64, test/test_numpy_interop.py::TestNumPyInteropCPU::test_numpy_scalar_cmp_cpu_int16, test/test_numpy_interop.py::TestNumPyInteropCPU::test_numpy_scalar_cmp_cpu_int32, test/test_numpy_interop.py::TestNumPyInteropCPU::test_numpy_scalar_cmp_cpu_int64, test/test_numpy_interop.py::TestNumPyInteropCPU::test_numpy_scalar_cmp_cpu_int8, test/test_numpy_interop.py::TestNumPyInteropCPU::test_numpy_scalar_cmp_cpu_uint8, test/test_numpy_interop.py::TestNumPyInteropCPU::test_numpy_unresizable_cpu, test/test_numpy_interop.py::TestNumPyInteropCPU::test_parse_numpy_int_cpu, test/test_numpy_interop.py::TestNumPyInteropCPU::test_parse_numpy_int_overflow_cpu, test/test_numpy_interop.py::TestNumPyInteropCPU::test_to_numpy_bool_cpu, test/test_numpy_interop.py::TestNumPyInteropCPU::test_to_numpy_cpu, test/test_numpy_interop.py::TestNumPyInteropCPU::test_to_numpy_force_argument_cpu 2025-08-26T22:32:55.2989033Z 2025-08-26T22:33:02.0434523Z Running distributions/test_constraints 1/1 ... [2025-08-26 22:33:02.043281] 2025-08-26T22:33:02.0435481Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:33:02.0444074Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'distributions/test_constraints.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:33:02.043281] 2025-08-26T22:33:08.9856406Z 2025-08-26T22:33:08.9858170Z distributions/test_constraints 1/1 was successful, full logs can be found in artifacts with path test/test-reports/distributions.test_constraints_1.1_042b8794f90fe046_.log 2025-08-26T22:33:08.9957437Z Running 136 items in this shard: test/distributions/test_constraints.py::test_constraint[False-constraint_fn0-False-value0], test/distributions/test_constraints.py::test_constraint[False-constraint_fn1-False-value1], test/distributions/test_constraints.py::test_constraint[False-constraint_fn2-False-value2], test/distributions/test_constraints.py::test_constraint[False-constraint_fn3-True-value3], test/distributions/test_constraints.py::test_constraint[False-constraint_fn4-False-value4], test/distributions/test_constraints.py::test_constraint[False-constraint_fn5-False-value5], test/distributions/test_constraints.py::test_constraint[False-constraint_fn6-True-value6], test/distributions/test_constraints.py::test_constraint[False-constraint_fn7-True-value7], test/distributions/test_constraints.py::test_constraint[False-constraint_fn8-False-value8], test/distributions/test_constraints.py::test_constraint[False-constraint_fn9-True-value9], test/distributions/test_constraints.py::test_constraint[False-constraint_fn10-False-value10], test/distributions/test_constraints.py::test_constraint[False-constraint_fn11-False-value11], test/distributions/test_constraints.py::test_constraint[False-constraint_fn12-True-value12], test/distributions/test_constraints.py::test_constraint[False-constraint_fn13-True-value13], test/distributions/test_constraints.py::test_constraint[False-constraint_fn14-False-value14], test/distributions/test_constraints.py::test_constraint[False-constraint_fn15-True-value15], test/distributions/test_constraints.py::test_constraint[False-constraint_fn16-True-value16], test/distributions/test_constraints.py::test_constraint[False-constraint_fn17-True-value17], test/distributions/test_constraints.py::test_constraint[True-constraint_fn0-False-value0], test/distributions/test_constraints.py::test_constraint[True-constraint_fn1-False-value1], test/distributions/test_constraints.py::test_constraint[True-constraint_fn2-False-value2], test/distributions/test_constraints.py::test_constraint[True-constraint_fn3-True-value3], test/distributions/test_constraints.py::test_constraint[True-constraint_fn4-False-value4], test/distributions/test_constraints.py::test_constraint[True-constraint_fn5-False-value5], test/distributions/test_constraints.py::test_constraint[True-constraint_fn6-True-value6], test/distributions/test_constraints.py::test_constraint[True-constraint_fn7-True-value7], test/distributions/test_constraints.py::test_constraint[True-constraint_fn8-False-value8], test/distributions/test_constraints.py::test_constraint[True-constraint_fn9-True-value9], test/distributions/test_constraints.py::test_constraint[True-constraint_fn10-False-value10], test/distributions/test_constraints.py::test_constraint[True-constraint_fn11-False-value11], test/distributions/test_constraints.py::test_constraint[True-constraint_fn12-True-value12], test/distributions/test_constraints.py::test_constraint[True-constraint_fn13-True-value13], test/distributions/test_constraints.py::test_constraint[True-constraint_fn14-False-value14], test/distributions/test_constraints.py::test_constraint[True-constraint_fn15-True-value15], test/distributions/test_constraints.py::test_constraint[True-constraint_fn16-True-value16], test/distributions/test_constraints.py::test_constraint[True-constraint_fn17-True-value17], test/distributions/test_constraints.py::test_biject_to[False-constraint_fn0-args0], test/distributions/test_constraints.py::test_biject_to[False-constraint_fn1-args1], test/distributions/test_constraints.py::test_biject_to[False-constraint_fn2-args2], test/distributions/test_constraints.py::test_biject_to[False-_GreaterThan-args3], test/distributions/test_constraints.py::test_biject_to[False-_GreaterThan-args4], test/distributions/test_constraints.py::test_biject_to[False-_GreaterThan-args5], test/distributions/test_constraints.py::test_biject_to[False-_GreaterThan-args6], test/distributions/test_constraints.py::test_biject_to[False-_GreaterThanEq-args7], test/distributions/test_constraints.py::test_biject_to[False-_GreaterThanEq-args8], test/distributions/test_constraints.py::test_biject_to[False-_GreaterThanEq-args9], test/distributions/test_constraints.py::test_biject_to[False-_LessThan-args10], test/distributions/test_constraints.py::test_biject_to[False-_LessThan-args11], test/distributions/test_constraints.py::test_biject_to[False-_LessThan-args12], test/distributions/test_constraints.py::test_biject_to[False-_LessThan-args13], test/distributions/test_constraints.py::test_biject_to[False-constraint_fn14-args14], test/distributions/test_constraints.py::test_biject_to[False-_Interval-args15], test/distributions/test_constraints.py::test_biject_to[False-_Interval-args16], test/distributions/test_constraints.py::test_biject_to[False-_Interval-args17], test/distributions/test_constraints.py::test_biject_to[False-_HalfOpenInterval-args18], test/distributions/test_constraints.py::test_biject_to[False-_HalfOpenInterval-args19], test/distributions/test_constraints.py::test_biject_to[False-_HalfOpenInterval-args20], test/distributions/test_constraints.py::test_biject_to[False-constraint_fn21-args21], test/distributions/test_constraints.py::test_biject_to[False-constraint_fn22-args22], test/distributions/test_constraints.py::test_biject_to[False-constraint_fn23-args23], test/distributions/test_constraints.py::test_biject_to[False-constraint_fn24-args24], test/distributions/test_constraints.py::test_biject_to[True-constraint_fn0-args0], test/distributions/test_constraints.py::test_biject_to[True-constraint_fn1-args1], test/distributions/test_constraints.py::test_biject_to[True-constraint_fn2-args2], test/distributions/test_constraints.py::test_biject_to[True-_GreaterThan-args3], test/distributions/test_constraints.py::test_biject_to[True-_GreaterThan-args4], test/distributions/test_constraints.py::test_biject_to[True-_GreaterThan-args5], test/distributions/test_constraints.py::test_biject_to[True-_GreaterThan-args6], test/distributions/test_constraints.py::test_biject_to[True-_GreaterThanEq-args7], test/distributions/test_constraints.py::test_biject_to[True-_GreaterThanEq-args8], test/distributions/test_constraints.py::test_biject_to[True-_GreaterThanEq-args9], test/distributions/test_constraints.py::test_biject_to[True-_LessThan-args10], test/distributions/test_constraints.py::test_biject_to[True-_LessThan-args11], test/distributions/test_constraints.py::test_biject_to[True-_LessThan-args12], test/distributions/test_constraints.py::test_biject_to[True-_LessThan-args13], test/distributions/test_constraints.py::test_biject_to[True-constraint_fn14-args14], test/distributions/test_constraints.py::test_biject_to[True-_Interval-args15], test/distributions/test_constraints.py::test_biject_to[True-_Interval-args16], test/distributions/test_constraints.py::test_biject_to[True-_Interval-args17], test/distributions/test_constraints.py::test_biject_to[True-_HalfOpenInterval-args18], test/distributions/test_constraints.py::test_biject_to[True-_HalfOpenInterval-args19], test/distributions/test_constraints.py::test_biject_to[True-_HalfOpenInterval-args20], test/distributions/test_constraints.py::test_biject_to[True-constraint_fn21-args21], test/distributions/test_constraints.py::test_biject_to[True-constraint_fn22-args22], test/distributions/test_constraints.py::test_biject_to[True-constraint_fn23-args23], test/distributions/test_constraints.py::test_biject_to[True-constraint_fn24-args24], test/distributions/test_constraints.py::test_transform_to[False-constraint_fn0-args0], test/distributions/test_constraints.py::test_transform_to[False-constraint_fn1-args1], test/distributions/test_constraints.py::test_transform_to[False-constraint_fn2-args2], test/distributions/test_constraints.py::test_transform_to[False-_GreaterThan-args3], test/distributions/test_constraints.py::test_transform_to[False-_GreaterThan-args4], test/distributions/test_constraints.py::test_transform_to[False-_GreaterThan-args5], test/distributions/test_constraints.py::test_transform_to[False-_GreaterThan-args6], test/distributions/test_constraints.py::test_transform_to[False-_GreaterThanEq-args7], test/distributions/test_constraints.py::test_transform_to[False-_GreaterThanEq-args8], test/distributions/test_constraints.py::test_transform_to[False-_GreaterThanEq-args9], test/distributions/test_constraints.py::test_transform_to[False-_LessThan-args10], test/distributions/test_constraints.py::test_transform_to[False-_LessThan-args11], test/distributions/test_constraints.py::test_transform_to[False-_LessThan-args12], test/distributions/test_constraints.py::test_transform_to[False-_LessThan-args13], test/distributions/test_constraints.py::test_transform_to[False-constraint_fn14-args14], test/distributions/test_constraints.py::test_transform_to[False-_Interval-args15], test/distributions/test_constraints.py::test_transform_to[False-_Interval-args16], test/distributions/test_constraints.py::test_transform_to[False-_Interval-args17], test/distributions/test_constraints.py::test_transform_to[False-_HalfOpenInterval-args18], test/distributions/test_constraints.py::test_transform_to[False-_HalfOpenInterval-args19], test/distributions/test_constraints.py::test_transform_to[False-_HalfOpenInterval-args20], test/distributions/test_constraints.py::test_transform_to[False-constraint_fn21-args21], test/distributions/test_constraints.py::test_transform_to[False-constraint_fn22-args22], test/distributions/test_constraints.py::test_transform_to[False-constraint_fn23-args23], test/distributions/test_constraints.py::test_transform_to[False-constraint_fn24-args24], test/distributions/test_constraints.py::test_transform_to[True-constraint_fn0-args0], test/distributions/test_constraints.py::test_transform_to[True-constraint_fn1-args1], test/distributions/test_constraints.py::test_transform_to[True-constraint_fn2-args2], test/distributions/test_constraints.py::test_transform_to[True-_GreaterThan-args3], test/distributions/test_constraints.py::test_transform_to[True-_GreaterThan-args4], test/distributions/test_constraints.py::test_transform_to[True-_GreaterThan-args5], test/distributions/test_constraints.py::test_transform_to[True-_GreaterThan-args6], test/distributions/test_constraints.py::test_transform_to[True-_GreaterThanEq-args7], test/distributions/test_constraints.py::test_transform_to[True-_GreaterThanEq-args8], test/distributions/test_constraints.py::test_transform_to[True-_GreaterThanEq-args9], test/distributions/test_constraints.py::test_transform_to[True-_LessThan-args10], test/distributions/test_constraints.py::test_transform_to[True-_LessThan-args11], test/distributions/test_constraints.py::test_transform_to[True-_LessThan-args12], test/distributions/test_constraints.py::test_transform_to[True-_LessThan-args13], test/distributions/test_constraints.py::test_transform_to[True-constraint_fn14-args14], test/distributions/test_constraints.py::test_transform_to[True-_Interval-args15], test/distributions/test_constraints.py::test_transform_to[True-_Interval-args16], test/distributions/test_constraints.py::test_transform_to[True-_Interval-args17], test/distributions/test_constraints.py::test_transform_to[True-_HalfOpenInterval-args18], test/distributions/test_constraints.py::test_transform_to[True-_HalfOpenInterval-args19], test/distributions/test_constraints.py::test_transform_to[True-_HalfOpenInterval-args20], test/distributions/test_constraints.py::test_transform_to[True-constraint_fn21-args21], test/distributions/test_constraints.py::test_transform_to[True-constraint_fn22-args22], test/distributions/test_constraints.py::test_transform_to[True-constraint_fn23-args23], test/distributions/test_constraints.py::test_transform_to[True-constraint_fn24-args24] 2025-08-26T22:33:09.0058547Z 2025-08-26T22:33:15.9861821Z Running torch_np/test_ufuncs_basic 1/1 ... [2025-08-26 22:33:15.981446] 2025-08-26T22:33:15.9862556Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:33:15.9871391Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/test_ufuncs_basic.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:33:15.981446] 2025-08-26T22:33:25.2939920Z 2025-08-26T22:33:25.2941272Z torch_np/test_ufuncs_basic 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.test_ufuncs_basic_1.1_1fca56b7723879b9_.log 2025-08-26T22:33:25.3234901Z Running 371 items in this shard: test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_scalar_ufunc0, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_dtype_casting_casting_equiv_ufunc0_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_dtype_casting_casting_equiv_ufunc0_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_dtype_casting_casting_equiv_ufunc0_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_dtype_casting_casting_no_ufunc0_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_dtype_casting_casting_no_ufunc0_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_dtype_casting_casting_no_ufunc0_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_dtype_casting_casting_safe_ufunc0_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_dtype_casting_casting_safe_ufunc0_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_dtype_casting_casting_safe_ufunc0_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_dtype_casting_casting_same_kind_ufunc0_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_dtype_casting_casting_same_kind_ufunc0_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_dtype_casting_casting_same_kind_ufunc0_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_dtype_casting_casting_unsafe_ufunc0_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_dtype_casting_casting_unsafe_ufunc0_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_dtype_casting_casting_unsafe_ufunc0_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_dtype_ufunc0, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_out_broadcast_ufunc0, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_out_casting_casting_equiv_ufunc0_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_out_casting_casting_equiv_ufunc0_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_out_casting_casting_equiv_ufunc0_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_out_casting_casting_no_ufunc0_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_out_casting_casting_no_ufunc0_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_out_casting_casting_no_ufunc0_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_out_casting_casting_safe_ufunc0_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_out_casting_casting_safe_ufunc0_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_out_casting_casting_safe_ufunc0_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_out_casting_casting_same_kind_ufunc0_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_out_casting_casting_same_kind_ufunc0_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_out_casting_casting_same_kind_ufunc0_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_out_casting_casting_unsafe_ufunc0_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_out_casting_casting_unsafe_ufunc0_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_out_casting_casting_unsafe_ufunc0_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_scalar_ufunc0, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_scalar_ufunc1, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_scalar_ufunc10, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_scalar_ufunc11, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_scalar_ufunc12, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_scalar_ufunc13, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_scalar_ufunc14, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_scalar_ufunc15, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_scalar_ufunc16, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_scalar_ufunc2, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_scalar_ufunc3, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_scalar_ufunc4, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_scalar_ufunc5, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_scalar_ufunc6, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_scalar_ufunc7, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_scalar_ufunc8, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_scalar_ufunc9, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_vector_vs_scalar_ufunc0, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_vector_vs_scalar_ufunc1, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_vector_vs_scalar_ufunc10, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_vector_vs_scalar_ufunc11, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_vector_vs_scalar_ufunc12, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_vector_vs_scalar_ufunc13, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_vector_vs_scalar_ufunc14, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_vector_vs_scalar_ufunc15, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_vector_vs_scalar_ufunc16, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_vector_vs_scalar_ufunc2, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_vector_vs_scalar_ufunc3, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_vector_vs_scalar_ufunc4, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_vector_vs_scalar_ufunc5, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_vector_vs_scalar_ufunc6, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_vector_vs_scalar_ufunc7, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_vector_vs_scalar_ufunc8, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_vector_vs_scalar_ufunc9, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_broadcast_ufunc0, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_broadcast_ufunc1, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_broadcast_ufunc10, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_broadcast_ufunc11, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_broadcast_ufunc12, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_broadcast_ufunc13, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_broadcast_ufunc14, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_broadcast_ufunc15, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_broadcast_ufunc16, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_broadcast_ufunc2, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_broadcast_ufunc3, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_broadcast_ufunc4, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_broadcast_ufunc5, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_broadcast_ufunc6, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_broadcast_ufunc7, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_broadcast_ufunc8, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_broadcast_ufunc9, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc0_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc0_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc0_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc10_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc10_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc10_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc11_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc11_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc11_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc12_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc12_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc12_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc13_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc13_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc13_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc14_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc14_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc14_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc15_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc15_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc15_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc16_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc16_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc16_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc1_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc1_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc1_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc2_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc2_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc2_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc3_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc3_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc3_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc4_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc4_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc4_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc5_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc5_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc5_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc6_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc6_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc6_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc7_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc7_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc7_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc8_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc8_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc8_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc9_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc9_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc9_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc0_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc0_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc0_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc10_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc10_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc10_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc11_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc11_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc11_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc12_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc12_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc12_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc13_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc13_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc13_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc14_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc14_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc14_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc15_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc15_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc15_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc16_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc16_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc16_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc1_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc1_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc1_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc2_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc2_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc2_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc3_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc3_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc3_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc4_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc4_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc4_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc5_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc5_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc5_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc6_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc6_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc6_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc7_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc7_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc7_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc8_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc8_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc8_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc9_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc9_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc9_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc0_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc0_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc0_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc10_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc10_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc10_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc11_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc11_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc11_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc12_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc12_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc12_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc13_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc13_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc13_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc14_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc14_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc14_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc15_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc15_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc15_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc16_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc16_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc16_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc1_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc1_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc1_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc2_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc2_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc2_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc3_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc3_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc3_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc4_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc4_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc4_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc5_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc5_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc5_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc6_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc6_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc6_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc7_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc7_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc7_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc8_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc8_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc8_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc9_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc9_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc9_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc0_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc0_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc0_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc10_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc10_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc10_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc11_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc11_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc11_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc12_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc12_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc12_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc13_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc13_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc13_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc14_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc14_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc14_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc15_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc15_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc15_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc16_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc16_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc16_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc1_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc1_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc1_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc2_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc2_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc2_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc3_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc3_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc3_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc4_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc4_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc4_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc5_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc5_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc5_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc6_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc6_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc6_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc7_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc7_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc7_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc8_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc8_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc8_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc9_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc9_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc9_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc0_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc0_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc0_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc10_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc10_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc10_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc11_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc11_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc11_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc12_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc12_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc12_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc13_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc13_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc13_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc14_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc14_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc14_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc15_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc15_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc15_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc16_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc16_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc16_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc1_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc1_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc1_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc2_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc2_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc2_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc3_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc3_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc3_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc4_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc4_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc4_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc5_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc5_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc5_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc6_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc6_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc6_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc7_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc7_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc7_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc8_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc8_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc8_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc9_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc9_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc9_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_basic_ufunc0_op0_iop0, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_basic_ufunc1_op1_iop1, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_basic_ufunc2_op2_iop2, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_array_bcast_ufunc0_op0_iop0, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_array_bcast_ufunc1_op1_iop1, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_array_bcast_ufunc2_op2_iop2, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_array_ufunc0_op0_iop0_other_dtype0, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_array_ufunc0_op0_iop0_other_dtype1, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_array_ufunc0_op0_iop0_other_dtype2, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_array_ufunc0_op0_iop0_other_dtype3, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_array_ufunc1_op1_iop1_other_dtype0, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_array_ufunc1_op1_iop1_other_dtype1, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_array_ufunc1_op1_iop1_other_dtype2, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_array_ufunc1_op1_iop1_other_dtype3, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_array_ufunc2_op2_iop2_other_dtype0, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_array_ufunc2_op2_iop2_other_dtype1, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_array_ufunc2_op2_iop2_other_dtype2, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_array_ufunc2_op2_iop2_other_dtype3, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_scalar_ufunc0_op0_iop0_other_dtype0, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_scalar_ufunc0_op0_iop0_other_dtype1, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_scalar_ufunc0_op0_iop0_other_dtype2, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_scalar_ufunc0_op0_iop0_other_dtype3, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_scalar_ufunc1_op1_iop1_other_dtype0, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_scalar_ufunc1_op1_iop1_other_dtype1, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_scalar_ufunc1_op1_iop1_other_dtype2, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_scalar_ufunc1_op1_iop1_other_dtype3, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_scalar_ufunc2_op2_iop2_other_dtype0, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_scalar_ufunc2_op2_iop2_other_dtype1, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_scalar_ufunc2_op2_iop2_other_dtype2, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_scalar_ufunc2_op2_iop2_other_dtype3, test/torch_np/test_ufuncs_basic.py::TestUfuncDtypeKwd::test_binary_ufunc_dtype, test/torch_np/test_ufuncs_basic.py::TestUfuncDtypeKwd::test_binary_ufunc_dtype_and_out 2025-08-26T22:33:25.3487539Z 2025-08-26T22:33:31.2903532Z Running test_out_dtype_op 1/1 ... [2025-08-26 22:33:31.289087] 2025-08-26T22:33:31.2904006Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:33:31.2910305Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_out_dtype_op.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:33:31.289087] 2025-08-26T22:33:45.1702583Z 2025-08-26T22:33:45.1703959Z test_out_dtype_op 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_out_dtype_op_1.1_94a7f6d5851b8a30_.log 2025-08-26T22:33:45.1711571Z Running 12 items in this shard: test/test_out_dtype_op.py::TestOutDtypeOp::test_out_dtype_dynamo, test/test_out_dtype_op.py::TestOutDtypeOp::test_out_dtype_inductor_decomp, test/test_out_dtype_op.py::TestOutDtypeOp::test_out_dtype_inductor_decomp_trace, test/test_out_dtype_op.py::TestOutDtypeOp::test_out_dtype_int_mm_default_trace, test/test_out_dtype_op.py::TestOutDtypeOp::test_out_dtype_make_fx, test/test_out_dtype_op.py::TestOutDtypeOp::test_out_dtype_mm_numerical, test/test_out_dtype_op.py::TestOutDtypeOp::test_out_dtype_mul_scalar_numerical, test/test_out_dtype_op.py::TestOutDtypeOp::test_out_dtype_no_autograd, test/test_out_dtype_op.py::TestOutDtypeOp::test_out_dtype_non_functional, test/test_out_dtype_op.py::TestOutDtypeOp::test_out_dtype_non_op_overload, test/test_out_dtype_op.py::TestOutDtypeOp::test_out_dtype_op_functional, test/test_out_dtype_op.py::TestOutDtypeOp::test_out_dtype_wrong_output 2025-08-26T22:33:45.1717822Z 2025-08-26T22:33:50.6542602Z Running test_ops_gradients 1/2 ... [2025-08-26 22:33:50.652443] 2025-08-26T22:33:50.6543084Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:33:50.6549231Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops_gradients.py', '-m', 'not serial', '--shard-id=1', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:33:50.652443] 2025-08-26T22:36:32.5944418Z 2025-08-26T22:36:32.5945550Z test_ops 8/9 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_8.9_74c6f794d788485a_.log 2025-08-26T22:36:32.7462583Z Running 3786 items in this shard: test/test_ops.py::TestCommonCPU::test_compare_cpu___radd___cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu___rmatmul___cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_T_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs__conversions_char_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs__conversions_complex_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_atan2_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_bitwise_left_shift_cpu_int64, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_fliplr_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_fmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_linalg_svd_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_nextafter_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_nn_functional_relu6_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_nn_functional_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_randn_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_rot90_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_special_xlog1py_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_unflatten_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_view_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_vstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_xlogy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__upsample_bilinear2d_aa_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_as_strided_partial_views_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_as_strided_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_bitwise_right_shift_cpu_int64, test/test_ops.py::TestCommonCPU::test_compare_cpu_block_diag_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_cauchy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_contiguous_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_cov_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_empty_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_expand_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_fmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_geometric_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_grid_sampler_3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_inner_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_eigh_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_logsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_masked_logsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_masked_softmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_min_reduction_no_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_narrow_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_native_batch_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_native_dropout_backward_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_new_zeros_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_conv2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_cosine_embedding_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_cosine_similarity_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_kl_div_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_local_response_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_pad_circular_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_unfold_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_ones_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_randint_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_randint_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_rot90_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_special_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_take_along_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_triu_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_uniform_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_unique_consecutive_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_unsqueeze_cpu_float32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_H_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_bool_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_flatten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_full_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_hsplit_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_narrow_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_ones_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_transpose_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_unbind_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_unfold_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_unsafe_chunk_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_zeros_cpu_complex32, test/test_ops.py::TestCommonCPU::test_dtypes___getitem___cpu, test/test_ops.py::TestCommonCPU::test_dtypes___rmod___cpu, test/test_ops.py::TestCommonCPU::test_dtypes___rmul___cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs__conversions_cdouble_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_acos_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_atleast_2d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_clone_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_column_stack_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_dsplit_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_exp2_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fft_fft_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fft_ifftn_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fft_irfftn_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fft_rfft_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_float_power_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fmod_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_heaviside_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_item_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_lcm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_logsumexp_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_hardshrink_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_hardtanh_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_nll_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_pixel_unshuffle_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_rad2deg_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_roll_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_rsqrt_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_special_bessel_j1_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_special_i1_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_special_i1e_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_special_log_softmax_with_dtype_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_special_spherical_bessel_j0_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_take_along_dim_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_trunc_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_xlogy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_addr_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_all_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_as_strided_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_as_strided_scatter_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_atan_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_bfloat16_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_bitwise_and_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_clamp_max_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_cos_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_cumprod_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_deg2rad_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_diag_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_div_trunc_rounding_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_empty_like_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_equal_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_erfc_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fft_fftshift_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fft_ihfft_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fill_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_floor_divide_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_grid_sampler_3d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_hypot_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_index_add_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_index_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_index_fill_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_index_put_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_inner_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_isclose_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_eigvals_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_lstsq_grad_oriented_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_matrix_rank_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_norm_subgradients_at_zero_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_pinv_singular_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_qr_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_vector_norm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linspace_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_logcumsumexp_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_argmin_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_cumsum_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nanmedian_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_native_batch_norm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_adaptive_max_pool1d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_conv2d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_cosine_similarity_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_dropout2d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_interpolate_bilinear_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_max_pool3d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_max_unpool2d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_max_unpool3d_grad_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_multilabel_soft_margin_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_pad_replicate_negative_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_smooth_l1_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nonzero_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_permute_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_rand_like_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_repeat_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_rsub_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_signal_windows_general_cosine_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_bessel_j0_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_ndtr_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_scaled_modified_bessel_k1_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_shifted_chebyshev_polynomial_u_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_squeeze_multiple_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_tan_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_tensor_split_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_unbind_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_uniform_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_var_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_var_unbiased_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_vsplit_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_zero__cpu, test/test_ops.py::TestCommonCPU::test_errors___ror___cpu, test/test_ops.py::TestCommonCPU::test_errors_bitwise_and_cpu, test/test_ops.py::TestCommonCPU::test_errors_cauchy_cpu, test/test_ops.py::TestCommonCPU::test_errors_copysign_cpu, test/test_ops.py::TestCommonCPU::test_errors_eye_cpu, test/test_ops.py::TestCommonCPU::test_errors_float_power_cpu, test/test_ops.py::TestCommonCPU::test_errors_fmin_cpu, test/test_ops.py::TestCommonCPU::test_errors_heaviside_cpu, test/test_ops.py::TestCommonCPU::test_errors_hsplit_cpu, test/test_ops.py::TestCommonCPU::test_errors_igammac_cpu, test/test_ops.py::TestCommonCPU::test_errors_linalg_cross_cpu, test/test_ops.py::TestCommonCPU::test_errors_logical_or_cpu, test/test_ops.py::TestCommonCPU::test_errors_masked_select_cpu, test/test_ops.py::TestCommonCPU::test_errors_movedim_cpu, test/test_ops.py::TestCommonCPU::test_errors_native_layer_norm_cpu, test/test_ops.py::TestCommonCPU::test_errors_ne_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_adaptive_max_pool3d_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_hinge_embedding_loss_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_triplet_margin_with_distance_loss_cpu, test/test_ops.py::TestCommonCPU::test_errors_ormqr_cpu, test/test_ops.py::TestCommonCPU::test_errors_reshape_as_cpu, test/test_ops.py::TestCommonCPU::test_errors_rot90_cpu, test/test_ops.py::TestCommonCPU::test_errors_signal_windows_hann_cpu, test/test_ops.py::TestCommonCPU::test_errors_signal_windows_kaiser_cpu, test/test_ops.py::TestCommonCPU::test_errors_signal_windows_nuttall_cpu, test/test_ops.py::TestCommonCPU::test_errors_sparse_mul_layout0_cpu, test/test_ops.py::TestCommonCPU::test_errors_sparse_zeros_like_layout0_cpu, test/test_ops.py::TestCommonCPU::test_errors_sparse_zeros_like_layout1_cpu, test/test_ops.py::TestCommonCPU::test_errors_special_shifted_chebyshev_polynomial_u_cpu, test/test_ops.py::TestCommonCPU::test_errors_sum_to_size_cpu, test/test_ops.py::TestCommonCPU::test_errors_take_cpu, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_all_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_any_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_asin_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_ceil_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_cholesky_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_copysign_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_cross_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_cummin_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_diagonal_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_expm1_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_igamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_index_reduce_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_le_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_cond_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_eigh_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_eigvalsh_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_logaddexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_logsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_lu_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_neg_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_nonzero_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_polygamma_polygamma_n_1_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_qr_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_round_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_round_decimals_neg_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_scatter_reduce_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_sgn_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_bessel_y0_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_hermite_polynomial_he_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_xlog1py_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_square_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_tan_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_trunc_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices___radd___cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices___radd___cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices___rdiv___cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices___rmod___cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices___ror___cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices___rpow___cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices__segment_reduce_lengths_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_acos_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_amin_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_atleast_1d_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_baddbmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_bitwise_not_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_cat_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_cholesky_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_cholesky_inverse_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_chunk_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_clamp_max_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_conj_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_cosh_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_diagonal_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_dstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_dstack_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_empty_strided_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_eq_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_ifft_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_flipud_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_floor_divide_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_gather_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_ge_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_geqrf_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_hstack_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_index_add_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_index_reduce_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_index_reduce_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_inner_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_isfinite_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_isfinite_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_isinf_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_jiterator_4inputs_with_extra_args_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_jiterator_unary_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_lcm_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_le_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_lgamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_cross_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_lstsq_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_lu_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_qr_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_solve_triangular_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_svd_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_svdvals_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_tensorinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_log_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_log_softmax_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_logical_not_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_logical_or_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_logical_xor_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_logit_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_logsumexp_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_lt_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_amin_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_cumprod_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_prod_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_matrix_exp_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_meshgrid_list_of_tensors_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_meshgrid_variadic_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_min_reduction_no_dim_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_minimum_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_mm_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nansum_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_narrow_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_ne_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_new_empty_strided_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_avg_pool1d_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_avg_pool3d_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_batch_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_binary_cross_entropy_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_conv_transpose1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_cosine_embedding_loss_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_dropout_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_linear_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_local_response_norm_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_margin_ranking_loss_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_max_unpool1d_grad_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_max_unpool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_mish_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_nll_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_pad_circular_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_pad_replicate_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_pad_replicate_negative_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_relu6_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_norm_fro_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_normal_in_place_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_ones_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_ones_like_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_outer_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_outer_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_permute_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_permute_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_pinverse_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_polygamma_polygamma_n_3_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_pow_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_rad2deg_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_renorm_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_repeat_interleave_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_reshape_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_reshape_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_roll_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_round_decimals_neg_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_rsqrt_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_rsub_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_scatter_reduce_sum_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_sigmoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_sign_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_sinc_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_airy_ai_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_bessel_j1_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_ndtri_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_squeeze_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_std_unbiased_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_tan_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_tile_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_trace_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_tril_indices_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_trunc_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_unbind_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_uniform_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_unsqueeze_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_vdot_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_view_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_vsplit_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_xlogy_cpu_float32, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values___rxor___cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values__unsafe_masked_index_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values__unsafe_masked_index_put_accumulate_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_all_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_as_strided_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_bfloat16_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_conj_physical_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_diag_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_diagonal_scatter_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_div_no_rounding_mode_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_empty_permuted_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_erfc_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_fft_hfft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_fft_hfftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_fft_ifft_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_fft_irfft_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_fft_rfftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_gather_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_heaviside_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_hsplit_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_hstack_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_isclose_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_item_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_kron_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_masked_prod_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_maximum_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_nan_to_num_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_ones_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_ones_like_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_reciprocal_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_scatter_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_select_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_sinh_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_bessel_j0_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_i1_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_laguerre_polynomial_l_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_spherical_bessel_j0_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_zeta_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_split_list_args_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_tile_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_to_sparse_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_transpose_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_triu_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_unflatten_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_unfold_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_vsplit_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_zeros_like_cpu_bool, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_T_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___getitem___cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___rmatmul___cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples__batch_norm_with_update_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples__native_batch_norm_legit_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples__unsafe_masked_index_put_accumulate_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_abs_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_abs_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_acos_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_addcdiv_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_addcdiv_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_addmm_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_addmm_decomposed_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_addr_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_any_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_argsort_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_as_strided_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_as_strided_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_as_strided_scatter_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_asinh_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_atanh_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_atleast_3d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_bincount_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_bmm_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_broadcast_tensors_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_broadcast_to_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cartesian_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_ceil_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_clamp_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_column_stack_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_combinations_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cos_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cov_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diag_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diagflat_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diagonal_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diagonal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diagonal_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diagonal_scatter_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_double_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_expand_as_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_expand_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_expm1_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_eye_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_fft2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_fftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_ifftshift_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_ifftshift_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_irfftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_rfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_flatten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_float_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_float_power_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_gather_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_igammac_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_reduce_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_reduce_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_select_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_isclose_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_isfinite_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_isposinf_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_item_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_jiterator_2inputs_2outputs_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_kron_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_kron_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_le_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_cond_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_diagonal_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_lstsq_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_lstsq_grad_oriented_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_solve_triangular_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_log1p_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_log1p_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_log1p_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_log_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_log_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_log_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logdet_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logit_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_long_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_long_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_lt_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_lu_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_cumprod_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_median_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_prod_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_sum_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_var_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_var_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_maximum_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_meshgrid_list_of_tensors_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_min_reduction_no_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_native_dropout_backward_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_ne_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_neg_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_new_empty_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_new_empty_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_new_full_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_new_zeros_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_celu_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_channel_shuffle_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_conv_transpose1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_cosine_embedding_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_dropout_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_glu_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_grid_sample_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_linear_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_linear_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_max_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_max_unpool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_nll_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_normalize_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_one_hot_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pad_constant_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pad_reflect_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pairwise_distance_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pdist_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pixel_shuffle_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_silu_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_softmin_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_norm_nuc_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_ones_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_ones_like_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_outer_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_polygamma_polygamma_n_0_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_randint_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_randint_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_randn_like_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_ravel_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_remainder_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_repeat_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_resolve_neg_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_scatter_add_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_scatter_reduce_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_scatter_reduce_prod_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_searchsorted_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_select_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sigmoid_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_signal_windows_bartlett_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_signal_windows_blackman_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_signal_windows_hamming_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sin_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_slice_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sort_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_legendre_polynomial_p_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_legendre_polynomial_p_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_modified_bessel_i0_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_spherical_bessel_j0_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_xlog1py_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_zeta_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_split_list_args_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_split_with_sizes_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sqrt_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_squeeze_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_squeeze_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_squeeze_multiple_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_squeeze_multiple_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_std_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_tensor_split_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_to_sparse_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_torch_ops_aten__safe_softmax_default_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_transpose_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_triu_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unbind_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unfold_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unsqueeze_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unsqueeze_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_var_mean_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_view_as_cpu_complex64, test/test_ops.py::TestCommonCPU::test_numpy_ref_broadcast_to_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_linalg_tensorsolve_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_linalg_vecdot_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_nn_functional_conv_transpose2d_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_nn_functional_group_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_nn_functional_layer_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_nn_functional_one_hot_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_nn_functional_pdist_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_roll_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_signal_windows_hann_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_squeeze_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_squeeze_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_out__refs__conversions_chalf_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_as_strided_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_conj_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_cos_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_cumprod_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_dot_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_exp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fliplr_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_hstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_i0_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_isinf_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_item_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_log1p_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_log_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_logaddexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_logical_and_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_logsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_meshgrid_variadic_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_new_ones_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_margin_ranking_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_relu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_smooth_l1_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_renorm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_reshape_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_rsqrt_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_sinh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_special_entr_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_special_logit_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_special_multigammaln_mvlgamma_p_1_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_special_multigammaln_mvlgamma_p_5_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_special_ndtri_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_split_with_sizes_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_squeeze_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_sum_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_transpose_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_tril_indices_cpu_int64, test/test_ops.py::TestCommonCPU::test_out__refs_unflatten_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_var_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_zeros_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_addbmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_addmm_decomposed_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_alias_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_allclose_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_any_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_arange_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_as_strided_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_as_strided_partial_views_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_atleast_2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_baddbmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_bitwise_and_cpu_int64, test/test_ops.py::TestCommonCPU::test_out_bitwise_not_cpu_int64, test/test_ops.py::TestCommonCPU::test_out_bmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_cauchy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_chalf_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_clamp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_clamp_min_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_complex_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_copysign_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_dist_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_empty_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_exp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_fft_ifft_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_fft_ifftshift_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_flip_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_full_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_hstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_int_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_isinf_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_jiterator_unary_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_eig_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_inv_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_vector_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_log10_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_log2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_log_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_logdet_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_logical_not_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_lu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_mH_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_masked_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_masked_sum_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nanmean_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_native_layer_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_celu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_embedding_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_interpolate_linear_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_max_pool1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_pad_reflect_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_prelu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_silu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_smooth_l1_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_softsign_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_polygamma_polygamma_n_1_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_quantile_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_rand_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_randint_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_addcdiv_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_addmm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_asinh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_atan2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_complex_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_cos_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_cumprod_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_div_trunc_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_exp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_hfft2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_hfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_ifft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_irfftn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_irfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_index_select_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_inner_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_lerp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_det_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_eig_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_lstsq_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_lu_factor_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_lu_factor_ex_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_qr_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_solve_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_solve_triangular_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_tensorinv_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_log10_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_log_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_logaddexp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_min_binary_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_mv_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_nn_functional_linear_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_norm_fro_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_normal_number_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_permute_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_reciprocal_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_round_decimals_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_sigmoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_special_i1e_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_special_log_ndtr_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_sub_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_triangular_solve_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_tril_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_var_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_zeros_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_reshape_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_signbit_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_bessel_y1_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_erfcx_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_split_with_sizes_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_squeeze_multiple_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_sum_to_size_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_t_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_topk_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_torch__scaled_mm_cpu_float8_e4m3fn, test/test_ops.py::TestCommonCPU::test_out_trapz_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_unsafe_split_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_view_as_complex_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_view_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_warning_T_cpu, test/test_ops.py::TestCommonCPU::test_out_warning___ror___cpu, test/test_ops.py::TestCommonCPU::test_out_warning___rsub___cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_T_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_broadcast_tensors_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_cauchy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_chunk_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fft_hfft_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_floor_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fmin_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_igamma_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_lcm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_linalg_cross_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_linalg_norm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_linalg_svdvals_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_logaddexp_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_minimum_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_new_empty_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_elu_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_prelu_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_softmin_with_dtype_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_rot90_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_sgn_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_special_spherical_bessel_j0_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_to_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_unfold_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_vdot_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_addcdiv_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_amax_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_argsort_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_chunk_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_corrcoef_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_cumprod_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_diagonal_scatter_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_div_no_rounding_mode_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_div_trunc_rounding_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_erfc_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fft_irfft_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_float_power_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_frexp_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_histogram_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_hypot_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_int_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_jiterator_unary_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_lgamma_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_cholesky_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_cond_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_eigvals_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_inv_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_ldl_factor_ex_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_lu_solve_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_matrix_power_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_matrix_rank_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_multi_dot_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_solve_ex_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_solve_triangular_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_tensorsolve_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linspace_tensor_overload_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_log1p_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_log_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_logical_xor_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_lu_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_mT_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_masked_logsumexp_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_masked_normalize_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_masked_prod_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_masked_std_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_min_reduction_with_dim_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_msort_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nanmean_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_adaptive_max_pool2d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_celu_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_cosine_similarity_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_cross_entropy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_feature_alpha_dropout_with_train_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_grid_sample_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_hardsigmoid_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_huber_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_interpolate_bilinear_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_local_response_norm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_max_unpool1d_grad_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_multi_head_attention_forward_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_prelu_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_rms_norm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_scaled_dot_product_attention_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_soft_margin_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_tanhshrink_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_norm_inf_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_ones_like_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_pinverse_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_polygamma_polygamma_n_3_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_polygamma_polygamma_n_4_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_pow_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_prod_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_reciprocal_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_resize__cpu, test/test_ops.py::TestCommonCPU::test_out_warning_resolve_conj_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_roll_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_round_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_scatter_reduce_mean_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_signal_windows_gaussian_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_bessel_j1_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_hermite_polynomial_he_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_zeta_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_stack_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_stft_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_sum_to_size_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_t_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_t_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_torch__scaled_mm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_transpose_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_unbind_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_view_as_real_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_where_cpu, test/test_ops.py::TestCommonCPU::test_out_zeros_cpu_float32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float___rdiv___cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float___rdiv___cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float___rdiv___cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_asinh_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_atan_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_atan_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_atan_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_atanh_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_atanh_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_copysign_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_cos_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_cosh_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_cosh_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_div_no_rounding_mode_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_erfc_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_erfinv_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_expm1_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_i0_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_i0_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_i0_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log2_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_logit_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_masked_var_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_masked_var_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_mvlgamma_mvlgamma_p_1_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_mvlgamma_mvlgamma_p_3_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_mvlgamma_mvlgamma_p_5_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_0_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_1_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_1_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_rad2deg_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_rad2deg_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_reciprocal_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sigmoid_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sinc_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sinh_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_t_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_t_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_w_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_hermite_polynomial_h_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_hermite_polynomial_he_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_laguerre_polynomial_l_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_shifted_chebyshev_polynomial_u_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_shifted_chebyshev_polynomial_w_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_xlog1py_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_xlog1py_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_zeta_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_zeta_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sqrt_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sqrt_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_tanh_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bfloat16_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bfloat16_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bool_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_byte_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cdouble_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cdouble_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cdouble_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cfloat_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cfloat_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_char_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_double_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_double_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_float_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_float_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_half_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_int_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_int_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_long_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_long_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_long_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_long_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_short_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_abs_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acos_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acos_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acos_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acosh_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acosh_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addcdiv_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addcdiv_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addcmul_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addcmul_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_alias_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_alias_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_alias_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_all_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_amax_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_amax_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_amin_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_amin_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_amin_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_partial_views_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_scatter_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_scatter_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asin_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asinh_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asinh_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asinh_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atanh_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atanh_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_1d_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_1d_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_2d_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_2d_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_2d_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_3d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_3d_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_and_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_and_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_left_shift_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_left_shift_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_not_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_or_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_right_shift_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_tensors_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_to_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_to_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cat_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cat_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cat_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cat_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cat_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cauchy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ceil_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_min_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_min_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_min_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clone_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_column_stack_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_column_stack_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_constant_pad_nd_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_constant_pad_nd_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_copysign_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cos_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cosh_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumprod_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumsum_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_deg2rad_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_embed_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_floor_rounding_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_trunc_rounding_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dot_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dstack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_like_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_like_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_strided_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_strided_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eq_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eq_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eq_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erf_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erfc_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erfinv_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erfinv_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_as_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expm1_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expm1_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eye_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eye_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eye_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fft_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fftshift_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fftshift_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfft2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfft_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfftn_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifft2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftn_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftn_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftshift_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftshift_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ihfft_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfft2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfft2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfft2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfft2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfft_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flatten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flip_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flip_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fliplr_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flipud_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_float_power_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_float_power_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_float_power_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_floor_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_floor_divide_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmin_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmin_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmod_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_frexp_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_gcd_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_gt_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_heaviside_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_heaviside_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hsplit_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hsplit_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hstack_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hstack_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hstack_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hstack_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hypot_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_i0_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_igamma_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_igammac_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_select_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isclose_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isclose_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isfinite_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isfinite_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isnan_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isnan_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isneginf_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isneginf_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isneginf_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isposinf_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isposinf_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isreal_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isreal_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_item_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_le_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lgamma_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_diagonal_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_svd_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linspace_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linspace_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linspace_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linspace_tensor_overload_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linspace_tensor_overload_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log10_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log10_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_softmax_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logaddexp2_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logaddexp_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logaddexp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_and_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_or_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_or_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logspace_tensor_overload_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logspace_tensor_overload_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lt_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_meshgrid_list_of_tensors_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_mul_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_mul_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_mul_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nan_to_num_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_native_layer_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_neg_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_neg_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_neg_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_empty_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_empty_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_empty_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_empty_strided_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_ones_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_alpha_dropout_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_alpha_dropout_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_channel_shuffle_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_elu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_glu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_group_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_group_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_hardtanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_leaky_relu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_log_softmax_with_dtype_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_mish_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_nll_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_shuffle_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_unshuffle_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_unshuffle_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_poisson_nll_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_poisson_nll_loss_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_poisson_nll_loss_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_poisson_nll_loss_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_prelu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_selu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_selu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmax_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmin_with_dtype_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmin_with_dtype_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softplus_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_threshold_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_triplet_margin_loss_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_normal__in_place_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_normal__in_place_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_normal__in_place_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_normal_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ones_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ones_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ones_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_positive_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_positive_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_pow_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rad2deg_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rad2deg_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_randn_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ravel_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ravel_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ravel_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ravel_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_remainder_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_remainder_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_renorm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_as_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_as_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rot90_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rot90_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rot90_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_round_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsub_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_select_scatter_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_select_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_select_scatter_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sigmoid_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sign_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_signbit_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_signbit_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sin_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sin_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinc_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_softmax_with_dtype_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_bessel_j0_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_entr_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_entr_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_entr_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_erfcx_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i0e_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i0e_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i1_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i1_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_log_ndtr_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_log_ndtr_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_logit_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_logit_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_1_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_3_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_ndtri_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_softmax_with_dtype_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_spherical_bessel_j0_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_zeta_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_zeta_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_split_with_sizes_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sqrt_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sqrt_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sqrt_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sqrt_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_square_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_square_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_square_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_multiple_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_multiple_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_stack_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_std_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_std_mean_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_stft_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_stft_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sub_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sub_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_to_size_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_take_along_dim_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_take_along_dim_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tanh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tanh_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tensor_split_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tensor_split_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_to_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_to_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_to_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tril_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tril_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tril_indices_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_triu_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_true_divide_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_true_divide_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_true_divide_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_trunc_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_as_complex_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_as_complex_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_as_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vsplit_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vstack_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vstack_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_where_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_zeros_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_copysign_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_diagonal_copy_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_div_no_rounding_mode_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_eq_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_fft_ifftn_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_flipud_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_fmin_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_index_add_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_isclose_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_logical_xor_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_movedim_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_neg_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_nn_functional_softshrink_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_view_copy_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_T_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bfloat16_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bool_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_byte_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_byte_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_byte_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_byte_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_cdouble_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_cdouble_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_chalf_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_char_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_char_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_char_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_char_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_half_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_int_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_long_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_long_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_long_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_long_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_short_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_short_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_abs_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_acos_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_acos_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_acosh_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_acosh_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_add_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addcmul_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addcmul_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addr_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addr_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_alias_copy_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_alias_copy_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_alias_copy_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_amax_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_any_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_arange_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_partial_views_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_partial_views_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_scatter_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_scatter_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asin_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asinh_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asinh_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atan2_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atan2_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atan_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atan_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atan_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atan_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atanh_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_2d_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_2d_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_2d_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_left_shift_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_or_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_right_shift_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_block_diag_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_shapes_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_tensors_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_tensors_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_to_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bucketize_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bucketize_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bucketize_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cat_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cat_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ceil_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_chunk_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_max_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_max_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clone_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clone_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_column_stack_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_physical_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_physical_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_physical_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_contiguous_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cos_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_count_nonzero_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cumprod_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cumprod_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cumsum_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cumsum_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_deg2rad_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_embed_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_copy_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_scatter_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_digamma_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_digamma_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_digamma_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_no_rounding_mode_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_no_rounding_mode_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_no_rounding_mode_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dot_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dot_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dstack_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dstack_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_like_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_like_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_strided_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_strided_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eq_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eq_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eq_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eq_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_equal_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erf_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erf_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erfc_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erfinv_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_exp_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_as_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_copy_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expm1_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_exponential_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fft2_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fft2_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fft_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fftshift_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfft2_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfft2_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfft_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfftn_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifft2_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifft2_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifftn_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifftshift_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfft_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfft_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfft_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfft_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfftn_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfftn_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_rfft2_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_rfftn_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fill_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flatten_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flip_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fliplr_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_float_power_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_float_power_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_floor_divide_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_floor_divide_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmax_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmin_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_frexp_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_gcd_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_gt_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_heaviside_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_heaviside_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_heaviside_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hsplit_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hstack_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hstack_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_add_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_add_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_copy_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_copy_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_copy_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_fill_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_fill_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_fill_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_fill_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_fill_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isclose_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isfinite_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isfinite_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isinf_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isnan_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isposinf_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_istft_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_le_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lerp_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lerp_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_cross_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_diagonal_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_diagonal_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_matrix_norm_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_norm_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_norm_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_vecdot_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linspace_tensor_overload_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log1p_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log1p_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_softmax_with_dtype_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logaddexp2_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logaddexp_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_and_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_and_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_not_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_or_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_or_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_xor_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logspace_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logspace_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logspace_tensor_overload_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logsumexp_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lt_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lt_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_masked_fill_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_masked_fill_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_maximum_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_maximum_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_meshgrid_list_of_tensors_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_meshgrid_variadic_tensors_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_meshgrid_variadic_tensors_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_minimum_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_movedim_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_movedim_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_movedim_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_mul_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nan_to_num_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nan_to_num_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ne_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ne_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ne_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_full_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_ones_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_zeros_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_zeros_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_alpha_dropout_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_celu_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_channel_shuffle_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_dropout_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_hinge_embedding_loss_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_l1_loss_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_layer_norm_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_log_softmax_with_dtype_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pairwise_distance_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_shuffle_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_shuffle_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_unshuffle_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_relu6_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_relu_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_smooth_l1_loss_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softmax_with_dtype_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softmax_with_dtype_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softmax_with_dtype_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softplus_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softshrink_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_tanhshrink_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_tanhshrink_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_tanhshrink_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_threshold_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_norm_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_normal__in_place_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_normal_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ones_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_permute_copy_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_permute_copy_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_permute_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_permute_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_positive_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_positive_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_positive_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_real_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_real_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reciprocal_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_remainder_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_remainder_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_repeat_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reshape_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_roll_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_roll_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rot90_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_round_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_round_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rsqrt_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rsub_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rsub_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sgn_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sgn_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sigmoid_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sign_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_signbit_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_signbit_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_signbit_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sin_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sin_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinc_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinc_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinc_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinc_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinc_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinh_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_softmax_with_dtype_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_entr_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_erfcx_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_erfcx_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i0e_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i0e_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i1e_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_log_ndtr_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_log_softmax_with_dtype_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_logit_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_3_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_3_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_5_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_5_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_ndtr_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_ndtr_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_ndtri_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_softmax_with_dtype_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_xlog1py_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_zeta_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_zeta_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_zeta_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sqrt_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sqrt_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_square_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_square_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_copy_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_copy_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_multiple_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_stack_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_std_mean_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_stft_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sub_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sub_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_t_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_take_along_dim_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_take_along_dim_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_take_along_dim_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tan_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tan_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tanh_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tanh_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_to_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_trace_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_trace_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_trace_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_trunc_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_copy_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_copy_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_copy_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_copy_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_copy_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_copy_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_copy_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vdot_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vdot_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_as_complex_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_as_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_as_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_as_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_copy_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vstack_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vstack_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vstack_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_where_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_where_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_xlogy_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_xlogy_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_zeros_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_zeros_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_T_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bfloat16_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bfloat16_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bfloat16_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bool_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_byte_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_byte_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cdouble_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cdouble_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cfloat_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cfloat_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cfloat_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cfloat_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cfloat_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_chalf_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_chalf_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_char_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_char_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_float_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_float_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_half_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_half_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_int_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_long_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_long_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_long_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_long_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_long_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_short_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_short_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_short_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_short_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_abs_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_abs_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_acos_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_acosh_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addcdiv_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addr_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_all_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_allclose_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_allclose_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_any_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_any_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_any_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_any_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_partial_views_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_partial_views_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_partial_views_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_partial_views_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_partial_views_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_scatter_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_scatter_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_asin_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_asin_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_asin_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_asinh_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_asinh_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atan2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atan_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atan_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_1d_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_1d_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_2d_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_left_shift_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_right_shift_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_right_shift_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_xor_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_block_diag_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_to_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bucketize_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ceil_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ceil_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_chunk_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_chunk_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_max_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_min_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_min_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clone_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clone_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clone_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clone_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_physical_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_physical_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_physical_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_contiguous_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_contiguous_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_copysign_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cos_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_count_nonzero_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_count_nonzero_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cumsum_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_deg2rad_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_embed_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_digamma_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_digamma_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_floor_rounding_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_floor_rounding_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_trunc_rounding_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_trunc_rounding_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_trunc_rounding_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dot_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dsplit_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dstack_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dstack_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dstack_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_like_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_like_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_like_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eq_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erfc_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erfinv_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erfinv_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_as_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expm1_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eye_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eye_cpu_float8_e5m2, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eye_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fft_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fftshift_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfft_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfft_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifftshift_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfft_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfft_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfft_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfft2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfft2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_rfftn_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flatten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flipud_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flipud_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_float_power_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_floor_divide_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_floor_divide_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_floor_divide_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmax_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmax_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmin_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmod_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmod_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmod_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_frexp_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ge_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_geometric_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_gt_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hstack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hstack_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hstack_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hstack_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_i0_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_igamma_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_igamma_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_igammac_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_igammac_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_imag_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_add_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_fill_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_fill_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_select_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isclose_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isclose_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isclose_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isclose_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isclose_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isfinite_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isfinite_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isinf_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isnan_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isnan_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isneginf_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isneginf_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isreal_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_item_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_item_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_item_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_le_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lgamma_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_cross_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_diagonal_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_diagonal_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_diagonal_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_matrix_norm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_svd_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_svd_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_vector_norm_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_vector_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_tensor_overload_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_tensor_overload_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log1p_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log1p_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log1p_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log1p_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_softmax_with_dtype_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logaddexp2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_xor_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_xor_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_xor_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_xor_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_tensor_overload_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_tensor_overload_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_tensor_overload_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logsumexp_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lt_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_masked_fill_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_masked_fill_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_maximum_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_maximum_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_mean_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_list_of_tensors_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_list_of_tensors_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_variadic_tensors_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_variadic_tensors_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_minimum_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_movedim_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nan_to_num_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nan_to_num_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ne_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_neg_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_strided_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_strided_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_full_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_full_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_full_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_ones_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_ones_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_zeros_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_zeros_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_zeros_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nextafter_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_channel_shuffle_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_gelu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_glu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_group_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_hardtanh_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_mish_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pdist_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pixel_unshuffle_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pixel_unshuffle_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_poisson_nll_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_poisson_nll_loss_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_relu6_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_relu_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmax_with_dtype_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmax_with_dtype_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmin_with_dtype_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmin_with_dtype_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmin_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softshrink_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_tanhshrink_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_tanhshrink_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_threshold_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_threshold_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_norm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_normal__in_place_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_normal__in_place_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_normal__in_place_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_normal_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ones_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_positive_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_positive_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_pow_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_pow_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_pow_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_prod_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rad2deg_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_randn_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ravel_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_real_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reciprocal_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reciprocal_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_remainder_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_renorm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_as_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rot90_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rot90_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rot90_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_round_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_round_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rsqrt_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rsub_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rsub_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sgn_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sgn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sigmoid_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinc_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinc_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_softmax_with_dtype_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_bessel_j0_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_bessel_j1_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_bessel_j1_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_entr_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_entr_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_entr_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_erfcx_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_log_ndtr_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_log_softmax_with_dtype_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_logit_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_3_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_5_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_5_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_5_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_5_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_ndtri_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_softmax_with_dtype_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_spherical_bessel_j0_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_zeta_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_split_with_sizes_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_square_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_multiple_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_multiple_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_multiple_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_stack_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_std_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_std_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_std_mean_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sub_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sub_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sub_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_to_size_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_to_size_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_t_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_take_along_dim_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tan_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tensor_split_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tensor_split_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_to_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_trace_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_trace_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tril_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_triu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_triu_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_true_divide_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unsqueeze_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_var_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vdot_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vdot_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vdot_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vsplit_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vsplit_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vstack_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_where_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_where_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_where_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_where_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_zeros_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_zeros_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_zeros_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_T_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_T_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_bfloat16_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_bool_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_byte_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_byte_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_cfloat_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_chalf_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_char_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_char_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_double_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_float_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_half_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_int_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_long_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_long_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_long_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_long_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_abs_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acosh_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acosh_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addcdiv_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addcdiv_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addcmul_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addr_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addr_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_all_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_allclose_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_amax_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_amax_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_amin_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_amin_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_any_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_partial_views_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_scatter_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asin_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asin_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atan2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atan2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atanh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atanh_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_2d_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_left_shift_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_or_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_right_shift_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_block_diag_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_broadcast_tensors_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bucketize_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cat_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_chunk_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_chunk_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_max_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_min_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clone_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_column_stack_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_column_stack_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_column_stack_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_column_stack_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_column_stack_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_constant_pad_nd_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_constant_pad_nd_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_contiguous_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_copysign_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cos_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cumprod_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_deg2rad_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_deg2rad_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diag_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diag_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diag_embed_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_scatter_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_scatter_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_digamma_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_floor_rounding_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_floor_rounding_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_no_rounding_mode_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_no_rounding_mode_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_no_rounding_mode_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_trunc_rounding_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dot_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dsplit_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dsplit_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dsplit_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dsplit_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dstack_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_like_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_strided_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_equal_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_equal_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp2_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expm1_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expm1_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expm1_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expm1_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eye_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eye_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eye_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fft2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fftshift_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fftshift_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfft_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfftn_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifft_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifftshift_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifftshift_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifftshift_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfft2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfft_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfft_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfft_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfftn_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfftn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_rfft_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_rfft_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_rfft_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_rfftn_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fliplr_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fliplr_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flipud_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_float_power_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_floor_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_floor_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmax_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmax_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmax_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmin_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmin_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmin_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmin_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmod_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_frac_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_frexp_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_gcd_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_geometric_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_geometric_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_gt_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_gt_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hypot_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_i0_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_i0_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_igamma_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_imag_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_imag_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_add_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_add_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_add_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_fill_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_fill_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_fill_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_select_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_select_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isclose_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isclose_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isclose_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isfinite_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isinf_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isnan_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isnan_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isneginf_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isreal_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_item_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lcm_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_le_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_le_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lerp_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_cross_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_cross_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_diagonal_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_diagonal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_diagonal_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_diagonal_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_norm_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linspace_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log10_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log1p_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_normal_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_normal_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logaddexp2_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logaddexp_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_and_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_or_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logspace_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logsumexp_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lt_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_masked_fill_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_masked_fill_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_masked_fill_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_masked_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_maximum_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_mean_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_meshgrid_list_of_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_meshgrid_variadic_tensors_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_movedim_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_mul_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nan_to_num_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_narrow_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ne_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ne_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_neg_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_neg_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_neg_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_ones_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nextafter_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nextafter_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_alpha_dropout_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_channel_shuffle_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_channel_shuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_channel_shuffle_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_dropout_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_gelu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_group_norm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_hardshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_hinge_embedding_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_huber_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_l1_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_margin_ranking_loss_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_margin_ranking_loss_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pixel_shuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_poisson_nll_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_poisson_nll_loss_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_poisson_nll_loss_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_relu6_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_relu_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_selu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmax_with_dtype_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmin_with_dtype_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softplus_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_tanhshrink_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_threshold_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_normal__in_place_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_normal_number_mean_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_pow_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rad2deg_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_randn_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_randn_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_real_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reciprocal_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reciprocal_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_remainder_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_renorm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_repeat_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_repeat_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_as_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_as_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_roll_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rot90_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rot90_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rsqrt_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rsqrt_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sgn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sgn_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sigmoid_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sign_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sign_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_signbit_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sin_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinc_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinh_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_softmax_with_dtype_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_softmax_with_dtype_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_softmax_with_dtype_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_bessel_j0_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_bessel_j1_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i0e_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i0e_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i1_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i1_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i1e_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i1e_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i1e_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i1e_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_logit_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_logit_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_1_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_5_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_ndtr_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_ndtr_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_ndtri_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_ndtri_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_ndtri_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_zeta_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sqrt_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_square_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_square_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_square_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_multiple_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_multiple_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_multiple_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_stack_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sub_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sub_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sum_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sum_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sum_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_take_along_dim_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tan_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tan_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tan_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tanh_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_to_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_to_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_to_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_trace_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_trace_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tril_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_triu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_triu_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_true_divide_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unbind_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unsqueeze_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vdot_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vdot_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_as_complex_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_as_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vsplit_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vsplit_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vstack_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_where_cpu_int32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager___rdiv___cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager___rmatmul___cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager__segment_reduce_offsets_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager__unsafe_masked_index_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager__unsafe_masked_index_put_accumulate_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_acosh_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_addmm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_addmv_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_as_strided_partial_views_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_as_strided_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_atanh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_byte_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cholesky_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_chunk_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_conj_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_corrcoef_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cos_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_diagonal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_dist_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_div_floor_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_dsplit_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_eq_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_erfc_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_expm1_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_fftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_hfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_ifft_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fill_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_flipud_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_float_power_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_floor_divide_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_gradient_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_hash_tensor_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_index_add_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_index_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_index_reduce_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_index_select_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_int_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_isfinite_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_jiterator_binary_return_by_ref_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_kron_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_lerp_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_eigvals_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_householder_product_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_ldl_factor_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_lstsq_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_lu_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_lu_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_lu_solve_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_matrix_power_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_matrix_rank_hermitian_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_tensorsolve_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_vander_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linspace_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_logdet_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_matmul_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_max_binary_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_min_reduction_no_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_mm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_neg_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_new_full_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_conv_transpose3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_cosine_embedding_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_huber_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_interpolate_area_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_interpolate_bicubic_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_interpolate_trilinear_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_l1_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_layer_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_linear_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_normalize_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_pad_reflect_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_pad_replicate_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_pairwise_distance_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_soft_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_softmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_upsample_bilinear_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nonzero_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_norm_fro_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_norm_inf_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_norm_nuc_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_outer_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_permute_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_pinverse_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_reciprocal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_renorm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_reshape_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_resolve_neg_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_rot90_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_round_decimals_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_scalar_tensor_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_scatter_reduce_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_select_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_sgn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_signal_windows_hamming_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_sinh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_slice_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_i1e_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_ndtr_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_split_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_square_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_svd_lowrank_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_take_along_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_take_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_to_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_topk_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_trunc_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_unbind_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_unique_consecutive_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_unsafe_chunk_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_unsqueeze_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_vdot_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_zero__cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward___rdiv___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward___rmod___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_addbmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_addcmul_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_addmm_decomposed_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_broadcast_tensors_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_complex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_diagonal_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_dstack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_einsum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fft_fftshift_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fft_ihfft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_half_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_hstack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_hypot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_index_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_index_reduce_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_index_select_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_cond_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_householder_product_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_lu_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_norm_subgradients_at_zero_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_svd_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_lu_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_lu_unpack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_mT_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_cumprod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_logaddexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_normalize_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_select_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_var_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_matrix_exp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_max_reduction_with_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_conv1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_conv_transpose1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_conv_transpose2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_fractional_max_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_fractional_max_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_hardsigmoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_interpolate_bilinear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_kl_div_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_leaky_relu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_local_response_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_max_unpool2d_grad_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_pad_replicate_negative_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_softplus_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_unfold_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_polygamma_polygamma_n_0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_reciprocal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_sgn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_sinc_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_sparse_mm_reduce_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_split_list_args_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_sqrt_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_square_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_stack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_take_along_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_tanh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_topk_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_transpose_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_true_divide_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_unsafe_split_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_var_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_view_as_complex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input___rmatmul___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input__unsafe_masked_index_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input__unsafe_masked_index_put_accumulate_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_add_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_allclose_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_argmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_argsort_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_atan_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_cauchy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_cdouble_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_chalf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_cholesky_inverse_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_cholesky_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_corrcoef_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_dist_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_dstack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_empty_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_erfinv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fft_hfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fft_ifft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fft_irfft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fft_rfft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fmod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_full_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_gradient_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_grid_sampler_3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_gt_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_histogram_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_inner_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_cond_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_eig_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_inv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_ldl_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_matrix_power_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_pinv_singular_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_qr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_solve_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_solve_triangular_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_svdvals_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_logical_not_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_mH_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_native_batch_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_new_empty_strided_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nextafter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_gaussian_nll_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_grid_sample_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_kl_div_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_max_unpool2d_grad_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_normalize_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_tanhshrink_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_permute_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_polygamma_polygamma_n_0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_pow_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_randint_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_ravel_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_real_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_round_decimals_3_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_rsqrt_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_scatter_reduce_amax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_searchsorted_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_signal_windows_cosine_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_signal_windows_gaussian_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_signal_windows_general_cosine_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_signbit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_sparse_sampled_addmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_bessel_j0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_bessel_y1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_modified_bessel_k0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_ndtr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_sqrt_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_trapz_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_tril_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_vdot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_zero__cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_zeros_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad__batch_norm_with_update_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad__native_batch_norm_legit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad__segment_reduce_offsets_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_add_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_aminmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_as_strided_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_as_strided_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_atan_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_atleast_3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_baddbmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_bfloat16_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_block_diag_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_broadcast_to_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_bucketize_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_cat_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_cholesky_inverse_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_clamp_max_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_cumprod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_cumsum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_deg2rad_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_dot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_double_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_equal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fft_fft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fft_hfft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_float_power_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_floor_divide_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_ge_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_gt_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_isinf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_isneginf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_jiterator_4inputs_with_extra_args_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_jiterator_unary_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_householder_product_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_lu_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_svd_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_svdvals_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_log2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_log_softmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_logspace_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_matmul_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_meshgrid_variadic_tensors_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_min_binary_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_multinomial_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nanquantile_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_new_empty_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_new_ones_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_batch_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_conv_transpose2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_dropout2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_embedding_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_grid_sample_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_interpolate_nearest_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_multilabel_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_nll_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_pad_circular_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_pad_constant_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_pad_replicate_negative_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_softsign_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_tanhshrink_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_polygamma_polygamma_n_3_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_positive_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_put_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_randn_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_ravel_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_real_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_repeat_interleave_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_reshape_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_scalar_tensor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_scatter_add_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_signal_windows_general_hamming_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_slice_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_scaled_modified_bessel_k1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_split_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_svd_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_take_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_tan_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_tensordot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_tril_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_triu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_unfold_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_unfold_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_unsafe_chunk_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_unsafe_split_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_unsqueeze_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_vstack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_H_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator___rmul___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator__batch_norm_with_update_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_abs_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_addcmul_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_allclose_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_asin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_broadcast_to_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_cat_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_clamp_max_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_complex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_conj_physical_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_contiguous_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_cov_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_dot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_double_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_equal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fft_ihfft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fill_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_frac_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_frexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_geqrf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_index_put_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_jiterator_4inputs_with_extra_args_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_kron_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_cross_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_diagonal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_matrix_rank_hermitian_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_logit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_log_softmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_median_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_matmul_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_meshgrid_list_of_tensors_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_meshgrid_variadic_tensors_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_minimum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_movedim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_new_empty_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_cosine_embedding_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_dropout3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_gelu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_group_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_margin_ranking_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_max_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_pad_constant_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_threshold_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_polygamma_polygamma_n_1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_randn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_renorm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_resize_as__cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_rsqrt_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_scatter_reduce_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_signal_windows_bartlett_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_signal_windows_exponential_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_sinh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_hermite_polynomial_he_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_svd_lowrank_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_tril_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_view_as_complex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_view_as_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_zero__cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay___rpow___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay__unsafe_masked_index_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay__unsafe_masked_index_put_accumulate_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_addbmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_alias_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_aminmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_angle_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_any_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_argmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_as_strided_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_bucketize_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_cdouble_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_ceil_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_chalf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_clamp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_clone_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_cov_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_diag_embed_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_double_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_empty_strided_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_erfc_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_expand_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_geqrf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_hash_tensor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_index_fill_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_isposinf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_diagonal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_householder_product_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_matrix_rank_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_tensorsolve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_logspace_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_logsumexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_mT_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_masked_argmin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_masked_log_softmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_masked_softmin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_min_reduction_no_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_multinomial_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_avg_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_bilinear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_binary_cross_entropy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_embedding_bag_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_mse_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_pixel_shuffle_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_soft_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_polygamma_polygamma_n_1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_randn_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_reciprocal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_reshape_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_resize__cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_rot90_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_round_decimals_neg_3_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_sigmoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_signal_windows_gaussian_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_sinc_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_sparse_mm_reduce_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_sparse_sampled_addmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_bessel_j0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_zeta_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_split_with_sizes_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_t_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_tril_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_unsafe_chunk_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_where_cpu_float32, test/test_ops.py::TestMathBitsCPU::test_conj_view___radd___cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_as_strided_partial_views_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_conj_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_cumprod_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_diagonal_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_eye_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_fft_fft2_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_fft_fft_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_fft_ifft2_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_flip_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_flipud_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_isreal_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_new_empty_strided_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_nn_functional_log_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_normal__in_place_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_permute_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_permute_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_randn_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_reciprocal_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_sgn_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_square_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_sum_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_take_along_dim_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_unfold_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_addcmul_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_as_strided_partial_views_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_asin_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_bfloat16_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_bool_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_cartesian_prod_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_cat_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_cholesky_inverse_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_cholesky_solve_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_count_nonzero_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_cumprod_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_cumulative_trapezoid_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_div_no_rounding_mode_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_fft_ifft_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_fill_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_hstack_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_imag_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_index_put_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_jiterator_binary_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_jiterator_unary_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_kron_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_lerp_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_cross_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_eig_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_inv_ex_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_matrix_rank_hermitian_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_pinv_hermitian_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_qr_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_svd_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_log_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_log_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_logdet_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_logical_and_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_lu_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_lu_solve_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_masked_std_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_matrix_exp_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_new_ones_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_conv_transpose1d_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_l1_loss_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_linear_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_pad_constant_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_pow_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_prod_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_reshape_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_resolve_conj_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_rot90_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_sgn_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_split_list_args_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_square_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_take_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_to_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_unbind_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_unflatten_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_var_unbiased_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_H_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs__conversions_cfloat_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs__conversions_chalf_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs__conversions_char_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_as_strided_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_atan_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_conj_physical_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_cumsum_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_index_add_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_isclose_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_isnan_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_log10_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_narrow_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_narrow_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_nn_functional_log_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_nn_functional_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_t_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_take_along_dim_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_view_as_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_vstack_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_acosh_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_char_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_conj_physical_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_corrcoef_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_empty_like_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_fft_hfft_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_full_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_istft_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_eigvals_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_ldl_solve_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_matrix_power_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linspace_tensor_overload_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_logdet_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_matrix_exp_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_ne_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nn_functional_conv3d_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nn_functional_normalize_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nn_functional_softmin_with_dtype_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nn_functional_unfold_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_qr_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_resize_as__cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_slice_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_split_with_sizes_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_squeeze_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_std_mean_unbiased_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_std_unbiased_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_sum_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_t_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_tensordot_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_trapezoid_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_unfold_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_var_mean_unbiased_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_view_as_real_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_view_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_zeros_like_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_view___rsub___cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__batch_norm_with_update_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_T_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs__conversions_bool_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs__conversions_complex_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs__conversions_double_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs__conversions_int_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_acos_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_as_strided_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_atan_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_ceil_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_cumsum_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_div_trunc_rounding_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_empty_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_empty_strided_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_erfinv_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fft_fftn_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fft_hfft2_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fft_hfft_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fft_hfftn_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fft_ihfftn_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_floor_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fmax_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_linalg_diagonal_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_log1p_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_lt_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_mean_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_channel_shuffle_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_mse_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_relu6_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_relu_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_softmax_with_dtype_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_softplus_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_permute_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_special_i1_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_special_multigammaln_mvlgamma_p_1_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_special_multigammaln_mvlgamma_p_3_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_sqrt_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_square_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_t_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_vstack_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_where_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_xlogy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__segment_reduce_lengths_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_alias_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_all_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_amax_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_amin_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_arange_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_argwhere_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_cat_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_cfloat_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_char_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_deg2rad_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_diagonal_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_dot_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_empty_strided_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_erf_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fft_ifft2_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_flipud_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_full_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_grid_sampler_2d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_histogram_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_index_reduce_amin_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_jiterator_4inputs_with_extra_args_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linspace_tensor_overload_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_log10_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_lu_unpack_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_argmin_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_fill_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_matmul_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_mean_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_meshgrid_variadic_tensors_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_min_binary_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_min_reduction_no_dim_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nanmean_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_new_empty_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_new_zeros_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_avg_pool2d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_channel_shuffle_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_conv1d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_huber_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_linear_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_margin_ranking_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_relu6_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_softmin_with_dtype_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_upsample_nearest_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_norm_nuc_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_normal_in_place_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_pca_lowrank_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_polygamma_polygamma_n_1_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_reciprocal_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_resize_as__cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_round_decimals_0_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_scatter_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_scatter_reduce_amin_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_sgn_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_signal_windows_gaussian_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_signal_windows_hamming_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_sort_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_bessel_j1_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_erfcx_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_modified_bessel_i1_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_zeta_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_split_with_sizes_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_stack_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_stft_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_sub_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_t_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_trapz_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_unbind_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_unique_cpu_float64, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs__conversions_polar_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_acosh_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_all_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_allclose_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_arange_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_asinh_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_bitwise_and_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_bitwise_right_shift_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_cauchy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_clamp_min_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_diagonal_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_digamma__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_dsplit_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_empty_like_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_eye_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fill_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_frac_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_ge__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_index_copy__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_isinf_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_lcm_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_logical_not_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_masked_fill__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_mvlgamma__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_neg_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_new_zeros_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_celu_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_log_softmax_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_softmin_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_ones_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_scalar_tensor_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_special_expit_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_true_divide__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs__conversions_byte_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_as_strided_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_asin__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_bitwise_and_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_bitwise_xor__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_cauchy__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_clamp_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_dot_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_erf__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_expm1__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_exponential_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_eye_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fft_irfft2_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fft_irfftn_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fft_rfft2_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fill_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_float_power_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_floor_divide__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_full_like_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_gcd_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_hsplit_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_igammac_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_index_fill_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_index_select_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_logical_and_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_logical_not__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_logical_or__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_new_zeros_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nextafter__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_huber_loss_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_l1_loss_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_smooth_l1_loss_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_softplus_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_triplet_margin_loss_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_ones_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_rtruediv_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_sinc__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_special_erfcx_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_special_i0e_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_squeeze_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_stack_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_stft_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_sub__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_swap_axes_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_tan__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_tanh__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_tanh_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_tril__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_var_mean_cpu, test/test_ops.py::TestFakeTensorCPU::test_fake___rdiv___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake___rmod___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake___rpow___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake___rsub___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_acos_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_addcdiv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_addmv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_as_strided_partial_views_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_H_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast___rdiv___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast___rsub___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_asinh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_bitwise_and_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_cauchy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_cdouble_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_column_stack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_corrcoef_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_cumsum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_deg2rad_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_dist_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_erf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_erfinv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_exp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fft_fft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fft_irfft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fft_irfftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fill_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fmin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_index_add_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_index_put_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_isneginf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_jiterator_binary_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_kron_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_eigvalsh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_lu_factor_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_pinv_singular_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_logaddexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_logspace_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_argmin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_normalize_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_select_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_meshgrid_list_of_tensors_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_movedim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_new_empty_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_conv3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_conv_transpose1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_cross_entropy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_dropout3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_max_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_max_unpool1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_pdist_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_silu_complex_cpu_complex64, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_normal_number_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_polygamma_polygamma_n_1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_polygamma_polygamma_n_4_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_pow_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_resize_as__cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_rot90_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_round_decimals_neg_3_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_rsqrt_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_scatter_reduce_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_select_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_signal_windows_kaiser_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_legendre_polynomial_p_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_scaled_modified_bessel_k1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_split_with_sizes_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_std_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_std_mean_unbiased_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_svd_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_t_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_take_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_unsafe_chunk_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_var_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_view_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_where_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_corrcoef_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_count_nonzero_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp___getitem___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp__segment_reduce_lengths_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp__upsample_bilinear2d_aa_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_acos_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_addmv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_amax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_broadcast_to_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_conj_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_diagonal_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_diagonal_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_exp2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_fft_ihfftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_flatten_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_inner_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_cond_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_diagonal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_eigh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_lu_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_matrix_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_multi_dot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_pinv_hermitian_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_pinv_singular_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_log10_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_logdet_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_mT_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_masked_log_softmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_matrix_exp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_native_layer_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_alpha_dropout_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_conv2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_cosine_similarity_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_max_unpool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_max_unpool3d_grad_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_pad_constant_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_normal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_pow_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_repeat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_sin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_sinh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_split_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_squeeze_multiple_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_transpose_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_triangular_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp___getitem___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp__segment_reduce_lengths_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp__unsafe_masked_index_put_accumulate_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_acos_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_addmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_as_strided_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_cat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_clamp_max_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_cos_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_cov_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_dist_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_div_floor_rounding_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_expm1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_fft_fft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_fft_ihfftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_floor_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_gradient_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_hstack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_index_reduce_amax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_inner_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_kthvalue_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_inv_ex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_lstsq_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_matrix_power_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_masked_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_max_reduction_no_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_mm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_msort_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_alpha_dropout_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_local_response_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_multilabel_margin_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_pad_constant_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_pad_replicate_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_rrelu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_unfold_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_upsample_bilinear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_normal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_polygamma_polygamma_n_4_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_real_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_repeat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_reshape_as_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_rot90_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_round_decimals_3_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_scatter_add_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_sigmoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_softmax_with_dtype_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_split_with_sizes_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_transpose_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_var_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_cumsum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_deg2rad_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_diff_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_eye_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_ihfft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_irfft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fmod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_grid_sampler_2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_grid_sampler_3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_half_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_igammac_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_isin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_kthvalue_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_lcm_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_cond_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_lstsq_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_qr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_svdvals_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_tensorinv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_tensorsolve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_vecdot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_logcumsumexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_lu_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_masked_normalize_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_mul_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_narrow_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_new_empty_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_cosine_embedding_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_group_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_hardsigmoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_interpolate_bilinear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_logsigmoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_max_unpool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_pad_circular_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_smooth_l1_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_upsample_nearest_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_normal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_permute_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_permute_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_polygamma_polygamma_n_3_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_randn_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_resize_as__cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_resolve_conj_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_round_decimals_3_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_select_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_select_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_signal_windows_hann_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_softmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_erfcx_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_i0e_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_modified_bessel_i0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_modified_bessel_i1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_spherical_bessel_j0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_split_with_sizes_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_square_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_svd_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_torch__scaled_mm_cpu_float8_e4m3fn, test/test_ops.py::TestFakeTensorCPU::test_fake_triu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_trunc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_unbind_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_unfold_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops___radd___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_allclose_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_bmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_cholesky_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_chunk_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_cummin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_empty_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_erfinv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fft_fft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fft_hfft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fft_irfft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fliplr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fmin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_full_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_gather_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_histc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_i0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_imag_cpu_complex64, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_int_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_isreal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_jiterator_2inputs_2outputs_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_inv_ex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_matrix_power_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_pinv_hermitian_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_vecdot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_mH_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_masked_amin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_masked_std_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_max_binary_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_max_reduction_no_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_meshgrid_list_of_tensors_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_mm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_channel_shuffle_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_dropout_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_group_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_leaky_relu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_local_response_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_nll_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_pixel_unshuffle_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_rrelu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_threshold_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_normal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_normal_number_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_positive_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_qr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_real_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_remainder_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_resize_as__cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_round_decimals_0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_scatter_reduce_sum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_sgn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_signal_windows_blackman_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_signal_windows_cosine_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_sin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_modified_bessel_i1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_split_list_args_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_sum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_tile_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_to_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_tril_indices_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_trunc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_unbind_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_unflatten_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_unique_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_unravel_index_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_unsafe_split_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_arange_cpu_int32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_linspace_cpu_int32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_cpu_complex64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_cpu_uint8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_tensor_overload_cpu_complex128, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_tensor_overload_cpu_int32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_ones_cpu_int16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_zeros_cpu_int32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_zeros_cpu_uint8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_arange_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_arange_cpu_uint8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_linspace_cpu_int8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_linspace_tensor_overload_cpu_complex128, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_linspace_tensor_overload_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_logspace_tensor_overload_cpu_complex64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_logspace_tensor_overload_cpu_float16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_ones_cpu_int16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_ones_cpu_int8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_zeros_cpu_float64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_zeros_cpu_int8, test/test_ops.py::TestTagsCPU::test_tags_H_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags___rmod___cpu_float32, test/test_ops.py::TestTagsCPU::test_tags___rxor___cpu_int64, test/test_ops.py::TestTagsCPU::test_tags__refs__conversions_complex_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs__conversions_double_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs__conversions_half_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_addr_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_arange_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_bitwise_xor_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags__refs_block_diag_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_broadcast_shapes_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_cat_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_diagonal_scatter_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_dot_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_exp2_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_expand_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fmod_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_index_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_isreal_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_linalg_cross_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_logspace_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_meshgrid_list_of_tensors_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_meshgrid_variadic_tensors_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_mul_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_hardtanh_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_huber_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_pdist_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_relu6_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_norm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_normal_number_mean_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_permute_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_positive_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_roll_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_round_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_sgn_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_special_bessel_j1_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_sum_to_size_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_trace_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_unfold_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_vsplit_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_amax_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_argsort_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_atleast_3d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_broadcast_tensors_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_cfloat_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_complex_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_cross_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_diagflat_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_div_floor_rounding_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_flip_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_ge_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_geqrf_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_histc_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_imag_cpu_complex64, test/test_ops.py::TestTagsCPU::test_tags_inner_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_isposinf_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_istft_cpu_complex64, test/test_ops.py::TestTagsCPU::test_tags_kthvalue_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_lgamma_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_eigh_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_inv_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_lstsq_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_lu_factor_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_matrix_norm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_matrix_rank_hermitian_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_pinv_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_logaddexp_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_masked_amin_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_masked_mean_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_matmul_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_max_pool2d_with_indices_backward_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_max_reduction_no_dim_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_max_reduction_with_dim_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_min_reduction_no_dim_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_new_ones_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_alpha_dropout_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_avg_pool2d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_conv3d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_cosine_similarity_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_dropout_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_embedding_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_glu_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_hardsigmoid_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_interpolate_bicubic_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_l1_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_leaky_relu_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_local_response_norm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_max_pool1d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_max_unpool3d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_multi_margin_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_pad_replicate_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_relu_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_upsample_nearest_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nonzero_static_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_norm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_outer_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_renorm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_repeat_interleave_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_round_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_scalar_tensor_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_scatter_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_scatter_reduce_sum_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_select_scatter_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_signal_windows_general_hamming_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_entr_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_hermite_polynomial_h_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_hermite_polynomial_he_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_split_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_std_unbiased_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_stft_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_sum_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_take_along_dim_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_take_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_to_sparse_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_triangular_solve_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_triu_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_trunc_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_unbind_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_uniform_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_unique_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_var_mean_unbiased_cpu_float32 2025-08-26T22:36:32.8932287Z 2025-08-26T22:36:38.6571394Z Running test_ops_gradients 2/2 ... [2025-08-26 22:36:38.646947] 2025-08-26T22:36:38.6571879Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:36:38.6581376Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops_gradients.py', '-m', 'not serial', '--shard-id=2', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:36:38.646947] 2025-08-26T22:42:20.5543177Z 2025-08-26T22:42:20.5544325Z test_meta 2/4 was successful, full logs can be found in artifacts with path test/test-reports/test_meta_2.4_ab79a1540936b0ae_.log 2025-08-26T22:42:20.9876483Z Running 10230 items in this shard: test/test_meta.py::TestMetaConverter::test_channels_last, test/test_meta.py::TestMetaConverter::test_channels_last_leaf, test/test_meta.py::TestMetaConverter::test_view_dtype, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype___rsub___cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs__conversions_polar_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_clamp_min_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_div_trunc_rounding_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_floor_divide_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_fmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_ge_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_igammac_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_logical_and_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_pow_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_true_divide_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_clamp_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_complex_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_copysign_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_div_no_rounding_mode_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_floor_divide_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_fmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_ge_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_gt_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_logical_or_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_maximum_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_special_chebyshev_polynomial_u_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_special_chebyshev_polynomial_v_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_special_legendre_polynomial_p_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_special_zeta_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_sub_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_xlogy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_H_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_H_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_H_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_H_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_T_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_T_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_T_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___getitem___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___radd___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rdiv___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rdiv___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rdiv___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmatmul___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmatmul___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmatmul___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmul___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmul___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmul___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rpow___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rpow___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rpow___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rpow___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rsub___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rsub___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rsub___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rsub___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rsub___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rxor___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rxor___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rxor___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__batch_norm_with_update_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__chunk_cat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__chunk_cat_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__chunk_cat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__chunk_cat_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_abs_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_abs_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_abs_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_acos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_acos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcmul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_asin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_asin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_asin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_asin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_asin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_asin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_atan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_atan_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_atan_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_max_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_max_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_min_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_min_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_min_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cos_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cos_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cos_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cos_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cos_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cosh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cosh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cosh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_div_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_div_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erfc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erfc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erfc_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erfc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_exp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_exp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_exp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_expm1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_expm1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_expm1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_floor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lerp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lerp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lerp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lerp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lgamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lgamma_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lgamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lgamma_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log10_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log1p_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log1p_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log1p_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_max_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_max_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_max_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_maximum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_maximum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_minimum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_minimum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_minimum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_minimum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_mul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_mul_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_mul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_neg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_neg_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_neg_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_neg_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_pow_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_reciprocal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_reciprocal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_reciprocal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_reciprocal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_reciprocal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_reciprocal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_reciprocal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_round_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_round_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_round_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_round_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_round_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_rsqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_rsqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sigmoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sigmoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sign_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sign_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sign_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sign_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sign_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sinh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sinh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sinh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sub_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sub_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sub_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sub_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tan_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tan_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tanh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tanh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_trunc_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_zero_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_zero_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__native_batch_norm_legit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__segment_reduce_lengths_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__softmax_backward_data_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_put_accumulate_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_put_accumulate_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__upsample_bilinear2d_aa_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_abs_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_abs_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acos_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acos_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acos_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acosh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acosh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acosh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addbmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addbmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addbmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addcdiv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addcdiv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addcmul_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addcmul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmm_decomposed_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmm_decomposed_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmm_decomposed_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmm_decomposed_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmv_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmv_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addr_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addr_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_alias_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_alias_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_alias_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_alias_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_alias_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_all_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_all_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_all_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_all_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_allclose_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_amax_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_aminmax_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_aminmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_aminmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_angle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_any_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_any_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_any_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_any_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_any_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_any_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_any_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_arange_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_arange_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argmin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argsort_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argsort_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argsort_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argwhere_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argwhere_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argwhere_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argwhere_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argwhere_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argwhere_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_partial_views_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_partial_views_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asinh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asinh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asinh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asinh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_1d_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_1d_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_1d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_1d_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_2d_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_2d_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_2d_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_3d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_3d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_baddbmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_baddbmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_baddbmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_baddbmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_baddbmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bernoulli_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bernoulli_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bfloat16_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bfloat16_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bfloat16_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bincount_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_left_shift_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_left_shift_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_left_shift_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_not_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_not_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_not_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_or_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_or_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_or_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_right_shift_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_xor_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_xor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_block_diag_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_block_diag_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bmm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bool_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bool_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bool_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bool_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bool_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bool_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_tensors_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_tensors_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_to_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_to_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_to_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_to_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bucketize_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_byte_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_byte_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_byte_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_byte_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_byte_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cartesian_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cartesian_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cartesian_prod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cartesian_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cartesian_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cat_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cat_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cauchy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cdouble_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cdouble_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ceil_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ceil_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ceil_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cfloat_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cfloat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chalf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chalf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_char_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_char_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_char_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_char_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cholesky_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cholesky_inverse_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cholesky_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cholesky_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chunk_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chunk_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chunk_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_max_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_max_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_max_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_min_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_min_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clone_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clone_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clone_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clone_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clone_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_column_stack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_column_stack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_column_stack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_column_stack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_column_stack_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_column_stack_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_combinations_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_combinations_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_complex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_physical_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_physical_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_physical_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_constant_pad_nd_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_constant_pad_nd_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_constant_pad_nd_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_contiguous_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_contiguous_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_contiguous_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_copysign_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_copysign_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_copysign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_copysign_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_corrcoef_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_corrcoef_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_corrcoef_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cos_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cos_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cos_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cos_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cosh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cosh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cosh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cosh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_count_nonzero_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_count_nonzero_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_count_nonzero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_count_nonzero_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_count_nonzero_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cov_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cov_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cov_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cov_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cross_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cross_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cross_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cummax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cummax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cummin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cummin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cummin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumprod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumprod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumprod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumsum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumulative_trapezoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumulative_trapezoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_deg2rad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_deg2rad_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_embed_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_embed_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagflat_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagflat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diff_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diff_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_digamma_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_digamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_digamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_digamma_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_digamma_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_floor_rounding_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_no_rounding_mode_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_no_rounding_mode_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_no_rounding_mode_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_no_rounding_mode_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_trunc_rounding_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_trunc_rounding_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_trunc_rounding_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dot_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_double_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_double_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_double_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_double_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_double_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_double_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dsplit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dsplit_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dsplit_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dstack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dstack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dstack_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dstack_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_einsum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_einsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_einsum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_einsum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_einsum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_einsum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_permuted_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_permuted_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_permuted_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_strided_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_strided_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_strided_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eq_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eq_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eq_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eq_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eq_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_equal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_equal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erfinv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_as_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_as_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_as_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_as_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expm1_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expm1_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eye_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eye_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eye_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eye_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eye_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fftshift_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fftshift_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fftshift_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftshift_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftshift_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftshift_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftshift_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftshift_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fill_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fill_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fill_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fill_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flatten_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flatten_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flatten_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flatten_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flip_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flip_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flip_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flip_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flip_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fliplr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fliplr_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flipud_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flipud_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_power_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_power_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_floor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_floor_divide_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_floor_divide_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_floor_divide_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_floor_divide_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_floor_divide_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_floor_divide_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmax_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_frexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_frexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_frexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gather_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gather_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gcd_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gcd_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ge_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ge_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_geometric_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_geometric_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_geometric_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_geometric_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_geqrf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gradient_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_grid_sampler_2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_grid_sampler_3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_half_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_half_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_half_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hash_tensor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hash_tensor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hash_tensor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_heaviside_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_heaviside_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_histc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hsplit_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hsplit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hstack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hstack_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hypot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hypot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_i0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_i0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_igamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_imag_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_fill_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_fill_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_put_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_put_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_amax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_select_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_select_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_select_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_inner_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_inner_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_int_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_int_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isclose_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isclose_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isclose_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isclose_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isfinite_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isinf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isinf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isinf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isnan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isnan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isnan_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isnan_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isnan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isneginf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isposinf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isposinf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isposinf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isreal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isreal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_istft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_item_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_item_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_item_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_item_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_item_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_item_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_2inputs_2outputs_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_4inputs_with_extra_args_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_4inputs_with_extra_args_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_4inputs_with_extra_args_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_4inputs_with_extra_args_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_return_by_ref_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_return_by_ref_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_return_by_ref_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_return_by_ref_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_unary_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kron_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kthvalue_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kthvalue_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lcm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ldexp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_le_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lerp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lerp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lerp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lgamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cholesky_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cholesky_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cond_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cross_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cross_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cross_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_eigh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_eigh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_eigh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_eigvals_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_householder_product_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_inv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_inv_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_ldl_factor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_ldl_factor_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_ldl_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lstsq_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lu_factor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lu_factor_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lu_factor_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lu_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_matrix_power_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_matrix_rank_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_matrix_rank_hermitian_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_multi_dot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_multi_dot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_multi_dot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_multi_dot_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_norm_subgradients_at_zero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_norm_subgradients_at_zero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_pinv_singular_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_qr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_solve_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_solve_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_svd_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_svdvals_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_tensorinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_tensorinv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_tensorsolve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_vander_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_vander_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_vecdot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_vector_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linspace_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linspace_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linspace_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linspace_tensor_overload_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linspace_tensor_overload_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log10_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log10_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log10_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log1p_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log1p_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log1p_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_normal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_softmax_with_dtype_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_softmax_with_dtype_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_softmax_with_dtype_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logaddexp2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logaddexp2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logaddexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logaddexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logaddexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logcumsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logcumsumexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logdet_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_and_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_and_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_or_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_or_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_or_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_xor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_xor_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_xor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logit_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logspace_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logspace_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logspace_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logspace_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logspace_tensor_overload_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logspace_tensor_overload_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logspace_tensor_overload_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logsumexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logsumexp_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logsumexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logsumexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logsumexp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_long_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_long_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_long_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_long_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_long_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mH_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mH_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mH_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mT_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mT_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mT_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mT_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_amax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_argmin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_argmin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumprod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumprod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumprod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumprod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumsum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_fill_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_fill_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_fill_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_logaddexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_logsumexp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_logsumexp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_logsumexp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_median_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_median_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_normalize_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_select_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_softmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_std_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_std_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_sum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_sum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_sum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_sum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_var_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_var_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_matmul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_matmul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_matmul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_matmul_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_matmul_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_matrix_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_binary_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_pool2d_with_indices_backward_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_pool2d_with_indices_backward_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_reduction_no_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_reduction_no_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_reduction_no_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_reduction_with_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_maximum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_maximum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_median_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_median_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_median_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_median_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_list_of_tensors_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_list_of_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_list_of_tensors_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_variadic_tensors_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_variadic_tensors_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_variadic_tensors_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_binary_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_binary_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_binary_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_reduction_no_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_reduction_no_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_reduction_no_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_reduction_with_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_reduction_with_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_reduction_with_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_minimum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_minimum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_minimum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mode_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mode_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_movedim_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_movedim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_msort_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_msort_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_multinomial_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mv_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mv_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nan_to_num_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nan_to_num_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nan_to_num_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nansum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nansum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_native_dropout_backward_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_native_dropout_backward_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_native_dropout_backward_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ne_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_neg_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_neg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_strided_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_strided_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_full_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_full_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_ones_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_ones_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_zeros_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_zeros_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_max_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_max_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_avg_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_avg_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_avg_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_avg_pool2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_avg_pool3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_bilinear_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_binary_cross_entropy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_channel_shuffle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_channel_shuffle_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_channel_shuffle_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_channel_shuffle_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv2d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose1d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose2d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose3d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_cosine_embedding_loss_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_cosine_embedding_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_cosine_embedding_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_cross_entropy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_ctc_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_dropout2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_dropout_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_elu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_embedding_bag_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_embedding_bag_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_feature_alpha_dropout_with_train_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_fractional_max_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_fractional_max_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_gaussian_nll_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_gaussian_nll_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_glu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_grid_sample_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_group_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hardshrink_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hardshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hardshrink_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hardsigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hardsigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hardsigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hardswish_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hardtanh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hinge_embedding_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_instance_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_instance_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_instance_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_area_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_area_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_bilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_bilinear_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_nearest-exact_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_kl_div_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_l1_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_leaky_relu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_leaky_relu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_leaky_relu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_linear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_linear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_linear_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_linear_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_logsigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_logsigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_margin_ranking_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_margin_ranking_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool2d_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool2d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool3d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool3d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool1d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool2d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_mish_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_mse_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_multi_head_attention_forward_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_nll_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_nll_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_normalize_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_normalize_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_normalize_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_circular_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_circular_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_circular_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_constant_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_constant_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_constant_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_reflect_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_reflect_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_reflect_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_replicate_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_replicate_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_replicate_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_replicate_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_replicate_negative_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_replicate_negative_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pairwise_distance_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pdist_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_shuffle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_shuffle_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_unshuffle_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_unshuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_unshuffle_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_poisson_nll_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_poisson_nll_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_poisson_nll_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_prelu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_relu6_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_relu6_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_relu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_relu_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_relu_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_rms_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_rms_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_rms_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_rms_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_rrelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_scaled_dot_product_attention_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_selu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_silu_complex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_smooth_l1_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_smooth_l1_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softmin_with_dtype_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softmin_with_dtype_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softplus_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softshrink_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softshrink_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softsign_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softsign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softsign_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_tanhshrink_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_tanhshrink_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_tanhshrink_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_triplet_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_unfold_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_unfold_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_unfold_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_upsample_nearest_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_upsample_nearest_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_static_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_fro_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_inf_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_inf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_nuc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_nuc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_normal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ormqr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_outer_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_outer_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_pinverse_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_pinverse_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polar_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_3_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_3_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_4_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_4_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_4_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_positive_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_positive_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_positive_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_positive_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_pow_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_pow_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_pow_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_pow_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_prod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_put_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_put_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_put_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_qr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_quantile_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rad2deg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rad2deg_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rand_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rand_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randint_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randint_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randint_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randint_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randint_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randn_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randn_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ravel_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ravel_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ravel_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ravel_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_real_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_real_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_real_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_real_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reciprocal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reciprocal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_remainder_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_renorm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_renorm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_renorm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_interleave_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_interleave_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_as_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_as_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_as_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize__cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize__cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize_as__cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize_as__cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_conj_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_conj_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_neg_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_neg_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_neg_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_neg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_roll_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_roll_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rot90_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rot90_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rot90_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rot90_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rot90_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rot90_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_round_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_round_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_round_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_round_decimals_0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_round_decimals_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rsqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rsqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rsub_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rsub_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rsub_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scalar_tensor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scalar_tensor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scalar_tensor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_amax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_sum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_sum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_sum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_searchsorted_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_searchsorted_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_searchsorted_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_searchsorted_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sgn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sgn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sgn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sgn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_short_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_short_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_short_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_short_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sigmoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sign_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sign_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sign_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signal_windows_blackman_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signal_windows_cosine_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signal_windows_exponential_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signal_windows_nuttall_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signbit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signbit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signbit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signbit_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signbit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinc_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_slice_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_slice_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_slice_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_slice_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_softmax_with_dtype_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_softmax_with_dtype_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_softmax_with_dtype_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_softmax_with_dtype_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sort_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sort_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sort_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sort_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sort_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sort_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sparse_mm_reduce_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sparse_sampled_addmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sparse_sampled_addmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_airy_ai_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_airy_ai_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_j0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_j0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_j1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_y0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_y0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_t_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_u_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_u_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_u_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_v_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_v_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_v_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_entr_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_entr_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_entr_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_erfcx_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_hermite_polynomial_h_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_hermite_polynomial_he_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_hermite_polynomial_he_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i0e_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i1e_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i1e_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_laguerre_polynomial_l_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_log_ndtr_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_i0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_i1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_i1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_k0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_k1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_k1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtr_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtr_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtr_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtri_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtri_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtri_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_scaled_modified_bessel_k0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_scaled_modified_bessel_k0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_scaled_modified_bessel_k1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_scaled_modified_bessel_k1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_xlog1py_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_xlog1py_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_zeta_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_zeta_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_zeta_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_list_args_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_square_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_square_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_square_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_multiple_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_multiple_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_multiple_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_multiple_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_stack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_stack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_stack_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_mean_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_mean_unbiased_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_mean_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_mean_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_stft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sub_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sub_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sub_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sub_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_to_size_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_to_size_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_to_size_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_svd_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_svd_lowrank_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_svd_lowrank_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_along_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_along_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tan_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensor_split_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensor_split_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensor_split_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensor_split_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensordot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensordot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensordot_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tile_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tile_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tile_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tile_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_sparse_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_sparse_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_sparse_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_sparse_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_sparse_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_topk_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_topk_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_torch__scaled_mm_cpu_float8_e4m3fn, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_torch__scaled_mm_cpu_float8_e5m2, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_torch__scaled_mm_cpu_float8_e5m2fnuz, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trace_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trace_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapezoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapezoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapezoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapz_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapz_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_triangular_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_triangular_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tril_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tril_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tril_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_triu_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_triu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_triu_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_true_divide_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_true_divide_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trunc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unflatten_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unflatten_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unflatten_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_uniform_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_uniform_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_consecutive_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_consecutive_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_cpu_uint32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unravel_index_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unravel_index_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unravel_index_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unravel_index_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_chunk_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_chunk_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_split_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_split_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_split_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_split_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_split_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_mean_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_mean_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_mean_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vdot_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vdot_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vdot_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vdot_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_as_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_as_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_as_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vsplit_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vsplit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vstack_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vstack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_where_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_where_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_where_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_xlogy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_xlogy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_xlogy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_xlogy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_xlogy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zero__cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zero__cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zero__cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zero__cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_H_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_H_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_H_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_H_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_T_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___getitem___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___getitem___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___getitem___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___getitem___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___radd___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___radd___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___radd___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rand___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rand___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rdiv___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rdiv___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmatmul___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmatmul___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmatmul___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmatmul___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmul___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmul___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmul___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmul___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rpow___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rpow___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rsub___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rsub___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rsub___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__batch_norm_with_update_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_abs_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_abs_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_abs_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_abs_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_abs_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_acos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_acos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_acos_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcdiv_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcdiv_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcdiv_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcmul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcmul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_asin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_asin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_atan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_atan_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_atan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_atan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_atan_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_atan_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_ceil_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_ceil_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_ceil_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_ceil_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_max_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_max_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_min_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cos_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cos_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cos_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cos_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cos_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cos_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cos_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cosh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cosh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cosh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cosh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_erf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_erf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_erfc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_exp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_exp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_expm1_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_expm1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_floor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_floor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_frac_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_frac_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_frac_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_frac_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_frac_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lerp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lerp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lerp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lerp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lgamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lgamma_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lgamma_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log10_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log10_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log10_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log10_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log1p_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log1p_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log1p_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log1p_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_max_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_max_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_maximum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_maximum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_maximum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_minimum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_mul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_mul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_mul_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_neg_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_norm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_pow_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_reciprocal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_reciprocal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_round_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_round_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_round_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_round_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_round_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_rsqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_rsqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sigmoid_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sigmoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sigmoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sign_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sign_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sign_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sinh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sinh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sinh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sub_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sub_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sub_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sub_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sub_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_tan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_tanh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_tanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_trunc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_trunc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_zero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_zero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_zero_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_zero_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__native_batch_norm_legit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__segment_reduce_lengths_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__segment_reduce_offsets_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__softmax_backward_data_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_put_accumulate_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_put_accumulate_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_put_accumulate_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_put_accumulate_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__upsample_bilinear2d_aa_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_abs_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_abs_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acosh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acosh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acosh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acosh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acosh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addbmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addcdiv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addcmul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addcmul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_decomposed_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_decomposed_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_decomposed_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addr_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addr_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_alias_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_alias_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_all_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_all_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_allclose_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_allclose_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_allclose_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_allclose_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_angle_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_angle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_angle_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_any_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_any_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_arange_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argmin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argsort_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argsort_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argwhere_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argwhere_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_partial_views_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_partial_views_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_partial_views_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_partial_views_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_partial_views_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_partial_views_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_partial_views_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asinh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asinh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asinh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asinh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan2_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atanh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_1d_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_1d_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_2d_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_2d_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_2d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_2d_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_3d_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_3d_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_3d_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_baddbmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bfloat16_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bfloat16_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bfloat16_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bfloat16_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bincount_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bincount_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bincount_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_and_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_and_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_left_shift_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_left_shift_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_not_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_right_shift_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_block_diag_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_block_diag_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_block_diag_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_block_diag_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_block_diag_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bmm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bool_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bool_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_tensors_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_tensors_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_to_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_to_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_to_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bucketize_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bucketize_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_byte_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_byte_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cartesian_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cartesian_prod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cartesian_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cat_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cauchy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cdouble_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cdouble_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cdouble_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cdouble_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cdouble_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cdouble_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ceil_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ceil_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ceil_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cfloat_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chalf_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chalf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chalf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chalf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chalf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_char_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_char_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_char_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_char_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_char_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cholesky_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chunk_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chunk_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chunk_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chunk_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_max_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_max_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_max_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_min_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clone_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clone_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_column_stack_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_column_stack_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_combinations_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_combinations_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_combinations_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_physical_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_physical_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_physical_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_constant_pad_nd_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_constant_pad_nd_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_constant_pad_nd_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_constant_pad_nd_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_constant_pad_nd_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_contiguous_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_contiguous_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_contiguous_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_copysign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_copysign_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_copysign_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_corrcoef_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_corrcoef_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cos_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cos_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cos_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cosh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cosh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_count_nonzero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_count_nonzero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_count_nonzero_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_count_nonzero_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cov_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cov_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cov_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cross_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cross_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cross_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cummax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cummax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cummin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cummin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumprod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumprod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumprod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumprod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumprod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumsum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumsum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumsum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumsum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumulative_trapezoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumulative_trapezoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_deg2rad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_deg2rad_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_deg2rad_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_deg2rad_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_deg2rad_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_embed_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_embed_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_embed_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagflat_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagflat_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagflat_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diff_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_digamma_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_digamma_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dist_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_floor_rounding_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_floor_rounding_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_no_rounding_mode_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_no_rounding_mode_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_no_rounding_mode_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_trunc_rounding_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_trunc_rounding_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_double_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_double_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dsplit_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dsplit_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dsplit_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dsplit_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dsplit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dstack_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dstack_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dstack_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_einsum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_einsum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_einsum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_permuted_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_permuted_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_permuted_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_permuted_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_permuted_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_permuted_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_strided_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_strided_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_strided_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eq_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eq_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_equal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erfc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erfc_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erfinv_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erfinv_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp2_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_as_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expm1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expm1_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expm1_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exponential_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exponential_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exponential_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eye_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eye_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eye_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eye_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eye_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eye_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftshift_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftshift_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftshift_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftshift_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_rfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_rfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_rfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fill_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fill_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fill_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fill_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flatten_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flatten_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flip_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fliplr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fliplr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fliplr_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fliplr_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fliplr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flipud_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flipud_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flipud_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flipud_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flipud_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_power_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_floor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_floor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_floor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_floor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_floor_divide_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_frac_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_like_cpu_uint32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gather_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gather_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gather_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ge_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ge_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ge_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_geometric_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_geometric_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gradient_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gradient_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gradient_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_grid_sampler_3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_half_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hash_tensor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hash_tensor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_heaviside_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_heaviside_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_heaviside_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_heaviside_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_heaviside_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_histogramdd_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hsplit_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hsplit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hsplit_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hsplit_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hstack_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hypot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_i0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_i0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_igamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_igamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_igammac_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_igammac_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_imag_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_imag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_fill_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_put_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_put_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_put_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_put_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_put_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_select_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_select_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_select_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_select_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_inner_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_inner_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_int_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_int_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isclose_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isclose_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isclose_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isinf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isinf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isinf_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isinf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isnan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isnan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isnan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isnan_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isneginf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isneginf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isneginf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isneginf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isposinf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isreal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isreal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isreal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_istft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_item_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_2inputs_2outputs_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_2inputs_2outputs_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_2inputs_2outputs_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_2inputs_2outputs_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_2inputs_2outputs_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_2inputs_2outputs_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_2inputs_2outputs_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_2inputs_2outputs_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_4inputs_with_extra_args_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_4inputs_with_extra_args_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_4inputs_with_extra_args_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_4inputs_with_extra_args_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_return_by_ref_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_return_by_ref_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_return_by_ref_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_return_by_ref_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_unary_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_unary_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_unary_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_unary_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kron_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kron_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kthvalue_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kthvalue_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kthvalue_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kthvalue_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kthvalue_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lcm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lcm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ldexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ldexp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ldexp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ldexp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ldexp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_le_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lerp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lerp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lerp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lgamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lgamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lgamma_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cholesky_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cond_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cond_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cross_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cross_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cross_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_det_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_det_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_diagonal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_diagonal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_diagonal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_diagonal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_eig_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_householder_product_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_inv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_inv_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_ldl_factor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_ldl_factor_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_ldl_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lstsq_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lstsq_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lstsq_grad_oriented_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lu_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lu_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lu_factor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lu_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lu_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_matrix_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_matrix_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_matrix_rank_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_matrix_rank_hermitian_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_matrix_rank_hermitian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_matrix_rank_hermitian_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_norm_subgradients_at_zero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_pinv_hermitian_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_pinv_hermitian_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_pinv_singular_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_slogdet_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_solve_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_solve_triangular_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_tensorsolve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_tensorsolve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_tensorsolve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_vander_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_vander_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_vander_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_vander_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_vecdot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_vecdot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_vecdot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_vector_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linspace_tensor_overload_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linspace_tensor_overload_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linspace_tensor_overload_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linspace_tensor_overload_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linspace_tensor_overload_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log10_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log10_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log10_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log10_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log10_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log1p_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log1p_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log1p_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_normal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_softmax_with_dtype_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_softmax_with_dtype_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_softmax_with_dtype_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logaddexp2_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logaddexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logcumsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logdet_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logdet_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_and_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_and_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_and_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_not_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_not_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_not_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_or_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_or_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_or_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_or_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_xor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_xor_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_xor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logit_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logspace_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logspace_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logspace_tensor_overload_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logspace_tensor_overload_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logspace_tensor_overload_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logspace_tensor_overload_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logsumexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logsumexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logsumexp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logsumexp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_long_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_long_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_long_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lu_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lu_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lu_unpack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mH_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mT_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mT_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_argmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_argmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_argmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_argmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_argmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_argmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_argmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_argmin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_argmin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_cumprod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_cumprod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_cumsum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_cumsum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_fill_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_fill_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_log_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_logaddexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_logsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_logsumexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_logsumexp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_logsumexp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_normalize_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_prod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_select_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_softmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_softmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_softmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_std_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_std_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_std_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_std_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_std_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_sum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_sum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_sum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_var_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_var_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_var_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_matmul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_matmul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_matmul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_matmul_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_matmul_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_matrix_exp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_matrix_exp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_matrix_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_binary_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_binary_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_binary_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_reduction_no_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_maximum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_maximum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_maximum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_median_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_median_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_list_of_tensors_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_list_of_tensors_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_list_of_tensors_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_list_of_tensors_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_variadic_tensors_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_variadic_tensors_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_binary_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_reduction_no_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_reduction_no_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_reduction_no_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_reduction_no_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_reduction_with_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_reduction_with_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_minimum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_minimum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_minimum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mode_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_movedim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_movedim_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_movedim_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_movedim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_msort_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mul_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mv_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mv_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mv_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nan_to_num_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nanmean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nanmean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nanmedian_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nanmedian_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nanmedian_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nanquantile_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nansum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_native_batch_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_native_batch_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_native_dropout_backward_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_native_dropout_backward_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_native_dropout_backward_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_native_layer_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ne_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ne_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ne_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ne_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ne_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_neg_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_strided_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_strided_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_strided_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_full_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_ones_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_ones_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_ones_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_ones_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_zeros_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_zeros_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_zeros_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_zeros_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_avg_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_avg_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_max_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_avg_pool1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_avg_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_batch_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_batch_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_bilinear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_bilinear_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_binary_cross_entropy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_channel_shuffle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_channel_shuffle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_channel_shuffle_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv1d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv_transpose1d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv_transpose1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv_transpose1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv_transpose1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv_transpose2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_cosine_embedding_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_cross_entropy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_ctc_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_dropout2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_elu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_embedding_bag_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_fractional_max_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_fractional_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_glu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_grid_sample_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hardsigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hardtanh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hardtanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hardtanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hardtanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hinge_embedding_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_huber_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_instance_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_instance_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_area_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_area_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_bicubic_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_bilinear_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_nearest_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_nearest_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_trilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_l1_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_layer_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_layer_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_linear_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_local_response_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_logsigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_margin_ranking_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_margin_ranking_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool2d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool1d_grad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool2d_grad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool3d_grad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_mish_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_mse_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_multi_head_attention_forward_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_multi_head_attention_forward_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_multilabel_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_nll_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_nll_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_normalize_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_one_hot_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_circular_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_circular_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_circular_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_circular_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_constant_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_constant_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_constant_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_reflect_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_reflect_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_replicate_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_replicate_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_replicate_negative_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_replicate_negative_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_replicate_negative_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pairwise_distance_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pairwise_distance_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pairwise_distance_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pairwise_distance_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_shuffle_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_shuffle_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_unshuffle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_unshuffle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_unshuffle_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_unshuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_unshuffle_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_poisson_nll_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_poisson_nll_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_prelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_relu6_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_relu6_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_relu6_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_relu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_relu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_rms_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_rrelu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_selu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_silu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_smooth_l1_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_smooth_l1_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_soft_margin_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softmin_with_dtype_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softmin_with_dtype_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softshrink_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softsign_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softsign_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softsign_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_threshold_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_triplet_margin_loss_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_triplet_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_triplet_margin_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_triplet_margin_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_unfold_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_upsample_bilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_upsample_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_upsample_bilinear_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_upsample_nearest_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_upsample_nearest_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_static_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_static_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_static_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_fro_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_inf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_inf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_normal_number_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_normal_number_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_normal_number_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_outer_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_outer_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_outer_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_pca_lowrank_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_pinverse_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_pinverse_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polar_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_3_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_3_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_3_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_4_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_4_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_positive_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_positive_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_positive_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_pow_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_pow_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_qr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_qr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rad2deg_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rand_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randint_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randint_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randint_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randint_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randint_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randint_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randint_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randn_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ravel_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ravel_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_real_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_real_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reciprocal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reciprocal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_remainder_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_remainder_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_remainder_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_renorm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_interleave_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_interleave_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_interleave_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_as_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_as_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_as_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_as_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_as_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_as_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize__cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize__cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize__cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize__cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize_as__cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize_as__cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize_as__cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize_as__cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize_as__cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize_as__cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_conj_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_conj_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_conj_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_neg_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_roll_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rot90_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rot90_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_round_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_round_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_round_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_round_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_round_decimals_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_round_decimals_neg_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rsqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rsqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rsqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rsqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rsub_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rsub_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scalar_tensor_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scalar_tensor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scalar_tensor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scalar_tensor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scalar_tensor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_amax_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_mean_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_mean_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_sum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_searchsorted_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_searchsorted_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sgn_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sgn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sgn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sgn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_short_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_short_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_short_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sigmoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sign_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sign_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signal_windows_exponential_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signal_windows_hamming_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signal_windows_kaiser_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signbit_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_softmax_with_dtype_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_softmax_with_dtype_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_softmax_with_dtype_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sort_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sort_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sparse_mm_reduce_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sparse_sampled_addmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_airy_ai_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_j0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_j0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_j0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_j0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_j1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_y0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_y1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_y1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_t_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_t_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_t_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_u_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_u_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_v_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_v_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_v_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_v_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_w_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_w_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_entr_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_entr_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_entr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_erfcx_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_erfcx_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_erfcx_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_hermite_polynomial_h_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_hermite_polynomial_he_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_hermite_polynomial_he_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_hermite_polynomial_he_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i0e_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i1e_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i1e_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_laguerre_polynomial_l_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_laguerre_polynomial_l_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_laguerre_polynomial_l_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_legendre_polynomial_p_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_legendre_polynomial_p_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_legendre_polynomial_p_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_legendre_polynomial_p_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_log_ndtr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_log_ndtr_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_i0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_i1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_i1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_k0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_k1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_k1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_k1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_ndtr_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_ndtr_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_ndtri_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_ndtri_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_ndtri_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_ndtri_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_scaled_modified_bessel_k0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_scaled_modified_bessel_k1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_t_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_v_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_v_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_xlog1py_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_xlog1py_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_zeta_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_list_args_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_list_args_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_list_args_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_list_args_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_list_args_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_square_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_square_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_square_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_square_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_square_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_multiple_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_multiple_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_stack_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_stack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_stack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_stack_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_stft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sub_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_to_size_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_to_size_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_to_size_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_to_size_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_to_size_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_svd_lowrank_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_svd_lowrank_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_along_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_along_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_along_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tan_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tan_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tan_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tanh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tensor_split_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tensor_split_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tensordot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tensordot_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tensordot_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tile_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tile_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tile_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tile_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tile_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tile_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_sparse_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_sparse_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_sparse_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_topk_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_topk_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_torch__scaled_mm_cpu_float8_e4m3fn, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trace_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapezoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapezoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapezoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_triangular_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_triangular_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tril_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tril_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tril_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tril_indices_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_triu_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_triu_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_triu_indices_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_true_divide_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_true_divide_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_true_divide_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_true_divide_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trunc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trunc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trunc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unflatten_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unflatten_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_uniform_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_uniform_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_uniform_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_consecutive_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_chunk_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_chunk_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_chunk_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_split_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_split_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_split_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_mean_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_mean_unbiased_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_mean_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vdot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vdot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vdot_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_as_complex_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_as_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_as_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_as_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vsplit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vsplit_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vsplit_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vsplit_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vsplit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vstack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vstack_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vstack_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_where_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_where_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_xlogy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_xlogy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_xlogy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zero__cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zero__cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zero__cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zero__cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zero__cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_H_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_H_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_H_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_H_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_T_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_T_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_T_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_T_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_T_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___getitem___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___radd___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___radd___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___radd___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rand___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rand___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rdiv___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rdiv___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rdiv___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmatmul___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmatmul___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmatmul___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmod___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmul___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmul___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___ror___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___ror___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rpow___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rpow___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rpow___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rpow___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rsub___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rsub___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rsub___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rsub___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rxor___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__batch_norm_with_update_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__chunk_cat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__chunk_cat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__chunk_cat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__chunk_cat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_abs_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_abs_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_abs_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_abs_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_acos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_acos_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_acos_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_acos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcmul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcmul_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_asin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_asin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_asin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_atan_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_atan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_ceil_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_ceil_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_ceil_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_ceil_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_ceil_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_max_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_max_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_max_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_cosh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_cosh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_cosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_cosh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_cosh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_cosh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_cosh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_div_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_div_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_div_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erfc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_exp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_exp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_expm1_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_expm1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_expm1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_expm1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_floor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_floor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_floor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_frac_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_frac_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_frac_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_frac_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lerp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lerp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lerp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lerp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lgamma_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lgamma_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lgamma_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lgamma_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log10_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log10_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log10_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log10_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log1p_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log1p_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_max_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_max_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_maximum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_maximum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_maximum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_maximum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_minimum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_minimum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_minimum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_mul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_mul_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_neg_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_neg_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_norm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_pow_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_pow_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_pow_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_pow_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_pow_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_pow_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_reciprocal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_reciprocal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_reciprocal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_reciprocal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_round_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_round_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_rsqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_rsqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sigmoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sigmoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sign_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sign_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sinh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sinh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sub_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sub_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sub_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sub_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tan_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tan_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tanh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tanh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_trunc_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_trunc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_trunc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_trunc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_zero_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__segment_reduce_offsets_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_put_accumulate_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_put_accumulate_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__upsample_bilinear2d_aa_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_abs_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_abs_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_abs_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_abs_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acos_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acos_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acos_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acosh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acosh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acosh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addbmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addbmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addbmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addbmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addcdiv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addcmul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addcmul_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_decomposed_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_decomposed_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmv_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addr_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addr_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_alias_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_alias_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides___rand___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides___rmatmul___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides___rmod___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides___rmul___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides___ror___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides___rxor___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_clamp_min_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_div_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_erf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_floor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_maximum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_rsqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_tan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_zero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__softmax_backward_data_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__upsample_bilinear2d_aa_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_addmm_decomposed_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_allclose_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_angle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_arange_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_argwhere_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_as_strided_partial_views_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_asin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_asinh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_atan2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_atan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_atleast_1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_atleast_3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_bfloat16_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_bitwise_or_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_bitwise_right_shift_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_block_diag_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_bmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_cdist_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_ceil_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_cfloat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_clone_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_combinations_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_conj_physical_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_contiguous_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_cumulative_trapezoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_dist_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_div_trunc_rounding_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_dstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_einsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_erfc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_exp2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_expand_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_expand_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_exponential_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_eye_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_fft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_ifftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_irfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_rfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_flatten_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fliplr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_frac_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_gcd_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_geqrf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_grid_sampler_2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_gt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_hstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_imag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_index_reduce_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_inner_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_isclose_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_isinf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_isposinf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_jiterator_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_jiterator_unary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_kron_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_lgamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_cholesky_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_det_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_inv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_ldl_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_pinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_qr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_slogdet_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_solve_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_svdvals_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_log2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_logical_not_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_logical_or_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_logspace_tensor_overload_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_long_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_lu_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_logsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_normalize_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_softmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_meshgrid_list_of_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_meshgrid_variadic_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_mm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_multinomial_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nan_to_num_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nanmean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_new_zeros_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nextafter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_celu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_conv_transpose1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_cosine_embedding_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_elu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_embedding_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_gelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_group_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_huber_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_instance_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_interpolate_bicubic_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_interpolate_nearest_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_kl_div_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_layer_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_leaky_relu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_local_response_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_max_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_max_unpool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_multi_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_multilabel_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_nll_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_pad_reflect_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_pad_replicate_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_pairwise_distance_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_prelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_relu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_rrelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_smooth_l1_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_softmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_softmin_with_dtype_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_triplet_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_upsample_nearest_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_norm_nuc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_permute_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_quantile_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_randint_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_randint_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_randn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_ravel_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_reciprocal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_repeat_interleave_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_reshape_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_resolve_conj_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_round_decimals_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_scatter_reduce_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_scatter_reduce_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_select_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_sgn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_signal_windows_gaussian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_signal_windows_hann_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_signal_windows_kaiser_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_erfcx_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_hermite_polynomial_h_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_hermite_polynomial_he_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_modified_bessel_i1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_modified_bessel_k1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_scaled_modified_bessel_k0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_split_with_sizes_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_squeeze_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_squeeze_multiple_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_std_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_std_mean_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_std_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_to_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_to_sparse_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_transpose_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_uniform_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_unique_consecutive_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_unique_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_unravel_index_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_var_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_view_as_complex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_view_as_real_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_vsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_zeros_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_amax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_aminmax_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_aminmax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_angle_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_angle_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_any_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_arange_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_arange_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argmin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argmin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argsort_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argsort_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argsort_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argwhere_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argwhere_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_partial_views_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_partial_views_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_partial_views_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_partial_views_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_partial_views_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_scatter_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asinh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asinh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asinh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asinh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asinh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atan2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atan2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atanh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atanh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_1d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_2d_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_2d_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_2d_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_3d_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_3d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_3d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_3d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_baddbmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_baddbmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_baddbmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_baddbmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_baddbmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bernoulli_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bernoulli_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bfloat16_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bfloat16_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bincount_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_and_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_not_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_not_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_or_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_or_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_or_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_right_shift_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_xor_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_xor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_block_diag_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_block_diag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_block_diag_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_block_diag_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_block_diag_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bool_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bool_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bool_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_tensors_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_tensors_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_to_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_to_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_to_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bucketize_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bucketize_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bucketize_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bucketize_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_byte_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_byte_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_byte_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cartesian_prod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cartesian_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cat_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cauchy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cauchy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cauchy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cdist_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cdouble_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cdouble_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cdouble_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cdouble_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cdouble_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cdouble_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cfloat_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cfloat_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cfloat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chalf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_char_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_char_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_char_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_char_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_char_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cholesky_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cholesky_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cholesky_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cholesky_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chunk_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chunk_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chunk_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chunk_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_max_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_min_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_min_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_min_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_min_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clone_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_column_stack_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_column_stack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_column_stack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_column_stack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_column_stack_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_combinations_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_combinations_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_combinations_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_combinations_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_combinations_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_physical_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_physical_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_constant_pad_nd_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_constant_pad_nd_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_contiguous_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_copysign_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_copysign_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_corrcoef_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cos_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cosh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cosh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cov_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cross_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cross_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cummax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cummax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cummin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cummin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cummin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cummin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumprod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumprod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumprod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumprod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumprod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumsum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumulative_trapezoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumulative_trapezoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumulative_trapezoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumulative_trapezoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_deg2rad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_embed_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_embed_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_embed_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagflat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagflat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagflat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diff_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diff_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diff_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diff_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dist_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dist_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_floor_rounding_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_no_rounding_mode_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_no_rounding_mode_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_no_rounding_mode_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_no_rounding_mode_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_no_rounding_mode_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_trunc_rounding_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dot_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_double_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_double_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_double_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dsplit_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dsplit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dsplit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dstack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dstack_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dstack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_einsum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_einsum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_einsum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_permuted_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_permuted_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_permuted_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_strided_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_strided_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_strided_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eq_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eq_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eq_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eq_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eq_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_equal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_equal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfc_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfinv_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfinv_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfinv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfinv_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfinv_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfinv_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_as_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_as_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_as_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_as_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expm1_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expm1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expm1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exponential_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eye_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eye_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eye_cpu_float8_e4m3fn, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eye_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eye_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fftshift_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftshift_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftshift_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fill_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fill_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flatten_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flip_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flip_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fliplr_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fliplr_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fliplr_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flipud_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_float_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_float_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_float_power_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_float_power_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_float_power_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_floor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_floor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_floor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_floor_divide_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_like_cpu_uint16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_like_cpu_uint32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gather_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gather_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gather_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gather_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gcd_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ge_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_geometric_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_geqrf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_geqrf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gradient_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gradient_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gradient_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_grid_sampler_3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_grid_sampler_3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_grid_sampler_3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_half_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_half_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_half_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_heaviside_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_heaviside_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_histogramdd_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hsplit_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hsplit_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hsplit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hstack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hstack_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hypot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_i0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_i0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_igamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_imag_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_fill_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_put_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_put_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_put_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_put_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_mean_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_select_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_select_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_select_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_select_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_inner_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_int_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_int_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isclose_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isclose_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isclose_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isclose_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isclose_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isfinite_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isfinite_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isfinite_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isinf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isinf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isinf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isnan_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isneginf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isneginf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isposinf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isposinf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isposinf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isposinf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isposinf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isreal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_item_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_item_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_2inputs_2outputs_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_2inputs_2outputs_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_2inputs_2outputs_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_2inputs_2outputs_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_4inputs_with_extra_args_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_4inputs_with_extra_args_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_unary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_unary_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_unary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_kron_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_kron_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_kron_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_kthvalue_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_kthvalue_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lcm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ldexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ldexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ldexp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_le_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_le_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_le_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_le_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lerp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lerp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lerp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lgamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lgamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lgamma_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cond_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cross_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_det_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_diagonal_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_diagonal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_diagonal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_diagonal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_eig_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_eig_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_eigh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_eigvalsh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_householder_product_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_householder_product_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_inv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_inv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_inv_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_inv_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_ldl_factor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_ldl_factor_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_ldl_factor_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_lstsq_grad_oriented_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_lu_factor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_lu_factor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_lu_factor_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_lu_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_matrix_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_matrix_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_matrix_rank_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_matrix_rank_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_multi_dot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_multi_dot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_multi_dot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_multi_dot_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_multi_dot_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_multi_dot_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_multi_dot_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_norm_subgradients_at_zero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_norm_subgradients_at_zero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_norm_subgradients_at_zero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_pinv_hermitian_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_qr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_solve_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_solve_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_svd_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_svd_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_tensorinv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_tensorinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_tensorsolve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_vander_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_vander_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_vecdot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_vecdot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_vecdot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_vector_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_vector_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_tensor_overload_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_tensor_overload_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_tensor_overload_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_tensor_overload_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log10_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log10_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log10_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log10_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log1p_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log1p_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log1p_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log1p_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log1p_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log2_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_normal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_softmax_with_dtype_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_softmax_with_dtype_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_softmax_with_dtype_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_softmax_with_dtype_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_softmax_with_dtype_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logaddexp2_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logaddexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logaddexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logcumsumexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logdet_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_and_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_and_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_not_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_not_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_or_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_or_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_or_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_or_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_xor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logit_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_tensor_overload_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_tensor_overload_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logsumexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logsumexp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_long_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_long_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_long_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lu_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lu_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lu_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lu_unpack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lu_unpack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mH_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mH_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mT_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mT_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mT_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_argmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_argmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_argmax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_argmin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumprod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumprod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumprod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumsum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumsum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumsum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumsum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumsum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_fill_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_fill_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_fill_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_fill_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_log_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_log_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_logsumexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_logsumexp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_select_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_select_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_softmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_softmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_std_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_std_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_std_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_std_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_sum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_sum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_sum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_sum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_var_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_var_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_matmul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_matmul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_matrix_exp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_matrix_exp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_binary_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_pool2d_with_indices_backward_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_no_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_no_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_with_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_with_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_with_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_with_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_with_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_with_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_maximum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_maximum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_maximum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_median_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_median_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_list_of_tensors_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_list_of_tensors_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_list_of_tensors_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_list_of_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_variadic_tensors_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_variadic_tensors_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_binary_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_reduction_no_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_reduction_no_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_reduction_with_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_reduction_with_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_reduction_with_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_minimum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_minimum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_minimum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mode_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_movedim_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_movedim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_msort_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_msort_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_msort_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mul_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mv_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mv_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nan_to_num_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nanmean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nanmean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nanmedian_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nanmedian_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nansum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nansum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nansum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nansum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nansum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nansum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_native_dropout_backward_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_native_dropout_backward_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_native_layer_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ne_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ne_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_neg_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_strided_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_strided_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_strided_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_strided_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_full_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_full_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_full_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_ones_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_ones_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_ones_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_zeros_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_zeros_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nextafter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nextafter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_avg_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_avg_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_avg_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_max_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_max_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_bilinear_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_binary_cross_entropy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_channel_shuffle_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_channel_shuffle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv3d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose2d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_cosine_embedding_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_cosine_similarity_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_cosine_similarity_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_cross_entropy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_cross_entropy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_ctc_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_dropout2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_dropout3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_dropout3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_elu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_embedding_bag_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_embedding_bag_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_embedding_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_gaussian_nll_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_gaussian_nll_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_glu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_grid_sample_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hardshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hardsigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hardsigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hardswish_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hardtanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hardtanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_area_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_bicubic_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_bicubic_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_bicubic_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_linear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_nearest-exact_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_kl_div_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_l1_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_l1_loss_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_layer_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_layer_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_linear_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_linear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_linear_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_linear_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_linear_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_logsigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_logsigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool2d_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool2d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool3d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool3d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool2d_grad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool3d_grad_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool3d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_mish_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_mse_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_multi_head_attention_forward_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_multi_head_attention_forward_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_multilabel_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_multilabel_soft_margin_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_nll_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_one_hot_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_circular_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_circular_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_constant_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_constant_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_constant_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_reflect_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_reflect_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_reflect_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_negative_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_negative_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_negative_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pairwise_distance_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pdist_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pdist_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_shuffle_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_shuffle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_shuffle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_shuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_shuffle_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_shuffle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_unshuffle_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_unshuffle_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_unshuffle_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_unshuffle_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_unshuffle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_poisson_nll_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_poisson_nll_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_poisson_nll_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_prelu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_prelu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_relu6_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_relu6_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_relu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_rms_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_rrelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_silu_complex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_soft_margin_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softmin_with_dtype_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softmin_with_dtype_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softmin_with_dtype_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softshrink_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softsign_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softsign_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softsign_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softsign_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_threshold_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_loss_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_unfold_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_upsample_bilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_upsample_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_upsample_bilinear_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_upsample_nearest_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_static_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_static_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_static_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_static_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_inf_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_nuc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_nuc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_normal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_normal_number_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_normal_number_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_outer_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_pinverse_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_pinverse_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_pinverse_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polar_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_4_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_4_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_positive_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_positive_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_positive_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_put_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_put_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_put_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_put_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_put_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_put_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_put_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_qr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rad2deg_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rand_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rand_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randint_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randint_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randint_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randint_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randint_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randint_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randn_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randn_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ravel_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ravel_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ravel_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_real_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_real_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reciprocal_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reciprocal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reciprocal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reciprocal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_remainder_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_remainder_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_remainder_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_remainder_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_renorm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_renorm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_interleave_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_interleave_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_as_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_as_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_as_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_as_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize__cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize__cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize_as__cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize_as__cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize_as__cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize_as__cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_conj_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_conj_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_conj_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_conj_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_conj_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_neg_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_roll_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_roll_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_roll_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rot90_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rot90_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rot90_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsub_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsub_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsub_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsub_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsub_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsub_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scalar_tensor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scalar_tensor_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scalar_tensor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scalar_tensor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_mean_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_mean_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_sum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_sum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_sum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_sum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_searchsorted_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_searchsorted_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sgn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sgn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sgn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sgn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_short_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_short_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_short_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sigmoid_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sign_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signal_windows_blackman_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signal_windows_cosine_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signal_windows_cosine_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signal_windows_gaussian_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signal_windows_general_hamming_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signal_windows_hamming_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signal_windows_hamming_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signbit_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinc_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_slice_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_slice_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_slice_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_softmax_with_dtype_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_softmax_with_dtype_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_softmax_with_dtype_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sort_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sort_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sort_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sparse_mm_reduce_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sparse_mm_reduce_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_airy_ai_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_airy_ai_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_airy_ai_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_j0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_j0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_j1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_y0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_y0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_t_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_t_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_u_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_u_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_v_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_w_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_w_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_w_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_w_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_entr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_erfcx_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_hermite_polynomial_h_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i1_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i1e_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_laguerre_polynomial_l_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_laguerre_polynomial_l_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_laguerre_polynomial_l_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_legendre_polynomial_p_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_legendre_polynomial_p_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_legendre_polynomial_p_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_log_ndtr_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_log_ndtr_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_i0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_i0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_i0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_i0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_i1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_i1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_k0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_k0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_k1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_ndtr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_ndtr_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_ndtri_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_scaled_modified_bessel_k0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_scaled_modified_bessel_k0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_scaled_modified_bessel_k0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_spherical_bessel_j0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_spherical_bessel_j0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_spherical_bessel_j0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_xlog1py_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_xlog1py_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_zeta_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_zeta_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_zeta_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_list_args_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_list_args_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_list_args_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_with_sizes_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_with_sizes_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_with_sizes_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_with_sizes_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_square_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_square_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_square_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_multiple_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_multiple_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_multiple_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_multiple_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_multiple_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_multiple_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_mean_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_mean_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_mean_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_unbiased_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_stft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sub_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sub_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sub_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sub_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_to_size_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_to_size_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_to_size_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_to_size_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_to_size_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_svd_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tan_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tan_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tanh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tanh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tensor_split_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tensordot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tensordot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tensordot_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tile_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tile_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tile_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tile_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tile_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tile_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_sparse_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_sparse_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_sparse_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_sparse_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_sparse_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_topk_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_topk_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_topk_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trace_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trace_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trapezoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trapezoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trapz_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trapz_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_triangular_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tril_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tril_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tril_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tril_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tril_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tril_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tril_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tril_indices_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_triu_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_triu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_triu_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_triu_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_true_divide_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_true_divide_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_true_divide_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trunc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unflatten_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_uniform_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_consecutive_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_consecutive_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_consecutive_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unravel_index_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_chunk_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_chunk_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_chunk_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_chunk_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_split_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_mean_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_mean_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vdot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vdot_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_as_complex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_as_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_as_real_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_as_real_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vsplit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vsplit_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vsplit_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vsplit_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vsplit_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vsplit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vstack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vstack_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_where_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_where_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_where_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_xlogy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_xlogy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zero__cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zero__cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_H_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_H_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_H_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_H_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_T_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_T_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_T_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_T_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_T_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___getitem___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___radd___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___radd___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rand___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rand___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rdiv___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rdiv___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rdiv___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmatmul___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmatmul___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmatmul___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmod___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmul___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___ror___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___ror___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rpow___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rpow___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rsub___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rsub___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rsub___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rsub___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rsub___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rxor___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__batch_norm_with_update_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__chunk_cat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__chunk_cat_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__chunk_cat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_abs_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_abs_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_abs_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_acos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_acos_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_acos_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcmul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcmul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcmul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_asin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_asin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_asin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_atan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_atan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_atan_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_ceil_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_ceil_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_ceil_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_max_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_max_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_max_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_min_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_min_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_min_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cos_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cos_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cosh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_div_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_div_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_div_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_div_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_div_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erfc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erfc_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erfc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erfc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_exp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_expm1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_expm1_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_expm1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_expm1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_floor_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_floor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_floor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_floor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_frac_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_frac_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_frac_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lgamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lgamma_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lgamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lgamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lgamma_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log10_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log10_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log10_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log1p_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_max_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_max_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_maximum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_maximum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_minimum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_minimum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_minimum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_mul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_mul_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_neg_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_neg_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_neg_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_norm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_pow_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_pow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_reciprocal_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_reciprocal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_reciprocal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_reciprocal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_reciprocal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_round_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_round_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_round_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_round_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_rsqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_rsqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sigmoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sigmoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sign_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sign_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sign_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sign_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sign_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sinh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sinh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sinh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sinh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sinh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sub_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sub_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sub_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sub_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sub_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tan_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tan_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tanh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_trunc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_trunc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_trunc_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_trunc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_zero_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_zero_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_zero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_zero_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__softmax_backward_data_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_put_accumulate_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_put_accumulate_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__upsample_bilinear2d_aa_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_abs_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_abs_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_abs_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acos_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acos_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acosh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addbmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addbmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addcmul_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addcmul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addcmul_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmm_decomposed_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmm_decomposed_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmm_decomposed_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmv_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addr_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addr_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_alias_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides___getitem___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides___rand___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides___ror___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_addcdiv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_clamp_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_clamp_min_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_cosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_div_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_frac_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_maximum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_minimum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_sub_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_tan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_abs_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_acosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_all_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_any_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_arange_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_asin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_atleast_2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_bitwise_and_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_bitwise_not_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_bitwise_or_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_block_diag_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_byte_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_cartesian_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_cat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_cauchy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_cdist_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_chalf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_cholesky_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_cholesky_inverse_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_clamp_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_conj_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_conj_physical_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_constant_pad_nd_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_corrcoef_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_cos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_cov_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_cumsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_diag_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_diagonal_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_diagonal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_div_trunc_rounding_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_empty_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_equal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_erf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_expand_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_expm1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_fft_fft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_fft_fftshift_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_fft_hfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_fft_ifft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_fft_ihfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_fft_irfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_fft_rfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_float_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_float_power_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_fmod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_gcd_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_geqrf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_grid_sampler_2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_grid_sampler_3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_hsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_igammac_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_index_reduce_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_index_reduce_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_index_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_inner_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_int_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_isclose_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_isin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_isposinf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_isreal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_lcm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_ldexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_lgamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_cholesky_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_det_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_eigh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_inv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_lstsq_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_lu_factor_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_pinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_pinv_singular_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_slogdet_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_solve_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_tensorinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linspace_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_log2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_log_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_logical_not_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_logical_or_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_long_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_masked_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_masked_argmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_masked_logsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_masked_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_masked_var_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_max_reduction_no_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_max_reduction_with_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_maximum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_meshgrid_list_of_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_meshgrid_variadic_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_min_reduction_no_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_min_reduction_with_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_minimum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_mm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_multinomial_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nanmean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nanmedian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nansum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_narrow_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_new_empty_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_alpha_dropout_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_avg_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_cosine_similarity_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_cross_entropy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_dropout_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_fractional_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_fractional_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_gelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_grid_sample_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_instance_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_interpolate_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_l1_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_max_unpool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_max_unpool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_multi_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_pad_circular_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_pad_constant_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_pad_reflect_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_pad_replicate_negative_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_relu6_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_relu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_selu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_soft_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_softshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_softsign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_norm_fro_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_norm_inf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_norm_nuc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_normal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_pinverse_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_polygamma_polygamma_n_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_polygamma_polygamma_n_2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_rand_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_randint_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_randint_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_remainder_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_repeat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_reshape_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_roll_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_rot90_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_round_decimals_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_round_decimals_neg_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_signal_windows_blackman_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_bessel_j0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_bessel_y0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_chebyshev_polynomial_w_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_entr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_hermite_polynomial_h_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_hermite_polynomial_he_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_ndtr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_scaled_modified_bessel_k1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_spherical_bessel_j0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_split_with_sizes_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_sqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_square_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_squeeze_multiple_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_std_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_svd_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_svd_lowrank_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_t_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_take_along_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_tensordot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_tile_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_to_sparse_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_trapz_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_tril_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_triu_indices_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_true_divide_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_unique_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_unravel_index_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_var_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_view_as_complex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_view_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_view_as_real_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_view_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_zeros_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_aminmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_angle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_angle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_any_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_arange_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_arange_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_arange_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argmax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argsort_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argsort_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argsort_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argwhere_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_partial_views_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_partial_views_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_partial_views_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_scatter_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asinh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asinh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atan2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atan2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atan2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atan_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_1d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_1d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_1d_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_2d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_2d_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_3d_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_3d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_baddbmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_baddbmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bfloat16_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bfloat16_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bfloat16_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bfloat16_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bincount_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bincount_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_and_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_or_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_or_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_xor_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_xor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_xor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_block_diag_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_block_diag_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_block_diag_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bmm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bool_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bool_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_tensors_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_tensors_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_to_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_to_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_to_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bucketize_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bucketize_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bucketize_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bucketize_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_byte_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_byte_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_byte_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_byte_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_byte_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cartesian_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cauchy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cdist_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cdouble_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cdouble_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cdouble_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cdouble_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cfloat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cfloat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cfloat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cfloat_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cfloat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cfloat_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chalf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chalf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chalf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chalf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chalf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_char_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_char_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_char_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_char_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_char_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_char_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cholesky_inverse_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cholesky_inverse_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cholesky_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chunk_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chunk_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chunk_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_max_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_max_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_min_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_min_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_min_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_min_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clone_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clone_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clone_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clone_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clone_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clone_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_column_stack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_column_stack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_combinations_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_combinations_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_combinations_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_combinations_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_combinations_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_physical_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_physical_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_physical_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_physical_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_constant_pad_nd_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_constant_pad_nd_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_corrcoef_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_corrcoef_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cos_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cos_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cos_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cosh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cosh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_count_nonzero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_count_nonzero_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_count_nonzero_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_count_nonzero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_count_nonzero_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cov_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cov_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cummax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cummax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cummax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cummax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cummin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cummin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cummin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumprod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumprod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumprod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumprod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumprod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumsum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumulative_trapezoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumulative_trapezoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumulative_trapezoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumulative_trapezoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_deg2rad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_deg2rad_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_deg2rad_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_embed_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_embed_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_embed_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_embed_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_embed_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagflat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagflat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diff_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_digamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_digamma_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_digamma_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dist_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dist_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_floor_rounding_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_floor_rounding_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_no_rounding_mode_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_no_rounding_mode_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_trunc_rounding_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dot_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dot_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_double_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_double_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_double_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_double_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_double_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dsplit_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dsplit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dstack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dstack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dstack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dstack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dstack_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_einsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_einsum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_einsum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_permuted_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_permuted_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_strided_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_strided_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_strided_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_strided_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_strided_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eq_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eq_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_equal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erfc_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erfc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erfc_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erfc_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erfinv_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erfinv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_as_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_as_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_as_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expm1_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expm1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eye_cpu_float8_e4m3fnuz, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftshift_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftshift_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftshift_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftshift_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftshift_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftshift_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftshift_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftshift_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftshift_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fill_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fill_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fill_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fill_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fill_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flatten_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flatten_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flatten_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flatten_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flatten_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flip_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flip_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flip_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flip_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fliplr_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fliplr_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fliplr_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flipud_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flipud_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_power_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_power_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_power_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_power_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_floor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_floor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_floor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_floor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_floor_divide_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_floor_divide_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_floor_divide_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_frexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_like_cpu_uint32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gather_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gather_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gather_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gather_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gather_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gcd_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gcd_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gcd_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ge_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ge_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ge_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ge_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_geometric_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_geometric_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_geqrf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_geqrf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_geqrf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gradient_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gradient_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gradient_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gradient_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gradient_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_grid_sampler_2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_grid_sampler_2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_grid_sampler_3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_grid_sampler_3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_half_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_half_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_half_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hash_tensor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hash_tensor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_heaviside_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_heaviside_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_histc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_histogram_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_histogramdd_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hsplit_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hsplit_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hsplit_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hstack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hstack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hstack_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hstack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_i0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_i0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_igamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_igamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_igammac_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_igammac_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_igammac_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_fill_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_fill_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_fill_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_fill_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_put_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_put_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_select_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_select_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_select_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_select_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_select_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_inner_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_inner_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_inner_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_int_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_int_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_int_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isclose_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isclose_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isclose_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isfinite_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isfinite_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isfinite_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isinf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isnan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isnan_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isnan_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isneginf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isneginf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isposinf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isposinf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isreal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isreal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isreal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isreal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isreal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_istft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_item_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_2inputs_2outputs_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_2inputs_2outputs_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_4inputs_with_extra_args_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_4inputs_with_extra_args_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_4inputs_with_extra_args_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_return_by_ref_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_unary_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_unary_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_unary_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_kron_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_kron_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_kron_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_kron_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_kron_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_kthvalue_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_kthvalue_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_kthvalue_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lcm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lcm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ldexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ldexp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_le_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_le_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lgamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lgamma_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lgamma_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cond_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_det_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_diagonal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_diagonal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_eig_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_eig_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_eigvalsh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_householder_product_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_householder_product_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_inv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_ldl_factor_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lu_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lu_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_matrix_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_matrix_power_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_multi_dot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_norm_subgradients_at_zero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_norm_subgradients_at_zero_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_pinv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_pinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_qr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_qr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_slogdet_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_solve_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_svd_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_tensorsolve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vander_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vander_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vander_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vander_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vector_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_tensor_overload_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_tensor_overload_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_tensor_overload_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_tensor_overload_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_tensor_overload_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log10_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log10_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log10_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log10_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log10_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log1p_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log1p_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log1p_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_softmax_with_dtype_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_softmax_with_dtype_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_softmax_with_dtype_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_softmax_with_dtype_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_softmax_with_dtype_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logaddexp2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logaddexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logcumsumexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logdet_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_and_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_and_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_and_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_not_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_not_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_not_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_not_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_or_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_or_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_xor_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_xor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logspace_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logsumexp_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logsumexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logsumexp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logsumexp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logsumexp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_long_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lu_unpack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mH_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mH_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mH_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mT_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mT_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mT_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mT_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_argmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_argmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_argmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_argmin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_argmin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumprod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumprod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumprod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumsum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumsum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumsum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumsum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_log_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_logaddexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_logaddexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_logaddexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_logaddexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_logsumexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_logsumexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_median_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_normalize_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_normalize_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_select_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_select_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_softmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_std_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_std_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_std_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_sum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_sum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_sum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_var_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_matmul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_matmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_matmul_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_matrix_exp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_matrix_exp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_binary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_pool2d_with_indices_backward_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_reduction_no_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_reduction_no_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_reduction_with_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_reduction_with_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_reduction_with_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_maximum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_maximum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_median_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_median_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_median_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_list_of_tensors_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_list_of_tensors_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_list_of_tensors_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_variadic_tensors_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_binary_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_binary_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_binary_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_reduction_no_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_reduction_no_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_reduction_with_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_minimum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_minimum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_minimum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_minimum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_minimum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mode_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mode_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mode_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_movedim_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_movedim_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_movedim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_movedim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_msort_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_msort_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_msort_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mul_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mul_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_multinomial_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nan_to_num_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nan_to_num_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nanmean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nanmedian_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nanmedian_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nanmedian_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nansum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nansum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_native_dropout_backward_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ne_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ne_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ne_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_neg_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_strided_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_strided_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_full_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_full_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_full_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_ones_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_ones_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_ones_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_ones_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_zeros_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_zeros_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nextafter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nextafter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nextafter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_avg_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_max_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_max_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_alpha_dropout_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_avg_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_avg_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_avg_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_avg_pool3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_batch_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_batch_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_channel_shuffle_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_channel_shuffle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_channel_shuffle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_channel_shuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_channel_shuffle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv1d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv3d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv3d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv_transpose2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv_transpose2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_cosine_embedding_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_cosine_embedding_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_cross_entropy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_ctc_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_dropout2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_dropout3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_elu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_embedding_bag_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_embedding_bag_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_embedding_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_feature_alpha_dropout_with_train_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_fractional_max_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_gaussian_nll_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_gaussian_nll_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_gaussian_nll_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_gelu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_gelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_gelu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_glu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_glu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_grid_sample_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hardshrink_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hardsigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hardsigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hardtanh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hardtanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hardtanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hardtanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_instance_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_instance_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_area_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_bicubic_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_bilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_bilinear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_bilinear_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_linear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_linear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_nearest-exact_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_trilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_kl_div_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_l1_loss_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_l1_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_leaky_relu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_linear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_local_response_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_local_response_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_logsigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_logsigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_logsigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_margin_ranking_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_margin_ranking_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_margin_ranking_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_margin_ranking_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_margin_ranking_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_pool2d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool2d_grad_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool3d_grad_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_mish_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_mse_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_mse_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_multi_head_attention_forward_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_multi_head_attention_forward_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_multi_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_multilabel_soft_margin_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_nll_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_normalize_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_circular_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_circular_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_circular_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_constant_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_reflect_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_reflect_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_reflect_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_replicate_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_replicate_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_replicate_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_replicate_negative_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_replicate_negative_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_replicate_negative_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_replicate_negative_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pairwise_distance_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pairwise_distance_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pairwise_distance_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pairwise_distance_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pairwise_distance_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_shuffle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_shuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_shuffle_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_shuffle_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_shuffle_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_unshuffle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_unshuffle_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_unshuffle_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_unshuffle_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_unshuffle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_poisson_nll_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_prelu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_relu6_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_relu6_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_relu6_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_rrelu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_scaled_dot_product_attention_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_silu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softmin_with_dtype_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softshrink_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softshrink_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softsign_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softsign_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softsign_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softsign_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_tanhshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_tanhshrink_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_tanhshrink_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_tanhshrink_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_threshold_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_loss_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_unfold_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_unfold_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_upsample_bilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_upsample_nearest_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_upsample_nearest_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_static_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_static_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_static_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_static_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_static_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_static_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_static_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_fro_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_inf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_inf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_inf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_nuc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_nuc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_normal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_normal_in_place_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_normal_in_place_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_normal_in_place_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_normal_number_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ormqr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ormqr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_outer_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_pca_lowrank_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polar_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_3_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_3_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_3_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_4_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_positive_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_positive_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_pow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_pow_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_put_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_put_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_put_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_qr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_qr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rad2deg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rad2deg_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rad2deg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rand_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rand_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randint_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randint_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randint_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randint_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randn_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ravel_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ravel_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ravel_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_real_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_real_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reciprocal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reciprocal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_remainder_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_remainder_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_remainder_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_interleave_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_interleave_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_as_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_as_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_as_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize__cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize__cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize__cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize__cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize_as__cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_conj_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_conj_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_conj_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_conj_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_conj_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_conj_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_neg_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_neg_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_neg_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_neg_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_neg_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_neg_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_neg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_roll_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_roll_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rot90_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rot90_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_round_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_round_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_round_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_round_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_round_decimals_0_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_round_decimals_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_round_decimals_neg_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rsqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rsqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rsqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rsub_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rsub_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rsub_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rsub_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scalar_tensor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scalar_tensor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_amax_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_sum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_searchsorted_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_searchsorted_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_short_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_short_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_short_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sigmoid_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sigmoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sigmoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sign_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sign_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_blackman_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_cosine_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_exponential_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_gaussian_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_general_cosine_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_hamming_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_hann_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_kaiser_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_nuttall_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signbit_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signbit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signbit_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signbit_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sinc_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sinh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sinh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_softmax_with_dtype_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_softmax_with_dtype_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_softmax_with_dtype_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_softmax_with_dtype_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_softmax_with_dtype_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sort_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sort_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sort_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sort_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sort_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sparse_mm_reduce_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sparse_mm_reduce_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_airy_ai_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_airy_ai_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_airy_ai_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_airy_ai_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_airy_ai_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_airy_ai_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_j0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_j0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_j0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_j1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_j1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_j1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_j1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_y0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_y0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_y1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_y1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_y1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_t_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_u_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_v_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_v_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_v_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_v_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_w_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_entr_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_entr_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_entr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_erfcx_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_hermite_polynomial_h_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_hermite_polynomial_h_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_hermite_polynomial_h_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i0e_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i1e_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i1e_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_laguerre_polynomial_l_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_laguerre_polynomial_l_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_laguerre_polynomial_l_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_laguerre_polynomial_l_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_laguerre_polynomial_l_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_legendre_polynomial_p_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_legendre_polynomial_p_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_log_ndtr_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_i0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_i0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_i0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_i1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_k0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_k0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_k1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_k1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_ndtr_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_ndtr_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_scaled_modified_bessel_k0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_scaled_modified_bessel_k0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_scaled_modified_bessel_k1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_scaled_modified_bessel_k1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_spherical_bessel_j0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_spherical_bessel_j0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_xlog1py_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_xlog1py_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_zeta_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_list_args_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_list_args_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_list_args_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_list_args_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_square_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_multiple_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_multiple_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_stack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_stack_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_mean_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_mean_unbiased_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_stft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sub_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sub_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sub_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sub_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_to_size_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_t_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_t_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_t_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_along_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_along_dim_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_along_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_along_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tan_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tan_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensor_split_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensordot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensordot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tile_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tile_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tile_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_sparse_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_sparse_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_sparse_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_sparse_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_sparse_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_topk_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_topk_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_topk_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trace_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trapezoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trapz_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trapz_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trapz_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_triangular_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_triangular_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tril_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tril_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tril_indices_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tril_indices_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_triu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_triu_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_true_divide_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_true_divide_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_true_divide_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trunc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trunc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trunc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unflatten_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unflatten_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unflatten_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unflatten_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unflatten_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unflatten_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unflatten_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_uniform_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_uniform_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_consecutive_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_consecutive_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_consecutive_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_cpu_uint32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unravel_index_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_chunk_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_chunk_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_chunk_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_chunk_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_chunk_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_chunk_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_split_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_split_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_unbiased_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vdot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_as_complex_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_as_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_as_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vsplit_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vsplit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vsplit_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vstack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vstack_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vstack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_where_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_where_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_where_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_where_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_xlogy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_xlogy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_xlogy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zero__cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zero__cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zero__cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_embedding_bag_dense_backward_mode_2_cpu, test/test_meta.py::TestMetaCPU::test_group_norm_backward_output_mask0_cpu, test/test_meta.py::TestMetaCPU::test_group_norm_backward_output_mask4_cpu, test/test_meta.py::TestMetaCPU::test_group_norm_backward_output_mask6_cpu, test/test_meta.py::TestMetaCPU::test_inplace_masked_fill_error_cpu, test/test_meta.py::TestMetaCPU::test_layer_norm_backward_output_mask2_cpu, test/test_meta.py::TestMetaCPU::test_layer_norm_backward_output_mask3_cpu, test/test_meta.py::TestMetaCPU::test_meta_consistency_out_dtype_mismatch_pow_Tensor_Scalar_cpu, test/test_meta.py::TestMetaCPU::test_meta_inplace_H_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_H_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_H_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_T_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_T_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_T_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_T_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_T_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace___getitem___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace___getitem___cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace___getitem___cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace___getitem___cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace___radd___cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace___radd___cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace___radd___cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace___radd___cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace___radd___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace___rand___cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace___rand___cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace___rdiv___cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace___rdiv___cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace___rdiv___cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace___rdiv___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmatmul___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmatmul___cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmatmul___cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmatmul___cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmod___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmod___cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmod___cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmul___cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmul___cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmul___cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmul___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace___ror___cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace___ror___cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace___rsub___cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace___rsub___cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace___rxor___cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace___rxor___cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__batch_norm_with_update_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__chunk_cat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__chunk_cat_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_abs_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_abs_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_acos_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcdiv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcdiv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcdiv_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcdiv_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcmul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcmul_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_asin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_asin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_atan_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_atan_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_atan_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_atan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_ceil_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_ceil_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_ceil_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_clamp_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_clamp_min_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_clamp_min_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cos_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cos_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cos_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cosh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cosh_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_div_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_div_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_div_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_div_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erf_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erf_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erf_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erfc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erfc_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erfc_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_exp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_exp_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_expm1_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_expm1_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_floor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_floor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_floor_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_frac_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_frac_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lerp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lerp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lerp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lgamma_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lgamma_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lgamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lgamma_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lgamma_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log10_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log1p_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log1p_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log1p_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log1p_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log2_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_max_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_max_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_maximum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_maximum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_minimum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_minimum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_mul_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_mul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_mul_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_neg_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_neg_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_neg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_norm_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_norm_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_pow_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_pow_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_pow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_pow_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_pow_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_reciprocal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_reciprocal_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_reciprocal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_round_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_round_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_rsqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_rsqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_rsqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_rsqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sigmoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sigmoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sign_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sign_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sin_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sinh_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sinh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sinh_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sub_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sub_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sub_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sub_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tan_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tan_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tan_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tanh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tanh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_trunc_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_trunc_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_trunc_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_zero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_zero_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_zero_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_zero_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__segment_reduce_lengths_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__segment_reduce_offsets_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__softmax_backward_data_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_put_accumulate_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_put_accumulate_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_put_accumulate_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_abs_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_acos_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_acos_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_acosh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_addbmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_addbmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_addcdiv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_addcmul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_addcmul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_addcmul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_addcmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_addcmul_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_addcmul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_decomposed_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmv_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_addr_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_addr_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_alias_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_alias_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_alias_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_alias_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_alias_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_alias_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_all_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_all_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_all_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_all_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_allclose_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_allclose_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_allclose_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_amax_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_aminmax_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_aminmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_aminmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_angle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_angle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_angle_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_any_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_any_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_arange_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_arange_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_arange_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_arange_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_argmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_argmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_argmin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_argsort_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_argsort_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_argsort_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_argwhere_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_argwhere_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_argwhere_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_argwhere_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_partial_views_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_partial_views_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_partial_views_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_scatter_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_asin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_asin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_asin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_asinh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_asinh_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_atan2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_atan2_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_atan2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_atan2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_atan2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_atan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_atan_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_atan_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_atanh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_1d_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_1d_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_1d_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_1d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_3d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_3d_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_3d_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_3d_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_baddbmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_baddbmm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_baddbmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_bernoulli_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bfloat16_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_bfloat16_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_left_shift_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_left_shift_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_left_shift_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_not_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_not_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_or_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_right_shift_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_xor_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_block_diag_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_block_diag_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bool_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_bool_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_tensors_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_to_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_to_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_to_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_to_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_to_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_to_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_to_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bucketize_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_byte_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_byte_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cartesian_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cat_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cat_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cat_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cauchy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cdist_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cdouble_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cdouble_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cdouble_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cdouble_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_ceil_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_ceil_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cfloat_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_chalf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_chalf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_chalf_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_chalf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_chalf_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_chalf_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_char_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_char_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cholesky_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cholesky_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cholesky_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cholesky_inverse_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_chunk_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_chunk_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_chunk_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_max_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_min_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_min_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_min_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_clone_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_clone_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_clone_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_clone_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_clone_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_column_stack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_column_stack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_column_stack_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_combinations_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_complex_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_physical_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_physical_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_physical_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_constant_pad_nd_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_contiguous_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_contiguous_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_contiguous_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_copysign_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_corrcoef_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_corrcoef_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_corrcoef_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cos_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_cos_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cos_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cos_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cosh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cosh_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cosh_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_count_nonzero_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_count_nonzero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_cov_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cov_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cov_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cross_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cross_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cross_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummax_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummax_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumprod_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumsum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumulative_trapezoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumulative_trapezoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_deg2rad_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_embed_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_embed_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_embed_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_embed_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_embed_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_embed_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_embed_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_embed_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_embed_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagflat_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_diff_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diff_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_digamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_digamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_digamma_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_dist_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_dist_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_floor_rounding_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_floor_rounding_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_floor_rounding_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_no_rounding_mode_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_no_rounding_mode_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_no_rounding_mode_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_no_rounding_mode_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_no_rounding_mode_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_trunc_rounding_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_dot_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_dot_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_dot_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_dot_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_double_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_double_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_double_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_double_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_double_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_dsplit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_dsplit_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_dsplit_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_dsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_dsplit_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_dstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_dstack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_einsum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_einsum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_einsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_permuted_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_permuted_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_permuted_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_permuted_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_strided_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_strided_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_strided_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_strided_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_eq_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_eq_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_eq_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_equal_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_equal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_equal_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_equal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_erf_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_erf_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_erf_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_erfc_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_erfinv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_as_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_as_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_expm1_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_expm1_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_exponential_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_eye_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_eye_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_eye_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_eye_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftshift_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftshift_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftshift_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftshift_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftshift_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftshift_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftshift_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fill_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fill_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fill_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fill_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_flatten_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_flatten_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_flip_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_flip_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fliplr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fliplr_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fliplr_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_flipud_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_flipud_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_flipud_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_flipud_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_flipud_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_power_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_floor_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_floor_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_floor_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_floor_divide_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_floor_divide_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_floor_divide_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_floor_divide_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_floor_divide_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmod_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmod_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_frac_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_frac_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_frexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_gather_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_gather_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_gather_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_gather_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_gcd_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_ge_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_ge_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ge_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_geometric_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_geqrf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_geqrf_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_gradient_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_gradient_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_grid_sampler_2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_grid_sampler_3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_gt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_gt_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_gt_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_gt_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_gt_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_half_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_half_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_half_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_half_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_hash_tensor_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_hash_tensor_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_heaviside_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_histc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_histogramdd_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_histogramdd_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_hsplit_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_hsplit_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_hstack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_hstack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_hstack_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_hstack_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_hypot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_hypot_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_i0_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_i0_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_igammac_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_igammac_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_fill_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_fill_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_fill_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_put_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_put_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_put_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_mean_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_select_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_inner_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_inner_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_inner_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_int_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_int_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_int_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_isclose_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_isclose_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isclose_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isclose_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_isfinite_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isfinite_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_isin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isinf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isinf_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_isinf_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isinf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_isnan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_isnan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isnan_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isnan_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_isnan_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isnan_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isnan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_isposinf_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isposinf_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_isreal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isreal_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_istft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_item_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_item_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_item_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_item_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_item_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_2inputs_2outputs_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_2inputs_2outputs_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_2inputs_2outputs_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_4inputs_with_extra_args_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_4inputs_with_extra_args_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_return_by_ref_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_return_by_ref_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_return_by_ref_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_return_by_ref_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_unary_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_unary_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_kron_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_kron_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_kron_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_kron_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_kron_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_kron_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_kthvalue_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_kthvalue_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_kthvalue_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_lcm_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_ldexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ldexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ldexp_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_ldexp_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_le_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_le_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_le_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_le_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_lerp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_lgamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_lgamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_lgamma_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cholesky_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cholesky_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cholesky_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cholesky_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cross_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cross_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cross_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cross_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cross_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_det_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_diagonal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_diagonal_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_eig_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_eigvalsh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_inv_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_ldl_factor_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_ldl_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_ldl_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lu_factor_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lu_factor_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_matrix_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_matrix_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_matrix_rank_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_matrix_rank_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_matrix_rank_hermitian_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_matrix_rank_hermitian_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_multi_dot_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_multi_dot_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_pinv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_pinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_pinv_hermitian_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_pinv_hermitian_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_pinv_singular_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_pinv_singular_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_qr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_qr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_qr_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_qr_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_svd_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_svd_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_svdvals_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_tensorinv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_tensorinv_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_tensorsolve_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vander_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vander_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vander_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vander_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vander_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_linspace_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linspace_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linspace_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linspace_tensor_overload_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linspace_tensor_overload_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linspace_tensor_overload_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linspace_tensor_overload_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_log10_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_log10_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_log10_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_log10_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_log1p_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_log1p_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_log1p_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_log2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_log2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_log2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_log2_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_log2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_log2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_softmax_with_dtype_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_softmax_with_dtype_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_softmax_with_dtype_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_logaddexp2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logaddexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logaddexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logaddexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logcumsumexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logcumsumexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logcumsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_logdet_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logdet_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_and_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_not_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_not_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_or_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_or_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_or_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_or_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_xor_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_xor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_xor_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_xor_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_xor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_logit_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_logit_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logit_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_logit_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logit_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logit_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_tensor_overload_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logsumexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_logsumexp_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_logsumexp_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logsumexp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_long_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_lt_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_lu_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_lu_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_lu_unpack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_lu_unpack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mH_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mH_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_mH_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_mT_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_mT_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_argmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_argmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_argmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_argmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_argmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_argmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_argmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_argmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_argmin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumprod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumprod_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumprod_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumprod_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumsum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumsum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumsum_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumsum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumsum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_fill_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_fill_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_fill_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_fill_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_fill_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_logaddexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_logsumexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_logsumexp_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_logsumexp_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_median_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_normalize_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_prod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_prod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_select_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_select_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_select_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_std_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_std_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_std_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_std_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_sum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_sum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_var_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_var_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_matmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_matmul_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_matrix_exp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_matrix_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_binary_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_pool2d_with_indices_backward_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_pool2d_with_indices_backward_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_reduction_no_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_reduction_no_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_reduction_no_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_reduction_with_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_reduction_with_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_reduction_with_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_maximum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_maximum_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_maximum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_median_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_median_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_median_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_median_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_meshgrid_list_of_tensors_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_meshgrid_list_of_tensors_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_meshgrid_variadic_tensors_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_meshgrid_variadic_tensors_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_meshgrid_variadic_tensors_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_meshgrid_variadic_tensors_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_meshgrid_variadic_tensors_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_binary_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_binary_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_binary_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_reduction_with_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_reduction_with_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_reduction_with_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_minimum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_minimum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_minimum_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_minimum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_mm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mm_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_msort_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_msort_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mul_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_mul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_mul_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mul_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mul_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_multinomial_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_multinomial_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_multinomial_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mv_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mv_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mv_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nan_to_num_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_nan_to_num_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nan_to_num_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nanmean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nanmedian_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nanmedian_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nanmedian_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nanquantile_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nansum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_native_dropout_backward_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_native_dropout_backward_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_native_layer_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_ne_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_ne_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_ne_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ne_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_ne_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_neg_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_neg_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_strided_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_strided_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_strided_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_strided_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_full_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_full_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_ones_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_ones_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_ones_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_ones_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_ones_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_zeros_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_zeros_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nextafter_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_avg_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_avg_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_avg_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_max_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_max_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_alpha_dropout_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_avg_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_avg_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_avg_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_avg_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_avg_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_avg_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_avg_pool3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_batch_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_bilinear_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_binary_cross_entropy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_channel_shuffle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_channel_shuffle_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_channel_shuffle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_channel_shuffle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_channel_shuffle_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_channel_shuffle_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_channel_shuffle_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_channel_shuffle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv_transpose1d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv_transpose3d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_cosine_embedding_loss_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_cosine_embedding_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_cosine_embedding_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_cosine_embedding_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_cosine_similarity_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_cross_entropy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_dropout2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_dropout_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_elu_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_elu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_embedding_bag_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_embedding_bag_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_embedding_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_fractional_max_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_gelu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_gelu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_grid_sample_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_grid_sample_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardshrink_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardshrink_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardswish_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardswish_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardtanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardtanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hinge_embedding_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_instance_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_area_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_bicubic_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_bilinear_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_trilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_kl_div_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_kl_div_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_l1_loss_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_l1_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_leaky_relu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_leaky_relu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_linear_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_linear_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_linear_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_logsigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_margin_ranking_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_margin_ranking_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_pool2d_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool1d_grad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_mish_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_mse_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_multi_head_attention_forward_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_multilabel_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_multilabel_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_multilabel_soft_margin_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_multilabel_soft_margin_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_normalize_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_circular_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_circular_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_circular_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_circular_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_circular_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_constant_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_constant_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_constant_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_constant_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_reflect_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_reflect_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_reflect_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_reflect_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_negative_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_negative_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_negative_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_negative_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_negative_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_negative_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pairwise_distance_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pairwise_distance_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_shuffle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_shuffle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_unshuffle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_poisson_nll_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_poisson_nll_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_poisson_nll_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_poisson_nll_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_prelu_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_relu6_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_relu6_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_relu6_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_relu6_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_relu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_rms_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_selu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_silu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_smooth_l1_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_smooth_l1_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softmin_with_dtype_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softmin_with_dtype_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softsign_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softsign_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softsign_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softsign_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_tanhshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_tanhshrink_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_tanhshrink_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_threshold_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_threshold_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_threshold_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_unfold_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_upsample_bilinear_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_upsample_nearest_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_static_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_static_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_static_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_static_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_fro_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_fro_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_nuc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_nuc_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_normal_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_normal_in_place_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_normal_in_place_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_normal_in_place_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_normal_in_place_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_normal_number_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_normal_number_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_ormqr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ormqr_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_outer_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_outer_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_outer_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_pca_lowrank_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_0_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_1_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_1_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_3_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_4_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_4_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_4_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_positive_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_positive_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_positive_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_positive_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_positive_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_pow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_pow_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_prod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_put_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_quantile_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_rad2deg_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_rad2deg_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_rand_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_rand_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_randint_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_randint_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_randint_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_randint_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_randint_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_randint_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_randint_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_randn_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_randn_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_randn_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ravel_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_ravel_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_ravel_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_real_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_real_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_real_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_real_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_real_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_reciprocal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_reciprocal_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_remainder_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_remainder_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_remainder_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_renorm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_interleave_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_interleave_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_interleave_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_interleave_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_interleave_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_as_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_as_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize__cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize__cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize__cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize__cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize_as__cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize_as__cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize_as__cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize_as__cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_conj_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_conj_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_conj_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_neg_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_neg_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_neg_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_rot90_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_round_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_round_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_round_decimals_neg_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_rsqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_rsqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_rsqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_rsub_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_rsub_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_rsub_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_scalar_tensor_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_scalar_tensor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_scalar_tensor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_scalar_tensor_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_scalar_tensor_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amax_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amin_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_mean_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_mean_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_sum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_sum_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_sum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_searchsorted_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sgn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sgn_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_short_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_short_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_sigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sigmoid_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_sigmoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_sign_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_signal_windows_bartlett_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_signal_windows_general_hamming_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_signal_windows_nuttall_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_signbit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_signbit_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_signbit_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_signbit_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sin_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_sin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinc_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinc_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinh_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_softmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_softmax_with_dtype_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_softmax_with_dtype_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_softmax_with_dtype_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sort_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_sort_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_sparse_sampled_addmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_j0_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_j0_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_j0_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_j0_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_j0_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_j0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_j1_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_j1_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_j1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_y0_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_y0_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_y0_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_y1_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_y1_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_t_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_t_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_t_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_u_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_v_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_v_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_v_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_v_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_w_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_w_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_w_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_w_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_entr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_erfcx_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_erfcx_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_erfcx_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_hermite_polynomial_h_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_hermite_polynomial_h_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_hermite_polynomial_he_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_hermite_polynomial_he_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i0e_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i0e_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i0e_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i0e_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i1_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i1_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i1e_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i1e_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i1e_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i1e_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_laguerre_polynomial_l_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_laguerre_polynomial_l_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_legendre_polynomial_p_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_legendre_polynomial_p_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_legendre_polynomial_p_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_log_ndtr_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_log_ndtr_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_log_ndtr_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_log_ndtr_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_i0_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_i1_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_k0_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_k0_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_ndtr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_ndtr_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_ndtr_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_ndtri_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_ndtri_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_ndtri_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_scaled_modified_bessel_k0_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_scaled_modified_bessel_k0_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_scaled_modified_bessel_k1_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_scaled_modified_bessel_k1_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_scaled_modified_bessel_k1_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_scaled_modified_bessel_k1_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_spherical_bessel_j0_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_spherical_bessel_j0_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_xlog1py_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_xlog1py_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_zeta_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_list_args_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_list_args_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_list_args_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_sqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_square_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_square_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_multiple_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_multiple_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_multiple_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_stack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_stack_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_mean_unbiased_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_unbiased_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_stft_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sub_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sub_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_to_size_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_to_size_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_svd_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_svd_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_svd_lowrank_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_along_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_along_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_along_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_along_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_along_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_tan_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_tan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_tan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_tan_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_tan_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_tan_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_tan_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_tan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_tanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_tanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_tanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensor_split_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensor_split_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensor_split_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensor_split_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensor_split_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensordot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensordot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_tile_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_sparse_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_sparse_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_sparse_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_topk_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_torch__scaled_mm_cpu_float8_e4m3fn, test/test_meta.py::TestMetaCPU::test_meta_inplace_torch__scaled_mm_cpu_float8_e4m3fnuz, test/test_meta.py::TestMetaCPU::test_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_trace_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapezoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapezoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapezoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapezoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapezoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapz_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapz_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_triangular_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_tril_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_tril_indices_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_tril_indices_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_triu_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_triu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_true_divide_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_true_divide_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_trunc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_trunc_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_trunc_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_trunc_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_trunc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unflatten_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_uniform_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_uniform_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_uniform_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_consecutive_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_cpu_uint16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_chunk_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_chunk_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_chunk_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_chunk_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_chunk_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_chunk_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_chunk_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_split_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_split_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_split_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_mean_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_mean_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_vdot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_vdot_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_vdot_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_vdot_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_vdot_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_as_complex_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_as_complex_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_as_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_as_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_as_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_as_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_as_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_as_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_vsplit_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_vsplit_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_vsplit_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_vstack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_where_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_where_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_where_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_where_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_xlogy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_xlogy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_zero__cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_zero__cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_zero__cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_H_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_H_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_H_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_T_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_T_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_T_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_T_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_T_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace___getitem___cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace___getitem___cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace___radd___cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace___radd___cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace___rand___cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace___rand___cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace___rdiv___cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace___rdiv___cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace___rdiv___cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace___rdiv___cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmatmul___cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmatmul___cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmatmul___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmod___cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmod___cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmul___cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmul___cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmul___cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmul___cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmul___cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace___rpow___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace___rpow___cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace___rpow___cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace___rpow___cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace___rsub___cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace___rxor___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__batch_norm_with_update_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__batch_norm_with_update_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__batch_norm_with_update_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__chunk_cat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__chunk_cat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__chunk_cat_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace__chunk_cat_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_abs_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_abs_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_abs_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_abs_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_abs_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_acos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_acos_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcdiv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcdiv_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcdiv_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcmul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcmul_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcmul_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcmul_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_asin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_asin_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_asin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_asin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_atan_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_atan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_ceil_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_min_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_min_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cos_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cos_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cos_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cosh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cosh_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_div_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_div_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_div_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_erf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_erf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_erf_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_erf_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_erf_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_erfc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_erfc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_exp_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_exp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_exp_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_exp_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_exp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_expm1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_expm1_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_floor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_floor_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_floor_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_frac_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_frac_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_frac_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_frac_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_frac_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lerp_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lerp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lerp_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lerp_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lgamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lgamma_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lgamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lgamma_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log10_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log10_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log1p_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log1p_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log2_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_max_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_max_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_max_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_maximum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_maximum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_maximum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_minimum_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_minimum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_minimum_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_mul_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_mul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_neg_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_neg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_norm_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_pow_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_pow_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_reciprocal_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_reciprocal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_reciprocal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_reciprocal_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_round_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_round_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_rsqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sigmoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sigmoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sigmoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sign_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sign_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sign_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sign_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sign_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sinh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sinh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sinh_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sinh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sinh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sub_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sub_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tan_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tanh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tanh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_trunc_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_trunc_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_trunc_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_trunc_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_trunc_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_zero_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_zero_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_zero_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__native_batch_norm_legit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__segment_reduce_offsets_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__softmax_backward_data_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__unsafe_masked_index_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__unsafe_masked_index_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__unsafe_masked_index_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__unsafe_masked_index_put_accumulate_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__upsample_bilinear2d_aa_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__upsample_bilinear2d_aa_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_abs_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_acos_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_acos_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_acosh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_acosh_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_acosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_addbmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_addbmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_addbmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_addcdiv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_addcdiv_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_addcmul_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addcmul_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_addcmul_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmm_decomposed_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_addr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_addr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addr_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_alias_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_all_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_all_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_all_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_all_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_amin_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_aminmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_aminmax_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_aminmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_angle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_angle_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_angle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_angle_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_angle_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_any_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_any_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_arange_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_arange_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_argmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_argmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_argmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_argmin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_argsort_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_argwhere_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_argwhere_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_argwhere_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_argwhere_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_partial_views_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_partial_views_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_partial_views_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_partial_views_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_partial_views_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_partial_views_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_partial_views_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_asin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_asinh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_asinh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_asinh_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_atan2_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_atan2_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_atan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_atan_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_atan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_atanh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_atanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_1d_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_1d_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_2d_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_2d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_2d_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_2d_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_3d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_baddbmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_baddbmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_baddbmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_baddbmm_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_baddbmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_bfloat16_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_bfloat16_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_bfloat16_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_bincount_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_left_shift_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_not_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_or_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_block_diag_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_block_diag_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_bmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_bmm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_bmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_bmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_bmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_bool_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_bool_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_bool_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_shapes_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_tensors_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_tensors_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_tensors_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_to_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_to_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_to_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_bucketize_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_bucketize_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_bucketize_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_byte_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_byte_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_byte_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_byte_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_byte_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cartesian_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cartesian_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cartesian_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cat_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cat_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cat_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cauchy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cdouble_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_cdouble_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cdouble_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_ceil_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_ceil_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_ceil_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_ceil_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cfloat_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cfloat_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_chalf_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_chalf_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_chalf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_chalf_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_chalf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_char_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_char_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_char_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cholesky_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_chunk_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_chunk_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_max_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_max_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_max_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_max_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_min_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_min_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_clone_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_clone_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_column_stack_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_column_stack_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_combinations_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_combinations_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_combinations_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_combinations_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_combinations_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_complex_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_complex_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_physical_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_physical_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_physical_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_physical_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_physical_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_physical_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_constant_pad_nd_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_constant_pad_nd_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_constant_pad_nd_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_constant_pad_nd_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_constant_pad_nd_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_constant_pad_nd_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_contiguous_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_contiguous_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_contiguous_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_copysign_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_copysign_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_copysign_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_copysign_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_copysign_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_corrcoef_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_corrcoef_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_corrcoef_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_corrcoef_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_corrcoef_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_corrcoef_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cos_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cos_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cos_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cosh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_cosh_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_count_nonzero_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cov_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cov_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cov_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cov_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cov_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cross_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_cross_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cross_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumprod_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumprod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumsum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumsum_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumsum_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumsum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumsum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumulative_trapezoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumulative_trapezoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumulative_trapezoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumulative_trapezoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_deg2rad_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_deg2rad_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_embed_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_embed_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_embed_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_embed_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_embed_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_embed_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_embed_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagflat_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_diff_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diff_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diff_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_digamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_digamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_digamma_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_digamma_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_digamma_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_dist_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_dist_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_dist_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_floor_rounding_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_floor_rounding_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_floor_rounding_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_no_rounding_mode_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_no_rounding_mode_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_no_rounding_mode_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_no_rounding_mode_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_trunc_rounding_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_trunc_rounding_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_trunc_rounding_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_dot_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_dot_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_double_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_double_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_double_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_double_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_dsplit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_dsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_dsplit_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_dsplit_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_dstack_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_dstack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_dstack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_dstack_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_dstack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_einsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_einsum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_einsum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_permuted_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_permuted_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_strided_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_strided_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_strided_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_strided_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_eq_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_eq_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_eq_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_equal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_equal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_equal_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_equal_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_equal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_erf_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_erf_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_erf_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_erfc_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_erfc_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_erfc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_erfinv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_erfinv_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_erfinv_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_erfinv_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_as_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_as_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_as_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_as_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_as_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_expm1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_expm1_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_expm1_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_expm1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_eye_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_eye_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_eye_cpu_float8_e5m2, test/test_meta.py::TestMetaCPU::test_meta_outplace_eye_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fft_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fft_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftshift_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftshift_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftshift_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifft_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifft_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifft_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftshift_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftshift_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftshift_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftshift_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftshift_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fill_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fill_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_flatten_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_flatten_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_flatten_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_flatten_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_flip_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_flip_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_flip_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fliplr_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_flipud_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_power_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_power_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_power_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_power_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_power_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_power_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_floor_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_floor_divide_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_floor_divide_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_floor_divide_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_floor_divide_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmod_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmod_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmod_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmod_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmod_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_frac_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_frexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_frexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_frexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_gather_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_gather_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_gcd_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_ge_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ge_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_ge_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_geometric_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_geometric_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_geqrf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_gradient_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_grid_sampler_2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_grid_sampler_3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_gt_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_gt_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_gt_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_gt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_half_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_half_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_half_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_hash_tensor_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_heaviside_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_heaviside_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_histc_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_hsplit_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_hsplit_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_hsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_hsplit_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_hsplit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_hstack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_hstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_hstack_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_hypot_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_hypot_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_i0_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_i0_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_igamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_igammac_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_imag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_fill_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_fill_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_put_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_put_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_put_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_amax_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_select_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_select_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_select_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_inner_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_inner_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_inner_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_inner_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_int_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_int_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_isclose_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isclose_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isclose_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isfinite_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isfinite_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_isfinite_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_isfinite_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isfinite_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isfinite_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_isfinite_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isinf_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_isinf_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isinf_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isnan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isnan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isnan_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_isnan_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isneginf_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_isreal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isreal_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isreal_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_isreal_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_isreal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_istft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_item_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_item_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_2inputs_2outputs_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_2inputs_2outputs_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_4inputs_with_extra_args_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_4inputs_with_extra_args_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_4inputs_with_extra_args_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_4inputs_with_extra_args_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_4inputs_with_extra_args_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_return_by_ref_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_return_by_ref_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_return_by_ref_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_return_by_ref_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_return_by_ref_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_unary_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_unary_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_unary_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_kron_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_kron_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_kron_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_kron_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_kron_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_kthvalue_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_kthvalue_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_lcm_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_ldexp_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_ldexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ldexp_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_ldexp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_le_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_lerp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_lerp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_lerp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_lgamma_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_lgamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_lgamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_cholesky_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_cross_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_det_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_det_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_diagonal_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_diagonal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_diagonal_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_eig_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_eigh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_eigvals_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_ldl_factor_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_ldl_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_ldl_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lstsq_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lstsq_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lstsq_grad_oriented_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lstsq_grad_oriented_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lstsq_grad_oriented_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lu_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lu_factor_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lu_factor_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lu_factor_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lu_factor_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lu_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lu_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_matrix_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_matrix_power_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_matrix_rank_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_matrix_rank_hermitian_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_matrix_rank_hermitian_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_multi_dot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_norm_subgradients_at_zero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_norm_subgradients_at_zero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_pinv_hermitian_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_pinv_singular_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_pinv_singular_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_pinv_singular_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_qr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_slogdet_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_solve_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_solve_triangular_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_svd_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_svd_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_svdvals_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_tensorinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_tensorsolve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_tensorsolve_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vander_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vander_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vander_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vander_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vecdot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vector_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vector_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_tensor_overload_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_tensor_overload_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_tensor_overload_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_tensor_overload_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_tensor_overload_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_tensor_overload_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_log10_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_log1p_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_log1p_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_log2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_normal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_normal_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_softmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_softmax_with_dtype_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_softmax_with_dtype_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_logaddexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logaddexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logaddexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_and_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_and_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_and_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_and_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_and_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_not_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_not_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_not_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_or_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_or_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_or_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_or_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_or_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_xor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_xor_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logit_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logit_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logit_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_tensor_overload_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_tensor_overload_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_tensor_overload_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_logsumexp_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_logsumexp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_lt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_lt_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_lt_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_lt_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_lu_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_lu_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_lu_unpack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mH_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mH_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mT_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mT_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_mT_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mT_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_amax_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_argmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_argmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_argmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_argmin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumprod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumprod_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumprod_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumprod_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumprod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_fill_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_fill_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_logsumexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_logsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_logsumexp_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_logsumexp_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_median_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_normalize_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_normalize_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_normalize_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_normalize_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_prod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_select_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_softmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_softmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_std_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_std_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_sum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_sum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_var_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_var_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_matmul_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_matrix_exp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_matrix_exp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_binary_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_binary_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_pool2d_with_indices_backward_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_reduction_no_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_reduction_no_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_reduction_no_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_reduction_no_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_reduction_no_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_reduction_with_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_reduction_with_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_reduction_with_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_reduction_with_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_maximum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_maximum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_median_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_median_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_list_of_tensors_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_variadic_tensors_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_variadic_tensors_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_binary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_binary_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_reduction_no_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_minimum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_minimum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mm_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mm_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_movedim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_movedim_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_movedim_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_msort_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_mul_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mul_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_mv_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mv_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nan_to_num_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_nanmedian_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nanquantile_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nansum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nansum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nansum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_native_batch_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_native_dropout_backward_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_native_dropout_backward_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_native_dropout_backward_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_native_dropout_backward_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_native_dropout_backward_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_native_layer_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_native_layer_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_ne_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_ne_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_neg_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_neg_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_neg_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_neg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_strided_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_strided_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_strided_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_full_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_full_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_full_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_ones_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_ones_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_zeros_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nextafter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_adaptive_avg_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_adaptive_max_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_adaptive_max_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_alpha_dropout_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_avg_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_avg_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_avg_pool2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_avg_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_bilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_bilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_celu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_celu_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_channel_shuffle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_channel_shuffle_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_channel_shuffle_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv2d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv_transpose1d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv_transpose1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv_transpose3d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv_transpose3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv_transpose3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv_transpose3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_cosine_embedding_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_cosine_similarity_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_cross_entropy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_ctc_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_dropout2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_dropout_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_dropout_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_elu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_elu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_embedding_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_embedding_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_embedding_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_feature_alpha_dropout_with_train_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_fractional_max_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_fractional_max_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_gaussian_nll_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_gaussian_nll_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_gaussian_nll_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_group_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hardshrink_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hardsigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hardswish_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hardswish_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hardswish_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_huber_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_bilinear_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_nearest-exact_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_nearest-exact_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_trilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_trilinear_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_kl_div_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_kl_div_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_l1_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_l1_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_leaky_relu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_leaky_relu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_linear_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_linear_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_linear_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_linear_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_local_response_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_local_response_norm_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_logsigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_margin_ranking_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool2d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool3d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool2d_grad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool3d_grad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool3d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool3d_grad_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_mish_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_mish_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_mse_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_mse_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_multi_head_attention_forward_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_multi_head_attention_forward_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_nll_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_normalize_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_normalize_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_circular_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_circular_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_circular_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_circular_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_constant_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_reflect_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_reflect_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_reflect_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_replicate_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pairwise_distance_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pairwise_distance_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pdist_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pixel_unshuffle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pixel_unshuffle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_poisson_nll_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_poisson_nll_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_relu6_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_relu_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_rms_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_rms_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_rrelu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_scaled_dot_product_attention_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_smooth_l1_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softmin_with_dtype_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softmin_with_dtype_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softmin_with_dtype_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softplus_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softplus_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softshrink_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softshrink_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softsign_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softsign_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softsign_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softsign_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softsign_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_tanhshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_tanhshrink_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_tanhshrink_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_threshold_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_threshold_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_threshold_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_unfold_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_unfold_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_upsample_bilinear_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_upsample_bilinear_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_upsample_nearest_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_static_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_static_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_static_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_nuc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_normal_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_normal_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_normal_in_place_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_normal_in_place_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_normal_in_place_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_ormqr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_outer_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_outer_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_outer_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_outer_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_pca_lowrank_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_pinverse_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_0_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_0_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_1_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_1_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_4_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_positive_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_pow_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_pow_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_pow_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_pow_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_prod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_put_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_put_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_put_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_put_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_put_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_put_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_rad2deg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_rad2deg_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_rad2deg_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_rad2deg_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_rand_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_rand_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_rand_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_randint_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_randint_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_randint_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_randint_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_randint_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_randn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_randn_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_randn_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ravel_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ravel_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_ravel_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_ravel_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_ravel_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_real_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_real_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_reciprocal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_reciprocal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_reciprocal_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_remainder_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_remainder_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_renorm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_renorm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_interleave_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_interleave_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_interleave_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_interleave_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_as_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_as_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize__cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize__cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize_as__cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize_as__cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize_as__cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_conj_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_conj_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_neg_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_neg_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_roll_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_roll_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_roll_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_rot90_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_rot90_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_rot90_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_rot90_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_round_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_round_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_round_decimals_0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_round_decimals_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_round_decimals_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_round_decimals_neg_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_round_decimals_neg_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsub_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsub_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsub_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsub_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_scalar_tensor_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scalar_tensor_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_scalar_tensor_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_scalar_tensor_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_amax_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_sum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sgn_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sgn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sgn_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_short_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_short_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_short_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sigmoid_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_sigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sigmoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sigmoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sign_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_bartlett_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_gaussian_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_gaussian_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_general_cosine_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_hamming_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_nuttall_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_signbit_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_signbit_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_signbit_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_sin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinc_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinc_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_softmax_with_dtype_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_softmax_with_dtype_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_softmax_with_dtype_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_softmax_with_dtype_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_softmax_with_dtype_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sort_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sort_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sparse_mm_reduce_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sparse_mm_reduce_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sparse_sampled_addmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_j0_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_j0_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_j0_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_j0_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_j1_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_j1_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_y1_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_y1_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_y1_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_t_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_t_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_t_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_u_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_u_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_v_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_v_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_entr_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_entr_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_entr_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_erfcx_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_hermite_polynomial_h_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_hermite_polynomial_he_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_hermite_polynomial_he_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i0e_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i0e_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i0e_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i1_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i1e_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i1e_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_laguerre_polynomial_l_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_laguerre_polynomial_l_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_laguerre_polynomial_l_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_legendre_polynomial_p_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_log_ndtr_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_log_ndtr_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_i0_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_i0_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_i1_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_i1_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_i1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_k0_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_k0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_k1_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_k1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_ndtr_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_ndtr_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_ndtr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_scaled_modified_bessel_k0_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_scaled_modified_bessel_k0_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_scaled_modified_bessel_k1_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_scaled_modified_bessel_k1_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_scaled_modified_bessel_k1_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_scaled_modified_bessel_k1_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_t_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_t_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_t_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_t_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_v_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_spherical_bessel_j0_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_spherical_bessel_j0_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_xlog1py_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_xlog1py_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_xlog1py_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_zeta_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_zeta_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_zeta_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_zeta_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_list_args_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_list_args_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_list_args_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_square_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_square_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_square_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_square_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_square_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_multiple_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_multiple_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_multiple_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_multiple_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_multiple_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_multiple_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_stack_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_stack_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_stack_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_mean_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_stft_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_to_size_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_to_size_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_to_size_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_to_size_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_svd_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_svd_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_svd_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_along_dim_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_along_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_along_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_tan_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_tan_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_tanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_tanh_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_tanh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_tanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_tanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_tanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensor_split_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensor_split_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensor_split_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensor_split_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensordot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensordot_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensordot_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensordot_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensordot_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_tile_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_tile_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_tile_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_tile_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_sparse_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_sparse_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_sparse_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_sparse_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_topk_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_topk_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_topk_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_topk_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_trace_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_trace_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_trace_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_trace_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapezoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapezoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapezoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapezoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapz_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapz_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapz_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_tril_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_tril_indices_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_triu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_triu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_triu_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_triu_indices_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_triu_indices_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_true_divide_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_true_divide_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_trunc_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_trunc_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_trunc_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unflatten_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unflatten_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_uniform_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_uniform_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_consecutive_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_consecutive_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_consecutive_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_consecutive_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_cpu_uint16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unravel_index_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_chunk_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_chunk_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_chunk_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_split_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_split_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_split_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_split_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_var_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_var_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_var_mean_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_var_mean_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_var_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_vdot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_vdot_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_as_complex_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_as_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_as_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_as_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_as_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_vsplit_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_vstack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_vstack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_vstack_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_vstack_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_where_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_where_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_where_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_xlogy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_xlogy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_xlogy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_xlogy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_zero__cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_quantized_embedding_bag_cpu, test/test_meta.py::TestMetaCPU::test_segment_reduce_backward_cpu 2025-08-26T22:42:21.5550636Z 2025-08-26T22:42:26.6159426Z Running test_ops_fwd_gradients 1/2 ... [2025-08-26 22:42:26.613435] 2025-08-26T22:42:26.6160168Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:42:26.6166507Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops_fwd_gradients.py', '-m', 'not serial', '--shard-id=1', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:42:26.613435] 2025-08-26T22:44:06.0605407Z 2025-08-26T22:44:06.0606675Z test_ops_gradients 1/2 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_gradients_1.2_5a23edcc37e92388_.log 2025-08-26T22:44:06.1665162Z Running 2729 items in this shard: test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_H_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_NumpyCubeCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_NumpyMulScalarCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_NumpyNMSCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_NumpyNonzeroCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_NumpySortCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_NumpySplitCopyWithIntCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_NumpyTakeCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_NumpyViewCopyCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_T_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad___getitem___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad___radd___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad___rdiv___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad___rmatmul___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad___rmod___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad___rmul___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad___rpow___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad___rpow___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad___rsub___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad__chunk_cat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad__chunk_cat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad__native_batch_norm_legit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad__segment_reduce_lengths_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad__softmax_backward_data_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad__upsample_bilinear2d_aa_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_abs_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_acos_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_acosh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_addbmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_addmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_addmv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_addmv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_addr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_all_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_all_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_allclose_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_angle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_argmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_argsort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_argwhere_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_as_strided_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_as_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_as_strided_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_as_strided_partial_views_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_asin_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_asin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_asinh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_atan2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_atleast_2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_bernoulli_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_bfloat16_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_bmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_bool_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_broadcast_to_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_byte_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cartesian_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cauchy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cdist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cdouble_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cdouble_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_ceil_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_char_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_char_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cholesky_inverse_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_clamp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_clamp_max_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_clone_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_column_stack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_column_stack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_combinations_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_complex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_conj_physical_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_constant_pad_nd_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_copysign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_corrcoef_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_corrcoef_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cos_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cosh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cosh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_count_nonzero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_count_nonzero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cov_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cross_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cross_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cummax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cumsum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cumulative_trapezoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_deg2rad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_diagflat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_diagflat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_diagonal_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_diagonal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_digamma_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_div_no_rounding_mode_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_div_trunc_rounding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_dsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_dsplit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_dstack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_einsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_empty_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_empty_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_empty_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_empty_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_empty_permuted_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_empty_permuted_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_empty_strided_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_equal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_equal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_erf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_erfc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_exp2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_exp2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_exp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_expand_as_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_expand_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_expand_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_expm1_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_eye_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_fft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_fft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_fft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_fftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_hfft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_hfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_hfft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_hfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_ifft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_ifft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_ifft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_ifftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_ifftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_ifftshift_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_ifftshift_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_ihfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_irfft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_irfft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_irfftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_rfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_rfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_rfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_flatten_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_flip_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_flip_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_float_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_float_power_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_floor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fmod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_frac_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_frexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_full_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_full_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_gather_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_gather_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_ge_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_geometric_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_geqrf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_grid_sampler_3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_half_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_half_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_hash_tensor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_histogramdd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_hsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_hstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_hypot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_igammac_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_imag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_index_fill_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_index_put_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_index_put_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_index_reduce_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_index_select_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_int_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_isfinite_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_isfinite_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_isinf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_isneginf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_jiterator_2inputs_2outputs_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_jiterator_2inputs_2outputs_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_jiterator_binary_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_jiterator_binary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_jiterator_binary_return_by_ref_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_jiterator_binary_return_by_ref_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_jiterator_unary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_kthvalue_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_ldexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_le_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_cholesky_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_cross_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_cross_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_det_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_det_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_diagonal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_eig_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_eig_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_eigh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_eigvals_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_eigvals_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_householder_product_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_inv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_inv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_inv_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_ldl_factor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_ldl_factor_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_ldl_factor_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_ldl_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_ldl_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_lstsq_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_lstsq_grad_oriented_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_lu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_lu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_lu_factor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_lu_factor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_lu_factor_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_matrix_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_matrix_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_matrix_power_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_matrix_rank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_matrix_rank_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_matrix_rank_hermitian_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_multi_dot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_multi_dot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_pinv_hermitian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_pinv_singular_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_qr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_slogdet_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_solve_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_solve_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_solve_triangular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_svd_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_svd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_svdvals_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_tensorinv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_tensorinv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_vander_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_vander_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_vecdot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_vecdot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_vector_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_vector_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linspace_tensor_overload_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linspace_tensor_overload_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_log1p_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_log1p_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_log2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_log_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_log_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_log_softmax_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logaddexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logaddexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logcumsumexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logical_or_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logical_xor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logspace_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logspace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logsumexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_lu_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_lu_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_lu_unpack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_mH_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_mT_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_argmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_cumprod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_cumprod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_cumsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_fill_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_logsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_normalize_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_normalize_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_sum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_matrix_exp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_matrix_exp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_max_binary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_max_reduction_with_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_median_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_meshgrid_list_of_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_min_binary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_min_reduction_no_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_minimum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_mm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_mm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_mode_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_movedim_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_msort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_mul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_multinomial_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_mv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nan_to_num_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nanmedian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nanquantile_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nansum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_narrow_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_native_dropout_backward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_native_layer_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_new_empty_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_new_empty_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_new_empty_strided_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_new_full_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_new_zeros_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_new_zeros_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_avg_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_avg_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_channel_shuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_channel_shuffle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_conv2d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_conv2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_conv3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_conv3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_conv_transpose1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_conv_transpose1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_conv_transpose2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_cosine_similarity_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_ctc_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_elu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_embedding_bag_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_embedding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_feature_alpha_dropout_with_train_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_group_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_hardshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_hinge_embedding_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_huber_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_interpolate_area_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_interpolate_trilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_kl_div_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_l1_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_leaky_relu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_local_response_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_max_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_max_unpool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_max_unpool1d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_max_unpool3d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_mse_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_multi_head_attention_forward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_multi_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_multilabel_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pad_circular_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pad_constant_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pad_constant_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pad_replicate_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pairwise_distance_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pairwise_distance_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pixel_shuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pixel_unshuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pixel_unshuffle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_prelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_relu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_rms_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_rrelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_selu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_soft_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_softplus_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_softsign_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_tanhshrink_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_threshold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_triplet_margin_loss_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_unfold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_upsample_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_upsample_nearest_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nonzero_static_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_norm_fro_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_norm_fro_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_norm_inf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_norm_inf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_norm_nuc_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_normal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_normal_in_place_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_normal_in_place_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_ones_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_ones_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_outer_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_permute_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_permute_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_pinverse_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_polar_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_polygamma_polygamma_n_0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_polygamma_polygamma_n_2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_polygamma_polygamma_n_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_positive_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_prod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_put_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_qr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_qr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_randn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_randn_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_randn_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_real_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_reciprocal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_repeat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_repeat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_repeat_interleave_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_reshape_as_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_reshape_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_reshape_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_resize__cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_resize__cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_resize_as__cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_resize_as__cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_resolve_conj_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_resolve_neg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_rot90_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_round_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_round_decimals_neg_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_rsqrt_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_rsqrt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_rsub_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_scalar_tensor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_scatter_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_scatter_reduce_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_scatter_reduce_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_select_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sgn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sgn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_short_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_short_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sigmoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_signal_windows_bartlett_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_signal_windows_gaussian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_signal_windows_hamming_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sinc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sinh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_slice_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sparse_mm_reduce_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_bessel_j1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_bessel_y0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_chebyshev_polynomial_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_chebyshev_polynomial_w_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_erfcx_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_hermite_polynomial_h_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_i1e_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_laguerre_polynomial_l_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_log_ndtr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_modified_bessel_i0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_ndtri_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_scaled_modified_bessel_k1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_zeta_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_split_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_split_with_sizes_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_split_with_sizes_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_split_with_sizes_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_split_with_sizes_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sqrt_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sqrt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_square_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_squeeze_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_squeeze_multiple_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_stack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_std_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_std_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_std_mean_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_std_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_std_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sub_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sum_to_size_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sum_to_size_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_svd_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_svd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_svd_lowrank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_svd_lowrank_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_t_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_take_along_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_take_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_take_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_tan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_tan_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_tanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_tensor_split_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_tensordot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_to_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_to_sparse_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_topk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_trace_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_transpose_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_transpose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_trapezoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_trapz_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_trapz_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_triangular_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_triu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_true_divide_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_trunc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unbind_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unbind_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unbind_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unflatten_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unfold_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unfold_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_uniform_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_uniform_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unsqueeze_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unsqueeze_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_var_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_var_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_var_mean_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_var_mean_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_view_as_complex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_view_as_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_view_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_view_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_view_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_view_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_vsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_vsplit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_vstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_where_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_zero__cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_zero__cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_zeros_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_zeros_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_H_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_NumpyNonzeroCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_NumpySplitCopyWithIntCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_NumpyTakeCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad___getitem___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad___rmatmul___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad___rmatmul___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad___rsub___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad___rsub___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad__chunk_cat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad__segment_reduce_lengths_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad__unsafe_masked_index_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_abs_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_acos_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_acos_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_acosh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_addbmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_addcdiv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_addcdiv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_addcmul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_addmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_addmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_addmm_decomposed_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_addmm_decomposed_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_addmv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_addr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_allclose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_angle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_angle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_any_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_arange_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_argmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_argwhere_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_argwhere_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_as_strided_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_as_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_as_strided_partial_views_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_as_strided_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_as_strided_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_asin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_asinh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_atan2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_atan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_atan_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_atanh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_atleast_1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_atleast_3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_auto_functionalize_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_baddbmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_bfloat16_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_bmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_bmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_bool_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_bool_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_broadcast_to_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_byte_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cartesian_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cfloat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cfloat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_chalf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_char_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_char_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cholesky_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cholesky_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cholesky_inverse_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cholesky_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_chunk_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_clamp_max_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_clamp_min_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_column_stack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_column_stack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_complex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_conj_physical_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_constant_pad_nd_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_corrcoef_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cosh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_count_nonzero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cov_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cross_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cummin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cumprod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cumsum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cumulative_trapezoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_diag_embed_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_diagonal_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_diagonal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_diagonal_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_diagonal_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_diff_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_dist_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_dist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_div_floor_rounding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_div_no_rounding_mode_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_dot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_dot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_dstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_empty_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_empty_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_empty_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_empty_strided_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_eq_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_equal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_exp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_exp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_expand_as_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_expand_as_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_expand_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_expand_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_exponential_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_fft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_fft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_fftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_fftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_fftshift_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_fftshift_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_hfft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_hfftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_hfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_ifft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_ifft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_ifft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_ifftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_ifftshift_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_ifftshift_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_ihfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_ihfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_irfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_irfftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_rfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_rfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fill_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_flatten_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_flatten_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fliplr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_flipud_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_float_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_float_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_float_power_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_floor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_frac_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_full_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_full_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_full_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_geometric_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_hash_tensor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_heaviside_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_histogramdd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_hsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_hsplit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_hstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_hstack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_hypot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_i0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_igamma_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_igammac_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_index_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_index_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_index_fill_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_index_put_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_index_reduce_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_index_reduce_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_index_reduce_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_index_select_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_int_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_int_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_isclose_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_isinf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_isnan_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_isneginf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_isposinf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_isreal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_istft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_item_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_jiterator_2inputs_2outputs_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_jiterator_2inputs_2outputs_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_jiterator_4inputs_with_extra_args_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_jiterator_binary_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_jiterator_binary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_jiterator_unary_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_kron_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_kron_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_ldexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_le_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_lerp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_lerp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_lgamma_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_cholesky_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_cholesky_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_cond_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_cross_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_det_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_eig_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_eig_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_eigh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_eigh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_eigvals_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_eigvalsh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_inv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_inv_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_ldl_factor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_ldl_factor_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_ldl_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_ldl_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_lstsq_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_lstsq_grad_oriented_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_lstsq_grad_oriented_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_lu_factor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_lu_factor_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_matrix_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_matrix_power_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_matrix_rank_hermitian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_multi_dot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_pinv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_pinv_hermitian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_pinv_singular_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_qr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_slogdet_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_solve_triangular_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_svd_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_svd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_svdvals_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_tensorinv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_vander_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_vander_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_vecdot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_vector_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_vector_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linspace_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linspace_tensor_overload_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linspace_tensor_overload_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_log10_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_log10_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_log1p_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_log_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_log_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_log_normal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_log_softmax_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logaddexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logaddexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logcumsumexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logdet_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logdet_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logical_and_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logical_not_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logspace_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_lu_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_lu_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_lu_unpack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_mH_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_mT_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_mT_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_map_nested_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_map_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_argmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_cumprod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_cumsum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_fill_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_normalize_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_select_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_softmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_var_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_matmul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_matrix_exp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_matrix_exp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_max_binary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_max_reduction_no_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_max_reduction_with_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_meshgrid_variadic_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_min_binary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_min_reduction_no_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_min_reduction_with_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_minimum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_mode_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_movedim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_msort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_mul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_multinomial_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_mv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_mv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_narrow_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_native_batch_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_native_layer_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_neg_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_neg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_new_empty_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_new_empty_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_new_empty_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_new_ones_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_new_ones_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nextafter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_alpha_dropout_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_avg_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_avg_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_avg_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_binary_cross_entropy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_channel_shuffle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_conv1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_conv2d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_conv2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_conv_transpose1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_conv_transpose1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_conv_transpose2d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_conv_transpose2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_conv_transpose3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_cosine_similarity_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_dropout3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_feature_alpha_dropout_with_train_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_feature_alpha_dropout_without_train_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_fractional_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_gelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_hinge_embedding_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_interpolate_area_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_interpolate_bicubic_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_interpolate_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_interpolate_nearest_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_interpolate_trilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_linear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_local_response_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_logsigmoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_max_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_max_unpool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_max_unpool2d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_max_unpool3d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_mish_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_multi_head_attention_forward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_multilabel_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_normalize_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_normalize_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pad_constant_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pad_constant_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pad_replicate_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pad_replicate_negative_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pairwise_distance_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pixel_unshuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pixel_unshuffle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_poisson_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_relu6_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_relu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_rms_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_rrelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_silu_complex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_silu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_smooth_l1_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_softmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_softmin_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_softshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_softsign_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_tanhshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_triplet_margin_loss_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_triplet_margin_with_distance_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_unfold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_upsample_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nonzero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nonzero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_norm_fro_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_norm_inf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_norm_inf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_norm_nuc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_normal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_normal_in_place_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_normal_number_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_ones_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_outer_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_pca_lowrank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_permute_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_permute_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_pinverse_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_polar_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_polygamma_polygamma_n_0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_polygamma_polygamma_n_1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_polygamma_polygamma_n_2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_pow_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_prod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_rand_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_rand_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_randint_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_randn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_randn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_randn_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_randn_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_ravel_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_ravel_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_reciprocal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_remainder_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_renorm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_repeat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_repeat_interleave_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_reshape_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_reshape_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_resize__cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_resize_as__cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_resize_as__cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_resolve_neg_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_rot90_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_round_decimals_0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_round_decimals_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_round_decimals_neg_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_rsqrt_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_rsqrt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_rsub_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_scan_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_scatter_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_scatter_reduce_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_scatter_reduce_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_select_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_select_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sgn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sgn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_short_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sigmoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sigmoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_signal_windows_bartlett_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_signal_windows_cosine_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_signal_windows_exponential_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_signal_windows_gaussian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_signal_windows_general_hamming_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_signal_windows_hamming_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_signal_windows_hann_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_signbit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sinh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_slice_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sparse_sampled_addmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_airy_ai_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_bessel_j0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_bessel_y0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_chebyshev_polynomial_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_chebyshev_polynomial_w_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_entr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_hermite_polynomial_h_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_i0e_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_i1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_i1e_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_legendre_polynomial_p_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_modified_bessel_i0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_modified_bessel_k1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_ndtr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_ndtri_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_scaled_modified_bessel_k0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_scaled_modified_bessel_k1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_spherical_bessel_j0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_xlog1py_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_split_with_sizes_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_split_with_sizes_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_split_with_sizes_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sqrt_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_squeeze_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_squeeze_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_squeeze_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_squeeze_multiple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_stack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_stack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_std_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_std_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_std_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_std_mean_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_std_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_stft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_stft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sub_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sum_to_size_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_svd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_svd_lowrank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_t_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_take_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_take_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_tan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_tan_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_tensor_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_tensordot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_tile_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_to_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_to_sparse_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_trace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_trapezoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_trapz_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_trapz_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_tril_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_tril_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_trunc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unbind_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unbind_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unflatten_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unfold_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unfold_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unfold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_uniform_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unique_consecutive_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unique_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unsafe_chunk_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unsafe_chunk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unsafe_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unsqueeze_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unsqueeze_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_var_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_var_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_var_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_vdot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_vdot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_view_as_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_view_as_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_view_as_real_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_view_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_view_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_view_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_view_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_vsplit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_vstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_vstack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_where_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_where_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_xlogy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_zero__cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_zero__cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_zeros_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_zeros_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_H_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_H_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_NumpyMulCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_NumpyMulScalarCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_NumpyNMSCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_NumpySortCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_NumpyTakeCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_NumpyViewCopyCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_T_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad___getitem___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad___radd___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad___radd___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad___rmatmul___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad___rmatmul___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad___rsub___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad__batch_norm_with_update_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad__chunk_cat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad__native_batch_norm_legit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad__segment_reduce_offsets_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad__unsafe_masked_index_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad__upsample_bilinear2d_aa_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_abs_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_acos_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_addbmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_addbmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_addcmul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_addcmul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_addmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_addmv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_addr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_addr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_alias_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_allclose_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_angle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_angle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_arange_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_argmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_argsort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_argwhere_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_argwhere_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_as_strided_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_as_strided_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_as_strided_partial_views_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_as_strided_partial_views_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_as_strided_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_as_strided_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_asin_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_asinh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_atan2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_atan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_atan_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_atanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_atleast_1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_atleast_2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_auto_functionalize_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_baddbmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_bfloat16_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_block_diag_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_bmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_bool_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_bool_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_broadcast_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_broadcast_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_broadcast_to_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_broadcast_to_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_bucketize_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_byte_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cartesian_prod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cartesian_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cdist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cdouble_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cdouble_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_chalf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_chalf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_char_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cholesky_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cholesky_inverse_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cholesky_inverse_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cholesky_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cholesky_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_chunk_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_clamp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_clone_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_column_stack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_combinations_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_complex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_conj_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_conj_physical_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_contiguous_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cos_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cos_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cosh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_count_nonzero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cross_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cummax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cummin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cumprod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cumsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_deg2rad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_diag_embed_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_diagflat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_diagonal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_diagonal_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_diff_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_digamma_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_div_no_rounding_mode_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_dot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_double_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_dsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_dsplit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_einsum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_empty_permuted_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_empty_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_eq_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_erf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_erfc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_expand_as_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_expand_as_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_expand_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_expand_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_expm1_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_eye_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_fft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_fft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_fft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_fft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_fftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_hfft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_hfft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_hfftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_hfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_ifft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_ifft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_ifftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_ifftshift_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_ifftshift_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_ihfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_irfft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_irfftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_irfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_rfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_rfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_flatten_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_flip_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fliplr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fliplr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_float_power_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_floor_divide_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fmod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_frexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_full_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_full_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_gather_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_geqrf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_gradient_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_grid_sampler_2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_gt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_half_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_histogram_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_histogramdd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_hstack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_hypot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_i0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_igamma_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_imag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_fill_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_put_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_reduce_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_select_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_inner_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_inner_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_int_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_invoke_quant_packed_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_invoke_quant_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_invoke_subgraph_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_isin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_isinf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_isnan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_isposinf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_isreal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_isreal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_istft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_jiterator_2inputs_2outputs_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_jiterator_binary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_jiterator_unary_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_kron_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_le_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_lerp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_lgamma_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_cholesky_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_cholesky_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_cond_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_cross_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_det_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_eig_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_eig_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_eigh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_eigvals_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_householder_product_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_inv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_ldl_factor_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_ldl_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_lstsq_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_lstsq_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_lstsq_grad_oriented_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_lu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_lu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_lu_factor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_lu_factor_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_lu_factor_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_lu_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_lu_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_matrix_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_matrix_power_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_matrix_rank_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_norm_subgradients_at_zero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_pinv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_pinv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_pinv_hermitian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_pinv_singular_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_slogdet_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_solve_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_solve_triangular_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_svd_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_svd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_svdvals_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_svdvals_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_tensorinv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_tensorsolve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_vander_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_vecdot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linspace_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linspace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_log10_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_log2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_log_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_log_normal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_log_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_log_softmax_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logaddexp2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logaddexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logcumsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logcumsumexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logical_and_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logical_not_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logical_or_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logical_or_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logical_xor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logspace_tensor_overload_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_long_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_lu_unpack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_lu_unpack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mT_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mT_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_map_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_map_triple_nested_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_cumprod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_cumsum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_fill_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_logaddexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_logsumexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_prod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_select_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_softmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_std_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_sum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_var_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_var_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_max_reduction_with_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_median_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_meshgrid_list_of_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_meshgrid_variadic_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_meshgrid_variadic_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_min_reduction_no_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_min_reduction_with_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_minimum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_movedim_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_movedim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_msort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nan_to_num_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nanmean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nanquantile_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_narrow_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_native_batch_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_native_layer_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_ne_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_ne_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_new_empty_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_new_empty_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_new_empty_strided_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nextafter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_alpha_dropout_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_avg_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_avg_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_batch_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_binary_cross_entropy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_celu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_channel_shuffle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_conv1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_conv2d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_conv3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_conv_transpose1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_dropout_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_elu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_embedding_bag_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_embedding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_feature_alpha_dropout_with_train_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_feature_alpha_dropout_without_train_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_fractional_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_fractional_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_gelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_hardsigmoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_hardtanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_hinge_embedding_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_huber_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_instance_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_interpolate_area_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_interpolate_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_interpolate_linear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_interpolate_trilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_kl_div_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_l1_loss_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_l1_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_leaky_relu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_linear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_max_unpool1d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_max_unpool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_max_unpool2d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_max_unpool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_mish_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_mse_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_multi_head_attention_forward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_multilabel_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_normalize_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pad_circular_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pad_reflect_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pad_replicate_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pad_replicate_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pairwise_distance_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pairwise_distance_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pixel_shuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pixel_shuffle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_poisson_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_prelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_rms_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_selu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_silu_complex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_silu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_smooth_l1_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_soft_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_softplus_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_threshold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_triplet_margin_loss_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_triplet_margin_with_distance_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_unfold_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_upsample_nearest_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nonzero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nonzero_static_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_norm_fro_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_norm_nuc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_normal_in_place_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_normal_number_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_ones_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_ones_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_ones_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_ones_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_ormqr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_ormqr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_outer_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_pca_lowrank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_pca_lowrank_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_permute_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_permute_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_pinverse_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_polar_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_polygamma_polygamma_n_0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_polygamma_polygamma_n_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_polygamma_polygamma_n_4_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_positive_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_positive_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_pow_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_pow_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_prod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_put_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_qr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_qr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_rand_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_rand_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_randint_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_randn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_randn_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_randn_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_ravel_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_real_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_remainder_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_renorm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_repeat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_repeat_interleave_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_reshape_as_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_reshape_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_resize__cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_resize_as__cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_resize_as__cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_resolve_conj_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_resolve_conj_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_roll_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_roll_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_rot90_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_round_decimals_0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_round_decimals_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_rsqrt_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_rsqrt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_rsub_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_rsub_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_scalar_tensor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_scan_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_scatter_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_scatter_reduce_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_scatter_reduce_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_searchsorted_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_select_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sgn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sigmoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_signal_windows_bartlett_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_signal_windows_cosine_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_signal_windows_exponential_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_signal_windows_gaussian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_signal_windows_general_cosine_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_signal_windows_hamming_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_signal_windows_hann_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_signal_windows_kaiser_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_signal_windows_nuttall_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sinh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_slice_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_slice_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sparse_sampled_addmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_bessel_j0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_bessel_y1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_chebyshev_polynomial_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_chebyshev_polynomial_u_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_chebyshev_polynomial_v_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_chebyshev_polynomial_w_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_entr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_hermite_polynomial_h_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_i0e_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_i1e_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_legendre_polynomial_p_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_modified_bessel_i0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_modified_bessel_k0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_modified_bessel_k1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_ndtri_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_scaled_modified_bessel_k0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_scaled_modified_bessel_k1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_zeta_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_split_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_split_list_args_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_split_with_sizes_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_split_with_sizes_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sqrt_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sqrt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_square_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_square_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_squeeze_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_squeeze_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_squeeze_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_squeeze_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_stack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_std_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_std_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_std_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_std_mean_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_std_mean_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sub_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sum_to_size_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_svd_lowrank_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_t_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_t_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_t_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_take_along_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_take_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_tan_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_tensor_split_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_tensordot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_tile_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_topk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_trace_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_transpose_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_trapezoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_tril_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_triu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_true_divide_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_true_divide_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unbind_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unbind_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unfold_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unfold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_uniform_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unique_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unsafe_chunk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unsqueeze_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unsqueeze_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_var_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_var_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_var_mean_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_var_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_var_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_vdot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_view_as_complex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_view_as_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_view_as_real_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_view_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_view_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_vsplit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_zero__cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_zero__cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_zeros_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_zeros_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_zeros_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_H_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_H_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_NumpyCatCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_NumpyCubeCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_NumpyMulCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_NumpyMulScalarCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_NumpyNMSCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_NumpySortCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_NumpyTakeCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_T_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___getitem___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___getitem___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___radd___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___rmatmul___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___rmul___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___rmul___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___rpow___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___rsub___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___rsub___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad__chunk_cat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad__segment_reduce_offsets_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad__softmax_backward_data_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad__unsafe_masked_index_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad__unsafe_masked_index_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad__unsafe_masked_index_put_accumulate_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_abs_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_abs_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_acosh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addcdiv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addcmul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addmv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_alias_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_all_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_allclose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_aminmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_any_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_argmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_argmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_argwhere_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_argwhere_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_as_strided_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_as_strided_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_as_strided_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_as_strided_partial_views_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_as_strided_partial_views_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_as_strided_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_as_strided_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_asin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_asinh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_atan2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_atan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_atan_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_atanh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_atleast_1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_atleast_2d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_atleast_3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_baddbmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_bernoulli_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_block_diag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_bool_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_broadcast_to_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_bucketize_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cartesian_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cdist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_ceil_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cfloat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_chalf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_chalf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_char_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cholesky_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cholesky_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cholesky_inverse_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cholesky_inverse_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cholesky_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_chunk_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_clamp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_clamp_max_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_clone_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_clone_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_column_stack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_column_stack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_combinations_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_conj_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_conj_physical_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_constant_pad_nd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_copysign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_corrcoef_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cos_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cos_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cosh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cross_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cross_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cumulative_trapezoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_deg2rad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_diag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_diag_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_diag_embed_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_diag_embed_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_diagflat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_diagflat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_diagonal_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_diagonal_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_diff_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_digamma_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_dist_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_dot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_double_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_dsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_dsplit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_dstack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_empty_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_empty_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_empty_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_empty_permuted_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_empty_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_erf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_erfinv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_exp2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_exp2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_exp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_exp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_expand_as_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_eye_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_eye_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_fft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_hfft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_hfft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_hfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_hfftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_ifft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_ifft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_ifftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_ifftshift_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_ihfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_irfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_irfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_irfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_flatten_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_flip_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_flip_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fliplr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_float_power_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_floor_divide_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_frac_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_full_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_full_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_ge_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_gradient_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_grid_sampler_3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_gt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_half_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_half_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_hash_tensor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_histogram_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_hsplit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_hypot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_fill_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_put_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_reduce_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_select_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_isclose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_isclose_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_isfinite_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_isin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_isnan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_isreal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_isreal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_istft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_item_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_item_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_jiterator_2inputs_2outputs_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_jiterator_4inputs_with_extra_args_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_jiterator_unary_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_jiterator_unary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_kron_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_kthvalue_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_ldexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_lerp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_lerp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_lgamma_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_cholesky_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_cholesky_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_cond_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_cross_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_diagonal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_diagonal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_eig_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_eigh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_eigvals_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_householder_product_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_householder_product_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_inv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_inv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_ldl_factor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_ldl_factor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_ldl_factor_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_lstsq_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_lstsq_grad_oriented_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_lu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_lu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_lu_factor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_matrix_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_matrix_power_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_matrix_power_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_matrix_rank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_matrix_rank_hermitian_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_matrix_rank_hermitian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_norm_subgradients_at_zero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_pinv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_pinv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_pinv_singular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_qr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_slogdet_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_solve_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_solve_triangular_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_svdvals_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_tensorinv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_tensorinv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_tensorsolve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_tensorsolve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_vector_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_vector_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linspace_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_log1p_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_log2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_log2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_log_normal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_log_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logaddexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logaddexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logcumsumexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logical_and_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logical_not_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logical_or_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logspace_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logspace_tensor_overload_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logsumexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_long_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_lt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_lu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_lu_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_lu_unpack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mH_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mT_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_argmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_cumprod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_cumsum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_median_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_normalize_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_normalize_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_prod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_std_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_std_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_sum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_var_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_var_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_matmul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_matmul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_matrix_exp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_max_binary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_median_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_meshgrid_list_of_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_meshgrid_variadic_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_meshgrid_variadic_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_min_binary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_min_reduction_with_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mode_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_movedim_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_movedim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_multinomial_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nan_to_num_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nanquantile_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nansum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_narrow_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_native_dropout_backward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_ne_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_neg_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_neg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_new_empty_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_new_empty_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_new_empty_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_new_empty_strided_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_new_ones_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_new_ones_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_new_zeros_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_new_zeros_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_alpha_dropout_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_avg_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_avg_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_channel_shuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_channel_shuffle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_conv1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_conv2d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_conv2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_conv3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_conv_transpose1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_conv_transpose2d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_conv_transpose3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_ctc_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_dropout2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_dropout3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_embedding_bag_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_embedding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_feature_alpha_dropout_with_train_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_feature_alpha_dropout_without_train_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_gelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_grid_sample_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_group_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_hardsigmoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_hardtanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_instance_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_interpolate_area_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_interpolate_bicubic_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_interpolate_nearest_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_l1_loss_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_l1_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_leaky_relu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_linear_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_local_response_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_logsigmoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_max_unpool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_max_unpool2d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_max_unpool3d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_mish_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_mse_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pad_circular_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pad_constant_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pad_constant_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pad_reflect_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pad_reflect_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pad_replicate_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pad_replicate_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pad_replicate_negative_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pad_replicate_negative_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pdist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pixel_shuffle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pixel_unshuffle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_relu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_rms_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_rms_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_selu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_soft_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_softmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_softplus_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_softsign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_tanhshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_triplet_margin_loss_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_triplet_margin_with_distance_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_unfold_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_unfold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_norm_fro_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_norm_inf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_norm_nuc_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_normal_in_place_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_normal_in_place_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_ones_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_ones_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_ormqr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_ormqr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_outer_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_permute_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_pinverse_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_pinverse_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_polygamma_polygamma_n_0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_polygamma_polygamma_n_1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_polygamma_polygamma_n_2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_polygamma_polygamma_n_4_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_positive_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_pow_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_pow_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_put_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_put_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_quantile_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_randn_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_randn_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_ravel_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_real_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_real_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_reciprocal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_remainder_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_renorm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_repeat_interleave_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_repeat_interleave_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_reshape_as_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_reshape_as_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_reshape_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_reshape_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_resize__cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_resolve_conj_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_resolve_conj_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_resolve_neg_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_roll_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_roll_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_round_decimals_0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_round_decimals_neg_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_rsqrt_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_rsub_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_scatter_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_scatter_reduce_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_scatter_reduce_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_searchsorted_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_select_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sgn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sgn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_signal_windows_blackman_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_signal_windows_exponential_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_signal_windows_gaussian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_signal_windows_general_cosine_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_signal_windows_general_hamming_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_signal_windows_kaiser_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_signal_windows_nuttall_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sin_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sinc_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sinh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_slice_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_slice_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_slice_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_softmax_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_softmax_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sparse_mm_reduce_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sparse_sampled_addmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_airy_ai_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_bessel_j1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_bessel_y1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_chebyshev_polynomial_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_chebyshev_polynomial_w_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_erfcx_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_i1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_i1e_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_laguerre_polynomial_l_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_legendre_polynomial_p_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_modified_bessel_i1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_modified_bessel_k0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_ndtri_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_scaled_modified_bessel_k1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_spherical_bessel_j0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_zeta_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_split_list_args_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_split_list_args_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sqrt_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_square_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_squeeze_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_squeeze_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_squeeze_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_squeeze_multiple_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_squeeze_multiple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_stack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_stack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_std_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_std_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_std_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_std_mean_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_std_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_stft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sum_to_size_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_svd_lowrank_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_t_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_take_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_tan_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_tanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_tensor_split_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_tensordot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_tensordot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_tile_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_tile_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_to_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_to_sparse_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_to_sparse_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_topk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_transpose_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_transpose_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_transpose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_transpose_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_trapezoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_triangular_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_tril_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_tril_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_triu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_triu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_true_divide_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unbind_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unbind_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unflatten_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unfold_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unfold_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_uniform_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_uniform_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unsafe_chunk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unsafe_split_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unsqueeze_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unsqueeze_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unsqueeze_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unsqueeze_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_var_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_var_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_var_mean_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_var_mean_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_view_as_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_view_as_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_view_as_real_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_view_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_view_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_view_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_vsplit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_vstack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_zero__cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_zeros_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___rdiv___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___rdiv___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___rmod___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___rmul___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___rmul___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___rpow___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___rsub___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__chunk_cat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__native_batch_norm_legit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_abs_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_abs_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_acos_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_acosh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_acosh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addbmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addcdiv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addcmul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addcmul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addmm_decomposed_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addmv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_allclose_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_aminmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_angle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_angle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_any_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_argmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_argwhere_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_as_strided_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_as_strided_partial_views_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_asin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_atan2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_atan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_atan_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_atanh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_atleast_2d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_atleast_3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_atleast_3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_baddbmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_bernoulli_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_block_diag_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_bool_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_broadcast_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_broadcast_to_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_bucketize_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cartesian_prod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cdouble_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cfloat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cfloat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_chalf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cholesky_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cholesky_inverse_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cholesky_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cholesky_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_chunk_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_clamp_min_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_clone_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_column_stack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_conj_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_constant_pad_nd_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_contiguous_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_copysign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_corrcoef_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_corrcoef_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_count_nonzero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cov_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cross_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cumprod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cumprod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cumsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cumsum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cumulative_trapezoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diag_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diag_embed_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diagflat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diagonal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diagonal_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diagonal_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_dist_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_div_floor_rounding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_dstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_dstack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_einsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_einsum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_empty_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_empty_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_empty_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_empty_permuted_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_empty_permuted_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_empty_strided_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_eq_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_erf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_exp2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_exp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_expand_as_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_expand_as_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_expand_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_expand_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_exponential_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_eye_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_fft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_fft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_fft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_fftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_fftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_fftshift_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_hfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_hfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_hfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_ifft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_ifft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_ifft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_ifft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_ifftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_ifftshift_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_ifftshift_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_irfft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_irfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_irfftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_rfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_rfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fill_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_flip_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fliplr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fliplr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_flipud_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_float_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_float_power_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_floor_divide_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fmod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_frac_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_frexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_full_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_full_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_full_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_gather_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_gather_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_geqrf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_geqrf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_gradient_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_gradient_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_grid_sampler_2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_gt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_half_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_hash_tensor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_histogramdd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_hsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_hsplit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_hstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_hstack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_hypot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_i0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_igamma_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_igammac_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_imag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_fill_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_put_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_reduce_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_reduce_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_isclose_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_isfinite_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_isin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_isneginf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_isposinf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_isreal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_isreal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_istft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_item_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_jiterator_2inputs_2outputs_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_jiterator_binary_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_jiterator_binary_return_by_ref_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_jiterator_unary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_kron_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_kron_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_kthvalue_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ldexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_lerp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_lerp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_cholesky_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_cross_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_det_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_eigh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_eigh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_eigvals_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_eigvalsh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_householder_product_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_householder_product_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_inv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_ldl_factor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_ldl_factor_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_ldl_factor_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_ldl_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_lstsq_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_lstsq_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_lstsq_grad_oriented_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_lu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_lu_factor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_lu_factor_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_lu_factor_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_lu_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_lu_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_matrix_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_matrix_power_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_matrix_rank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_matrix_rank_hermitian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_multi_dot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_norm_subgradients_at_zero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_pinv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_pinv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_pinv_singular_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_qr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_slogdet_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_solve_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_svd_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_svdvals_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_svdvals_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_tensorinv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_tensorsolve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_tensorsolve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_vander_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_vecdot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_vecdot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_vector_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linspace_tensor_overload_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_log10_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_log10_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_log1p_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_log2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_log_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_log_normal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_log_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_log_softmax_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logaddexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logcumsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logical_and_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logical_and_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logical_not_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logical_or_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logical_or_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logical_xor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logspace_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logspace_tensor_overload_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logsumexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_long_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_lt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_lu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_lu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_lu_unpack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mH_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mT_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mT_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_argmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_cumprod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_cumsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_fill_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_log_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_logaddexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_logsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_logsumexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_normalize_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_normalize_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_prod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_std_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_std_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_sum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_matmul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_matrix_exp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_max_binary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_max_reduction_no_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_max_reduction_with_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_maximum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_median_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_meshgrid_list_of_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_meshgrid_variadic_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_minimum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mode_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nanmedian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nansum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_narrow_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_narrow_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_narrow_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_narrow_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_native_batch_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_native_dropout_backward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_native_layer_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ne_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_neg_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_new_empty_strided_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_new_full_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_new_full_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_new_ones_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_new_ones_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_new_zeros_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_new_zeros_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_alpha_dropout_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_avg_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_batch_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_celu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_channel_shuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_channel_shuffle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_conv1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_conv3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_conv_transpose1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_conv_transpose3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_cosine_similarity_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_dropout2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_elu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_embedding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_feature_alpha_dropout_without_train_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_glu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_grid_sample_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_group_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_hardshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_hardsigmoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_hardswish_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_hardtanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_hinge_embedding_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_interpolate_area_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_interpolate_bicubic_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_interpolate_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_interpolate_linear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_layer_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_linear_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_max_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_mse_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_multi_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_multilabel_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_normalize_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_normalize_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pad_circular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pad_constant_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pad_replicate_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pad_replicate_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pairwise_distance_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pdist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_rms_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_soft_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_softmin_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_softshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_softsign_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_threshold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_triplet_margin_loss_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_triplet_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_triplet_margin_with_distance_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_unfold_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_upsample_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_norm_fro_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_norm_inf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_norm_inf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_norm_nuc_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_norm_nuc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_normal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_normal_in_place_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ones_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ormqr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_pca_lowrank_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_permute_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_pinverse_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_polar_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_polygamma_polygamma_n_2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_pow_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_pow_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_prod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_put_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_qr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_quantile_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_rad2deg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_rand_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_randint_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_randn_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ravel_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_real_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_real_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_reciprocal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_reciprocal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_remainder_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_repeat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_reshape_as_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_reshape_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_resize__cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_resize_as__cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_resize_as__cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_resolve_conj_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_resolve_neg_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_resolve_neg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_roll_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_round_decimals_0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_rsqrt_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_rsqrt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_rsub_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_scalar_tensor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_scatter_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_scatter_reduce_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_scatter_reduce_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_scatter_reduce_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_scatter_reduce_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_select_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_select_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_short_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sigmoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sigmoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_signal_windows_bartlett_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_signal_windows_blackman_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_signal_windows_gaussian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_signal_windows_general_cosine_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_signal_windows_general_hamming_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_signal_windows_hamming_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_signal_windows_hann_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_signal_windows_nuttall_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_signbit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sinc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sinh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_softmax_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_softmax_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sparse_mm_reduce_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sparse_sampled_addmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_airy_ai_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_bessel_j1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_bessel_y0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_chebyshev_polynomial_u_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_chebyshev_polynomial_v_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_chebyshev_polynomial_w_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_entr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_hermite_polynomial_h_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_hermite_polynomial_he_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_i0e_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_i1e_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_legendre_polynomial_p_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_modified_bessel_i0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_modified_bessel_k1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_ndtr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_ndtri_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_scaled_modified_bessel_k0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_spherical_bessel_j0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_xlog1py_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_zeta_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_split_list_args_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_split_with_sizes_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_split_with_sizes_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_split_with_sizes_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sqrt_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sqrt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_square_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_squeeze_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_squeeze_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_squeeze_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_squeeze_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_std_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_std_mean_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_std_mean_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_std_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sub_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_svd_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_svd_lowrank_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_t_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_tan_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_tanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_tensor_split_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_to_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_to_sparse_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_to_sparse_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_transpose_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_transpose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_transpose_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_triangular_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_tril_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_tril_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_true_divide_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unbind_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unbind_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unflatten_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unflatten_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unfold_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unsafe_chunk_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unsafe_chunk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unsafe_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unsafe_split_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unsqueeze_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unsqueeze_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_var_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_var_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_var_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_vdot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_vdot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_view_as_complex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_view_as_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_view_as_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_view_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_view_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_vsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_vstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_where_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_where_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_zero__cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_zeros_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_zeros_like_cpu_complex128 2025-08-26T22:44:06.2678667Z 2025-08-26T22:44:11.7405029Z Running test_cuda_expandable_segments 1/1 ... [2025-08-26 22:44:11.740024] 2025-08-26T22:44:11.7405874Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:44:11.7412738Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_cuda_expandable_segments.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:44:11.740620] 2025-08-26T22:44:12.1743979Z 2025-08-26T22:44:12.1744890Z test_ops_gradients 2/2 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_gradients_2.2_edb629fb508e683a_.log 2025-08-26T22:44:12.3654852Z Running 2660 items in this shard: test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_H_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_NumpyCatCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_NumpyMulCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_NumpySplitCopyCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_T_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad___getitem___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad___radd___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad___rdiv___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad___rmatmul___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad___rmul___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad___rsub___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad__batch_norm_with_update_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad__segment_reduce_offsets_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad__unsafe_masked_index_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad__unsafe_masked_index_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad__unsafe_masked_index_put_accumulate_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_abs_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_acos_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_acosh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_addbmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_addcdiv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_addcdiv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_addcmul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_addcmul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_addmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_addmm_decomposed_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_addmm_decomposed_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_addr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_alias_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_alias_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_allclose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_aminmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_angle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_any_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_any_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_arange_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_argmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_argwhere_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_as_strided_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_as_strided_partial_views_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_as_strided_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_as_strided_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_asinh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_atan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_atan_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_atanh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_atanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_atleast_1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_atleast_1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_atleast_2d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_atleast_3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_atleast_3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_baddbmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_baddbmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_bfloat16_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_block_diag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_block_diag_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_bmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_bool_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_broadcast_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_broadcast_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_broadcast_to_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_bucketize_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_byte_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cartesian_prod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cfloat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cfloat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_chalf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_chalf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cholesky_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cholesky_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cholesky_inverse_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cholesky_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cholesky_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_chunk_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_chunk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_clamp_min_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_clone_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_combinations_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_conj_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_conj_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_conj_physical_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_constant_pad_nd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_contiguous_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_contiguous_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cos_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cov_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cummin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cumprod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cumprod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cumsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cumulative_trapezoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_diag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_diag_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_diag_embed_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_diag_embed_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_diagonal_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_diagonal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_diagonal_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_diagonal_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_diff_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_diff_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_dist_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_dist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_div_floor_rounding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_div_no_rounding_mode_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_dot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_dot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_double_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_double_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_dstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_einsum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_empty_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_eq_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_eq_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_erfinv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_exp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_expand_as_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_expand_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_expand_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_expm1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_exponential_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_eye_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_fft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_fftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_fftshift_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_fftshift_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_hfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_hfftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_ifft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_ihfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_ihfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_irfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_irfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_irfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fill_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_flatten_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fliplr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fliplr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_flipud_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_flipud_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_float_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_float_power_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_floor_divide_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_full_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_full_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_geqrf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_gradient_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_gradient_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_grid_sampler_2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_gt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_heaviside_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_histc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_histogram_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_hsplit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_hstack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_i0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_igamma_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_index_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_index_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_index_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_index_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_index_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_index_reduce_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_index_reduce_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_index_reduce_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_index_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_inner_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_inner_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_int_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_isclose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_isclose_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_isin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_isinf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_isnan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_isnan_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_isposinf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_isreal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_isreal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_istft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_item_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_item_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_jiterator_4inputs_with_extra_args_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_jiterator_unary_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_kron_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_kron_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_ldexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_lerp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_lerp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_lgamma_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_cholesky_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_cholesky_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_cholesky_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_cond_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_cond_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_diagonal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_eigh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_eigvalsh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_eigvalsh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_householder_product_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_inv_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_ldl_factor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_lstsq_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_lstsq_grad_oriented_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_lu_factor_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_lu_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_lu_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_matrix_power_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_matrix_rank_hermitian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_norm_subgradients_at_zero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_norm_subgradients_at_zero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_pinv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_pinv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_pinv_hermitian_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_pinv_singular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_qr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_slogdet_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_solve_triangular_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_svdvals_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_tensorsolve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_tensorsolve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linspace_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linspace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_log10_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_log10_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_log2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_log_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_log_normal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_log_softmax_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logaddexp2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logcumsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logdet_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logdet_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logical_and_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logical_and_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logical_not_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logical_not_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logical_or_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logical_xor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logspace_tensor_overload_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logspace_tensor_overload_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_long_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_long_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_lt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_lu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_lu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_lu_unpack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_mH_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_mT_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_argmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_cumsum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_log_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_logaddexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_logsumexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_median_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_prod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_select_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_softmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_std_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_std_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_var_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_var_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_matmul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_matmul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_max_pool2d_with_indices_backward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_max_reduction_no_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_maximum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_meshgrid_list_of_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_meshgrid_variadic_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_meshgrid_variadic_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_min_reduction_with_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_movedim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_mul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_mv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nanmean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_narrow_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_narrow_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_narrow_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_native_batch_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_ne_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_ne_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_neg_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_neg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_new_empty_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_new_full_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_new_ones_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_new_ones_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nextafter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_alpha_dropout_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_avg_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_batch_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_binary_cross_entropy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_celu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_conv1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_conv1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_conv_transpose2d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_conv_transpose3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_conv_transpose3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_cosine_embedding_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_cross_entropy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_dropout2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_dropout3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_dropout_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_feature_alpha_dropout_without_train_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_fractional_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_fractional_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_gaussian_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_gelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_glu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_grid_sample_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_hardsigmoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_hardswish_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_hardtanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_instance_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_interpolate_bicubic_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_interpolate_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_interpolate_linear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_interpolate_nearest_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_l1_loss_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_layer_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_linear_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_linear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_logsigmoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_margin_ranking_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_max_unpool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_max_unpool2d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_max_unpool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_mish_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_normalize_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_normalize_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pad_circular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pad_reflect_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pad_reflect_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pad_replicate_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pad_replicate_negative_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pad_replicate_negative_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pdist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pixel_shuffle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_poisson_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_relu6_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_rms_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_silu_complex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_silu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_smooth_l1_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_softmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_softmin_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_softmin_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_softshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_softsign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_tanhshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_triplet_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_triplet_margin_with_distance_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_unfold_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nonzero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nonzero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nonzero_static_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_norm_nuc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_normal_number_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_ones_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_ones_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_ormqr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_ormqr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_outer_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_pca_lowrank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_pca_lowrank_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_permute_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_permute_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_pinverse_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_polygamma_polygamma_n_1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_polygamma_polygamma_n_4_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_positive_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_pow_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_pow_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_put_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_quantile_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_rad2deg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_rand_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_rand_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_randint_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_randint_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_randn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_ravel_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_ravel_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_real_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_reciprocal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_remainder_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_renorm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_renorm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_repeat_interleave_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_reshape_as_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_resolve_conj_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_resolve_neg_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_roll_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_roll_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_rot90_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_round_decimals_0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_round_decimals_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_rsub_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_scalar_tensor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_scatter_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_scatter_reduce_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_scatter_reduce_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_scatter_reduce_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_searchsorted_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_select_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sigmoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_signal_windows_blackman_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_signal_windows_cosine_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_signal_windows_exponential_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_signal_windows_general_cosine_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_signal_windows_general_hamming_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_signal_windows_hann_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_signal_windows_kaiser_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_signal_windows_nuttall_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_signbit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sin_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sinc_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sinh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_slice_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_slice_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_softmax_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_softmax_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sparse_sampled_addmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sparse_sampled_addmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_airy_ai_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_bessel_j0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_bessel_y1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_chebyshev_polynomial_u_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_chebyshev_polynomial_v_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_entr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_hermite_polynomial_he_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_i0e_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_i1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_legendre_polynomial_p_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_modified_bessel_i1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_modified_bessel_k0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_modified_bessel_k1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_ndtr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_scaled_modified_bessel_k0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_spherical_bessel_j0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_xlog1py_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_split_list_args_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_split_list_args_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_square_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_squeeze_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_squeeze_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_squeeze_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_squeeze_multiple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_stack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_std_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_std_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_std_mean_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_stft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_stft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sub_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_t_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_t_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_take_along_dim_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_tanh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_tensor_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_tensordot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_tile_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_tile_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_to_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_to_sparse_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_trace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_transpose_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_transpose_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_trapezoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_triangular_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_tril_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_tril_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_triu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_true_divide_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unbind_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unflatten_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unfold_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unfold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unique_consecutive_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unique_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unsafe_chunk_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unsafe_chunk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unsafe_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unsafe_split_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unsqueeze_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unsqueeze_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_var_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_var_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_var_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_var_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_vdot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_vdot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_view_as_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_view_as_real_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_vstack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_where_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_xlogy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_zeros_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_zeros_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_H_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_NumpyCatCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_NumpyCubeCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_NumpyMulCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_NumpyMulScalarCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_NumpyNMSCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_NumpySortCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_NumpySplitCopyCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_NumpyViewCopyCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_T_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_T_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad___getitem___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad___radd___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad___radd___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad___rdiv___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad___rdiv___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad___rmod___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad___rmul___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad___rmul___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad___rpow___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad___rpow___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad__batch_norm_with_update_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad__chunk_cat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad__native_batch_norm_legit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad__segment_reduce_offsets_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad__softmax_backward_data_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad__unsafe_masked_index_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad__unsafe_masked_index_put_accumulate_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad__upsample_bilinear2d_aa_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_abs_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_acosh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_addbmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_addcmul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_addmv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_addr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_alias_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_alias_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_all_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_all_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_allclose_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_aminmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_any_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_argmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_argsort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_as_strided_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_as_strided_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_as_strided_partial_views_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_asin_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_asinh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_atanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_atleast_1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_atleast_2d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_atleast_2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_atleast_3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_baddbmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_bernoulli_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_bfloat16_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_block_diag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_block_diag_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_broadcast_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_broadcast_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_broadcast_to_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_bucketize_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_byte_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cartesian_prod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cauchy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cdist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cdouble_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cdouble_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_ceil_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_chalf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cholesky_inverse_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cholesky_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_chunk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_clamp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_clone_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_clone_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_combinations_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_combinations_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cond_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_conj_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_conj_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_conj_physical_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_constant_pad_nd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_contiguous_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_contiguous_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_copysign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_corrcoef_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cos_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cos_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cosh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_count_nonzero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cov_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cross_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cummax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cumprod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cumsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cumulative_trapezoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_deg2rad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_diag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_diag_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_diag_embed_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_diagflat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_diagflat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_diagonal_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_diagonal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_diff_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_digamma_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_div_no_rounding_mode_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_div_trunc_rounding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_double_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_double_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_dsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_dsplit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_dstack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_einsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_einsum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_empty_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_empty_permuted_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_empty_permuted_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_empty_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_eq_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_equal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_erf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_erfc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_erfinv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_exp2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_exp2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_expand_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_expand_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_expm1_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_expm1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_eye_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_eye_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_fft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_fft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_hfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_hfft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_hfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_ifft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_ifftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_ihfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_irfft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_irfft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_irfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_irfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_rfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_flip_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_flip_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fliplr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_flipud_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_float_power_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_floor_divide_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fmod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_frexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_full_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_gather_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_gather_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_ge_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_geqrf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_geqrf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_gradient_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_gradient_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_grid_sampler_2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_grid_sampler_3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_gt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_half_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_half_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_histc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_histogram_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_imag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_index_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_index_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_index_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_index_put_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_index_reduce_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_index_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_inner_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_inner_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_invoke_quant_packed_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_invoke_quant_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_invoke_subgraph_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_isclose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_isfinite_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_isfinite_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_isin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_isinf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_isnan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_isreal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_item_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_jiterator_binary_return_by_ref_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_jiterator_binary_return_by_ref_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_jiterator_unary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_kthvalue_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_ldexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_cholesky_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_cholesky_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_cond_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_cross_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_det_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_diagonal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_diagonal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_eigvals_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_eigvalsh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_householder_product_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_householder_product_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_inv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_inv_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_ldl_factor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_ldl_factor_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_lstsq_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_lu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_lu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_lu_factor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_lu_factor_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_lu_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_lu_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_matrix_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_matrix_power_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_matrix_rank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_matrix_rank_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_matrix_rank_hermitian_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_multi_dot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_norm_subgradients_at_zero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_norm_subgradients_at_zero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_pinv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_pinv_hermitian_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_pinv_singular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_qr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_slogdet_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_solve_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_solve_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_solve_triangular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_svdvals_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_tensorinv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_tensorsolve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_tensorsolve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_vecdot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linspace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_log1p_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_log2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_log2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_log_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_log_softmax_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logaddexp2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logcumsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logical_and_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logical_not_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logical_or_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logical_or_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logical_xor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logical_xor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logspace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logspace_tensor_overload_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logspace_tensor_overload_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logsumexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_long_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_long_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_lt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_lu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_lu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_lu_unpack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_mH_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_map_triple_nested_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_argmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_cumprod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_cumsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_log_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_logaddexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_logsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_logsumexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_median_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_normalize_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_prod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_std_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_std_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_sum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_var_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_matmul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_max_pool2d_with_indices_backward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_maximum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_median_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_meshgrid_list_of_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_meshgrid_list_of_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_meshgrid_variadic_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_mm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_mm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_movedim_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_mul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nan_to_num_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nanmean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nanmedian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nanquantile_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nansum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_narrow_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_narrow_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_narrow_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_native_dropout_backward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_ne_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_ne_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_new_empty_strided_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_new_full_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_new_full_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_new_zeros_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_new_zeros_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_batch_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_celu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_channel_shuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_conv1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_conv3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_conv3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_conv_transpose3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_cosine_embedding_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_cross_entropy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_ctc_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_dropout2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_dropout_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_elu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_embedding_bag_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_embedding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_fractional_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_gaussian_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_glu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_grid_sample_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_group_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_hardshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_hardsigmoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_hardswish_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_hardtanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_huber_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_instance_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_interpolate_linear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_kl_div_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_l1_loss_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_l1_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_layer_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_leaky_relu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_linear_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_margin_ranking_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_max_unpool1d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_max_unpool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_max_unpool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_mse_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_multi_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pad_circular_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pad_circular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pad_reflect_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pad_reflect_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pad_replicate_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pad_replicate_negative_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pairwise_distance_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pdist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pixel_shuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pixel_shuffle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_prelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_rms_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_selu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_soft_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_softmin_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_softplus_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_softsign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_tanhshrink_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_threshold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_triplet_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_unfold_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_upsample_nearest_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nonzero_static_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nonzero_static_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_norm_fro_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_norm_nuc_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_normal_in_place_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_ones_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_ones_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_ones_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_ormqr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_ormqr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_outer_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_pca_lowrank_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_permute_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_permute_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_pinverse_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_polygamma_polygamma_n_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_polygamma_polygamma_n_4_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_positive_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_positive_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_pow_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_put_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_put_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_qr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_qr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_quantile_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_rad2deg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_randint_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_real_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_real_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_reciprocal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_renorm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_repeat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_repeat_interleave_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_reshape_as_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_reshape_as_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_resize__cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_resolve_conj_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_resolve_conj_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_resolve_neg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_roll_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_roll_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_rot90_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_round_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_rsub_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_scalar_tensor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_scalar_tensor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_scatter_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_scatter_reduce_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_scatter_reduce_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_scatter_reduce_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_searchsorted_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_short_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_signal_windows_blackman_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_signal_windows_general_cosine_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_signal_windows_kaiser_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_signal_windows_nuttall_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sin_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sinc_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sinc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sinh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_slice_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_slice_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_softmax_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_softmax_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sparse_mm_reduce_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sparse_sampled_addmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_bessel_j1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_bessel_y1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_chebyshev_polynomial_u_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_chebyshev_polynomial_v_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_erfcx_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_hermite_polynomial_he_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_laguerre_polynomial_l_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_log_ndtr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_modified_bessel_i1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_modified_bessel_k0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_zeta_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_split_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_split_list_args_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_split_list_args_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_split_with_sizes_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sqrt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_square_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_square_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_squeeze_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_squeeze_multiple_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_std_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_std_mean_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_std_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sub_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sum_to_size_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_svd_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_svd_lowrank_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_t_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_t_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_take_along_dim_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_take_along_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_tanh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_tanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_tensor_split_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_tensordot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_tile_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_to_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_to_sparse_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_topk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_trace_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_transpose_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_transpose_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_transpose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_transpose_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_trapezoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_triangular_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_triangular_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_triu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_triu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_true_divide_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_true_divide_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unbind_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unbind_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unflatten_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unfold_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_uniform_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unsafe_split_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unsqueeze_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unsqueeze_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_var_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_var_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_var_mean_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_var_mean_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_var_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_view_as_complex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_vsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_while_loop_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_zeros_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_zeros_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_NumpyCatCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_NumpyCubeCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_NumpyNonzeroCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_NumpySplitCopyCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_NumpySplitCopyWithIntCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_T_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad___getitem___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad___rdiv___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad___rdiv___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad___rmod___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad___rmul___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad___rmul___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad___rpow___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad___rpow___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad___rsub___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad__chunk_cat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad__segment_reduce_lengths_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad__softmax_backward_data_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad__unsafe_masked_index_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad__unsafe_masked_index_put_accumulate_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_abs_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_acos_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_acosh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_acosh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_addcdiv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_addcdiv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_addmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_addmm_decomposed_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_addmm_decomposed_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_addmv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_alias_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_all_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_all_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_allclose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_aminmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_any_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_any_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_argmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_as_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_as_strided_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_asin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_asinh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_atanh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_atleast_1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_atleast_2d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_atleast_3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_atleast_3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_baddbmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_bernoulli_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_bfloat16_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_block_diag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_bmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_byte_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cauchy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_ceil_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cfloat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cfloat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_char_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cholesky_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_chunk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_clamp_max_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_clamp_min_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_clone_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_column_stack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_combinations_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cond_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_conj_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_conj_physical_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_constant_pad_nd_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_constant_pad_nd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_contiguous_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_copysign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_corrcoef_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_corrcoef_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cosh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_count_nonzero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cov_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cov_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cross_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cumprod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cumsum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cumulative_trapezoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cumulative_trapezoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_diag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_diag_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_diag_embed_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_diagflat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_diagonal_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_diagonal_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_diagonal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_diagonal_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_diff_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_dist_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_dist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_div_floor_rounding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_div_no_rounding_mode_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_div_trunc_rounding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_dot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_double_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_dstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_dstack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_einsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_empty_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_empty_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_empty_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_empty_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_empty_permuted_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_empty_strided_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_eq_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_equal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_equal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_erfinv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_exp2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_exp2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_exp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_exp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_expand_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_expand_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_expm1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_exponential_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_eye_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_fftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_fftshift_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_fftshift_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_hfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_hfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_ifft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_ifft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_ifftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_ihfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_ihfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_irfft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_irfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_irfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_rfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fill_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_flatten_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_flip_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_flipud_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_flipud_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_float_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_float_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_float_power_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_floor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_frac_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_full_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_full_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_gather_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_ge_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_geometric_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_geqrf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_gradient_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_grid_sampler_3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_half_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_hash_tensor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_heaviside_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_histc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_hsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_hsplit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_hstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_igammac_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_put_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_reduce_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_reduce_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_reduce_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_int_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_isclose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_isclose_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_isfinite_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_isfinite_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_isinf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_isnan_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_isneginf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_item_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_item_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_jiterator_2inputs_2outputs_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_jiterator_4inputs_with_extra_args_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_jiterator_binary_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_jiterator_binary_return_by_ref_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_jiterator_binary_return_by_ref_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_jiterator_unary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_kron_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_kthvalue_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_ldexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_ldexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_lerp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_cholesky_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_cholesky_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_cond_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_cross_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_det_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_diagonal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_diagonal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_eigh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_eigvals_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_eigvalsh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_eigvalsh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_householder_product_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_inv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_inv_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_inv_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_ldl_factor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_ldl_factor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_ldl_factor_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_ldl_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_lstsq_grad_oriented_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_lu_factor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_matrix_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_matrix_power_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_matrix_rank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_matrix_rank_hermitian_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_matrix_rank_hermitian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_multi_dot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_multi_dot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_norm_subgradients_at_zero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_pinv_hermitian_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_pinv_singular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_qr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_qr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_slogdet_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_solve_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_solve_triangular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_tensorinv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_tensorsolve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_vander_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_vecdot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_vector_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_vector_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linspace_tensor_overload_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linspace_tensor_overload_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_log10_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_log1p_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_log1p_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_log2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_log_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_log_softmax_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logaddexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logdet_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logdet_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logical_and_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logical_not_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logical_xor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logspace_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logspace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logspace_tensor_overload_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logsumexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_long_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_lt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_lu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_lu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_lu_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_lu_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mH_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mH_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_map_nested_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_argmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_argmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_cumprod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_cumsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_log_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_logsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_median_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_normalize_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_normalize_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_std_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_matmul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_matmul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_matrix_exp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_matrix_exp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_max_binary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_max_pool2d_with_indices_backward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_max_reduction_no_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_maximum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_meshgrid_list_of_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_min_binary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mode_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_multinomial_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nanmedian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nansum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_narrow_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_narrow_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_narrow_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_native_dropout_backward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_neg_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_neg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_new_empty_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_new_full_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_new_full_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_new_ones_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_new_ones_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_new_zeros_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_new_zeros_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_avg_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_channel_shuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_conv1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_conv2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_conv3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_conv_transpose1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_conv_transpose2d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_conv_transpose2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_conv_transpose3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_conv_transpose3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_cosine_embedding_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_cosine_similarity_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_cross_entropy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_ctc_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_dropout2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_dropout3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_gaussian_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_glu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_grid_sample_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_group_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_hardshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_hardswish_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_interpolate_bicubic_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_interpolate_nearest_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_layer_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_linear_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_local_response_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_logsigmoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_margin_ranking_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_max_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_max_unpool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_max_unpool3d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_multi_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_normalize_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pad_circular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pad_constant_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pad_constant_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pad_reflect_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pad_replicate_negative_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pad_replicate_negative_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pdist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pixel_unshuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pixel_unshuffle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_relu6_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_relu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_rms_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_rrelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_softmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_softmin_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_softmin_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_softshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_softsign_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_softsign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_tanhshrink_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_tanhshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_triplet_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_unfold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_upsample_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nonzero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nonzero_static_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_norm_fro_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_norm_inf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_norm_inf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_norm_nuc_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_normal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_normal_in_place_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_outer_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_permute_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_permute_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_pinverse_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_polygamma_polygamma_n_1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_polygamma_polygamma_n_2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_put_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_quantile_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_rad2deg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_randint_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_randn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_ravel_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_real_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_reciprocal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_reciprocal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_renorm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_repeat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_repeat_interleave_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_reshape_as_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_reshape_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_resize__cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_resolve_neg_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_resolve_neg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_rot90_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_round_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_round_decimals_neg_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_scalar_tensor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_scatter_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_scatter_reduce_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_scatter_reduce_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_scatter_reduce_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_select_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sgn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_short_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_short_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sigmoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_signal_windows_blackman_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_signal_windows_general_hamming_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_signbit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sin_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sinc_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sinc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sinh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_slice_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_softmax_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_softmax_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sparse_mm_reduce_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sparse_sampled_addmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_airy_ai_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_bessel_j1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_bessel_y0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_erfcx_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_hermite_polynomial_he_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_i1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_laguerre_polynomial_l_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_log_ndtr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_modified_bessel_i1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_ndtr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_spherical_bessel_j0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_xlog1py_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_split_list_args_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_split_with_sizes_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_split_with_sizes_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_squeeze_multiple_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_squeeze_multiple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_stack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_std_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_std_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_std_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_stft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_stft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sub_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sum_to_size_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_svd_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_svd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_svd_lowrank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_take_along_dim_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_take_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_tan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_tanh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_tanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_tensor_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_tensordot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_tile_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_to_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_to_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_to_sparse_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_to_sparse_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_trace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_transpose_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_transpose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_transpose_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_trapezoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_trapz_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_trapz_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_triangular_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_triangular_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_tril_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_triu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_trunc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unbind_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unbind_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unflatten_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unflatten_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unfold_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unfold_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_uniform_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unique_consecutive_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unsafe_chunk_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unsafe_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unsafe_split_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unsqueeze_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unsqueeze_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_var_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_var_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_var_mean_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_vdot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_view_as_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_view_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_view_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_vsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_vstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_vstack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_where_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_where_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_while_loop_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_xlogy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_zeros_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_NumpyNonzeroCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_NumpySplitCopyCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_NumpySplitCopyWithIntCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_NumpyViewCopyCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_T_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___radd___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___rdiv___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___rdiv___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___rmatmul___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___rmod___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___rpow___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad__batch_norm_with_update_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad__chunk_cat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad__native_batch_norm_legit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad__segment_reduce_lengths_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad__upsample_bilinear2d_aa_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_acos_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_acos_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_acosh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addbmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addbmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addcdiv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addcmul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addmm_decomposed_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addmm_decomposed_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addmv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_alias_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_all_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_allclose_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_angle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_angle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_any_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_arange_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_argsort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_as_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_asin_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_asinh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_atanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_atleast_1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_atleast_2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_atleast_3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_baddbmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_bfloat16_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_bfloat16_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_block_diag_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_bmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_bmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_bool_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_broadcast_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_broadcast_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_broadcast_to_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_byte_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_byte_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cartesian_prod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cauchy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cdouble_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cdouble_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cfloat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_char_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cholesky_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_chunk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_clamp_min_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_combinations_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_complex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_conj_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_conj_physical_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_constant_pad_nd_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_contiguous_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_contiguous_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_corrcoef_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cosh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_count_nonzero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_count_nonzero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cov_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cov_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cummax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cummin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cumprod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cumprod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cumsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cumsum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cumulative_trapezoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_diagonal_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_diagonal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_diagonal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_diagonal_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_diff_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_dist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_div_floor_rounding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_div_no_rounding_mode_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_div_no_rounding_mode_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_div_trunc_rounding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_dot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_double_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_dstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_einsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_einsum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_empty_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_empty_permuted_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_empty_strided_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_eq_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_eq_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_equal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_equal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_erfc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_expand_as_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_expand_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_expand_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_expand_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_expand_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_expm1_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_expm1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_exponential_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_fft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_fft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_fft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_fftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_fftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_fftshift_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_fftshift_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_hfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_hfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_ifft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_ifft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_ifftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_ifftshift_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_ihfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_ihfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_irfft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_irfft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_irfftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_rfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_rfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_rfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fill_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_flatten_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fliplr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_flipud_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_flipud_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_float_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_float_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_float_power_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_floor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fmod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_frexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_full_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_full_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_gather_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_gather_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_geometric_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_geqrf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_geqrf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_gradient_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_grid_sampler_2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_heaviside_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_histc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_histogramdd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_hsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_hstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_hstack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_i0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_igamma_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_igammac_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_imag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_put_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_reduce_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_reduce_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_reduce_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_inner_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_inner_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_int_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_int_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_isfinite_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_isinf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_isinf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_isnan_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_isneginf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_isposinf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_jiterator_2inputs_2outputs_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_jiterator_binary_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_jiterator_binary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_jiterator_binary_return_by_ref_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_jiterator_binary_return_by_ref_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_kron_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_ldexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_le_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_cholesky_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_cholesky_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_cond_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_cross_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_det_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_det_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_eig_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_eigh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_eigvals_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_eigvalsh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_eigvalsh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_inv_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_inv_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_ldl_factor_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_ldl_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_ldl_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_lstsq_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_lstsq_grad_oriented_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_lu_factor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_lu_factor_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_lu_factor_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_lu_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_lu_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_matrix_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_matrix_rank_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_multi_dot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_multi_dot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_norm_subgradients_at_zero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_pinv_hermitian_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_pinv_hermitian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_pinv_singular_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_qr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_slogdet_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_solve_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_solve_triangular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_svd_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_svd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_svdvals_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_vander_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_vander_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_vecdot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_vecdot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linspace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linspace_tensor_overload_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linspace_tensor_overload_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_log10_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_log10_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_log1p_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_log_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_log_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_log_softmax_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_log_softmax_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logaddexp2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logcumsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logdet_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logdet_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logical_and_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logical_not_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logical_or_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logical_xor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logical_xor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logspace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logspace_tensor_overload_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_long_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_lu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_lu_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_lu_unpack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mH_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mT_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_argmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_cumprod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_cumsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_fill_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_log_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_logaddexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_logsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_logsumexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_select_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_softmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_matrix_exp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_max_pool2d_with_indices_backward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_max_reduction_no_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_max_reduction_with_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_maximum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_meshgrid_list_of_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_min_reduction_no_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_minimum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_msort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nanmean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nanmedian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_narrow_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_narrow_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_narrow_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_native_batch_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_native_layer_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_ne_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_new_full_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_new_full_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nextafter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_avg_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_batch_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_binary_cross_entropy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_celu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_conv1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_conv3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_conv_transpose1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_conv_transpose2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_conv_transpose3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_cosine_embedding_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_cosine_similarity_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_cross_entropy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_dropout_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_elu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_fractional_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_fractional_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_gaussian_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_glu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_hardshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_hardswish_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_hinge_embedding_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_huber_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_interpolate_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_interpolate_linear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_interpolate_trilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_kl_div_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_layer_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_linear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_margin_ranking_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_max_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_max_unpool1d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_max_unpool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_max_unpool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_multi_head_attention_forward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_multi_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_multilabel_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_normalize_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_normalize_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pad_circular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pairwise_distance_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pairwise_distance_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pixel_shuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pixel_unshuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_poisson_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_prelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_relu6_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_rrelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_silu_complex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_silu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_smooth_l1_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_softmin_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_softmin_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_softshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_softsign_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_tanhshrink_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_threshold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_triplet_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_upsample_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_upsample_nearest_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nonzero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nonzero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nonzero_static_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nonzero_static_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_norm_fro_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_norm_inf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_norm_nuc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_normal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_normal_number_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_ones_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_ones_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_outer_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_pca_lowrank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_pca_lowrank_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_permute_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_permute_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_permute_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_polar_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_polygamma_polygamma_n_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_positive_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_prod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_qr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_qr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_rad2deg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_rand_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_rand_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_randint_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_randint_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_randn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_randn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_ravel_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_reciprocal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_renorm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_repeat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_repeat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_resize__cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_resize_as__cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_resize_as__cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_resolve_neg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_rot90_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_rot90_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_round_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_round_decimals_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_rsqrt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_rsub_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_scalar_tensor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_scalar_tensor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_scatter_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_scatter_reduce_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_scatter_reduce_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_scatter_reduce_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_select_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_short_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_short_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sigmoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sigmoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_signal_windows_bartlett_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_signal_windows_cosine_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_signal_windows_hamming_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_signal_windows_hann_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_signbit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sinc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sinh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sparse_sampled_addmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_bessel_j0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_bessel_y0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_chebyshev_polynomial_u_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_chebyshev_polynomial_v_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_entr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_hermite_polynomial_h_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_hermite_polynomial_he_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_i0e_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_log_ndtr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_modified_bessel_i0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_modified_bessel_k1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_ndtr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_scaled_modified_bessel_k0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_xlog1py_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_split_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_split_with_sizes_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_split_with_sizes_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_split_with_sizes_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_split_with_sizes_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sqrt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_square_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_squeeze_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_std_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_std_mean_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_std_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_stft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sub_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sub_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sum_to_size_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_svd_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_svd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_svd_lowrank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_t_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_t_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_take_along_dim_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_take_along_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_take_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_tan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_tanh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_tensor_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_to_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_trace_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_trace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_trapezoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_trapz_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_trapz_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_triangular_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_true_divide_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_trunc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unbind_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unbind_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unflatten_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unfold_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unfold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unique_consecutive_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unique_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unsafe_chunk_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unsafe_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_var_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_var_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_var_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_var_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_vdot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_vdot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_view_as_complex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_view_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_vsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_vstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_where_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_where_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_xlogy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_zero__cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_zeros_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_zeros_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_zeros_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_H_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_H_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_T_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_T_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___getitem___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___getitem___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___radd___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___radd___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___rmatmul___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___rmatmul___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___rpow___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___rsub___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__batch_norm_with_update_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__chunk_cat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__segment_reduce_lengths_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__segment_reduce_offsets_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__softmax_backward_data_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__unsafe_masked_index_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__unsafe_masked_index_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__unsafe_masked_index_put_accumulate_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__upsample_bilinear2d_aa_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_acos_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addbmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addcdiv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addmm_decomposed_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addmv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_alias_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_alias_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_all_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_all_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_allclose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_any_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_arange_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_argmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_argsort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_argwhere_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_as_strided_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_as_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_as_strided_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_as_strided_partial_views_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_as_strided_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_as_strided_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_asin_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_asinh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_asinh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_atanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_atleast_1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_atleast_1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_atleast_2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_baddbmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_bfloat16_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_bfloat16_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_block_diag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_bmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_bmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_bool_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_broadcast_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_broadcast_to_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_byte_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_byte_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cartesian_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cauchy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cdist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cdouble_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ceil_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_chalf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_char_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_char_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cholesky_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cholesky_inverse_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_chunk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_clamp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_clamp_max_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_clone_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_column_stack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_combinations_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_combinations_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_complex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_conj_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_conj_physical_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_conj_physical_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_constant_pad_nd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_contiguous_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cos_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cos_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cosh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cosh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_count_nonzero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cov_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cross_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cummax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cummin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cumulative_trapezoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_deg2rad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diag_embed_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diagflat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diagonal_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diagonal_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diagonal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diff_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diff_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_digamma_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_dist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_div_no_rounding_mode_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_div_no_rounding_mode_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_div_trunc_rounding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_dot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_dot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_double_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_double_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_dsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_dsplit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_empty_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_empty_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_eq_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_equal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_equal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_erfc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_erfinv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_exp2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_exp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_expand_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_expand_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_expm1_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_expm1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_eye_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_fft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_fftshift_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_hfft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_hfft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_hfftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_ifftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_ihfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_ihfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_ihfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_irfft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_irfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_irfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_rfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_flatten_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_flatten_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_flip_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_flipud_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_float_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_float_power_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_floor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_full_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ge_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_geometric_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_grid_sampler_3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_half_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_heaviside_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_histc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_histogram_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_put_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_reduce_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_reduce_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_select_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_inner_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_inner_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_int_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_int_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_isclose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_isfinite_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_isinf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_isinf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_isnan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_isnan_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_item_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_jiterator_2inputs_2outputs_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_jiterator_4inputs_with_extra_args_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_jiterator_binary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_jiterator_binary_return_by_ref_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_jiterator_unary_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ldexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_le_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_lgamma_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_cholesky_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_cholesky_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_cholesky_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_cond_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_cond_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_cross_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_det_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_diagonal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_diagonal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_eig_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_eig_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_eigvals_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_eigvalsh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_inv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_inv_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_inv_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_ldl_factor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_ldl_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_lstsq_grad_oriented_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_lu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_lu_factor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_matrix_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_matrix_power_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_matrix_rank_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_matrix_rank_hermitian_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_multi_dot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_norm_subgradients_at_zero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_pinv_hermitian_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_pinv_hermitian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_pinv_singular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_qr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_slogdet_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_solve_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_solve_triangular_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_solve_triangular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_svd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_tensorinv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_vander_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_vector_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linspace_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linspace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linspace_tensor_overload_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_log1p_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_log2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_log_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_log_softmax_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logaddexp2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logaddexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logcumsumexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logdet_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logdet_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logical_not_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logical_xor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logspace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logspace_tensor_overload_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_long_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_lu_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_lu_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_lu_unpack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mH_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_argmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_cumprod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_cumsum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_median_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_select_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_softmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_var_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_var_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_matmul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_matrix_exp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_max_pool2d_with_indices_backward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_meshgrid_list_of_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_meshgrid_variadic_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_min_binary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_min_reduction_no_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_min_reduction_with_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_movedim_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_movedim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_msort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_multinomial_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nan_to_num_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nanmean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nanquantile_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ne_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_neg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_new_empty_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_new_empty_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_new_empty_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nextafter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_avg_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_avg_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_binary_cross_entropy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_conv1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_conv2d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_conv2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_conv3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_conv_transpose1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_conv_transpose2d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_conv_transpose2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_conv_transpose3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_cosine_embedding_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_cross_entropy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_ctc_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_dropout3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_dropout_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_embedding_bag_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_feature_alpha_dropout_with_train_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_fractional_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_fractional_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_gaussian_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_gelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_huber_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_instance_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_interpolate_nearest_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_interpolate_trilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_kl_div_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_l1_loss_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_l1_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_leaky_relu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_linear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_local_response_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_logsigmoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_margin_ranking_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_max_unpool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_max_unpool1d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_max_unpool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_max_unpool2d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_max_unpool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_max_unpool3d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_mish_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_multi_head_attention_forward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pad_circular_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pad_constant_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pad_reflect_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pad_reflect_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pad_replicate_negative_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pad_replicate_negative_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pairwise_distance_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pixel_shuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pixel_shuffle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pixel_unshuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pixel_unshuffle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_poisson_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_prelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_relu6_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_relu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_rms_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_rrelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_selu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_silu_complex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_silu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_smooth_l1_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_softmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_softmin_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_softplus_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_softsign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_tanhshrink_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_tanhshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_unfold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_upsample_nearest_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nonzero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nonzero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nonzero_static_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nonzero_static_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_norm_fro_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_normal_in_place_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_normal_number_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ones_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ones_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ones_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ormqr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_outer_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_outer_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_pca_lowrank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_permute_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_permute_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_permute_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_pinverse_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_polygamma_polygamma_n_0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_polygamma_polygamma_n_1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_polygamma_polygamma_n_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_polygamma_polygamma_n_4_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_positive_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_positive_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_put_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_qr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_rand_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_randint_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_randn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_randn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_randn_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ravel_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_renorm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_renorm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_repeat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_repeat_interleave_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_repeat_interleave_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_reshape_as_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_reshape_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_resize__cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_resolve_conj_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_roll_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_rot90_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_rot90_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_round_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_round_decimals_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_round_decimals_neg_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_rsub_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_scalar_tensor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_scatter_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_scatter_reduce_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_searchsorted_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sgn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sgn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_short_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_signal_windows_cosine_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_signal_windows_exponential_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_signal_windows_kaiser_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sin_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sinc_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sinh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_slice_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_slice_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_slice_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sparse_sampled_addmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_bessel_j0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_bessel_y1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_chebyshev_polynomial_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_erfcx_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_i1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_laguerre_polynomial_l_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_log_ndtr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_modified_bessel_i1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_modified_bessel_k0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_scaled_modified_bessel_k1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_split_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_split_list_args_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_split_with_sizes_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_square_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_squeeze_multiple_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_squeeze_multiple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_stack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_stack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_std_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_std_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_std_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_std_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_stft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_stft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sub_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sum_to_size_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sum_to_size_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_svd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_svd_lowrank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_t_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_t_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_take_along_dim_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_take_along_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_take_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_take_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_tan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_tanh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_tensor_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_tensordot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_tensordot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_tile_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_tile_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_to_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_topk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_trace_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_trace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_transpose_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_trapezoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_trapezoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_trapz_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_trapz_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_triangular_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_triu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_triu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_true_divide_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_trunc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unbind_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unbind_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unfold_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unfold_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unfold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_uniform_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_uniform_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unique_consecutive_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unique_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unsqueeze_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unsqueeze_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_var_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_var_mean_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_var_mean_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_var_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_var_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_view_as_real_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_view_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_view_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_vsplit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_vstack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_xlogy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_zero__cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_zeros_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_zeros_like_cpu_float64 2025-08-26T22:44:12.4687601Z 2025-08-26T22:44:17.6063356Z Running optim/test_swa_utils 1/1 ... [2025-08-26 22:44:17.592282] 2025-08-26T22:44:17.6063836Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:44:17.6069900Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'optim/test_swa_utils.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:44:17.592282] 2025-08-26T22:44:17.9250561Z 2025-08-26T22:44:17.9251803Z test_cuda_expandable_segments 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_cuda_expandable_segments_1.1_ab071a7d35c87d36_.log 2025-08-26T22:44:17.9252599Z 2025-08-26T22:44:21.8883390Z 2025-08-26T22:44:21.8884264Z optim/test_swa_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/optim.test_swa_utils_1.1_a05d20731391dcaf_.log 2025-08-26T22:44:21.8885014Z 2025-08-26T22:44:23.0621629Z Running dynamo/test_nested_graph_breaks 1/1 ... [2025-08-26 22:44:23.054205] 2025-08-26T22:44:23.0622149Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:44:23.0628506Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_nested_graph_breaks.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:44:23.054205] 2025-08-26T22:44:27.7677484Z 2025-08-26T22:44:27.7678703Z dynamo/test_nested_graph_breaks 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_nested_graph_breaks_1.1_35d5431780cc7a7a_.log 2025-08-26T22:44:27.7679521Z 2025-08-26T22:48:07.2656947Z 2025-08-26T22:48:07.2657855Z test_ops_fwd_gradients 1/2 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_fwd_gradients_1.2_7a2f8198fac0c2ee_.log 2025-08-26T22:48:07.3340112Z Running 1604 items in this shard: test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_H_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_T_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad___getitem___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad___radd___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad___radd___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad___rdiv___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad___rdiv___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad___rmatmul___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad___rmul___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad___rsub___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad__segment_reduce_offsets_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad__unsafe_masked_index_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_abs_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_acos_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_acos_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_acosh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_add_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_add_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_addbmm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_addbmm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_addcdiv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_addcmul_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_addmm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_addmm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_addmm_decomposed_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_addr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_alias_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_alias_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_allclose_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_amin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_aminmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_arange_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_argsort_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_argwhere_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_argwhere_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_as_strided_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_as_strided_partial_views_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_as_strided_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_asin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_asinh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_atan_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_atanh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_atleast_1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_atleast_3d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_atleast_3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_baddbmm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_baddbmm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_bernoulli_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_bfloat16_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_block_diag_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_block_diag_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_bool_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_broadcast_tensors_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_broadcast_tensors_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_broadcast_to_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cartesian_prod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cat_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cdist_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cdouble_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cfloat_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_char_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cholesky_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cholesky_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cholesky_inverse_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cholesky_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_chunk_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_clamp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_clamp_max_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_clamp_min_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_column_stack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_column_stack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_combinations_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_combinations_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_complex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_conj_physical_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_conj_physical_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_constant_pad_nd_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_constant_pad_nd_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_contiguous_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_copysign_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cos_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_count_nonzero_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_count_nonzero_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cov_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cross_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cummax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cumprod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cumsum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cumulative_trapezoid_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cumulative_trapezoid_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_deg2rad_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_diag_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_diag_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_diag_embed_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_diag_embed_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_diagonal_scatter_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_diff_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_dist_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_dist_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_div_no_rounding_mode_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_dot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_double_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_dstack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_dstack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_einsum_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_einsum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_empty_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_empty_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_empty_permuted_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_empty_strided_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_empty_strided_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_equal_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_equal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_erf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_erfinv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_exp2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_exp2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_expand_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_expand_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_expm1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_fft2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_fft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_fft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_fftn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_fftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_fftshift_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_fftshift_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_hfft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_hfft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_hfft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_hfftn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_hfftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_ifft2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_ifft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_ifft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_ifft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_ifftn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_ifftshift_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_ihfft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_irfft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_irfft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_irfftn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_irfftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_rfft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_rfftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_flip_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_flip_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fliplr_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_flipud_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_float_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_float_power_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_floor_divide_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_full_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_full_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_ge_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_geometric_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_gradient_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_gradient_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_gt_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_half_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_half_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_heaviside_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_histogram_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_histogramdd_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_hsplit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_hstack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_igammac_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_imag_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_index_add_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_index_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_index_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_index_fill_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_index_reduce_amax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_index_reduce_amin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_index_reduce_prod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_index_select_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_index_select_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_inner_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_int_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_isclose_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_isfinite_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_isin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_isinf_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_isnan_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_isposinf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_istft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_item_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_jiterator_2inputs_2outputs_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_jiterator_2inputs_2outputs_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_jiterator_4inputs_with_extra_args_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_jiterator_binary_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_jiterator_binary_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_jiterator_binary_return_by_ref_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_jiterator_binary_return_by_ref_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_jiterator_unary_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_jiterator_unary_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_kron_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_kron_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_kthvalue_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_ldexp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_ldexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_le_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_lerp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_lgamma_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_cholesky_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_cholesky_ex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_cross_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_diagonal_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_eig_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_eigh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_eigvals_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_eigvalsh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_eigvalsh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_householder_product_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_inv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_inv_ex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_ldl_factor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_ldl_factor_ex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_ldl_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_lstsq_grad_oriented_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_lu_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_lu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_lu_factor_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_lu_factor_ex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_lu_factor_ex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_lu_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_matrix_rank_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_multi_dot_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_multi_dot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_norm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_pinv_hermitian_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_pinv_singular_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_pinv_singular_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_slogdet_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_solve_ex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_solve_triangular_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_svd_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_tensorinv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_vander_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_vector_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linspace_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linspace_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linspace_tensor_overload_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_log10_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_log10_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_log1p_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_log1p_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_log2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_log_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_log_softmax_with_dtype_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logaddexp2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logaddexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logcumsumexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logdet_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logdet_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logical_and_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logical_not_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logical_or_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logical_xor_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_long_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_lt_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_lu_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_lu_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_lu_unpack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_lu_unpack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mH_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_amin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_argmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_argmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_cumprod_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_cumsum_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_logaddexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_logsumexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_mean_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_prod_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_select_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_softmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_std_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_sum_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_sum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_var_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_matmul_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_matrix_exp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_max_pool2d_with_indices_backward_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_max_reduction_no_dim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_max_reduction_with_dim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_median_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_meshgrid_variadic_tensors_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_min_binary_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_min_reduction_no_dim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_min_reduction_with_dim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mode_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_movedim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mul_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mul_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nanmean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nanmedian_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nanquantile_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_narrow_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_narrow_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_native_dropout_backward_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_native_layer_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_ne_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_new_empty_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_new_empty_strided_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_new_empty_strided_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_new_ones_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nextafter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_alpha_dropout_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_avg_pool1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_avg_pool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_avg_pool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_bilinear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_celu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_channel_shuffle_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_channel_shuffle_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_conv1d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_conv1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_conv3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_conv_transpose1d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_conv_transpose2d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_ctc_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_dropout2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_dropout3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_dropout_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_embedding_bag_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_embedding_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_fractional_max_pool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_gaussian_nll_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_glu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_grid_sample_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_group_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_hardshrink_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_hinge_embedding_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_huber_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_instance_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_interpolate_linear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_interpolate_trilinear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_kl_div_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_l1_loss_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_layer_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_leaky_relu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_linear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_margin_ranking_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_max_unpool1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_max_unpool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_max_unpool2d_grad_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_max_unpool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_max_unpool3d_grad_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_multi_head_attention_forward_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_multi_margin_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_normalize_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pad_circular_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pad_constant_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pad_reflect_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pad_reflect_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pad_replicate_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pad_replicate_negative_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pairwise_distance_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pdist_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pixel_shuffle_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_poisson_nll_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_relu6_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_relu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_rms_norm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_rms_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_rrelu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_selu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_silu_complex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_softshrink_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_triplet_margin_loss_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_unfold_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_upsample_nearest_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nonzero_static_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nonzero_static_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_norm_fro_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_norm_nuc_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_norm_nuc_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_normal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_normal_in_place_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_ones_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_ones_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_ormqr_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_ormqr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_outer_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_pca_lowrank_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_pca_lowrank_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_permute_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_permute_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_permute_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_pinverse_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_polygamma_polygamma_n_0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_polygamma_polygamma_n_1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_polygamma_polygamma_n_4_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_positive_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_pow_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_pow_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_put_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_quantile_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_rand_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_rand_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_randn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_reciprocal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_remainder_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_renorm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_repeat_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_repeat_interleave_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_reshape_as_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_reshape_as_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_reshape_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_round_decimals_3_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_round_decimals_neg_3_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_rsqrt_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_rsqrt_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_rsub_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_scalar_tensor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_scatter_add_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_scatter_add_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_scatter_reduce_amin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_scatter_reduce_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_scatter_reduce_prod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_select_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_short_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sigmoid_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_signal_windows_cosine_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_signal_windows_gaussian_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_signal_windows_general_cosine_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_signal_windows_nuttall_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_signbit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sinc_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sinh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_slice_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_softmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_softmax_with_dtype_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_softmax_with_dtype_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sort_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_bessel_j0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_bessel_y0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_chebyshev_polynomial_t_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_chebyshev_polynomial_v_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_chebyshev_polynomial_w_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_entr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_erfcx_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_i0e_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_i1e_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_laguerre_polynomial_l_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_legendre_polynomial_p_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_log_ndtr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_modified_bessel_i1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_modified_bessel_k1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_ndtri_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_scaled_modified_bessel_k0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_xlog1py_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_zeta_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_split_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_split_list_args_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_split_with_sizes_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sqrt_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sqrt_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_squeeze_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_squeeze_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_squeeze_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_std_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_std_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_std_mean_unbiased_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_std_mean_unbiased_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_std_unbiased_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_stft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_stft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sum_to_size_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_svd_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_svd_lowrank_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_t_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_t_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_t_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_take_along_dim_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_tile_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_to_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_to_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_to_sparse_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_topk_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_trace_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_transpose_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_trapezoid_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_trapezoid_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_trapz_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_triangular_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_triangular_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_tril_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_true_divide_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unbind_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unflatten_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unflatten_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unfold_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unfold_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_uniform_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unique_consecutive_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unique_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unsafe_split_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unsqueeze_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unsqueeze_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_var_mean_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_var_mean_unbiased_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_var_mean_unbiased_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_var_unbiased_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_var_unbiased_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_vdot_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_vdot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_view_as_complex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_view_as_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_view_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_view_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_view_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_view_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_vsplit_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_vsplit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_where_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_zero__cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_zero__cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_zeros_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_H_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_T_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD___getitem___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD___getitem___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD___rdiv___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD___rmatmul___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD___rmatmul___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD___rmul___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD___rpow___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD__softmax_backward_data_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD__unsafe_masked_index_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD__unsafe_masked_index_put_accumulate_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD__upsample_bilinear2d_aa_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_acos_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_acosh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_add_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_addbmm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_addcdiv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_addmm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_addmm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_addmm_decomposed_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_alias_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_alias_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_all_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_all_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_allclose_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_any_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_any_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_argmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_argsort_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_argwhere_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_argwhere_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_as_strided_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_as_strided_partial_views_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_as_strided_partial_views_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_as_strided_scatter_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_as_strided_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_asin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_asinh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_atan_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_atleast_1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_atleast_2d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_atleast_3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_baddbmm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_bernoulli_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_bfloat16_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_block_diag_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_bmm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_bool_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_bool_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_broadcast_tensors_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_bucketize_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_byte_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cartesian_prod_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cauchy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cdist_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cdouble_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cfloat_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cfloat_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_chalf_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_char_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cholesky_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cholesky_inverse_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cholesky_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_chunk_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_clamp_max_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_clamp_min_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_clone_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_column_stack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_conj_physical_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_conj_physical_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_constant_pad_nd_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_contiguous_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_copysign_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_corrcoef_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cos_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cosh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_count_nonzero_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_count_nonzero_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cov_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cross_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cumprod_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cumulative_trapezoid_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_diag_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_diag_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_diag_embed_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_diag_embed_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_diagflat_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_diagonal_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_diagonal_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_diagonal_scatter_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_diff_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_diff_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_digamma_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_dist_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_dist_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_div_no_rounding_mode_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_div_trunc_rounding_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_double_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_dsplit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_einsum_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_empty_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_empty_permuted_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_empty_permuted_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_empty_strided_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_eq_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_equal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_erfc_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_erfinv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_exp2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_exp2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_exp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_exp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_expand_as_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_expand_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_expand_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_expand_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_expand_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_expm1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_exponential_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_eye_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_eye_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_fft2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_fft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_fft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_fftn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_fftshift_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_hfft2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_hfft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_hfftn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_ifft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_ifft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_ifftn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_ifftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_ifftshift_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_ifftshift_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_ihfft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_ihfftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_irfft2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_irfft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_irfft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_irfftn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_rfft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_rfftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fill_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fill_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_flatten_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_flip_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_flip_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fliplr_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_flipud_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_float_power_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_floor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_floor_divide_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_full_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_full_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_gather_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_gather_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_geometric_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_geqrf_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_geqrf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_gradient_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_grid_sampler_2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_grid_sampler_3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_gt_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_heaviside_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_histogramdd_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_hsplit_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_igamma_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_igammac_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_imag_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_index_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_index_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_index_put_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_index_reduce_amax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_index_reduce_amin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_index_reduce_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_index_reduce_prod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_inner_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_isclose_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_isfinite_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_isinf_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_isneginf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_isposinf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_isreal_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_istft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_item_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_jiterator_binary_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_jiterator_binary_return_by_ref_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_jiterator_unary_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_jiterator_unary_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_ldexp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_lerp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_cholesky_ex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_cross_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_diagonal_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_eig_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_eig_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_eigh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_eigh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_householder_product_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_householder_product_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_inv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_inv_ex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_ldl_factor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_ldl_factor_ex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_ldl_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_lstsq_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_lstsq_grad_oriented_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_lstsq_grad_oriented_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_lu_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_lu_factor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_lu_factor_ex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_lu_factor_ex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_matrix_norm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_matrix_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_matrix_power_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_matrix_rank_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_matrix_rank_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_matrix_rank_hermitian_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_multi_dot_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_norm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_norm_subgradients_at_zero_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_pinv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_pinv_hermitian_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_pinv_singular_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_qr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_slogdet_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_slogdet_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_solve_triangular_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_svdvals_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_tensorinv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_tensorsolve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_vecdot_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_vecdot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linspace_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linspace_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_log1p_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_log2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_log_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_log_softmax_with_dtype_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logaddexp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logaddexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logcumsumexp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logical_not_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logical_xor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logspace_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logspace_tensor_overload_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logspace_tensor_overload_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logsumexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_long_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_lt_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_lu_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_lu_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_mH_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_mT_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_argmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_cumprod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_cumsum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_logaddexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_logsumexp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_logsumexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_mean_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_median_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_normalize_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_normalize_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_prod_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_select_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_softmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_std_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_sum_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_sum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_var_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_var_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_matmul_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_matmul_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_matrix_exp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_matrix_exp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_max_reduction_with_dim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_meshgrid_variadic_tensors_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_min_binary_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_mm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_mul_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_mv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_mv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nanmean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nanmedian_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nansum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_narrow_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_native_batch_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_native_dropout_backward_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_ne_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_ne_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_neg_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_new_empty_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_new_empty_strided_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_new_full_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_new_zeros_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_new_zeros_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_alpha_dropout_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_avg_pool1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_avg_pool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_batch_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_bilinear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_binary_cross_entropy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_channel_shuffle_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_conv3d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_conv3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_conv_transpose2d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_conv_transpose2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_cosine_embedding_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_dropout2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_dropout3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_dropout_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_embedding_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_feature_alpha_dropout_with_train_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_fractional_max_pool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_glu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_grid_sample_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_group_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_hardsigmoid_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_hardswish_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_huber_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_interpolate_bicubic_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_interpolate_bilinear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_kl_div_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_layer_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_linear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_local_response_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_margin_ranking_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_max_unpool1d_grad_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_max_unpool2d_grad_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_max_unpool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_mse_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_multi_head_attention_forward_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_nll_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_normalize_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_normalize_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pad_circular_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pad_constant_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pad_reflect_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pad_reflect_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pairwise_distance_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pixel_shuffle_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pixel_unshuffle_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pixel_unshuffle_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_prelu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_relu6_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_rms_norm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_rms_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_rrelu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_silu_complex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_soft_margin_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_softmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_softshrink_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_softsign_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_softsign_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_tanhshrink_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_triplet_margin_loss_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_triplet_margin_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_triplet_margin_with_distance_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_unfold_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_upsample_bilinear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_upsample_nearest_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nonzero_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nonzero_static_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_norm_fro_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_norm_inf_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_norm_inf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_norm_nuc_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_ones_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_ones_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_ones_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_ormqr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_outer_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_outer_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_permute_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_permute_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_permute_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_pinverse_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_polar_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_polygamma_polygamma_n_0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_polygamma_polygamma_n_1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_positive_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_pow_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_prod_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_prod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_qr_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_quantile_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_rad2deg_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_rand_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_randint_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_ravel_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_ravel_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_real_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_repeat_interleave_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_reshape_as_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_reshape_as_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_reshape_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_resize__cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_resize__cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_resolve_conj_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_resolve_conj_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_roll_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_rot90_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_rot90_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_rsqrt_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_rsqrt_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_scatter_add_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_scatter_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_scatter_reduce_amax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_scatter_reduce_amin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_scatter_reduce_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_scatter_reduce_prod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_searchsorted_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_select_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sgn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_short_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sigmoid_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sigmoid_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sign_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_signal_windows_exponential_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_signal_windows_gaussian_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_signal_windows_general_cosine_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_signal_windows_general_hamming_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_signal_windows_hamming_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_signal_windows_nuttall_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_signbit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sinh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sinh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_slice_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_slice_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_slice_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_softmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_softmax_with_dtype_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sparse_mm_reduce_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sparse_sampled_addmm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sparse_sampled_addmm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_bessel_y0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_bessel_y1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_chebyshev_polynomial_v_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_chebyshev_polynomial_w_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_i0e_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_i1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_legendre_polynomial_p_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_modified_bessel_i0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_modified_bessel_i1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_ndtr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_scaled_modified_bessel_k0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_xlog1py_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_split_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_split_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_split_list_args_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_split_with_sizes_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_split_with_sizes_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sqrt_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_squeeze_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_squeeze_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_squeeze_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_squeeze_multiple_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_squeeze_multiple_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_stack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_std_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_std_mean_unbiased_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_std_mean_unbiased_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_stft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_stft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sub_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sum_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sum_to_size_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_svd_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_svd_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_svd_lowrank_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_t_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_t_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_take_along_dim_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_take_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_tan_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_tensor_split_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_tensordot_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_tile_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_to_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_to_sparse_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_to_sparse_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_trace_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_trace_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_transpose_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_trapezoid_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_trapz_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_triangular_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_tril_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_triu_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_triu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_true_divide_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_trunc_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unflatten_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unfold_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unfold_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_uniform_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_uniform_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unique_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unsafe_chunk_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unsafe_split_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unsqueeze_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_var_mean_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_var_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_var_mean_unbiased_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_var_mean_unbiased_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_var_unbiased_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_vdot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_view_as_real_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_view_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_view_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_view_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_view_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_vstack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_vstack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_where_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_xlogy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_zero__cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_zero__cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_zeros_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_H_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_T_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD___getitem___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD___rmatmul___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD___rmod___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD___rpow___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD___rsub___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD___rsub___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD__batch_norm_with_update_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD__chunk_cat_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD__native_batch_norm_legit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD__segment_reduce_offsets_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD__unsafe_masked_index_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD__unsafe_masked_index_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD__unsafe_masked_index_put_accumulate_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_abs_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_acos_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_acosh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_acosh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_add_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_addcdiv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_addcdiv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_addr_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_alias_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_alias_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_all_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_amax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_any_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_any_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_argmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_argsort_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_as_strided_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_as_strided_partial_views_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_as_strided_scatter_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_asinh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_atan2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_atan_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_atan_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_atanh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_atanh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_atleast_1d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_baddbmm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_bfloat16_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_block_diag_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_bool_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_broadcast_tensors_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_broadcast_tensors_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_broadcast_to_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_bucketize_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_byte_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cartesian_prod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cat_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cauchy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cdouble_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_ceil_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_chalf_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_chalf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_char_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_char_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cholesky_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cholesky_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cholesky_inverse_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cholesky_inverse_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cholesky_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cholesky_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_clone_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_column_stack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_combinations_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_conj_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_conj_physical_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_constant_pad_nd_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_contiguous_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_contiguous_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_corrcoef_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_corrcoef_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cos_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cos_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cosh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_count_nonzero_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cov_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cross_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cummax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cumprod_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cumsum_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cumsum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_diag_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_diagflat_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_diagonal_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_diff_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_dist_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_div_no_rounding_mode_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_dot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_double_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_einsum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_empty_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_empty_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_empty_strided_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_eq_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_eq_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_erf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_erfc_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_exp2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_expand_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_expand_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_expand_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_expm1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_exponential_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_eye_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_eye_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_fft2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_fftshift_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_hfft2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_hfft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_hfftn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_ifft2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_ifft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_ifftshift_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_ifftshift_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_ihfft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_ihfftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_irfft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_irfft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_irfftn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_rfft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_rfft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fill_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_flipud_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_float_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_floor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_floor_divide_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_frac_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_frexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_full_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_full_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_gather_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_gradient_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_gradient_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_grid_sampler_2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_gt_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_half_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_half_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_heaviside_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_histc_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_histogram_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_hsplit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_hstack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_hstack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_hypot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_i0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_igammac_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_imag_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_index_add_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_index_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_index_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_index_put_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_index_reduce_amax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_index_reduce_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_index_reduce_prod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_index_select_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_inner_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_isfinite_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_isfinite_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_isin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_isinf_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_isinf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_isnan_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_isreal_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_isreal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_jiterator_2inputs_2outputs_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_jiterator_binary_return_by_ref_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_jiterator_binary_return_by_ref_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_jiterator_unary_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_jiterator_unary_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_le_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_cholesky_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_cholesky_ex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_cond_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_cross_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_det_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_diagonal_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_eig_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_eigh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_eigvals_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_eigvalsh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_eigvalsh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_inv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_inv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_ldl_factor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_ldl_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_lstsq_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_lstsq_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_lstsq_grad_oriented_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_lstsq_grad_oriented_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_lu_factor_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_lu_factor_ex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_lu_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_matrix_norm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_matrix_power_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_matrix_power_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_matrix_rank_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_matrix_rank_hermitian_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_matrix_rank_hermitian_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_multi_dot_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_pinv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_pinv_hermitian_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_pinv_hermitian_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_pinv_singular_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_pinv_singular_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_qr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_solve_triangular_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_tensorsolve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_vander_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_vander_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_vector_norm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linspace_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linspace_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linspace_tensor_overload_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_log10_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_log10_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_log1p_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_log_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_log_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_log_softmax_with_dtype_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logaddexp2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logaddexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logdet_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logical_and_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logical_not_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logical_or_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logical_or_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logical_xor_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logspace_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logsumexp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_long_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_lt_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_lu_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_lu_unpack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_lu_unpack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mH_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mT_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_argmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_cumprod_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_cumprod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_cumsum_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_cumsum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_fill_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_log_softmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_logsumexp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_logsumexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_mean_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_normalize_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_prod_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_prod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_select_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_select_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_softmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_std_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_var_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_matmul_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_matmul_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_matrix_exp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_max_binary_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_max_pool2d_with_indices_backward_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_max_reduction_no_dim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_max_reduction_with_dim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mean_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_meshgrid_list_of_tensors_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_meshgrid_list_of_tensors_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_meshgrid_variadic_tensors_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_msort_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mul_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mul_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_multinomial_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nanmean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nansum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_narrow_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_narrow_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_narrow_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_native_batch_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_native_dropout_backward_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_native_layer_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_ne_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_new_empty_strided_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_new_empty_strided_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_new_full_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_new_ones_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nextafter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_avg_pool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_avg_pool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_bilinear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_binary_cross_entropy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_celu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_channel_shuffle_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_channel_shuffle_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_conv1d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_conv2d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_conv2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_conv3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_conv_transpose1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_conv_transpose2d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_conv_transpose3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_cosine_similarity_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_cross_entropy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_dropout2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_dropout_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_elu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_embedding_bag_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_glu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_hardshrink_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_hardtanh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_huber_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_instance_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_interpolate_bilinear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_interpolate_nearest_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_interpolate_trilinear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_kl_div_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_l1_loss_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_l1_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_layer_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_leaky_relu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_linear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_local_response_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_max_unpool1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_max_unpool1d_grad_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_max_unpool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_mish_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_mse_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_multi_margin_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_nll_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_normalize_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_normalize_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pad_circular_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pad_replicate_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pad_replicate_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pad_replicate_negative_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pad_replicate_negative_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pairwise_distance_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pairwise_distance_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pixel_shuffle_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_relu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_rms_norm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_rms_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_silu_complex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_silu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_smooth_l1_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_soft_margin_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_softmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_softmin_with_dtype_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_softplus_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_softsign_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_triplet_margin_loss_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_triplet_margin_with_distance_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_upsample_nearest_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nonzero_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nonzero_static_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_norm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_norm_fro_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_normal_in_place_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_ones_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_ones_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_ormqr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_outer_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_pca_lowrank_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_pca_lowrank_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_permute_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_pinverse_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_pinverse_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_polar_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_polygamma_polygamma_n_2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_polygamma_polygamma_n_3_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_pow_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_pow_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_qr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_quantile_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_rand_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_randint_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_randint_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_randn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_randn_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_ravel_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_real_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_reciprocal_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_reciprocal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_remainder_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_repeat_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_repeat_interleave_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_repeat_interleave_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_reshape_as_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_reshape_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_resize__cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_resize__cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_resize_as__cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_resolve_conj_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_resolve_neg_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_roll_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_rot90_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_rot90_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_round_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_round_decimals_0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_round_decimals_3_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_rsqrt_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_rsub_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_scalar_tensor_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_scalar_tensor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_scatter_add_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_scatter_reduce_amin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_searchsorted_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_select_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_select_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sgn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sigmoid_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sign_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_signal_windows_blackman_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_signal_windows_general_hamming_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_signal_windows_hamming_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_signal_windows_hann_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_signal_windows_nuttall_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sin_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sinc_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sinc_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sinh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sinh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_softmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_softmax_with_dtype_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_softmax_with_dtype_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sort_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sparse_sampled_addmm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_airy_ai_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_bessel_j1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_bessel_y0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_bessel_y1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_chebyshev_polynomial_w_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_erfcx_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_hermite_polynomial_he_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_i1e_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_laguerre_polynomial_l_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_legendre_polynomial_p_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_modified_bessel_i1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_modified_bessel_k1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_ndtr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_ndtri_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_scaled_modified_bessel_k0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_scaled_modified_bessel_k1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_xlog1py_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_split_list_args_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_split_with_sizes_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_squeeze_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_squeeze_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_squeeze_multiple_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_std_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_std_mean_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_std_unbiased_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sub_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sub_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sum_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sum_to_size_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_svd_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_svd_lowrank_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_t_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_t_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_t_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_t_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_take_along_dim_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_take_along_dim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_take_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_tan_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_tanh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_tensordot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_tile_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_to_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_to_sparse_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_trace_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_transpose_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_transpose_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_transpose_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_trapezoid_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_trapezoid_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_trapz_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_triangular_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_triangular_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_trunc_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unbind_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unbind_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unbind_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unflatten_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unfold_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unfold_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_uniform_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unique_consecutive_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unsafe_split_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unsafe_split_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unsqueeze_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_var_mean_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_var_mean_unbiased_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_var_unbiased_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_var_unbiased_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_vdot_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_view_as_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_view_as_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_view_as_real_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_view_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_vsplit_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_vstack_cpu_complex128 2025-08-26T22:48:07.3986233Z 2025-08-26T22:48:08.1824323Z Running test batch 'tests to run' cost 7336.95 seconds 2025-08-26T22:48:08.1847386Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T22:48:08.1847941Z Uploading artifacts took 0.00 seconds 2025-08-26T22:48:08.1848429Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T22:48:08.1848997Z Uploading artifacts took 0.00 seconds 2025-08-26T22:48:08.1849567Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T22:48:08.1850082Z Uploading artifacts took 0.00 seconds 2025-08-26T22:48:09.2608366Z 2025-08-26T22:48:09.2609039Z (base) C:\actions-runner\_work\pytorch\pytorch\test>if ERRORLEVEL 1 goto fail 2025-08-26T22:48:09.2609612Z 2025-08-26T22:48:09.2609809Z (base) C:\actions-runner\_work\pytorch\pytorch\test>popd 2025-08-26T22:48:09.2614240Z 2025-08-26T22:48:09.2614816Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T22:48:09.2636364Z + [[ 1 == 1 ]] 2025-08-26T22:48:09.2636696Z + [[ 3 -gt 1 ]] 2025-08-26T22:48:09.2637169Z + /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/test_libtorch.bat 2025-08-26T22:48:09.2804286Z 2025-08-26T22:48:09.2805092Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\setup_pytorch_env.bat 2025-08-26T22:48:09.2818848Z 2025-08-26T22:48:09.2821598Z C:\actions-runner\_work\pytorch\pytorch>set PATH=C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps 2025-08-26T22:48:09.2824190Z 2025-08-26T22:48:09.2824746Z C:\actions-runner\_work\pytorch\pytorch>set INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-08-26T22:48:09.2825413Z 2025-08-26T22:48:09.2826025Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers\activate_miniconda3.bat 2025-08-26T22:48:09.3668982Z 2025-08-26T22:48:09.3669989Z 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-08-26T22:48:09.3674332Z 2025-08-26T22:48:09.3674927Z C:\actions-runner\_work\pytorch\pytorch>if not exist C:\Jenkins\Miniconda3 (set INSTALL_FRESH_CONDA=1 ) 2025-08-26T22:48:09.3677293Z 2025-08-26T22:48:09.3677613Z C:\actions-runner\_work\pytorch\pytorch>if "" == "1" ( 2025-08-26T22:48:09.3678781Z curl --retry 3 --retry-all-errors -k https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe --output C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\Miniconda3-latest-Windows-x86_64.exe 2025-08-26T22:48:09.3679815Z if errorlevel 1 exit /b 2025-08-26T22:48:09.3680313Z if not errorlevel 0 exit /b 2025-08-26T22:48:09.3681281Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\Miniconda3-latest-Windows-x86_64.exe /InstallationType=JustMe /RegisterPython=0 /S /AddToPath=0 /D=C:\Jenkins\Miniconda3 2025-08-26T22:48:09.3682260Z if errorlevel 1 exit /b 2025-08-26T22:48:09.3682525Z if not errorlevel 0 exit /b 2025-08-26T22:48:09.3682803Z ) 2025-08-26T22:48:09.3682916Z 2025-08-26T22:48:09.3683285Z C:\actions-runner\_work\pytorch\pytorch>call C:\Jenkins\Miniconda3\Scripts\activate.bat C:\Jenkins\Miniconda3 2025-08-26T22:48:10.1244976Z Overwrite C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py (Yes/No/All)? qM(��Z���G�$�G�$P']*r��G�$>�1���$r��G�$�G�$��G�$��G�$�G�$^^1���o]*r�G�$�l]*r��G�$''��94����� |��94���� | 2025-08-26T22:48:10.1246914Z ��1�& |��(���[*rp�G�$r��(���[*r4�1��(�(�p�[*rrrP`�*r`�*r�G�$q��1�x�(�`�[*rC:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py�G�$$p]*r0�G�$r��64�r��(���[*r\�G�$ 2025-08-26T22:48:10.1249063Z �`�(���[*r���64(�(�p�[*rp�\*rrp�\*r�(���[*r�@'���0 2025-08-26T22:48:10.1249708Z x�(���[*r�@'���0 2025-08-26T22:48:10.1250106Z x�(���[*r�@'���0 2025-08-26T22:48:10.1250463Z x�0 2025-08-26T22:48:10.1250774Z x�0 2025-08-26T22:48:10.1251121Z x���(���[*r��G�$O\JkiA? 2025-08-26T22:48:10.1251492Z 2025-08-26T22:48:10.1252565Z ix�(�`�[*rC:\Jenkins\Miniconda3\Lib\site-packages\torch\functional.py��(���[*r �G�$;r-+ 2025-08-26T22:48:10.1254335Z 2025-08-26T22:48:10.1255080Z � x*rx*r0pG]*rN64��x*r) �O]*r�x*r�x*r |x*rpG]*r�0��x*r� x*r#0�U]*r��94�0[*r��94�|��� |'�54�@ 2025-08-26T22:48:10.1257831Z ��1�&$I��U�$'�54��G�$B��G�$��G�$���1�P�G�$=�64���������0��*rP`�*r`�*r$q��1���G�$0��*rP`�*rP.]*r��G�$!��0G��\*r�G�$P.]*r�&]*r��\*r�j]*rJ41���j]*r�j]*r��G�$��G�$��G�$��\*rr�U]*rp]*r��G�$q[*r8�G�$��\*r��\*r��\*r��\*r�G�$�/1���\*r`�G�$�G�$q[*r��\*r�G�$�(��[*r��\*r��\*rq[*r �\*r�)x�(�`�[*rC:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.pyp�[*��[*r2�(���[*r�(�p�[*r0�\*r�[*��[*r�(���[*r�(�p�[*r��\*rr�[*��[*r�(���[*r�(�p�[*r��\*r��[*r�(���[*r�(�p�[*r��\*r��(���[*r��G�$OrA? 2025-08-26T22:48:10.1260615Z 2025-08-26T22:48:10.1262224Z �(�`�[*rC:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\�(���[*r@�G�$BA?x�(�`�[*r[*Dr�(���[*r�(�p�[*r��[*r���x*r�(���[*r�(�p�[*r��[*r[* �G�$�(���[*r �\*r�(�p�[*rp�[*r�$�(���[*r[*r�(�p�[*r��[*r\��� 2025-08-26T22:48:10.2319335Z Overwrite C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py (Yes/No/All)? ********************************************************************** 2025-08-26T22:48:10.2320247Z ** Visual Studio 2022 Developer Command Prompt v17.12.10 2025-08-26T22:48:10.2320773Z ** Copyright (c) 2022 Microsoft Corporation 2025-08-26T22:48:10.2321110Z ********************************************************************** 2025-08-26T22:48:10.7174680Z [vcvarsall.bat] Environment initialized for: 'x64' 2025-08-26T22:48:10.7208532Z 2025-08-26T22:48:10.7209084Z (base) C:\actions-runner\_work\pytorch\pytorch>popd 2025-08-26T22:48:10.7212992Z 2025-08-26T22:48:10.7213471Z (base) C:\actions-runner\_work\pytorch\pytorch>set DISTUTILS_USE_SDK=1 2025-08-26T22:48:10.7215686Z 2025-08-26T22:48:10.7216155Z (base) C:\actions-runner\_work\pytorch\pytorch>if not "0" == "1" goto cuda_build_end 2025-08-26T22:48:10.7218311Z 2025-08-26T22:48:10.7218790Z (base) C:\actions-runner\_work\pytorch\pytorch>set PYTHONPATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build; 2025-08-26T22:48:10.7221242Z 2025-08-26T22:48:10.7221426Z (base) C:\actions-runner\_work\pytorch\pytorch>set 2025-08-26T22:48:10.7391399Z ACTIONS_ID_TOKEN_REQUEST_TOKEN=*** 2025-08-26T22:48:10.7392534Z ACTIONS_ID_TOKEN_REQUEST_URL=https://run-actions-1-azure-eastus.actions.githubusercontent.com/119//idtoken/403c8e96-de86-4002-bfa2-f61cede70191/abe90e36-50e7-5c06-96fd-b73c422c141f?api-version=2.0 2025-08-26T22:48:10.7393722Z ACTIONS_RUNNER_HOOK_JOB_COMPLETED=C:\actions-runner\jobcompleted.ps1 2025-08-26T22:48:10.7394157Z ALLUSERSPROFILE=C:\ProgramData 2025-08-26T22:48:10.7394581Z ALPINE_IMAGE=308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-08-26T22:48:10.7395038Z APPDATA=C:\Users\runneruser\AppData\Roaming 2025-08-26T22:48:10.7395392Z AWS_DEFAULT_REGION=us-east-1 2025-08-26T22:48:10.7395691Z AWS_EXECUTION_ENV=EC2 2025-08-26T22:48:10.7396008Z BUILD_ENVIRONMENT=win-vs2022-cpu-py3 2025-08-26T22:48:10.7396294Z CI=true 2025-08-26T22:48:10.7396537Z CommandPromptType=Native 2025-08-26T22:48:10.7396859Z COMMONPROGRAMFILES=C:\Program Files\Common Files 2025-08-26T22:48:10.7397244Z COMPUTERNAME=EC2AMAZ-TE6SPGV 2025-08-26T22:48:10.7397610Z COMSPEC=C:\Windows\system32\cmd.exe 2025-08-26T22:48:10.7398017Z CONDA_BUILD=C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T22:48:10.7398629Z CONDA_DEFAULT_ENV=base 2025-08-26T22:48:10.7398927Z CONDA_EXE=C:\Jenkins\Miniconda3\Scripts\conda.exe 2025-08-26T22:48:10.7399395Z CONDA_INSTALL=C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T22:48:10.7399783Z CONDA_PARENT_DIR=C:\Jenkins 2025-08-26T22:48:10.7400086Z CONDA_PREFIX=C:\Jenkins\Miniconda3 2025-08-26T22:48:10.7400385Z CONDA_PROMPT_MODIFIER=(base) 2025-08-26T22:48:10.7400777Z CONDA_PYTHON_EXE=C:\Jenkins\Miniconda3\python.exe 2025-08-26T22:48:10.7401499Z CONDA_RUN=C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T22:48:10.7402002Z CONDA_SHLVL=1 2025-08-26T22:48:10.7402253Z CONTINUE_THROUGH_ERROR=True 2025-08-26T22:48:10.7402616Z CUDA_PATH=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.9 2025-08-26T22:48:10.7403153Z CUDA_PATH_V12_6=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-08-26T22:48:10.7403675Z CUDA_PATH_V12_8=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.8 2025-08-26T22:48:10.7404225Z CUDA_PATH_V12_9=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.9 2025-08-26T22:48:10.7404632Z CUDA_VERSION=cpu 2025-08-26T22:48:10.7404923Z ChocolateyInstall=C:\ProgramData\chocolatey 2025-08-26T22:48:10.7405363Z CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files 2025-08-26T22:48:10.7405863Z CommonProgramW6432=C:\Program Files\Common Files 2025-08-26T22:48:10.7406488Z DevEnvDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\ 2025-08-26T22:48:10.7406956Z DISTUTILS_USE_SDK=1 2025-08-26T22:48:10.7407261Z DriverData=C:\Windows\System32\Drivers\DriverData 2025-08-26T22:48:10.7407607Z EC2LAUNCH_TELEMETRY=1 2025-08-26T22:48:10.7408043Z ExtensionSdkDir=C:\Program Files (x86)\Microsoft SDKs\Windows Kits\10\ExtensionSDKs 2025-08-26T22:48:10.7410400Z EXTERNAL_INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um 2025-08-26T22:48:10.7413085Z Framework40Version=v4.0 2025-08-26T22:48:10.7413430Z FrameworkDir=C:\Windows\Microsoft.NET\Framework64\ 2025-08-26T22:48:10.7413868Z FrameworkDir64=C:\Windows\Microsoft.NET\Framework64\ 2025-08-26T22:48:10.7414305Z FrameworkVersion=v4.0.30319 2025-08-26T22:48:10.7414613Z FrameworkVersion64=v4.0.30319 2025-08-26T22:48:10.7414886Z GITHUB_ACTION=test 2025-08-26T22:48:10.7415144Z GITHUB_ACTIONS=true 2025-08-26T22:48:10.7415375Z GITHUB_ACTION_REF= 2025-08-26T22:48:10.7415628Z GITHUB_ACTION_REPOSITORY= 2025-08-26T22:48:10.7415897Z GITHUB_ACTOR=pytorchmergebot 2025-08-26T22:48:10.7416189Z GITHUB_ACTOR_ID=97764156 2025-08-26T22:48:10.7416469Z GITHUB_API_URL=https://api.github.com 2025-08-26T22:48:10.7416800Z GITHUB_BASE_REF= 2025-08-26T22:48:10.7417310Z GITHUB_ENV=C:\actions-runner\_work\_temp\_runner_file_commands\set_env_ec18ff38-328e-48c7-b5ae-7acf64527718 2025-08-26T22:48:10.7417989Z GITHUB_EVENT_NAME=push 2025-08-26T22:48:10.7418410Z GITHUB_EVENT_PATH=C:\actions-runner\_work\_temp\_github_workflow\event.json 2025-08-26T22:48:10.7418902Z GITHUB_GRAPHQL_URL=https://api.github.com/graphql 2025-08-26T22:48:10.7419280Z GITHUB_HEAD_REF= 2025-08-26T22:48:10.7419507Z GITHUB_JOB=test 2025-08-26T22:48:10.7420030Z GITHUB_OUTPUT=C:\actions-runner\_work\_temp\_runner_file_commands\set_output_ec18ff38-328e-48c7-b5ae-7acf64527718 2025-08-26T22:48:10.7420856Z GITHUB_PATH=C:\actions-runner\_work\_temp\_runner_file_commands\add_path_ec18ff38-328e-48c7-b5ae-7acf64527718 2025-08-26T22:48:10.7421439Z GITHUB_REF=refs/heads/main 2025-08-26T22:48:10.7421731Z GITHUB_REF_NAME=main 2025-08-26T22:48:10.7421971Z GITHUB_REF_PROTECTED=true 2025-08-26T22:48:10.7422252Z GITHUB_REF_TYPE=branch 2025-08-26T22:48:10.7422510Z GITHUB_REPOSITORY=pytorch/pytorch 2025-08-26T22:48:10.7422825Z GITHUB_REPOSITORY_ID=65600975 2025-08-26T22:48:10.7423109Z GITHUB_REPOSITORY_OWNER=pytorch 2025-08-26T22:48:10.7423434Z GITHUB_REPOSITORY_OWNER_ID=21003710 2025-08-26T22:48:10.7423725Z GITHUB_RETENTION_DAYS=90 2025-08-26T22:48:10.7424006Z GITHUB_RUN_ATTEMPT=1 2025-08-26T22:48:10.7424248Z GITHUB_RUN_ID=17248463647 2025-08-26T22:48:10.7424667Z GITHUB_RUN_NUMBER=141812 2025-08-26T22:48:10.7425343Z GITHUB_SERVER_URL=https://github.com 2025-08-26T22:48:10.7425681Z GITHUB_SHA=262640fd220236042fbf4443cc163c8838c84c3d 2025-08-26T22:48:10.7426321Z GITHUB_STATE=C:\actions-runner\_work\_temp\_runner_file_commands\save_state_ec18ff38-328e-48c7-b5ae-7acf64527718 2025-08-26T22:48:10.7427199Z GITHUB_STEP_SUMMARY=C:\actions-runner\_work\_temp\_runner_file_commands\step_summary_ec18ff38-328e-48c7-b5ae-7acf64527718 2025-08-26T22:48:10.7427850Z GITHUB_TRIGGERING_ACTOR=pytorchmergebot 2025-08-26T22:48:10.7428160Z GITHUB_WORKFLOW=trunk 2025-08-26T22:48:10.7428590Z GITHUB_WORKFLOW_REF=pytorch/pytorch/.github/workflows/trunk.yml@refs/heads/main 2025-08-26T22:48:10.7429159Z GITHUB_WORKFLOW_SHA=262640fd220236042fbf4443cc163c8838c84c3d 2025-08-26T22:48:10.7429608Z GITHUB_WORKSPACE=C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:48:10.7429999Z GIT_DEFAULT_BRANCH=main 2025-08-26T22:48:10.7430248Z HOME=C:\Users\runneruser 2025-08-26T22:48:10.7432441Z INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um 2025-08-26T22:48:10.7434971Z INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-08-26T22:48:10.7435542Z INSTALL_WINDOWS_SDK=1 2025-08-26T22:48:10.7435807Z is_x64_arch=true 2025-08-26T22:48:10.7436023Z JOB_ID=48947911988 2025-08-26T22:48:10.7436437Z JOB_NAME=win-vs2022-cpu-py3 / test (default, 1, 3, windows.4xlarge.nonephemeral) 2025-08-26T22:48:10.7437836Z LIB=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x64;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64;C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64;C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64 2025-08-26T22:48:10.7440228Z LIBPATH=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x86\store\references;C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.19041.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.19041.0;C:\Windows\Microsoft.NET\Framework64\v4.0.30319 2025-08-26T22:48:10.7441878Z LOCALAPPDATA=C:\Users\runneruser\AppData\Local 2025-08-26T22:48:10.7442337Z NETFXSDKDir=C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\ 2025-08-26T22:48:10.7442714Z NO_TD=False 2025-08-26T22:48:10.7442952Z NO_TEST_TIMEOUT=False 2025-08-26T22:48:10.7443194Z NUMBER_OF_PROCESSORS=16 2025-08-26T22:48:10.7443465Z NUM_TEST_SHARDS=3 2025-08-26T22:48:10.7443703Z OLDPWD=C:/17248463647/build-results 2025-08-26T22:48:10.7444013Z OS=Windows_NT 2025-08-26T22:48:10.7451646Z PATH=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\Extensions\Microsoft\CodeCoverage.Console;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\\x64;C:\Program Files (x86)\Windows Kits\10\bin\\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\\MSBuild\Current\Bin\amd64;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\;C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\Llvm\x64\bin;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\Linux\bin\ConnectionManagerExe 2025-08-26T22:48:10.7459610Z PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC 2025-08-26T22:48:10.7460001Z Platform=x64 2025-08-26T22:48:10.7460234Z PROCESSOR_ARCHITECTURE=AMD64 2025-08-26T22:48:10.7460669Z PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 85 Stepping 7, GenuineIntel 2025-08-26T22:48:10.7461096Z PROCESSOR_LEVEL=6 2025-08-26T22:48:10.7461406Z PROCESSOR_REVISION=5507 2025-08-26T22:48:10.7461695Z PROGRAMFILES=C:\Program Files 2025-08-26T22:48:10.7462022Z PROJECT_DIR=C:/actions-runner/_work/pytorch/pytorch 2025-08-26T22:48:10.7462462Z PROJECT_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:48:10.7462823Z PROMPT=(base) $P$G 2025-08-26T22:48:10.7463118Z PR_NUMBER= 2025-08-26T22:48:10.7463614Z PSModulePath=C:\Windows\system32\WindowsPowerShell\v1.0\Modules;C:\Program Files\WindowsPowerShell\Modules 2025-08-26T22:48:10.7464221Z PUBLIC=C:\Users\Public 2025-08-26T22:48:10.7464613Z *** 2025-08-26T22:48:10.7464977Z PYTHONPATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build; 2025-08-26T22:48:10.7465430Z PYTHON_VERSION=3.9 2025-08-26T22:48:10.7465723Z PYTORCH_FINAL_PACKAGE_DIR=C:/17248463647/build-results/ 2025-08-26T22:48:10.7466173Z PYTORCH_FINAL_PACKAGE_DIR_WIN=C:\17248463647\build-results\ 2025-08-26T22:48:10.7466560Z PYTORCH_TEST_CUDA_MEM_LEAK_CHECK=0 2025-08-26T22:48:10.7466960Z PYTORCH_TEST_RERUN_DISABLED_TESTS=0 2025-08-26T22:48:10.7467268Z ProgramData=C:\ProgramData 2025-08-26T22:48:10.7467587Z ProgramFiles(x86)=C:\Program Files (x86) 2025-08-26T22:48:10.7467912Z ProgramW6432=C:\Program Files 2025-08-26T22:48:10.7468201Z REENABLED_ISSUES= 2025-08-26T22:48:10.7468425Z RUNNER_ARCH=X64 2025-08-26T22:48:10.7468725Z RUNNER_ENVIRONMENT=self-hosted 2025-08-26T22:48:10.7469031Z RUNNER_NAME=i-0d7df880c5a372abc 2025-08-26T22:48:10.7469296Z RUNNER_OS=Windows 2025-08-26T22:48:10.7469590Z RUNNER_TEMP=C:\actions-runner\_work\_temp 2025-08-26T22:48:10.7469945Z RUNNER_TOOL_CACHE=C:\actions-runner\_work\_tool 2025-08-26T22:48:10.7470390Z RUNNER_TRACKING_ID=github_eb07ce28-da78-4b2c-8d97-83c22f82fe30 2025-08-26T22:48:10.7470828Z RUNNER_WORKSPACE=C:\actions-runner\_work\pytorch 2025-08-26T22:48:10.7471382Z SCRIPT_HELPERS_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-08-26T22:48:10.7471904Z SHA1=262640fd220236042fbf4443cc163c8838c84c3d 2025-08-26T22:48:10.7472288Z SHARD_NUMBER=1 2025-08-26T22:48:10.7472522Z SHLVL=2 2025-08-26T22:48:10.7472793Z SSL_CERT_FILE=C:\Jenkins\Miniconda3\Library\ssl\cacert.pem 2025-08-26T22:48:10.7473183Z SYSTEMDRIVE=C: 2025-08-26T22:48:10.7473403Z SYSTEMROOT=C:\Windows 2025-08-26T22:48:10.7473691Z TEMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T22:48:10.7473999Z TERM=xterm-256color 2025-08-26T22:48:10.7474254Z TEST_CONFIG=default 2025-08-26T22:48:10.7474659Z TEST_DIR=C:/actions-runner/_work/pytorch/pytorch/test 2025-08-26T22:48:10.7475110Z TEST_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch\test 2025-08-26T22:48:10.7475663Z TEST_SHOWLOCALS=False 2025-08-26T22:48:10.7475956Z TMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T22:48:10.7476321Z TMPDIR=C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T22:48:10.7476730Z TMP_DIR=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-08-26T22:48:10.7477226Z TMP_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp 2025-08-26T22:48:10.7477625Z TORCH_CUDA_ARCH_LIST=8.6 2025-08-26T22:48:10.7477910Z TORCH_SERIALIZATION_DEBUG=1 2025-08-26T22:48:10.7478179Z UCRTVersion=10.0.19041.0 2025-08-26T22:48:10.7478546Z UniversalCRTSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-08-26T22:48:10.7478940Z UPDATEFILE=update.finished 2025-08-26T22:48:10.7479238Z USERDOMAIN=EC2AMAZ-TE6SPGV 2025-08-26T22:48:10.7479500Z USERNAME=runneruser 2025-08-26T22:48:10.7479775Z USERPROFILE=C:\Users\runneruser 2025-08-26T22:48:10.7480067Z USE_CUDA=0 2025-08-26T22:48:10.7480565Z VCIDEInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\ 2025-08-26T22:48:10.7481272Z VCINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\ 2025-08-26T22:48:10.7481990Z VCToolsInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\ 2025-08-26T22:48:10.7482877Z VCToolsRedistDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Redist\MSVC\14.42.34433\ 2025-08-26T22:48:10.7483481Z VCToolsVersion=14.42.34433 2025-08-26T22:48:10.7483840Z VC_PRODUCT=BuildTools 2025-08-26T22:48:10.7484100Z VC_VERSION= 2025-08-26T22:48:10.7484306Z VC_YEAR=2022 2025-08-26T22:48:10.7484559Z VERBOSE_ARG='SilentlyContinue' 2025-08-26T22:48:10.7484839Z VERBOSE_TEST_LOGS=False 2025-08-26T22:48:10.7485125Z VisualStudioVersion=17.0 2025-08-26T22:48:10.7485582Z VS170COMNTOOLS=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\ 2025-08-26T22:48:10.7486117Z VSCMD_ARG_app_plat=Desktop 2025-08-26T22:48:10.7486381Z VSCMD_ARG_HOST_ARCH=x64 2025-08-26T22:48:10.7486648Z VSCMD_ARG_TGT_ARCH=x64 2025-08-26T22:48:10.7486887Z VSCMD_VER=17.12.10 2025-08-26T22:48:10.7487274Z VSINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\ 2025-08-26T22:48:10.7487733Z VS_VERSION=17.4.1 2025-08-26T22:48:10.7487953Z WINDIR=C:\Windows 2025-08-26T22:48:10.7488579Z WindowsLibPath=C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.19041.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.19041.0 2025-08-26T22:48:10.7489348Z WindowsSdkBinPath=C:\Program Files (x86)\Windows Kits\10\bin\ 2025-08-26T22:48:10.7489839Z WindowsSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-08-26T22:48:10.7490215Z WindowsSDKLibVersion=10.0.19041.0\ 2025-08-26T22:48:10.7490678Z WindowsSdkVerBinPath=C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\ 2025-08-26T22:48:10.7491171Z WindowsSDKVersion=10.0.19041.0\ 2025-08-26T22:48:10.7491709Z WindowsSDK_ExecutablePath_x64=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\ 2025-08-26T22:48:10.7492533Z WindowsSDK_ExecutablePath_x86=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\ 2025-08-26T22:48:10.7493275Z _=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/test_libtorch.bat 2025-08-26T22:48:10.7493866Z __CONDA_OPENSLL_CERT_FILE_SET="1" 2025-08-26T22:48:10.7494187Z __DOTNET_ADD_64BIT=1 2025-08-26T22:48:10.7494470Z __DOTNET_PREFERRED_BITNESS=64 2025-08-26T22:48:10.7497949Z __VSCMD_PREINIT_PATH=C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps 2025-08-26T22:48:10.7501311Z 2025-08-26T22:48:10.7501561Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 exit /b 1 2025-08-26T22:48:10.7501899Z 2025-08-26T22:48:10.7502208Z (base) C:\actions-runner\_work\pytorch\pytorch>set CWD=C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:48:10.7502642Z 2025-08-26T22:48:10.7503089Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\bin 2025-08-26T22:48:10.7503649Z 2025-08-26T22:48:10.7511567Z (base) C:\actions-runner\_work\pytorch\pytorch>set PATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\Extensions\Microsoft\CodeCoverage.Console;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\\x64;C:\Program Files (x86)\Windows Kits\10\bin\\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\\MSBuild\Current\Bin\amd64;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\;C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\Llvm\x64\bin;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\Linux\bin\ConnectionManagerExe 2025-08-26T22:48:10.7519696Z 2025-08-26T22:48:10.7520183Z (base) C:\actions-runner\_work\pytorch\pytorch>set TORCH_CPP_TEST_MNIST_PATH=C:\actions-runner\_work\pytorch\pytorch\test\cpp\api\mnist 2025-08-26T22:48:10.7520803Z 2025-08-26T22:48:10.7521314Z (base) C:\actions-runner\_work\pytorch\pytorch>python tools\download_mnist.py --quiet -d C:\actions-runner\_work\pytorch\pytorch\test\cpp\api\mnist 2025-08-26T22:48:12.4508204Z Downloading http://yann.lecun.com/exdb/mnist/train-images-idx3-ubyte.gz ... 2025-08-26T22:48:12.4508865Z Failed to download (trying next): 2025-08-26T22:48:12.4509209Z HTTP Error 404: Not Found 2025-08-26T22:48:12.4509760Z Downloading https://ossci-datasets.s3.amazonaws.com/mnist/train-images-idx3-ubyte.gz ... 2025-08-26T22:48:12.4510492Z Downloading http://yann.lecun.com/exdb/mnist/train-labels-idx1-ubyte.gz ... 2025-08-26T22:48:12.4510992Z Failed to download (trying next): 2025-08-26T22:48:12.4511306Z HTTP Error 404: Not Found 2025-08-26T22:48:12.4511981Z Downloading https://ossci-datasets.s3.amazonaws.com/mnist/train-labels-idx1-ubyte.gz ... 2025-08-26T22:48:12.4512750Z Downloading http://yann.lecun.com/exdb/mnist/t10k-images-idx3-ubyte.gz ... 2025-08-26T22:48:12.4513208Z Failed to download (trying next): 2025-08-26T22:48:12.4513524Z HTTP Error 404: Not Found 2025-08-26T22:48:12.4513991Z Downloading https://ossci-datasets.s3.amazonaws.com/mnist/t10k-images-idx3-ubyte.gz ... 2025-08-26T22:48:12.4514677Z Downloading http://yann.lecun.com/exdb/mnist/t10k-labels-idx1-ubyte.gz ... 2025-08-26T22:48:12.4515222Z Failed to download (trying next): 2025-08-26T22:48:12.4515598Z HTTP Error 404: Not Found 2025-08-26T22:48:12.4516141Z Downloading https://ossci-datasets.s3.amazonaws.com/mnist/t10k-labels-idx1-ubyte.gz ... 2025-08-26T22:48:12.4627292Z 2025-08-26T22:48:12.4627930Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i cpp/test_api 2025-08-26T22:48:18.5590166Z Found test times from artifacts 2025-08-26T22:48:18.6440704Z Found test times from artifacts 2025-08-26T22:48:18.6461967Z Running all tests 2025-08-26T22:48:18.6467598Z Running parallel tests on 3 processes 2025-08-26T22:48:18.6467996Z Name: tests to run (est. time: 0.0min) 2025-08-26T22:48:18.6468293Z Serial tests (0): 2025-08-26T22:48:18.6468548Z Parallel tests (1): 2025-08-26T22:48:18.6468788Z cpp/test_api 1/1 2025-08-26T22:48:18.6469059Z Name: excluded (est. time: 0.0min) 2025-08-26T22:48:18.6469337Z Serial tests (0): 2025-08-26T22:48:18.6469626Z Parallel tests (0): 2025-08-26T22:48:18.8247554Z Running cpp/test_api 1/1 ... [2025-08-26 22:48:18.824284] 2025-08-26T22:48:18.8248567Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:48:18.8261682Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\bin\\test_api.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-da59dac5280722cf.xml', '-x', '--reruns=2'] ... [2025-08-26 22:48:18.825433] 2025-08-26T22:48:18.8263532Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T22:48:21.6628334Z 2025-08-26T22:48:21.6629196Z cpp/test_api 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.test_api_1.1_bc647be44a4c895c_.log 2025-08-26T22:48:21.6629821Z 2025-08-26T22:48:26.0098068Z Running cpp/test_api 1/1 ... [2025-08-26 22:48:26.009505] 2025-08-26T22:48:26.0098527Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:48:26.0108096Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\bin\\test_api.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-b8dff70ddb62a080.xml', '-x', '--reruns=2'] ... [2025-08-26 22:48:26.010080] 2025-08-26T22:51:24.3419167Z 2025-08-26T22:51:24.3420127Z cpp/test_api 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.test_api_1.1_9d91a617e44c8524_.log 2025-08-26T22:51:24.3438892Z 2025-08-26T22:51:25.2332953Z Running test batch 'tests to run' cost 186.59 seconds 2025-08-26T22:51:25.2345049Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T22:51:25.2345593Z Uploading artifacts took 0.00 seconds 2025-08-26T22:51:25.9542237Z 2025-08-26T22:51:25.9543129Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 exit /b 1 2025-08-26T22:51:25.9543537Z 2025-08-26T22:51:25.9543799Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 exit /b 1 2025-08-26T22:51:25.9544518Z 2025-08-26T22:51:25.9545217Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T22:51:25.9550563Z 2025-08-26T22:51:25.9551396Z (base) C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test>for /R "." %a in (*.exe) do ( 2025-08-26T22:51:25.9552077Z call :libtorch_check "%~na" "%~fa" 2025-08-26T22:51:25.9552387Z if errorlevel 1 goto fail 2025-08-26T22:51:25.9552665Z ) 2025-08-26T22:51:25.9557046Z 2025-08-26T22:51:25.9557451Z (base) C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test>( 2025-08-26T22:51:25.9558283Z call :libtorch_check "apply_utils_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\apply_utils_test.exe" 2025-08-26T22:51:25.9558974Z if errorlevel 1 goto fail 2025-08-26T22:51:25.9559240Z ) 2025-08-26T22:51:25.9567757Z 2025-08-26T22:51:25.9568263Z (base) C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:51:25.9572692Z 2025-08-26T22:51:25.9573386Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T22:51:25.9576031Z 2025-08-26T22:51:25.9576512Z (base) C:\actions-runner\_work\pytorch\pytorch>if "apply_utils_test" == "verify_api_visibility" goto :eof 2025-08-26T22:51:25.9577870Z 2025-08-26T22:51:25.9578526Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\apply_utils_test.exe" 2025-08-26T22:51:25.9579495Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\apply_utils_test.exe" 2025-08-26T22:51:25.9580417Z 2025-08-26T22:51:25.9580857Z (base) C:\actions-runner\_work\pytorch\pytorch>if "apply_utils_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T22:51:25.9581765Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\apply_utils_test.exe" 2025-08-26T22:51:25.9582293Z goto :eof 2025-08-26T22:51:25.9582516Z ) 2025-08-26T22:51:25.9582625Z 2025-08-26T22:51:25.9583000Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/apply_utils_test" 2025-08-26T22:51:32.0433522Z Found test times from artifacts 2025-08-26T22:51:32.1165748Z Found test times from artifacts 2025-08-26T22:51:32.1190347Z Running all tests 2025-08-26T22:51:32.1196196Z Running parallel tests on 3 processes 2025-08-26T22:51:32.1196623Z Name: tests to run (est. time: 0.0min) 2025-08-26T22:51:32.1196985Z Serial tests (0): 2025-08-26T22:51:32.1197225Z Parallel tests (1): 2025-08-26T22:51:32.1197539Z cpp/apply_utils_test 1/1 2025-08-26T22:51:32.1197815Z Name: excluded (est. time: 0.0min) 2025-08-26T22:51:32.1198132Z Serial tests (0): 2025-08-26T22:51:32.1198357Z Parallel tests (0): 2025-08-26T22:51:32.1210523Z Running cpp/apply_utils_test 1/1 ... [2025-08-26 22:51:32.120949] 2025-08-26T22:51:32.1210981Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:51:32.1221019Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\apply_utils_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-b6e3a017780cb00a.xml', '-x', '--reruns=2'] ... [2025-08-26 22:51:32.121567] 2025-08-26T22:51:32.1223010Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T22:51:34.3858940Z 2025-08-26T22:51:34.3859879Z cpp/apply_utils_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.apply_utils_test_1.1_acc03561e47aa8ee_.log 2025-08-26T22:51:34.3860908Z 2025-08-26T22:51:38.7539958Z Running cpp/apply_utils_test 1/1 ... [2025-08-26 22:51:38.753801] 2025-08-26T22:51:38.7540437Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:51:38.7549788Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\apply_utils_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-ae1abf11f02bf684.xml', '-x', '--reruns=2'] ... [2025-08-26 22:51:38.754375] 2025-08-26T22:51:41.9301253Z 2025-08-26T22:51:41.9302294Z cpp/apply_utils_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.apply_utils_test_1.1_4b43c7ed78d21b39_.log 2025-08-26T22:51:41.9302959Z 2025-08-26T22:51:42.7691932Z Running test batch 'tests to run' cost 10.64 seconds 2025-08-26T22:51:42.7698158Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T22:51:42.7698704Z Uploading artifacts took 0.00 seconds 2025-08-26T22:51:43.4608199Z 2025-08-26T22:51:43.4608794Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T22:51:43.4609283Z echo "apply_utils_test" failed with exit code 0 2025-08-26T22:51:43.4609649Z goto fail 2025-08-26T22:51:43.4609850Z ) 2025-08-26T22:51:43.4609965Z 2025-08-26T22:51:43.4610197Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T22:51:43.4610705Z echo "apply_utils_test" failed with exit code 0 2025-08-26T22:51:43.4611066Z goto fail 2025-08-26T22:51:43.4611258Z ) 2025-08-26T22:51:43.4611393Z 2025-08-26T22:51:43.4611558Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T22:51:43.4622868Z 2025-08-26T22:51:43.4623160Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T22:51:43.4623778Z call :libtorch_check "atest" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\atest.exe" 2025-08-26T22:51:43.4624388Z if errorlevel 1 goto fail 2025-08-26T22:51:43.4624788Z ) 2025-08-26T22:51:43.4633692Z 2025-08-26T22:51:43.4634157Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:51:43.4638405Z 2025-08-26T22:51:43.4639250Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T22:51:43.4641905Z 2025-08-26T22:51:43.4642285Z (base) C:\actions-runner\_work\pytorch\pytorch>if "atest" == "verify_api_visibility" goto :eof 2025-08-26T22:51:43.4643718Z 2025-08-26T22:51:43.4644272Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\atest.exe" 2025-08-26T22:51:43.4645156Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\atest.exe" 2025-08-26T22:51:43.4646611Z 2025-08-26T22:51:43.4647007Z (base) C:\actions-runner\_work\pytorch\pytorch>if "atest" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T22:51:43.4647703Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\atest.exe" 2025-08-26T22:51:43.4648180Z goto :eof 2025-08-26T22:51:43.4648405Z ) 2025-08-26T22:51:43.4648510Z 2025-08-26T22:51:43.4648901Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/atest" 2025-08-26T22:51:49.5328942Z Found test times from artifacts 2025-08-26T22:51:49.6020660Z Found test times from artifacts 2025-08-26T22:51:49.6042321Z Running all tests 2025-08-26T22:51:49.6047872Z Running parallel tests on 3 processes 2025-08-26T22:51:49.6048335Z Name: tests to run (est. time: 0.0min) 2025-08-26T22:51:49.6048674Z Serial tests (0): 2025-08-26T22:51:49.6049004Z Parallel tests (1): 2025-08-26T22:51:49.6049240Z cpp/atest 1/1 2025-08-26T22:51:49.6049540Z Name: excluded (est. time: 0.0min) 2025-08-26T22:51:49.6049859Z Serial tests (0): 2025-08-26T22:51:49.6050157Z Parallel tests (0): 2025-08-26T22:51:49.6052155Z Running cpp/atest 1/1 ... [2025-08-26 22:51:49.605120] 2025-08-26T22:51:49.6052603Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:51:49.6063160Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\atest.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-e289dbc4d6c8eb57.xml', '-x', '--reruns=2'] ... [2025-08-26 22:51:49.606124] 2025-08-26T22:51:49.6065186Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T22:51:51.8396085Z 2025-08-26T22:51:51.8397000Z cpp/atest 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.atest_1.1_a0121888ba433dd4_.log 2025-08-26T22:51:51.8397769Z 2025-08-26T22:51:56.2831871Z Running cpp/atest 1/1 ... [2025-08-26 22:51:56.281397] 2025-08-26T22:51:56.2832323Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:51:56.2841081Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\atest.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-b0ef48af6d1c5358.xml', '-x', '--reruns=2'] ... [2025-08-26 22:51:56.281397] 2025-08-26T22:52:00.8376208Z 2025-08-26T22:52:00.8377129Z cpp/atest 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.atest_1.1_514ac68e547a4925_.log 2025-08-26T22:52:00.8377930Z 2025-08-26T22:52:01.6861214Z Running test batch 'tests to run' cost 12.08 seconds 2025-08-26T22:52:01.6867632Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T22:52:01.6868144Z Uploading artifacts took 0.00 seconds 2025-08-26T22:52:02.4111010Z 2025-08-26T22:52:02.4111562Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T22:52:02.4112031Z echo "atest" failed with exit code 0 2025-08-26T22:52:02.4112519Z goto fail 2025-08-26T22:52:02.4112745Z ) 2025-08-26T22:52:02.4112866Z 2025-08-26T22:52:02.4113068Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T22:52:02.4113502Z echo "atest" failed with exit code 0 2025-08-26T22:52:02.4113786Z goto fail 2025-08-26T22:52:02.4113996Z ) 2025-08-26T22:52:02.4114258Z 2025-08-26T22:52:02.4114691Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T22:52:02.4121825Z 2025-08-26T22:52:02.4122283Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T22:52:02.4123088Z call :libtorch_check "backend_fallback_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\backend_fallback_test.exe" 2025-08-26T22:52:02.4123828Z if errorlevel 1 goto fail 2025-08-26T22:52:02.4124083Z ) 2025-08-26T22:52:02.4132811Z 2025-08-26T22:52:02.4133236Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:52:02.4137583Z 2025-08-26T22:52:02.4138109Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T22:52:02.4140869Z 2025-08-26T22:52:02.4141405Z (base) C:\actions-runner\_work\pytorch\pytorch>if "backend_fallback_test" == "verify_api_visibility" goto :eof 2025-08-26T22:52:02.4142381Z 2025-08-26T22:52:02.4142979Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\backend_fallback_test.exe" 2025-08-26T22:52:02.4144018Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\backend_fallback_test.exe" 2025-08-26T22:52:02.4144855Z 2025-08-26T22:52:02.4145297Z (base) C:\actions-runner\_work\pytorch\pytorch>if "backend_fallback_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T22:52:02.4146123Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\backend_fallback_test.exe" 2025-08-26T22:52:02.4146690Z goto :eof 2025-08-26T22:52:02.4146893Z ) 2025-08-26T22:52:02.4147102Z 2025-08-26T22:52:02.4147609Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/backend_fallback_test" 2025-08-26T22:52:08.6359354Z Found test times from artifacts 2025-08-26T22:52:08.7041679Z Found test times from artifacts 2025-08-26T22:52:08.7063653Z Running all tests 2025-08-26T22:52:08.7069296Z Running parallel tests on 3 processes 2025-08-26T22:52:08.7069757Z Name: tests to run (est. time: 0.0min) 2025-08-26T22:52:08.7070050Z Serial tests (0): 2025-08-26T22:52:08.7070306Z Parallel tests (1): 2025-08-26T22:52:08.7070589Z cpp/backend_fallback_test 1/1 2025-08-26T22:52:08.7070878Z Name: excluded (est. time: 0.0min) 2025-08-26T22:52:08.7071175Z Serial tests (0): 2025-08-26T22:52:08.7071403Z Parallel tests (0): 2025-08-26T22:52:08.7072939Z Running cpp/backend_fallback_test 1/1 ... [2025-08-26 22:52:08.706553] 2025-08-26T22:52:08.7073384Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:52:08.7082938Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\backend_fallback_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-1f7ab05eab64ec5d.xml', '-x', '--reruns=2'] ... [2025-08-26 22:52:08.706553] 2025-08-26T22:52:08.7084794Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T22:52:10.9421975Z 2025-08-26T22:52:10.9422947Z cpp/backend_fallback_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.backend_fallback_test_1.1_6f47241d000c5efa_.log 2025-08-26T22:52:10.9423683Z 2025-08-26T22:52:15.3758164Z Running cpp/backend_fallback_test 1/1 ... [2025-08-26 22:52:15.374809] 2025-08-26T22:52:15.3758644Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:52:15.3767692Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\backend_fallback_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-74dcf1315361f406.xml', '-x', '--reruns=2'] ... [2025-08-26 22:52:15.374809] 2025-08-26T22:52:18.1889376Z 2025-08-26T22:52:18.1890344Z cpp/backend_fallback_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.backend_fallback_test_1.1_4eb7339cb04a51a4_.log 2025-08-26T22:52:18.1891090Z 2025-08-26T22:52:19.0397178Z Running test batch 'tests to run' cost 10.33 seconds 2025-08-26T22:52:19.0404054Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T22:52:19.0404595Z Uploading artifacts took 0.00 seconds 2025-08-26T22:52:19.7217725Z 2025-08-26T22:52:19.7218394Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T22:52:19.7218951Z echo "backend_fallback_test" failed with exit code 0 2025-08-26T22:52:19.7219303Z goto fail 2025-08-26T22:52:19.7219523Z ) 2025-08-26T22:52:19.7219642Z 2025-08-26T22:52:19.7219845Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T22:52:19.7220335Z echo "backend_fallback_test" failed with exit code 0 2025-08-26T22:52:19.7220676Z goto fail 2025-08-26T22:52:19.7220897Z ) 2025-08-26T22:52:19.7221023Z 2025-08-26T22:52:19.7221220Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T22:52:19.7228499Z 2025-08-26T22:52:19.7228906Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T22:52:19.7229594Z call :libtorch_check "basic" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\basic.exe" 2025-08-26T22:52:19.7230182Z if errorlevel 1 goto fail 2025-08-26T22:52:19.7230462Z ) 2025-08-26T22:52:19.7239767Z 2025-08-26T22:52:19.7240337Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:52:19.7244944Z 2025-08-26T22:52:19.7245494Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T22:52:19.7248000Z 2025-08-26T22:52:19.7248484Z (base) C:\actions-runner\_work\pytorch\pytorch>if "basic" == "verify_api_visibility" goto :eof 2025-08-26T22:52:19.7249956Z 2025-08-26T22:52:19.7250975Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\basic.exe" 2025-08-26T22:52:19.7251970Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\basic.exe" 2025-08-26T22:52:19.7252497Z 2025-08-26T22:52:19.7252919Z (base) C:\actions-runner\_work\pytorch\pytorch>if "basic" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T22:52:19.7253677Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\basic.exe" 2025-08-26T22:52:19.7254250Z goto :eof 2025-08-26T22:52:19.7254454Z ) 2025-08-26T22:52:19.7254566Z 2025-08-26T22:52:19.7254936Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/basic" 2025-08-26T22:52:25.8631589Z Found test times from artifacts 2025-08-26T22:52:25.9324891Z Found test times from artifacts 2025-08-26T22:52:25.9345886Z Running all tests 2025-08-26T22:52:25.9351067Z Running parallel tests on 3 processes 2025-08-26T22:52:25.9351492Z Name: tests to run (est. time: 0.0min) 2025-08-26T22:52:25.9351824Z Serial tests (0): 2025-08-26T22:52:25.9352070Z Parallel tests (1): 2025-08-26T22:52:25.9352303Z cpp/basic 1/1 2025-08-26T22:52:25.9352552Z Name: excluded (est. time: 0.0min) 2025-08-26T22:52:25.9352822Z Serial tests (0): 2025-08-26T22:52:25.9353071Z Parallel tests (0): 2025-08-26T22:52:25.9354687Z Running cpp/basic 1/1 ... [2025-08-26 22:52:25.929263] 2025-08-26T22:52:25.9355074Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:52:25.9364470Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\basic.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-79e7e52f288bfd88.xml', '-x', '--reruns=2'] ... [2025-08-26 22:52:25.929263] 2025-08-26T22:52:25.9366215Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T22:52:28.2061894Z 2025-08-26T22:52:28.2064454Z cpp/basic 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.basic_1.1_0c9daa16c84e415d_.log 2025-08-26T22:52:28.2065024Z 2025-08-26T22:52:32.6597505Z Running cpp/basic 1/1 ... [2025-08-26 22:52:32.656986] 2025-08-26T22:52:32.6597921Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:52:32.6606604Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\basic.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-d8f88bc03f830814.xml', '-x', '--reruns=2'] ... [2025-08-26 22:52:32.656986] 2025-08-26T22:52:36.2233207Z 2025-08-26T22:52:36.2234047Z cpp/basic 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.basic_1.1_ceebd4c60a6d8b78_.log 2025-08-26T22:52:36.2235067Z 2025-08-26T22:52:37.0712608Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T22:52:37.0713176Z Uploading artifacts took 0.00 seconds 2025-08-26T22:52:37.0720515Z Running test batch 'tests to run' cost 11.14 seconds 2025-08-26T22:52:37.7347694Z 2025-08-26T22:52:37.7348271Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T22:52:37.7348719Z echo "basic" failed with exit code 0 2025-08-26T22:52:37.7349038Z goto fail 2025-08-26T22:52:37.7349271Z ) 2025-08-26T22:52:37.7349418Z 2025-08-26T22:52:37.7349637Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T22:52:37.7350067Z echo "basic" failed with exit code 0 2025-08-26T22:52:37.7350350Z goto fail 2025-08-26T22:52:37.7350568Z ) 2025-08-26T22:52:37.7350675Z 2025-08-26T22:52:37.7350842Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T22:52:37.7358260Z 2025-08-26T22:52:37.7358482Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T22:52:37.7359443Z call :libtorch_check "broadcast_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\broadcast_test.exe" 2025-08-26T22:52:37.7360181Z if errorlevel 1 goto fail 2025-08-26T22:52:37.7360464Z ) 2025-08-26T22:52:37.7369699Z 2025-08-26T22:52:37.7370064Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:52:37.7374251Z 2025-08-26T22:52:37.7375062Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T22:52:37.7377411Z 2025-08-26T22:52:37.7377936Z (base) C:\actions-runner\_work\pytorch\pytorch>if "broadcast_test" == "verify_api_visibility" goto :eof 2025-08-26T22:52:37.7379186Z 2025-08-26T22:52:37.7379771Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\broadcast_test.exe" 2025-08-26T22:52:37.7380721Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\broadcast_test.exe" 2025-08-26T22:52:37.7382048Z 2025-08-26T22:52:37.7382439Z (base) C:\actions-runner\_work\pytorch\pytorch>if "broadcast_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T22:52:37.7383214Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\broadcast_test.exe" 2025-08-26T22:52:37.7383721Z goto :eof 2025-08-26T22:52:37.7383947Z ) 2025-08-26T22:52:37.7384052Z 2025-08-26T22:52:37.7384426Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/broadcast_test" 2025-08-26T22:52:43.8223287Z Found test times from artifacts 2025-08-26T22:52:43.8903210Z Found test times from artifacts 2025-08-26T22:52:43.8924798Z Running all tests 2025-08-26T22:52:43.8929581Z Running parallel tests on 3 processes 2025-08-26T22:52:43.8929959Z Name: tests to run (est. time: 0.0min) 2025-08-26T22:52:43.8930262Z Serial tests (0): 2025-08-26T22:52:43.8930557Z Parallel tests (1): 2025-08-26T22:52:43.8930822Z cpp/broadcast_test 1/1 2025-08-26T22:52:43.8931097Z Name: excluded (est. time: 0.0min) 2025-08-26T22:52:43.8931391Z Serial tests (0): 2025-08-26T22:52:43.8931620Z Parallel tests (0): 2025-08-26T22:52:43.8933344Z Running cpp/broadcast_test 1/1 ... [2025-08-26 22:52:43.891905] 2025-08-26T22:52:43.8942228Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:52:43.8943523Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\broadcast_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-dbdd030ffc8f5399.xml', '-x', '--reruns=2'] ... [2025-08-26 22:52:43.891905] 2025-08-26T22:52:43.8945360Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T22:52:46.2213610Z 2025-08-26T22:52:46.2214758Z cpp/broadcast_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.broadcast_test_1.1_d5fed241996dde2d_.log 2025-08-26T22:52:46.2215616Z 2025-08-26T22:52:50.7051161Z Running cpp/broadcast_test 1/1 ... [2025-08-26 22:52:50.697557] 2025-08-26T22:52:50.7051641Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:52:50.7060330Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\broadcast_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-0d84508c6d092ac5.xml', '-x', '--reruns=2'] ... [2025-08-26 22:52:50.697557] 2025-08-26T22:52:53.3997789Z 2025-08-26T22:52:53.4011417Z cpp/broadcast_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.broadcast_test_1.1_82d288df9d784cf5_.log 2025-08-26T22:52:53.4012399Z 2025-08-26T22:52:54.2553781Z Running test batch 'tests to run' cost 10.35 seconds 2025-08-26T22:52:54.2560802Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T22:52:54.2561425Z Uploading artifacts took 0.00 seconds 2025-08-26T22:52:54.9316645Z 2025-08-26T22:52:54.9317575Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T22:52:54.9318187Z echo "broadcast_test" failed with exit code 0 2025-08-26T22:52:54.9318574Z goto fail 2025-08-26T22:52:54.9318745Z ) 2025-08-26T22:52:54.9318851Z 2025-08-26T22:52:54.9319081Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T22:52:54.9319606Z echo "broadcast_test" failed with exit code 0 2025-08-26T22:52:54.9319980Z goto fail 2025-08-26T22:52:54.9320256Z ) 2025-08-26T22:52:54.9320367Z 2025-08-26T22:52:54.9320574Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T22:52:54.9329212Z 2025-08-26T22:52:54.9329484Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T22:52:54.9330352Z call :libtorch_check "c10_accumulate_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_accumulate_test.exe" 2025-08-26T22:52:54.9331125Z if errorlevel 1 goto fail 2025-08-26T22:52:54.9331434Z ) 2025-08-26T22:52:54.9342096Z 2025-08-26T22:52:54.9342808Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:52:54.9347678Z 2025-08-26T22:52:54.9348205Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T22:52:54.9351437Z 2025-08-26T22:52:54.9352005Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_accumulate_test" == "verify_api_visibility" goto :eof 2025-08-26T22:52:54.9353186Z 2025-08-26T22:52:54.9353856Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_accumulate_test.exe" 2025-08-26T22:52:54.9354996Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_accumulate_test.exe" 2025-08-26T22:52:54.9356257Z 2025-08-26T22:52:54.9356669Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_accumulate_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T22:52:54.9357438Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_accumulate_test.exe" 2025-08-26T22:52:54.9357988Z goto :eof 2025-08-26T22:52:54.9358186Z ) 2025-08-26T22:52:54.9358321Z 2025-08-26T22:52:54.9358705Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_accumulate_test" 2025-08-26T22:53:01.1377633Z Found test times from artifacts 2025-08-26T22:53:01.2054065Z Found test times from artifacts 2025-08-26T22:53:01.2075757Z Running all tests 2025-08-26T22:53:01.2080879Z Running parallel tests on 3 processes 2025-08-26T22:53:01.2081331Z Name: tests to run (est. time: 0.0min) 2025-08-26T22:53:01.2081627Z Serial tests (0): 2025-08-26T22:53:01.2081882Z Parallel tests (1): 2025-08-26T22:53:01.2082167Z cpp/c10_accumulate_test 1/1 2025-08-26T22:53:01.2082444Z Name: excluded (est. time: 0.0min) 2025-08-26T22:53:01.2082741Z Serial tests (0): 2025-08-26T22:53:01.2082945Z Parallel tests (0): 2025-08-26T22:53:01.2084654Z Running cpp/c10_accumulate_test 1/1 ... [2025-08-26 22:53:01.208127] 2025-08-26T22:53:01.2085060Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:53:01.2094366Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_accumulate_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-1462068c4be48881.xml', '-x', '--reruns=2'] ... [2025-08-26 22:53:01.209252] 2025-08-26T22:53:01.2096194Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T22:53:02.7131969Z 2025-08-26T22:53:02.7133345Z cpp/c10_accumulate_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_accumulate_test_1.1_751574000a5aef1f_.log 2025-08-26T22:53:02.7134111Z 2025-08-26T22:53:07.0584523Z Running cpp/c10_accumulate_test 1/1 ... [2025-08-26 22:53:07.052674] 2025-08-26T22:53:07.0585027Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:53:07.0594166Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_accumulate_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-07e3dcfabb1655d6.xml', '-x', '--reruns=2'] ... [2025-08-26 22:53:07.059203] 2025-08-26T22:53:08.5849575Z 2025-08-26T22:53:08.5850507Z cpp/c10_accumulate_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_accumulate_test_1.1_fea382caa824da8a_.log 2025-08-26T22:53:08.5851263Z 2025-08-26T22:53:09.3883094Z Running test batch 'tests to run' cost 8.18 seconds 2025-08-26T22:53:09.3889892Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T22:53:09.3890443Z Uploading artifacts took 0.00 seconds 2025-08-26T22:53:10.0606046Z 2025-08-26T22:53:10.0606675Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T22:53:10.0607172Z echo "c10_accumulate_test" failed with exit code 0 2025-08-26T22:53:10.0607563Z goto fail 2025-08-26T22:53:10.0607764Z ) 2025-08-26T22:53:10.0607900Z 2025-08-26T22:53:10.0608109Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T22:53:10.0608717Z echo "c10_accumulate_test" failed with exit code 0 2025-08-26T22:53:10.0609086Z goto fail 2025-08-26T22:53:10.0609313Z ) 2025-08-26T22:53:10.0609427Z 2025-08-26T22:53:10.0609596Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T22:53:10.0616985Z 2025-08-26T22:53:10.0617202Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T22:53:10.0618051Z call :libtorch_check "c10_AllocatorConfig_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_AllocatorConfig_test.exe" 2025-08-26T22:53:10.0618817Z if errorlevel 1 goto fail 2025-08-26T22:53:10.0619091Z ) 2025-08-26T22:53:10.0628251Z 2025-08-26T22:53:10.0628632Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:53:10.0632807Z 2025-08-26T22:53:10.0633343Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T22:53:10.0635822Z 2025-08-26T22:53:10.0636403Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_AllocatorConfig_test" == "verify_api_visibility" goto :eof 2025-08-26T22:53:10.0637367Z 2025-08-26T22:53:10.0637960Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_AllocatorConfig_test.exe" 2025-08-26T22:53:10.0639103Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_AllocatorConfig_test.exe" 2025-08-26T22:53:10.0640018Z 2025-08-26T22:53:10.0640428Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_AllocatorConfig_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T22:53:10.0641246Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_AllocatorConfig_test.exe" 2025-08-26T22:53:10.0641817Z goto :eof 2025-08-26T22:53:10.0642034Z ) 2025-08-26T22:53:10.0642146Z 2025-08-26T22:53:10.0642560Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_AllocatorConfig_test" 2025-08-26T22:53:16.1389209Z Found test times from artifacts 2025-08-26T22:53:16.2068162Z Found test times from artifacts 2025-08-26T22:53:16.2090827Z Running all tests 2025-08-26T22:53:16.2096024Z Running parallel tests on 3 processes 2025-08-26T22:53:16.2096392Z Name: tests to run (est. time: 0.0min) 2025-08-26T22:53:16.2096927Z Serial tests (0): 2025-08-26T22:53:16.2097172Z Parallel tests (1): 2025-08-26T22:53:16.2097529Z cpp/c10_AllocatorConfig_test 1/1 2025-08-26T22:53:16.2097882Z Name: excluded (est. time: 0.0min) 2025-08-26T22:53:16.2098184Z Serial tests (0): 2025-08-26T22:53:16.2098402Z Parallel tests (0): 2025-08-26T22:53:16.2099904Z Running cpp/c10_AllocatorConfig_test 1/1 ... [2025-08-26 22:53:16.209497] 2025-08-26T22:53:16.2100425Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:53:16.2109997Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_AllocatorConfig_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-652210948f6d23e8.xml', '-x', '--reruns=2'] ... [2025-08-26 22:53:16.210644] 2025-08-26T22:53:16.2111877Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T22:53:17.7175702Z 2025-08-26T22:53:17.7176704Z cpp/c10_AllocatorConfig_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_AllocatorConfig_test_1.1_a26c87d9c6d8e26f_.log 2025-08-26T22:53:17.7177476Z 2025-08-26T22:53:22.1118541Z Running cpp/c10_AllocatorConfig_test 1/1 ... [2025-08-26 22:53:22.111388] 2025-08-26T22:53:22.1119033Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:53:22.1127490Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_AllocatorConfig_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-9d8a4f2b04d7ce9e.xml', '-x', '--reruns=2'] ... [2025-08-26 22:53:22.111388] 2025-08-26T22:53:23.6369435Z 2025-08-26T22:53:23.6370481Z cpp/c10_AllocatorConfig_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_AllocatorConfig_test_1.1_b3d05890aa51e565_.log 2025-08-26T22:53:23.6371204Z 2025-08-26T22:53:24.4917295Z Running test batch 'tests to run' cost 8.27 seconds 2025-08-26T22:53:24.4923473Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T22:53:24.4923986Z Uploading artifacts took 0.00 seconds 2025-08-26T22:53:25.1718530Z 2025-08-26T22:53:25.1719266Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T22:53:25.1719849Z echo "c10_AllocatorConfig_test" failed with exit code 0 2025-08-26T22:53:25.1720262Z goto fail 2025-08-26T22:53:25.1720492Z ) 2025-08-26T22:53:25.1720637Z 2025-08-26T22:53:25.1720871Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T22:53:25.1721332Z echo "c10_AllocatorConfig_test" failed with exit code 0 2025-08-26T22:53:25.1721709Z goto fail 2025-08-26T22:53:25.1721899Z ) 2025-08-26T22:53:25.1722027Z 2025-08-26T22:53:25.1722188Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T22:53:25.1729110Z 2025-08-26T22:53:25.1729610Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T22:53:25.1730392Z call :libtorch_check "c10_ArrayRef_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ArrayRef_test.exe" 2025-08-26T22:53:25.1731079Z if errorlevel 1 goto fail 2025-08-26T22:53:25.1731329Z ) 2025-08-26T22:53:25.1740330Z 2025-08-26T22:53:25.1740770Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:53:25.1745263Z 2025-08-26T22:53:25.1745760Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T22:53:25.1748385Z 2025-08-26T22:53:25.1748918Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_ArrayRef_test" == "verify_api_visibility" goto :eof 2025-08-26T22:53:25.1750338Z 2025-08-26T22:53:25.1751217Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ArrayRef_test.exe" 2025-08-26T22:53:25.1752289Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ArrayRef_test.exe" 2025-08-26T22:53:25.1753138Z 2025-08-26T22:53:25.1753556Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_ArrayRef_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T22:53:25.1754342Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ArrayRef_test.exe" 2025-08-26T22:53:25.1754855Z goto :eof 2025-08-26T22:53:25.1755085Z ) 2025-08-26T22:53:25.1755196Z 2025-08-26T22:53:25.1755589Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_ArrayRef_test" 2025-08-26T22:53:31.3861399Z Found test times from artifacts 2025-08-26T22:53:31.4547325Z Found test times from artifacts 2025-08-26T22:53:31.4571155Z Running all tests 2025-08-26T22:53:31.4577080Z Running parallel tests on 3 processes 2025-08-26T22:53:31.4577547Z Name: tests to run (est. time: 0.0min) 2025-08-26T22:53:31.4577859Z Serial tests (0): 2025-08-26T22:53:31.4578128Z Parallel tests (1): 2025-08-26T22:53:31.4578363Z cpp/c10_ArrayRef_test 1/1 2025-08-26T22:53:31.4578704Z Name: excluded (est. time: 0.0min) 2025-08-26T22:53:31.4579007Z Serial tests (0): 2025-08-26T22:53:31.4579237Z Parallel tests (0): 2025-08-26T22:53:31.4581189Z Running cpp/c10_ArrayRef_test 1/1 ... [2025-08-26 22:53:31.458034] 2025-08-26T22:53:31.4581603Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:53:31.4592062Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_ArrayRef_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-f41e9c5fbe551b0e.xml', '-x', '--reruns=2'] ... [2025-08-26 22:53:31.458606] 2025-08-26T22:53:31.4593887Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T22:53:32.9630502Z 2025-08-26T22:53:32.9631507Z cpp/c10_ArrayRef_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_ArrayRef_test_1.1_caeb854e1f1ccddb_.log 2025-08-26T22:53:32.9633372Z 2025-08-26T22:53:37.3399186Z Running cpp/c10_ArrayRef_test 1/1 ... [2025-08-26 22:53:37.331624] 2025-08-26T22:53:37.3399653Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:53:37.3408412Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_ArrayRef_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-edbe64b0edad8a7c.xml', '-x', '--reruns=2'] ... [2025-08-26 22:53:37.331624] 2025-08-26T22:53:38.8529274Z 2025-08-26T22:53:38.8530184Z cpp/c10_ArrayRef_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_ArrayRef_test_1.1_9d24b887890da789_.log 2025-08-26T22:53:38.8530867Z 2025-08-26T22:53:39.6733952Z Running test batch 'tests to run' cost 8.21 seconds 2025-08-26T22:53:39.6740311Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T22:53:39.6740818Z Uploading artifacts took 0.00 seconds 2025-08-26T22:53:40.3489718Z 2025-08-26T22:53:40.3490649Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T22:53:40.3491199Z echo "c10_ArrayRef_test" failed with exit code 0 2025-08-26T22:53:40.3491581Z goto fail 2025-08-26T22:53:40.3492659Z ) 2025-08-26T22:53:40.3492852Z 2025-08-26T22:53:40.3493091Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T22:53:40.3493566Z echo "c10_ArrayRef_test" failed with exit code 0 2025-08-26T22:53:40.3493899Z goto fail 2025-08-26T22:53:40.3494116Z ) 2025-08-26T22:53:40.3494332Z 2025-08-26T22:53:40.3494557Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T22:53:40.3503120Z 2025-08-26T22:53:40.3503381Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T22:53:40.3504121Z call :libtorch_check "c10_bfloat16_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_bfloat16_test.exe" 2025-08-26T22:53:40.3504796Z if errorlevel 1 goto fail 2025-08-26T22:53:40.3505069Z ) 2025-08-26T22:53:40.3514074Z 2025-08-26T22:53:40.3514646Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:53:40.3518276Z 2025-08-26T22:53:40.3518846Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T22:53:40.3521865Z 2025-08-26T22:53:40.3522335Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_bfloat16_test" == "verify_api_visibility" goto :eof 2025-08-26T22:53:40.3523523Z 2025-08-26T22:53:40.3524370Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_bfloat16_test.exe" 2025-08-26T22:53:40.3526387Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_bfloat16_test.exe" 2025-08-26T22:53:40.3526841Z 2025-08-26T22:53:40.3527155Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_bfloat16_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T22:53:40.3527896Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_bfloat16_test.exe" 2025-08-26T22:53:40.3528382Z goto :eof 2025-08-26T22:53:40.3529181Z ) 2025-08-26T22:53:40.3529276Z 2025-08-26T22:53:40.3529640Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_bfloat16_test" 2025-08-26T22:53:46.3746176Z Found test times from artifacts 2025-08-26T22:53:46.4426934Z Found test times from artifacts 2025-08-26T22:53:46.4450458Z Running all tests 2025-08-26T22:53:46.4467734Z Running parallel tests on 3 processes 2025-08-26T22:53:46.4468130Z Name: tests to run (est. time: 0.0min) 2025-08-26T22:53:46.4468453Z Serial tests (0): 2025-08-26T22:53:46.4468648Z Parallel tests (1): 2025-08-26T22:53:46.4468905Z cpp/c10_bfloat16_test 1/1 2025-08-26T22:53:46.4469146Z Name: excluded (est. time: 0.0min) 2025-08-26T22:53:46.4469399Z Serial tests (0): 2025-08-26T22:53:46.4469588Z Parallel tests (0): 2025-08-26T22:53:46.4471717Z Running cpp/c10_bfloat16_test 1/1 ... [2025-08-26 22:53:46.446865] 2025-08-26T22:53:46.4472109Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:53:46.4482424Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_bfloat16_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-a795b802860c4122.xml', '-x', '--reruns=2'] ... [2025-08-26 22:53:46.448008] 2025-08-26T22:53:46.4484182Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T22:53:47.9500743Z 2025-08-26T22:53:47.9501768Z cpp/c10_bfloat16_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_bfloat16_test_1.1_ca7eb4824dd568fe_.log 2025-08-26T22:53:47.9503608Z 2025-08-26T22:53:52.3948701Z Running cpp/c10_bfloat16_test 1/1 ... [2025-08-26 22:53:52.394188] 2025-08-26T22:53:52.3949130Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:53:52.3958500Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_bfloat16_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-c51e5c13f6dc431d.xml', '-x', '--reruns=2'] ... [2025-08-26 22:53:52.395395] 2025-08-26T22:53:53.9450126Z 2025-08-26T22:53:53.9451188Z cpp/c10_bfloat16_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_bfloat16_test_1.1_6527cc4fffe49a5f_.log 2025-08-26T22:53:53.9452321Z 2025-08-26T22:53:54.7851809Z Running test batch 'tests to run' cost 8.33 seconds 2025-08-26T22:53:54.7858161Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T22:53:54.7858634Z Uploading artifacts took 0.00 seconds 2025-08-26T22:53:55.4590909Z 2025-08-26T22:53:55.4591455Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T22:53:55.4591890Z echo "c10_bfloat16_test" failed with exit code 0 2025-08-26T22:53:55.4592216Z goto fail 2025-08-26T22:53:55.4592376Z ) 2025-08-26T22:53:55.4592480Z 2025-08-26T22:53:55.4592666Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T22:53:55.4593072Z echo "c10_bfloat16_test" failed with exit code 0 2025-08-26T22:53:55.4593370Z goto fail 2025-08-26T22:53:55.4593543Z ) 2025-08-26T22:53:55.4593731Z 2025-08-26T22:53:55.4593912Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T22:53:55.4601871Z 2025-08-26T22:53:55.4602074Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T22:53:55.4602727Z call :libtorch_check "c10_Bitset_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Bitset_test.exe" 2025-08-26T22:53:55.4603341Z if errorlevel 1 goto fail 2025-08-26T22:53:55.4603561Z ) 2025-08-26T22:53:55.4613710Z 2025-08-26T22:53:55.4614242Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:53:55.4618010Z 2025-08-26T22:53:55.4618627Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T22:53:55.4621150Z 2025-08-26T22:53:55.4621571Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Bitset_test" == "verify_api_visibility" goto :eof 2025-08-26T22:53:55.4622619Z 2025-08-26T22:53:55.4623163Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Bitset_test.exe" 2025-08-26T22:53:55.4624086Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Bitset_test.exe" 2025-08-26T22:53:55.4625279Z 2025-08-26T22:53:55.4625674Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Bitset_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T22:53:55.4626388Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Bitset_test.exe" 2025-08-26T22:53:55.4626882Z goto :eof 2025-08-26T22:53:55.4627055Z ) 2025-08-26T22:53:55.4627250Z 2025-08-26T22:53:55.4627771Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_Bitset_test" 2025-08-26T22:54:01.5923126Z Found test times from artifacts 2025-08-26T22:54:01.6601815Z Found test times from artifacts 2025-08-26T22:54:01.6624640Z Running all tests 2025-08-26T22:54:01.6629905Z Running parallel tests on 3 processes 2025-08-26T22:54:01.6630318Z Name: tests to run (est. time: 0.0min) 2025-08-26T22:54:01.6630607Z Serial tests (0): 2025-08-26T22:54:01.6630813Z Parallel tests (1): 2025-08-26T22:54:01.6631038Z cpp/c10_Bitset_test 1/1 2025-08-26T22:54:01.6631284Z Name: excluded (est. time: 0.0min) 2025-08-26T22:54:01.6631546Z Serial tests (0): 2025-08-26T22:54:01.6631744Z Parallel tests (0): 2025-08-26T22:54:01.6633646Z Running cpp/c10_Bitset_test 1/1 ... [2025-08-26 22:54:01.662142] 2025-08-26T22:54:01.6634013Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:54:01.6644230Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_Bitset_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-661a7b89aa548a25.xml', '-x', '--reruns=2'] ... [2025-08-26 22:54:01.663746] 2025-08-26T22:54:01.6646200Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T22:54:03.1779748Z 2025-08-26T22:54:03.1780866Z cpp/c10_Bitset_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_Bitset_test_1.1_53dfca30e7ffbb52_.log 2025-08-26T22:54:03.1781513Z 2025-08-26T22:54:07.6436204Z Running cpp/c10_Bitset_test 1/1 ... [2025-08-26 22:54:07.643377] 2025-08-26T22:54:07.6436617Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:54:07.6445927Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_Bitset_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-3b72354223a2eb06.xml', '-x', '--reruns=2'] ... [2025-08-26 22:54:07.643964] 2025-08-26T22:54:09.1842298Z 2025-08-26T22:54:09.1843424Z cpp/c10_Bitset_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_Bitset_test_1.1_475c975eb820dbd4_.log 2025-08-26T22:54:09.1844097Z 2025-08-26T22:54:10.0371380Z Running test batch 'tests to run' cost 8.37 seconds 2025-08-26T22:54:10.0377937Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T22:54:10.0378450Z Uploading artifacts took 0.00 seconds 2025-08-26T22:54:10.8051318Z 2025-08-26T22:54:10.8051974Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T22:54:10.8052452Z echo "c10_Bitset_test" failed with exit code 0 2025-08-26T22:54:10.8052808Z goto fail 2025-08-26T22:54:10.8053158Z ) 2025-08-26T22:54:10.8053295Z 2025-08-26T22:54:10.8053499Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T22:54:10.8053943Z echo "c10_Bitset_test" failed with exit code 0 2025-08-26T22:54:10.8054284Z goto fail 2025-08-26T22:54:10.8054497Z ) 2025-08-26T22:54:10.8054604Z 2025-08-26T22:54:10.8054767Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T22:54:10.8062031Z 2025-08-26T22:54:10.8062567Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T22:54:10.8063342Z call :libtorch_check "c10_bit_cast_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_bit_cast_test.exe" 2025-08-26T22:54:10.8063999Z if errorlevel 1 goto fail 2025-08-26T22:54:10.8064267Z ) 2025-08-26T22:54:10.8072652Z 2025-08-26T22:54:10.8073116Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:54:10.8076774Z 2025-08-26T22:54:10.8077370Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T22:54:10.8079753Z 2025-08-26T22:54:10.8080275Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_bit_cast_test" == "verify_api_visibility" goto :eof 2025-08-26T22:54:10.8081508Z 2025-08-26T22:54:10.8082113Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_bit_cast_test.exe" 2025-08-26T22:54:10.8083109Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_bit_cast_test.exe" 2025-08-26T22:54:10.8084498Z 2025-08-26T22:54:10.8084986Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_bit_cast_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T22:54:10.8085737Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_bit_cast_test.exe" 2025-08-26T22:54:10.8086278Z goto :eof 2025-08-26T22:54:10.8086485Z ) 2025-08-26T22:54:10.8086621Z 2025-08-26T22:54:10.8086995Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_bit_cast_test" 2025-08-26T22:54:16.8403306Z Found test times from artifacts 2025-08-26T22:54:16.9088434Z Found test times from artifacts 2025-08-26T22:54:16.9110064Z Running all tests 2025-08-26T22:54:16.9115495Z Running parallel tests on 3 processes 2025-08-26T22:54:16.9116135Z Name: tests to run (est. time: 0.0min) 2025-08-26T22:54:16.9116454Z Serial tests (0): 2025-08-26T22:54:16.9116758Z Parallel tests (1): 2025-08-26T22:54:16.9117031Z cpp/c10_bit_cast_test 1/1 2025-08-26T22:54:16.9117315Z Name: excluded (est. time: 0.0min) 2025-08-26T22:54:16.9117621Z Serial tests (0): 2025-08-26T22:54:16.9117841Z Parallel tests (0): 2025-08-26T22:54:16.9119283Z Running cpp/c10_bit_cast_test 1/1 ... [2025-08-26 22:54:16.906282] 2025-08-26T22:54:16.9119715Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:54:16.9129049Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_bit_cast_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-13432e6d9e72635e.xml', '-x', '--reruns=2'] ... [2025-08-26 22:54:16.906282] 2025-08-26T22:54:16.9130861Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T22:54:18.4407957Z 2025-08-26T22:54:18.4409160Z cpp/c10_bit_cast_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_bit_cast_test_1.1_70abb8b636d943e9_.log 2025-08-26T22:54:18.4409813Z 2025-08-26T22:54:22.8156111Z Running cpp/c10_bit_cast_test 1/1 ... [2025-08-26 22:54:22.808571] 2025-08-26T22:54:22.8156576Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:54:22.8165117Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_bit_cast_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-7ab2ca33b35566e5.xml', '-x', '--reruns=2'] ... [2025-08-26 22:54:22.808571] 2025-08-26T22:54:24.3649366Z 2025-08-26T22:54:24.3650396Z cpp/c10_bit_cast_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_bit_cast_test_1.1_708c74451c3e2b7e_.log 2025-08-26T22:54:24.3651047Z 2025-08-26T22:54:25.1965505Z Running test batch 'tests to run' cost 8.29 seconds 2025-08-26T22:54:25.1971695Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T22:54:25.1972188Z Uploading artifacts took 0.00 seconds 2025-08-26T22:54:25.8676931Z 2025-08-26T22:54:25.8677619Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T22:54:25.8678101Z echo "c10_bit_cast_test" failed with exit code 0 2025-08-26T22:54:25.8678469Z goto fail 2025-08-26T22:54:25.8678695Z ) 2025-08-26T22:54:25.8678834Z 2025-08-26T22:54:25.8679038Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T22:54:25.8679506Z echo "c10_bit_cast_test" failed with exit code 0 2025-08-26T22:54:25.8679833Z goto fail 2025-08-26T22:54:25.8680052Z ) 2025-08-26T22:54:25.8680156Z 2025-08-26T22:54:25.8680323Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T22:54:25.8687878Z 2025-08-26T22:54:25.8688160Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T22:54:25.8689097Z call :libtorch_check "c10_CompileTimeFunctionPointer_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_CompileTimeFunctionPointer_test.exe" 2025-08-26T22:54:25.8689936Z if errorlevel 1 goto fail 2025-08-26T22:54:25.8690214Z ) 2025-08-26T22:54:25.8698830Z 2025-08-26T22:54:25.8699206Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:54:25.8703840Z 2025-08-26T22:54:25.8704366Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T22:54:25.8706913Z 2025-08-26T22:54:25.8707758Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_CompileTimeFunctionPointer_test" == "verify_api_visibility" goto :eof 2025-08-26T22:54:25.8708650Z 2025-08-26T22:54:25.8709575Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_CompileTimeFunctionPointer_test.exe" 2025-08-26T22:54:25.8710775Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_CompileTimeFunctionPointer_test.exe" 2025-08-26T22:54:25.8711387Z 2025-08-26T22:54:25.8711887Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_CompileTimeFunctionPointer_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T22:54:25.8712838Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_CompileTimeFunctionPointer_test.exe" 2025-08-26T22:54:25.8713438Z goto :eof 2025-08-26T22:54:25.8713660Z ) 2025-08-26T22:54:25.8713768Z 2025-08-26T22:54:25.8714248Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_CompileTimeFunctionPointer_test" 2025-08-26T22:54:31.9087292Z Found test times from artifacts 2025-08-26T22:54:31.9772429Z Found test times from artifacts 2025-08-26T22:54:31.9795512Z Running all tests 2025-08-26T22:54:31.9801167Z Running parallel tests on 3 processes 2025-08-26T22:54:31.9801581Z Name: tests to run (est. time: 0.0min) 2025-08-26T22:54:31.9801919Z Serial tests (0): 2025-08-26T22:54:31.9802189Z Parallel tests (1): 2025-08-26T22:54:31.9802475Z cpp/c10_CompileTimeFunctionPointer_test 1/1 2025-08-26T22:54:31.9802853Z Name: excluded (est. time: 0.0min) 2025-08-26T22:54:31.9803131Z Serial tests (0): 2025-08-26T22:54:31.9803380Z Parallel tests (0): 2025-08-26T22:54:31.9805257Z Running cpp/c10_CompileTimeFunctionPointer_test 1/1 ... [2025-08-26 22:54:31.979946] 2025-08-26T22:54:31.9805949Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:54:31.9815565Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_CompileTimeFunctionPointer_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-faae811f26679c8d.xml', '-x', '--reruns=2'] ... [2025-08-26 22:54:31.981094] 2025-08-26T22:54:31.9817450Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T22:54:33.4596589Z 2025-08-26T22:54:33.4597630Z cpp/c10_CompileTimeFunctionPointer_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_CompileTimeFunctionPointer_test_1.1_c81fec4511850dfd_.log 2025-08-26T22:54:33.4598476Z 2025-08-26T22:54:37.7895213Z Running cpp/c10_CompileTimeFunctionPointer_test 1/1 ... [2025-08-26 22:54:37.789207] 2025-08-26T22:54:37.7895765Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:54:37.7904711Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_CompileTimeFunctionPointer_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-d766ccb1689014c8.xml', '-x', '--reruns=2'] ... [2025-08-26 22:54:37.789806] 2025-08-26T22:54:39.3095495Z 2025-08-26T22:54:39.3096728Z cpp/c10_CompileTimeFunctionPointer_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_CompileTimeFunctionPointer_test_1.1_45052c7eb1095810_.log 2025-08-26T22:54:39.3098604Z 2025-08-26T22:54:40.1578826Z Running test batch 'tests to run' cost 8.18 seconds 2025-08-26T22:54:40.1591384Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T22:54:40.1591905Z Uploading artifacts took 0.00 seconds 2025-08-26T22:54:40.9453365Z 2025-08-26T22:54:40.9454162Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T22:54:40.9454743Z echo "c10_CompileTimeFunctionPointer_test" failed with exit code 0 2025-08-26T22:54:40.9455138Z goto fail 2025-08-26T22:54:40.9455327Z ) 2025-08-26T22:54:40.9455431Z 2025-08-26T22:54:40.9455843Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T22:54:40.9456366Z echo "c10_CompileTimeFunctionPointer_test" failed with exit code 0 2025-08-26T22:54:40.9456820Z goto fail 2025-08-26T22:54:40.9457005Z ) 2025-08-26T22:54:40.9457102Z 2025-08-26T22:54:40.9457257Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T22:54:40.9464007Z 2025-08-26T22:54:40.9464257Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T22:54:40.9464984Z call :libtorch_check "c10_complex_math_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_complex_math_test.exe" 2025-08-26T22:54:40.9465671Z if errorlevel 1 goto fail 2025-08-26T22:54:40.9465910Z ) 2025-08-26T22:54:40.9475072Z 2025-08-26T22:54:40.9475445Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:54:40.9479400Z 2025-08-26T22:54:40.9479905Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T22:54:40.9482305Z 2025-08-26T22:54:40.9482825Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_complex_math_test" == "verify_api_visibility" goto :eof 2025-08-26T22:54:40.9483822Z 2025-08-26T22:54:40.9484480Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_complex_math_test.exe" 2025-08-26T22:54:40.9485446Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_complex_math_test.exe" 2025-08-26T22:54:40.9486294Z 2025-08-26T22:54:40.9486710Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_complex_math_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T22:54:40.9487481Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_complex_math_test.exe" 2025-08-26T22:54:40.9487988Z goto :eof 2025-08-26T22:54:40.9488176Z ) 2025-08-26T22:54:40.9488278Z 2025-08-26T22:54:40.9488681Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_complex_math_test" 2025-08-26T22:54:47.0195707Z Found test times from artifacts 2025-08-26T22:54:47.0877433Z Found test times from artifacts 2025-08-26T22:54:47.0899807Z Running all tests 2025-08-26T22:54:47.0905630Z Running parallel tests on 3 processes 2025-08-26T22:54:47.0905988Z Name: tests to run (est. time: 0.0min) 2025-08-26T22:54:47.0906271Z Serial tests (0): 2025-08-26T22:54:47.0906505Z Parallel tests (1): 2025-08-26T22:54:47.0906757Z cpp/c10_complex_math_test 1/1 2025-08-26T22:54:47.0907047Z Name: excluded (est. time: 0.0min) 2025-08-26T22:54:47.0907309Z Serial tests (0): 2025-08-26T22:54:47.0907515Z Parallel tests (0): 2025-08-26T22:54:47.0909453Z Running cpp/c10_complex_math_test 1/1 ... [2025-08-26 22:54:47.090420] 2025-08-26T22:54:47.0909909Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:54:47.0919763Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_complex_math_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-7023bb72cf4b638c.xml', '-x', '--reruns=2'] ... [2025-08-26 22:54:47.091564] 2025-08-26T22:54:47.0921669Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T22:54:48.5961301Z 2025-08-26T22:54:48.5963730Z cpp/c10_complex_math_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_complex_math_test_1.1_887d65d860c74265_.log 2025-08-26T22:54:48.5964435Z 2025-08-26T22:54:52.9784429Z Running cpp/c10_complex_math_test 1/1 ... [2025-08-26 22:54:52.978118] 2025-08-26T22:54:52.9784875Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:54:52.9794118Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_complex_math_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-16c12d1faa0a7dfc.xml', '-x', '--reruns=2'] ... [2025-08-26 22:54:52.978701] 2025-08-26T22:54:54.5499225Z 2025-08-26T22:54:54.5500521Z cpp/c10_complex_math_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_complex_math_test_1.1_a2af2c5ec2cb385d_.log 2025-08-26T22:54:54.5501262Z 2025-08-26T22:54:55.4332861Z Running test batch 'tests to run' cost 8.34 seconds 2025-08-26T22:54:55.4339244Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T22:54:55.4339711Z Uploading artifacts took 0.00 seconds 2025-08-26T22:54:56.1247198Z 2025-08-26T22:54:56.1247953Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T22:54:56.1248423Z echo "c10_complex_math_test" failed with exit code 0 2025-08-26T22:54:56.1248760Z goto fail 2025-08-26T22:54:56.1248950Z ) 2025-08-26T22:54:56.1249095Z 2025-08-26T22:54:56.1249290Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T22:54:56.1249753Z echo "c10_complex_math_test" failed with exit code 0 2025-08-26T22:54:56.1250072Z goto fail 2025-08-26T22:54:56.1250255Z ) 2025-08-26T22:54:56.1250354Z 2025-08-26T22:54:56.1250509Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T22:54:56.1256356Z 2025-08-26T22:54:56.1256600Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T22:54:56.1257294Z call :libtorch_check "c10_complex_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_complex_test.exe" 2025-08-26T22:54:56.1258091Z if errorlevel 1 goto fail 2025-08-26T22:54:56.1258328Z ) 2025-08-26T22:54:56.1267240Z 2025-08-26T22:54:56.1267576Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:54:56.1271427Z 2025-08-26T22:54:56.1271916Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T22:54:56.1274501Z 2025-08-26T22:54:56.1275176Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_complex_test" == "verify_api_visibility" goto :eof 2025-08-26T22:54:56.1276691Z 2025-08-26T22:54:56.1277241Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_complex_test.exe" 2025-08-26T22:54:56.1278195Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_complex_test.exe" 2025-08-26T22:54:56.1279302Z 2025-08-26T22:54:56.1279736Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_complex_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T22:54:56.1280484Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_complex_test.exe" 2025-08-26T22:54:56.1280978Z goto :eof 2025-08-26T22:54:56.1281169Z ) 2025-08-26T22:54:56.1281266Z 2025-08-26T22:54:56.1281644Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_complex_test" 2025-08-26T22:55:02.2559647Z Found test times from artifacts 2025-08-26T22:55:02.3239441Z Found test times from artifacts 2025-08-26T22:55:02.3261464Z Running all tests 2025-08-26T22:55:02.3267230Z Running parallel tests on 3 processes 2025-08-26T22:55:02.3267641Z Name: tests to run (est. time: 0.0min) 2025-08-26T22:55:02.3267909Z Serial tests (0): 2025-08-26T22:55:02.3268148Z Parallel tests (1): 2025-08-26T22:55:02.3268405Z cpp/c10_complex_test 1/1 2025-08-26T22:55:02.3268653Z Name: excluded (est. time: 0.0min) 2025-08-26T22:55:02.3268918Z Serial tests (0): 2025-08-26T22:55:02.3269121Z Parallel tests (0): 2025-08-26T22:55:02.3270974Z Running cpp/c10_complex_test 1/1 ... [2025-08-26 22:55:02.313218] 2025-08-26T22:55:02.3271362Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:55:02.3281740Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_complex_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-c688b2e20e03848f.xml', '-x', '--reruns=2'] ... [2025-08-26 22:55:02.313218] 2025-08-26T22:55:02.3283711Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T22:55:03.8749921Z 2025-08-26T22:55:03.8750776Z cpp/c10_complex_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_complex_test_1.1_a10bc5e0935f31f4_.log 2025-08-26T22:55:03.8751438Z 2025-08-26T22:55:08.3290432Z Running cpp/c10_complex_test 1/1 ... [2025-08-26 22:55:08.328860] 2025-08-26T22:55:08.3290861Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:55:08.3300670Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_complex_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-e554ad7bd9983598.xml', '-x', '--reruns=2'] ... [2025-08-26 22:55:08.329437] 2025-08-26T22:55:09.8350301Z 2025-08-26T22:55:09.8351377Z cpp/c10_complex_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_complex_test_1.1_44ffbe234dcd8b14_.log 2025-08-26T22:55:09.8352031Z 2025-08-26T22:55:10.6462608Z Running test batch 'tests to run' cost 8.33 seconds 2025-08-26T22:55:10.6469205Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T22:55:10.6469705Z Uploading artifacts took 0.00 seconds 2025-08-26T22:55:11.3804140Z 2025-08-26T22:55:11.3804664Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T22:55:11.3805131Z echo "c10_complex_test" failed with exit code 0 2025-08-26T22:55:11.3805449Z goto fail 2025-08-26T22:55:11.3805640Z ) 2025-08-26T22:55:11.3805756Z 2025-08-26T22:55:11.3806395Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T22:55:11.3806848Z echo "c10_complex_test" failed with exit code 0 2025-08-26T22:55:11.3807166Z goto fail 2025-08-26T22:55:11.3807338Z ) 2025-08-26T22:55:11.3807563Z 2025-08-26T22:55:11.3807780Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T22:55:11.3813865Z 2025-08-26T22:55:11.3814121Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T22:55:11.3814838Z call :libtorch_check "c10_ConstexprCrc_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ConstexprCrc_test.exe" 2025-08-26T22:55:11.3815546Z if errorlevel 1 goto fail 2025-08-26T22:55:11.3815775Z ) 2025-08-26T22:55:11.3824292Z 2025-08-26T22:55:11.3824792Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:55:11.3828453Z 2025-08-26T22:55:11.3828992Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T22:55:11.3831517Z 2025-08-26T22:55:11.3831950Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_ConstexprCrc_test" == "verify_api_visibility" goto :eof 2025-08-26T22:55:11.3833202Z 2025-08-26T22:55:11.3833799Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ConstexprCrc_test.exe" 2025-08-26T22:55:11.3834778Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ConstexprCrc_test.exe" 2025-08-26T22:55:11.3835377Z 2025-08-26T22:55:11.3835777Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_ConstexprCrc_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T22:55:11.3836554Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ConstexprCrc_test.exe" 2025-08-26T22:55:11.3837066Z goto :eof 2025-08-26T22:55:11.3837256Z ) 2025-08-26T22:55:11.3837352Z 2025-08-26T22:55:11.3837915Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_ConstexprCrc_test" 2025-08-26T22:55:17.4837226Z Found test times from artifacts 2025-08-26T22:55:17.5652342Z Found test times from artifacts 2025-08-26T22:55:17.5679683Z Running all tests 2025-08-26T22:55:17.5687740Z Running parallel tests on 3 processes 2025-08-26T22:55:17.5688187Z Name: tests to run (est. time: 0.0min) 2025-08-26T22:55:17.5688458Z Serial tests (0): 2025-08-26T22:55:17.5688679Z Parallel tests (1): 2025-08-26T22:55:17.5688934Z cpp/c10_ConstexprCrc_test 1/1 2025-08-26T22:55:17.5689221Z Name: excluded (est. time: 0.0min) 2025-08-26T22:55:17.5689489Z Serial tests (0): 2025-08-26T22:55:17.5689692Z Parallel tests (0): 2025-08-26T22:55:17.5691607Z Running cpp/c10_ConstexprCrc_test 1/1 ... [2025-08-26 22:55:17.568698] 2025-08-26T22:55:17.5692021Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:55:17.5704245Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_ConstexprCrc_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-3b6d6c1d8e994c44.xml', '-x', '--reruns=2'] ... [2025-08-26 22:55:17.569884] 2025-08-26T22:55:17.5706244Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T22:55:19.0878883Z 2025-08-26T22:55:19.0879783Z cpp/c10_ConstexprCrc_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_ConstexprCrc_test_1.1_eb637375217b383f_.log 2025-08-26T22:55:19.0880665Z 2025-08-26T22:55:23.5830540Z Running cpp/c10_ConstexprCrc_test 1/1 ... [2025-08-26 22:55:23.582659] 2025-08-26T22:55:23.5830994Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:55:23.5855117Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_ConstexprCrc_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-52766ff8d2bf26a2.xml', '-x', '--reruns=2'] ... [2025-08-26 22:55:23.585130] 2025-08-26T22:55:25.0673067Z 2025-08-26T22:55:25.0673993Z cpp/c10_ConstexprCrc_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_ConstexprCrc_test_1.1_cbf97fa923488883_.log 2025-08-26T22:55:25.0674695Z 2025-08-26T22:55:25.9223660Z Running test batch 'tests to run' cost 8.34 seconds 2025-08-26T22:55:25.9230471Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T22:55:25.9230970Z Uploading artifacts took 0.00 seconds 2025-08-26T22:55:26.6183610Z 2025-08-26T22:55:26.6184211Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T22:55:26.6184708Z echo "c10_ConstexprCrc_test" failed with exit code 0 2025-08-26T22:55:26.6185076Z goto fail 2025-08-26T22:55:26.6185308Z ) 2025-08-26T22:55:26.6185455Z 2025-08-26T22:55:26.6185649Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T22:55:26.6186104Z echo "c10_ConstexprCrc_test" failed with exit code 0 2025-08-26T22:55:26.6186451Z goto fail 2025-08-26T22:55:26.6186624Z ) 2025-08-26T22:55:26.6186757Z 2025-08-26T22:55:26.6187258Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T22:55:26.6194052Z 2025-08-26T22:55:26.6194336Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T22:55:26.6194997Z call :libtorch_check "c10_cow_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_cow_test.exe" 2025-08-26T22:55:26.6195591Z if errorlevel 1 goto fail 2025-08-26T22:55:26.6195827Z ) 2025-08-26T22:55:26.6204813Z 2025-08-26T22:55:26.6205161Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:55:26.6209105Z 2025-08-26T22:55:26.6209834Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T22:55:26.6212096Z 2025-08-26T22:55:26.6212502Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_cow_test" == "verify_api_visibility" goto :eof 2025-08-26T22:55:26.6213788Z 2025-08-26T22:55:26.6214601Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_cow_test.exe" 2025-08-26T22:55:26.6215551Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_cow_test.exe" 2025-08-26T22:55:26.6216143Z 2025-08-26T22:55:26.6216588Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_cow_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T22:55:26.6217291Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_cow_test.exe" 2025-08-26T22:55:26.6217785Z goto :eof 2025-08-26T22:55:26.6217958Z ) 2025-08-26T22:55:26.6218067Z 2025-08-26T22:55:26.6218432Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_cow_test" 2025-08-26T22:55:32.6705560Z Found test times from artifacts 2025-08-26T22:55:32.7389026Z Found test times from artifacts 2025-08-26T22:55:32.7413797Z Running all tests 2025-08-26T22:55:32.7418863Z Running parallel tests on 3 processes 2025-08-26T22:55:32.7419267Z Name: tests to run (est. time: 0.0min) 2025-08-26T22:55:32.7419567Z Serial tests (0): 2025-08-26T22:55:32.7419783Z Parallel tests (1): 2025-08-26T22:55:32.7420184Z cpp/c10_cow_test 1/1 2025-08-26T22:55:32.7420424Z Name: excluded (est. time: 0.0min) 2025-08-26T22:55:32.7420700Z Serial tests (0): 2025-08-26T22:55:32.7420904Z Parallel tests (0): 2025-08-26T22:55:32.7422548Z Running cpp/c10_cow_test 1/1 ... [2025-08-26 22:55:32.741902] 2025-08-26T22:55:32.7422918Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:55:32.7433541Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_cow_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-3d1dcb0203d6edb5.xml', '-x', '--reruns=2'] ... [2025-08-26 22:55:32.743112] 2025-08-26T22:55:32.7435303Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T22:55:34.2573162Z 2025-08-26T22:55:34.2573970Z cpp/c10_cow_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_cow_test_1.1_4ac49db1f10cf121_.log 2025-08-26T22:55:34.2574653Z 2025-08-26T22:55:38.6241054Z Running cpp/c10_cow_test 1/1 ... [2025-08-26 22:55:38.623825] 2025-08-26T22:55:38.6241473Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:55:38.6252918Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_cow_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-5d3f19b444cb42aa.xml', '-x', '--reruns=2'] ... [2025-08-26 22:55:38.625013] 2025-08-26T22:55:40.1597737Z 2025-08-26T22:55:40.1598710Z cpp/c10_cow_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_cow_test_1.1_5f810dc33fec9abe_.log 2025-08-26T22:55:40.1599349Z 2025-08-26T22:55:40.9754629Z Running test batch 'tests to run' cost 8.23 seconds 2025-08-26T22:55:40.9761269Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T22:55:40.9761803Z Uploading artifacts took 0.00 seconds 2025-08-26T22:55:41.6717780Z 2025-08-26T22:55:41.6718551Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T22:55:41.6718996Z echo "c10_cow_test" failed with exit code 0 2025-08-26T22:55:41.6719309Z goto fail 2025-08-26T22:55:41.6719497Z ) 2025-08-26T22:55:41.6719608Z 2025-08-26T22:55:41.6720045Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T22:55:41.6720539Z echo "c10_cow_test" failed with exit code 0 2025-08-26T22:55:41.6720821Z goto fail 2025-08-26T22:55:41.6721001Z ) 2025-08-26T22:55:41.6721132Z 2025-08-26T22:55:41.6721315Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T22:55:41.6728176Z 2025-08-26T22:55:41.6728423Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T22:55:41.6729241Z call :libtorch_check "c10_DeadlockDetection_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_DeadlockDetection_test.exe" 2025-08-26T22:55:41.6729976Z if errorlevel 1 goto fail 2025-08-26T22:55:41.6730211Z ) 2025-08-26T22:55:41.6739005Z 2025-08-26T22:55:41.6739398Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:55:41.6742733Z 2025-08-26T22:55:41.6743307Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T22:55:41.6746058Z 2025-08-26T22:55:41.6746497Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_DeadlockDetection_test" == "verify_api_visibility" goto :eof 2025-08-26T22:55:41.6747709Z 2025-08-26T22:55:41.6748297Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_DeadlockDetection_test.exe" 2025-08-26T22:55:41.6749309Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_DeadlockDetection_test.exe" 2025-08-26T22:55:41.6750330Z 2025-08-26T22:55:41.6750761Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_DeadlockDetection_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T22:55:41.6751587Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_DeadlockDetection_test.exe" 2025-08-26T22:55:41.6752126Z goto :eof 2025-08-26T22:55:41.6752311Z ) 2025-08-26T22:55:41.6752420Z 2025-08-26T22:55:41.6752839Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_DeadlockDetection_test" 2025-08-26T22:55:47.8597665Z Found test times from artifacts 2025-08-26T22:55:47.9291252Z Found test times from artifacts 2025-08-26T22:55:47.9312878Z Running all tests 2025-08-26T22:55:47.9318363Z Running parallel tests on 3 processes 2025-08-26T22:55:47.9318695Z Name: tests to run (est. time: 0.0min) 2025-08-26T22:55:47.9318979Z Serial tests (0): 2025-08-26T22:55:47.9319220Z Parallel tests (1): 2025-08-26T22:55:47.9319472Z cpp/c10_DeadlockDetection_test 1/1 2025-08-26T22:55:47.9319764Z Name: excluded (est. time: 0.0min) 2025-08-26T22:55:47.9320033Z Serial tests (0): 2025-08-26T22:55:47.9320239Z Parallel tests (0): 2025-08-26T22:55:47.9322193Z Running cpp/c10_DeadlockDetection_test 1/1 ... [2025-08-26 22:55:47.928176] 2025-08-26T22:55:47.9322629Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:55:47.9332257Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_DeadlockDetection_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-d3302683cb324c88.xml', '-x', '--reruns=2'] ... [2025-08-26 22:55:47.928176] 2025-08-26T22:55:47.9334175Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T22:55:49.4350762Z 2025-08-26T22:55:49.4351815Z cpp/c10_DeadlockDetection_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_DeadlockDetection_test_1.1_47bbc87e3b2b5da6_.log 2025-08-26T22:55:49.4352553Z 2025-08-26T22:55:53.9323062Z Running cpp/c10_DeadlockDetection_test 1/1 ... [2025-08-26 22:55:53.923352] 2025-08-26T22:55:53.9323557Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:55:53.9332555Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_DeadlockDetection_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-0e6d20443efff7c1.xml', '-x', '--reruns=2'] ... [2025-08-26 22:55:53.923352] 2025-08-26T22:55:55.4539508Z 2025-08-26T22:55:55.4540587Z cpp/c10_DeadlockDetection_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_DeadlockDetection_test_1.1_f92ea384559f47db_.log 2025-08-26T22:55:55.4541367Z 2025-08-26T22:55:56.3160747Z Running test batch 'tests to run' cost 8.39 seconds 2025-08-26T22:55:56.3170375Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T22:55:56.3170861Z Uploading artifacts took 0.00 seconds 2025-08-26T22:55:57.0914382Z 2025-08-26T22:55:57.0914986Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T22:55:57.0915494Z echo "c10_DeadlockDetection_test" failed with exit code 0 2025-08-26T22:55:57.0915856Z goto fail 2025-08-26T22:55:57.0916034Z ) 2025-08-26T22:55:57.0916149Z 2025-08-26T22:55:57.0916344Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T22:55:57.0916798Z echo "c10_DeadlockDetection_test" failed with exit code 0 2025-08-26T22:55:57.0917145Z goto fail 2025-08-26T22:55:57.0917331Z ) 2025-08-26T22:55:57.0917426Z 2025-08-26T22:55:57.0918216Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T22:55:57.0924804Z 2025-08-26T22:55:57.0925253Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T22:55:57.0926017Z call :libtorch_check "c10_DeviceGuard_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_DeviceGuard_test.exe" 2025-08-26T22:55:57.0926714Z if errorlevel 1 goto fail 2025-08-26T22:55:57.0926947Z ) 2025-08-26T22:55:57.0935856Z 2025-08-26T22:55:57.0936311Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:55:57.0940519Z 2025-08-26T22:55:57.0941050Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T22:55:57.0944034Z 2025-08-26T22:55:57.0944635Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_DeviceGuard_test" == "verify_api_visibility" goto :eof 2025-08-26T22:55:57.0946097Z 2025-08-26T22:55:57.0946750Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_DeviceGuard_test.exe" 2025-08-26T22:55:57.0947811Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_DeviceGuard_test.exe" 2025-08-26T22:55:57.0951643Z 2025-08-26T22:55:57.0951989Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_DeviceGuard_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T22:55:57.0952765Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_DeviceGuard_test.exe" 2025-08-26T22:55:57.0953286Z goto :eof 2025-08-26T22:55:57.0953455Z ) 2025-08-26T22:55:57.0953553Z 2025-08-26T22:55:57.0953947Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_DeviceGuard_test" 2025-08-26T22:56:03.1106433Z Found test times from artifacts 2025-08-26T22:56:03.1789074Z Found test times from artifacts 2025-08-26T22:56:03.1811998Z Running all tests 2025-08-26T22:56:03.1817764Z Running parallel tests on 3 processes 2025-08-26T22:56:03.1818186Z Name: tests to run (est. time: 0.0min) 2025-08-26T22:56:03.1818476Z Serial tests (0): 2025-08-26T22:56:03.1818727Z Parallel tests (1): 2025-08-26T22:56:03.1818972Z cpp/c10_DeviceGuard_test 1/1 2025-08-26T22:56:03.1819297Z Name: excluded (est. time: 0.0min) 2025-08-26T22:56:03.1819546Z Serial tests (0): 2025-08-26T22:56:03.1819760Z Parallel tests (0): 2025-08-26T22:56:03.1821767Z Running cpp/c10_DeviceGuard_test 1/1 ... [2025-08-26 22:56:03.181903] 2025-08-26T22:56:03.1822388Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:56:03.1833010Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_DeviceGuard_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-54af27a91ef294bd.xml', '-x', '--reruns=2'] ... [2025-08-26 22:56:03.183089] 2025-08-26T22:56:03.1834985Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T22:56:04.7133573Z 2025-08-26T22:56:04.7134481Z cpp/c10_DeviceGuard_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_DeviceGuard_test_1.1_4fe465f5aa963145_.log 2025-08-26T22:56:04.7135162Z 2025-08-26T22:56:09.1211827Z Running cpp/c10_DeviceGuard_test 1/1 ... [2025-08-26 22:56:09.113567] 2025-08-26T22:56:09.1220029Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:56:09.1221299Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_DeviceGuard_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-9f8fbd6d825d7395.xml', '-x', '--reruns=2'] ... [2025-08-26 22:56:09.113567] 2025-08-26T22:56:10.6321993Z 2025-08-26T22:56:10.6322974Z cpp/c10_DeviceGuard_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_DeviceGuard_test_1.1_0726de473646a82b_.log 2025-08-26T22:56:10.6323819Z 2025-08-26T22:56:11.4381635Z Running test batch 'tests to run' cost 8.26 seconds 2025-08-26T22:56:11.4387823Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T22:56:11.4388295Z Uploading artifacts took 0.00 seconds 2025-08-26T22:56:12.1169578Z 2025-08-26T22:56:12.1170134Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T22:56:12.1170619Z echo "c10_DeviceGuard_test" failed with exit code 0 2025-08-26T22:56:12.1170973Z goto fail 2025-08-26T22:56:12.1171157Z ) 2025-08-26T22:56:12.1171254Z 2025-08-26T22:56:12.1171461Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T22:56:12.1171894Z echo "c10_DeviceGuard_test" failed with exit code 0 2025-08-26T22:56:12.1172225Z goto fail 2025-08-26T22:56:12.1172400Z ) 2025-08-26T22:56:12.1172516Z 2025-08-26T22:56:12.1172671Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T22:56:12.1179289Z 2025-08-26T22:56:12.1179500Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T22:56:12.1180168Z call :libtorch_check "c10_Device_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Device_test.exe" 2025-08-26T22:56:12.1180822Z if errorlevel 1 goto fail 2025-08-26T22:56:12.1181044Z ) 2025-08-26T22:56:12.1189711Z 2025-08-26T22:56:12.1190337Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:56:12.1193809Z 2025-08-26T22:56:12.1194312Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T22:56:12.1197044Z 2025-08-26T22:56:12.1197524Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Device_test" == "verify_api_visibility" goto :eof 2025-08-26T22:56:12.1198587Z 2025-08-26T22:56:12.1199166Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Device_test.exe" 2025-08-26T22:56:12.1200114Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Device_test.exe" 2025-08-26T22:56:12.1200775Z 2025-08-26T22:56:12.1201153Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Device_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T22:56:12.1202113Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Device_test.exe" 2025-08-26T22:56:12.1202664Z goto :eof 2025-08-26T22:56:12.1202847Z ) 2025-08-26T22:56:12.1202947Z 2025-08-26T22:56:12.1203309Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_Device_test" 2025-08-26T22:56:18.1279186Z Found test times from artifacts 2025-08-26T22:56:18.1959784Z Found test times from artifacts 2025-08-26T22:56:18.1982680Z Running all tests 2025-08-26T22:56:18.1988238Z Running parallel tests on 3 processes 2025-08-26T22:56:18.1988606Z Name: tests to run (est. time: 0.0min) 2025-08-26T22:56:18.1988977Z Serial tests (0): 2025-08-26T22:56:18.1989233Z Parallel tests (1): 2025-08-26T22:56:18.1989499Z cpp/c10_Device_test 1/1 2025-08-26T22:56:18.1989768Z Name: excluded (est. time: 0.0min) 2025-08-26T22:56:18.1990070Z Serial tests (0): 2025-08-26T22:56:18.1990294Z Parallel tests (0): 2025-08-26T22:56:18.1992053Z Running cpp/c10_Device_test 1/1 ... [2025-08-26 22:56:18.197519] 2025-08-26T22:56:18.1992468Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:56:18.2002488Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_Device_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-be6207eb42f9df5f.xml', '-x', '--reruns=2'] ... [2025-08-26 22:56:18.197519] 2025-08-26T22:56:18.2004293Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T22:56:19.7051387Z 2025-08-26T22:56:19.7052365Z cpp/c10_Device_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_Device_test_1.1_6885dade081b3434_.log 2025-08-26T22:56:19.7053193Z 2025-08-26T22:56:24.1996731Z Running cpp/c10_Device_test 1/1 ... [2025-08-26 22:56:24.199475] 2025-08-26T22:56:24.1997225Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:56:24.2005747Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_Device_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-fa600bc600e8c30b.xml', '-x', '--reruns=2'] ... [2025-08-26 22:56:24.200066] 2025-08-26T22:56:25.7160335Z 2025-08-26T22:56:25.7161240Z cpp/c10_Device_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_Device_test_1.1_2fffb43bd33f0c36_.log 2025-08-26T22:56:25.7163280Z 2025-08-26T22:56:26.5741864Z Running test batch 'tests to run' cost 8.38 seconds 2025-08-26T22:56:26.5748425Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T22:56:26.5748933Z Uploading artifacts took 0.00 seconds 2025-08-26T22:56:27.2419138Z 2025-08-26T22:56:27.2419971Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T22:56:27.2420518Z echo "c10_Device_test" failed with exit code 0 2025-08-26T22:56:27.2420885Z goto fail 2025-08-26T22:56:27.2421081Z ) 2025-08-26T22:56:27.2421245Z 2025-08-26T22:56:27.2421477Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T22:56:27.2421989Z echo "c10_Device_test" failed with exit code 0 2025-08-26T22:56:27.2422343Z goto fail 2025-08-26T22:56:27.2422537Z ) 2025-08-26T22:56:27.2422666Z 2025-08-26T22:56:27.2423195Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T22:56:27.2429443Z 2025-08-26T22:56:27.2429659Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T22:56:27.2430447Z call :libtorch_check "c10_DispatchKeySet_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_DispatchKeySet_test.exe" 2025-08-26T22:56:27.2431181Z if errorlevel 1 goto fail 2025-08-26T22:56:27.2431458Z ) 2025-08-26T22:56:27.2439985Z 2025-08-26T22:56:27.2440662Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:56:27.2444086Z 2025-08-26T22:56:27.2444699Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T22:56:27.2447177Z 2025-08-26T22:56:27.2447669Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_DispatchKeySet_test" == "verify_api_visibility" goto :eof 2025-08-26T22:56:27.2448873Z 2025-08-26T22:56:27.2449535Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_DispatchKeySet_test.exe" 2025-08-26T22:56:27.2450588Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_DispatchKeySet_test.exe" 2025-08-26T22:56:27.2451169Z 2025-08-26T22:56:27.2451901Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_DispatchKeySet_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T22:56:27.2452724Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_DispatchKeySet_test.exe" 2025-08-26T22:56:27.2453290Z goto :eof 2025-08-26T22:56:27.2453498Z ) 2025-08-26T22:56:27.2453619Z 2025-08-26T22:56:27.2454021Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_DispatchKeySet_test" 2025-08-26T22:56:33.4199070Z Found test times from artifacts 2025-08-26T22:56:33.4884118Z Found test times from artifacts 2025-08-26T22:56:33.4906847Z Running all tests 2025-08-26T22:56:33.4912714Z Running parallel tests on 3 processes 2025-08-26T22:56:33.4913275Z Name: tests to run (est. time: 0.0min) 2025-08-26T22:56:33.4913571Z Serial tests (0): 2025-08-26T22:56:33.4913826Z Parallel tests (1): 2025-08-26T22:56:33.4914079Z cpp/c10_DispatchKeySet_test 1/1 2025-08-26T22:56:33.4914393Z Name: excluded (est. time: 0.0min) 2025-08-26T22:56:33.4914667Z Serial tests (0): 2025-08-26T22:56:33.4914916Z Parallel tests (0): 2025-08-26T22:56:33.4916133Z Running cpp/c10_DispatchKeySet_test 1/1 ... [2025-08-26 22:56:33.489102] 2025-08-26T22:56:33.4916581Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:56:33.4926238Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_DispatchKeySet_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-d8e1b53104b43c6d.xml', '-x', '--reruns=2'] ... [2025-08-26 22:56:33.489102] 2025-08-26T22:56:33.4928141Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T22:56:35.0255438Z 2025-08-26T22:56:35.0257428Z cpp/c10_DispatchKeySet_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_DispatchKeySet_test_1.1_66b20348ddbfa8b6_.log 2025-08-26T22:56:35.0258160Z 2025-08-26T22:56:39.4577336Z Running cpp/c10_DispatchKeySet_test 1/1 ... [2025-08-26 22:56:39.457029] 2025-08-26T22:56:39.4577854Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:56:39.4587065Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_DispatchKeySet_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-2bfcf5e04dee3a90.xml', '-x', '--reruns=2'] ... [2025-08-26 22:56:39.458221] 2025-08-26T22:56:41.0278660Z 2025-08-26T22:56:41.0279670Z cpp/c10_DispatchKeySet_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_DispatchKeySet_test_1.1_339a0394ad1ce2fc_.log 2025-08-26T22:56:41.0283754Z 2025-08-26T22:56:41.8492384Z Running test batch 'tests to run' cost 8.36 seconds 2025-08-26T22:56:41.8498482Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T22:56:41.8499060Z Uploading artifacts took 0.00 seconds 2025-08-26T22:56:42.5202360Z 2025-08-26T22:56:42.5203250Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T22:56:42.5203836Z echo "c10_DispatchKeySet_test" failed with exit code 0 2025-08-26T22:56:42.5204209Z goto fail 2025-08-26T22:56:42.5204390Z ) 2025-08-26T22:56:42.5204537Z 2025-08-26T22:56:42.5204743Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T22:56:42.5205225Z echo "c10_DispatchKeySet_test" failed with exit code 0 2025-08-26T22:56:42.5205564Z goto fail 2025-08-26T22:56:42.5205784Z ) 2025-08-26T22:56:42.5205907Z 2025-08-26T22:56:42.5206081Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T22:56:42.5212124Z 2025-08-26T22:56:42.5212632Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T22:56:42.5220607Z call :libtorch_check "c10_Enumerate_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Enumerate_test.exe" 2025-08-26T22:56:42.5221351Z if errorlevel 1 goto fail 2025-08-26T22:56:42.5221598Z ) 2025-08-26T22:56:42.5222844Z 2025-08-26T22:56:42.5223200Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:56:42.5226936Z 2025-08-26T22:56:42.5227676Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T22:56:42.5230084Z 2025-08-26T22:56:42.5230700Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Enumerate_test" == "verify_api_visibility" goto :eof 2025-08-26T22:56:42.5232264Z 2025-08-26T22:56:42.5232843Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Enumerate_test.exe" 2025-08-26T22:56:42.5233822Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Enumerate_test.exe" 2025-08-26T22:56:42.5235219Z 2025-08-26T22:56:42.5235691Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Enumerate_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T22:56:42.5236521Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Enumerate_test.exe" 2025-08-26T22:56:42.5237040Z goto :eof 2025-08-26T22:56:42.5237216Z ) 2025-08-26T22:56:42.5237333Z 2025-08-26T22:56:42.5237711Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_Enumerate_test" 2025-08-26T22:56:48.5447875Z Found test times from artifacts 2025-08-26T22:56:48.6124081Z Found test times from artifacts 2025-08-26T22:56:48.6146828Z Running all tests 2025-08-26T22:56:48.6152300Z Running parallel tests on 3 processes 2025-08-26T22:56:48.6152674Z Name: tests to run (est. time: 0.0min) 2025-08-26T22:56:48.6152972Z Serial tests (0): 2025-08-26T22:56:48.6153199Z Parallel tests (1): 2025-08-26T22:56:48.6153437Z cpp/c10_Enumerate_test 1/1 2025-08-26T22:56:48.6153698Z Name: excluded (est. time: 0.0min) 2025-08-26T22:56:48.6153969Z Serial tests (0): 2025-08-26T22:56:48.6154204Z Parallel tests (0): 2025-08-26T22:56:48.6156062Z Running cpp/c10_Enumerate_test 1/1 ... [2025-08-26 22:56:48.611359] 2025-08-26T22:56:48.6156475Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:56:48.6165899Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_Enumerate_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-a27e3dc3666d0f99.xml', '-x', '--reruns=2'] ... [2025-08-26 22:56:48.611359] 2025-08-26T22:56:48.6167677Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T22:56:50.1426688Z 2025-08-26T22:56:50.1427690Z cpp/c10_Enumerate_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_Enumerate_test_1.1_4f8455ed259b9211_.log 2025-08-26T22:56:50.1428383Z 2025-08-26T22:56:54.5700329Z Running cpp/c10_Enumerate_test 1/1 ... [2025-08-26 22:56:54.569699] 2025-08-26T22:56:54.5700861Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:56:54.5709380Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_Enumerate_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-596b8e5485e994ed.xml', '-x', '--reruns=2'] ... [2025-08-26 22:56:54.570743] 2025-08-26T22:56:56.1702976Z 2025-08-26T22:56:56.1703862Z cpp/c10_Enumerate_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_Enumerate_test_1.1_ee7d0d97a78d0f14_.log 2025-08-26T22:56:56.1704847Z 2025-08-26T22:56:56.9824344Z Running test batch 'tests to run' cost 8.37 seconds 2025-08-26T22:56:56.9827728Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T22:56:56.9829674Z Uploading artifacts took 0.00 seconds 2025-08-26T22:56:57.6870701Z 2025-08-26T22:56:57.6871480Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T22:56:57.6871966Z echo "c10_Enumerate_test" failed with exit code 0 2025-08-26T22:56:57.6872274Z goto fail 2025-08-26T22:56:57.6872455Z ) 2025-08-26T22:56:57.6872546Z 2025-08-26T22:56:57.6872737Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T22:56:57.6873163Z echo "c10_Enumerate_test" failed with exit code 0 2025-08-26T22:56:57.6873452Z goto fail 2025-08-26T22:56:57.6874260Z ) 2025-08-26T22:56:57.6874355Z 2025-08-26T22:56:57.6874707Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T22:56:57.6881357Z 2025-08-26T22:56:57.6881758Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T22:56:57.6882475Z call :libtorch_check "c10_error_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_error_test.exe" 2025-08-26T22:56:57.6883093Z if errorlevel 1 goto fail 2025-08-26T22:56:57.6883327Z ) 2025-08-26T22:56:57.6892007Z 2025-08-26T22:56:57.6892407Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:56:57.6895999Z 2025-08-26T22:56:57.6896520Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T22:56:57.6899231Z 2025-08-26T22:56:57.6899718Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_error_test" == "verify_api_visibility" goto :eof 2025-08-26T22:56:57.6900952Z 2025-08-26T22:56:57.6901564Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_error_test.exe" 2025-08-26T22:56:57.6902477Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_error_test.exe" 2025-08-26T22:56:57.6903247Z 2025-08-26T22:56:57.6903670Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_error_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T22:56:57.6904389Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_error_test.exe" 2025-08-26T22:56:57.6904869Z goto :eof 2025-08-26T22:56:57.6905044Z ) 2025-08-26T22:56:57.6905138Z 2025-08-26T22:56:57.6905488Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_error_test" 2025-08-26T22:57:03.7389972Z Found test times from artifacts 2025-08-26T22:57:03.8076025Z Found test times from artifacts 2025-08-26T22:57:03.8099040Z Running all tests 2025-08-26T22:57:03.8104683Z Running parallel tests on 3 processes 2025-08-26T22:57:03.8105044Z Name: tests to run (est. time: 0.0min) 2025-08-26T22:57:03.8105318Z Serial tests (0): 2025-08-26T22:57:03.8105543Z Parallel tests (1): 2025-08-26T22:57:03.8105813Z cpp/c10_error_test 1/1 2025-08-26T22:57:03.8106075Z Name: excluded (est. time: 0.0min) 2025-08-26T22:57:03.8106347Z Serial tests (0): 2025-08-26T22:57:03.8106557Z Parallel tests (0): 2025-08-26T22:57:03.8108497Z Running cpp/c10_error_test 1/1 ... [2025-08-26 22:57:03.807873] 2025-08-26T22:57:03.8109489Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:57:03.8118250Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_error_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-809cf7709dda47eb.xml', '-x', '--reruns=2'] ... [2025-08-26 22:57:03.807873] 2025-08-26T22:57:03.8120018Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T22:57:05.3671388Z 2025-08-26T22:57:05.3672456Z cpp/c10_error_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_error_test_1.1_bf9e09ed9cebd1eb_.log 2025-08-26T22:57:05.3674186Z 2025-08-26T22:57:09.7897056Z Running cpp/c10_error_test 1/1 ... [2025-08-26 22:57:09.789471] 2025-08-26T22:57:09.7897485Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:57:09.7906395Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_error_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-2291473e775d3e46.xml', '-x', '--reruns=2'] ... [2025-08-26 22:57:09.790067] 2025-08-26T22:57:11.3071194Z 2025-08-26T22:57:11.3072323Z cpp/c10_error_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_error_test_1.1_0bf1b277732637cb_.log 2025-08-26T22:57:11.3073099Z 2025-08-26T22:57:12.1136772Z Running test batch 'tests to run' cost 8.3 seconds 2025-08-26T22:57:12.1144549Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T22:57:12.1145011Z Uploading artifacts took 0.00 seconds 2025-08-26T22:57:12.8196496Z 2025-08-26T22:57:12.8197122Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T22:57:12.8197569Z echo "c10_error_test" failed with exit code 0 2025-08-26T22:57:12.8197874Z goto fail 2025-08-26T22:57:12.8198044Z ) 2025-08-26T22:57:12.8198324Z 2025-08-26T22:57:12.8198881Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T22:57:12.8199383Z echo "c10_error_test" failed with exit code 0 2025-08-26T22:57:12.8199722Z goto fail 2025-08-26T22:57:12.8199884Z ) 2025-08-26T22:57:12.8200125Z 2025-08-26T22:57:12.8200320Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T22:57:12.8207065Z 2025-08-26T22:57:12.8207297Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T22:57:12.8207987Z call :libtorch_check "c10_exception_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_exception_test.exe" 2025-08-26T22:57:12.8208643Z if errorlevel 1 goto fail 2025-08-26T22:57:12.8208858Z ) 2025-08-26T22:57:12.8217711Z 2025-08-26T22:57:12.8218098Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:57:12.8221691Z 2025-08-26T22:57:12.8222224Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T22:57:12.8224836Z 2025-08-26T22:57:12.8225426Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_exception_test" == "verify_api_visibility" goto :eof 2025-08-26T22:57:12.8226562Z 2025-08-26T22:57:12.8227147Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_exception_test.exe" 2025-08-26T22:57:12.8229127Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_exception_test.exe" 2025-08-26T22:57:12.8229592Z 2025-08-26T22:57:12.8229905Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_exception_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T22:57:12.8230857Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_exception_test.exe" 2025-08-26T22:57:12.8231425Z goto :eof 2025-08-26T22:57:12.8231601Z ) 2025-08-26T22:57:12.8231694Z 2025-08-26T22:57:12.8232059Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_exception_test" 2025-08-26T22:57:18.8934750Z Found test times from artifacts 2025-08-26T22:57:18.9622993Z Found test times from artifacts 2025-08-26T22:57:18.9645912Z Running all tests 2025-08-26T22:57:18.9651490Z Running parallel tests on 3 processes 2025-08-26T22:57:18.9652100Z Name: tests to run (est. time: 0.0min) 2025-08-26T22:57:18.9652370Z Serial tests (0): 2025-08-26T22:57:18.9652594Z Parallel tests (1): 2025-08-26T22:57:18.9652810Z cpp/c10_exception_test 1/1 2025-08-26T22:57:18.9653064Z Name: excluded (est. time: 0.0min) 2025-08-26T22:57:18.9653304Z Serial tests (0): 2025-08-26T22:57:18.9653511Z Parallel tests (0): 2025-08-26T22:57:18.9655414Z Running cpp/c10_exception_test 1/1 ... [2025-08-26 22:57:18.965443] 2025-08-26T22:57:18.9655811Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:57:18.9665569Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_exception_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-b8d0950f084b119e.xml', '-x', '--reruns=2'] ... [2025-08-26 22:57:18.966061] 2025-08-26T22:57:18.9667597Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T22:57:20.4989461Z 2025-08-26T22:57:20.4990422Z cpp/c10_exception_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_exception_test_1.1_79a9274ef5634dc9_.log 2025-08-26T22:57:20.4991075Z 2025-08-26T22:57:24.9259097Z Running cpp/c10_exception_test 1/1 ... [2025-08-26 22:57:24.925619] 2025-08-26T22:57:24.9259527Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:57:24.9270993Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_exception_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-ffe696a9544722c4.xml', '-x', '--reruns=2'] ... [2025-08-26 22:57:24.926815] 2025-08-26T22:57:26.5069397Z 2025-08-26T22:57:26.5070204Z cpp/c10_exception_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_exception_test_1.1_9cc60fe27740edb6_.log 2025-08-26T22:57:26.5070990Z 2025-08-26T22:57:27.3829735Z Running test batch 'tests to run' cost 8.41 seconds 2025-08-26T22:57:27.3836246Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T22:57:27.3836709Z Uploading artifacts took 0.00 seconds 2025-08-26T22:57:28.0667432Z 2025-08-26T22:57:28.0668034Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T22:57:28.0668492Z echo "c10_exception_test" failed with exit code 0 2025-08-26T22:57:28.0668802Z goto fail 2025-08-26T22:57:28.0668970Z ) 2025-08-26T22:57:28.0669075Z 2025-08-26T22:57:28.0669379Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T22:57:28.0669795Z echo "c10_exception_test" failed with exit code 0 2025-08-26T22:57:28.0670102Z goto fail 2025-08-26T22:57:28.0670269Z ) 2025-08-26T22:57:28.0670908Z 2025-08-26T22:57:28.0671413Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T22:57:28.0677856Z 2025-08-26T22:57:28.0678043Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T22:57:28.0678743Z call :libtorch_check "c10_flags_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_flags_test.exe" 2025-08-26T22:57:28.0679357Z if errorlevel 1 goto fail 2025-08-26T22:57:28.0679585Z ) 2025-08-26T22:57:28.0689251Z 2025-08-26T22:57:28.0690418Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:57:28.0693112Z 2025-08-26T22:57:28.0693812Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T22:57:28.0696349Z 2025-08-26T22:57:28.0696711Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_flags_test" == "verify_api_visibility" goto :eof 2025-08-26T22:57:28.0698008Z 2025-08-26T22:57:28.0698568Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_flags_test.exe" 2025-08-26T22:57:28.0699472Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_flags_test.exe" 2025-08-26T22:57:28.0700242Z 2025-08-26T22:57:28.0700669Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_flags_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T22:57:28.0701471Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_flags_test.exe" 2025-08-26T22:57:28.0701966Z goto :eof 2025-08-26T22:57:28.0702140Z ) 2025-08-26T22:57:28.0702235Z 2025-08-26T22:57:28.0702587Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_flags_test" 2025-08-26T22:57:34.2752240Z Found test times from artifacts 2025-08-26T22:57:34.3424876Z Found test times from artifacts 2025-08-26T22:57:34.3445985Z Running all tests 2025-08-26T22:57:34.3451013Z Running parallel tests on 3 processes 2025-08-26T22:57:34.3451374Z Name: tests to run (est. time: 0.0min) 2025-08-26T22:57:34.3451640Z Serial tests (0): 2025-08-26T22:57:34.3451841Z Parallel tests (1): 2025-08-26T22:57:34.3452072Z cpp/c10_flags_test 1/1 2025-08-26T22:57:34.3452300Z Name: excluded (est. time: 0.0min) 2025-08-26T22:57:34.3452547Z Serial tests (0): 2025-08-26T22:57:34.3452749Z Parallel tests (0): 2025-08-26T22:57:34.3454734Z Running cpp/c10_flags_test 1/1 ... [2025-08-26 22:57:34.338123] 2025-08-26T22:57:34.3455121Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:57:34.3465955Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_flags_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-910b6e2063cf045b.xml', '-x', '--reruns=2'] ... [2025-08-26 22:57:34.338123] 2025-08-26T22:57:34.3467776Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T22:57:35.8588154Z 2025-08-26T22:57:35.8589046Z cpp/c10_flags_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_flags_test_1.1_e37b1cc0caf2d134_.log 2025-08-26T22:57:35.8591070Z 2025-08-26T22:57:40.2923360Z Running cpp/c10_flags_test 1/1 ... [2025-08-26 22:57:40.291977] 2025-08-26T22:57:40.2923809Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:57:40.2932965Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_flags_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-d4a82f44874af024.xml', '-x', '--reruns=2'] ... [2025-08-26 22:57:40.293074] 2025-08-26T22:57:41.8158388Z 2025-08-26T22:57:41.8159277Z cpp/c10_flags_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_flags_test_1.1_47b345a03464aa63_.log 2025-08-26T22:57:41.8160230Z 2025-08-26T22:57:42.6347787Z Running test batch 'tests to run' cost 8.3 seconds 2025-08-26T22:57:42.6355536Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T22:57:42.6356002Z Uploading artifacts took 0.00 seconds 2025-08-26T22:57:43.3407764Z 2025-08-26T22:57:43.3408586Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T22:57:43.3409069Z echo "c10_flags_test" failed with exit code 0 2025-08-26T22:57:43.3409453Z goto fail 2025-08-26T22:57:43.3409617Z ) 2025-08-26T22:57:43.3409717Z 2025-08-26T22:57:43.3409902Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T22:57:43.3410302Z echo "c10_flags_test" failed with exit code 0 2025-08-26T22:57:43.3410593Z goto fail 2025-08-26T22:57:43.3410756Z ) 2025-08-26T22:57:43.3410855Z 2025-08-26T22:57:43.3411007Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T22:57:43.3416500Z 2025-08-26T22:57:43.3416985Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T22:57:43.3417741Z call :libtorch_check "c10_generic_math_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_generic_math_test.exe" 2025-08-26T22:57:43.3418454Z if errorlevel 1 goto fail 2025-08-26T22:57:43.3418717Z ) 2025-08-26T22:57:43.3427384Z 2025-08-26T22:57:43.3427794Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:57:43.3431326Z 2025-08-26T22:57:43.3431794Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T22:57:43.3434329Z 2025-08-26T22:57:43.3434844Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_generic_math_test" == "verify_api_visibility" goto :eof 2025-08-26T22:57:43.3436186Z 2025-08-26T22:57:43.3436784Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_generic_math_test.exe" 2025-08-26T22:57:43.3437897Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_generic_math_test.exe" 2025-08-26T22:57:43.3439131Z 2025-08-26T22:57:43.3439730Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_generic_math_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T22:57:43.3440520Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_generic_math_test.exe" 2025-08-26T22:57:43.3441029Z goto :eof 2025-08-26T22:57:43.3441205Z ) 2025-08-26T22:57:43.3441299Z 2025-08-26T22:57:43.3441723Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_generic_math_test" 2025-08-26T22:57:49.4149020Z Found test times from artifacts 2025-08-26T22:57:49.4831912Z Found test times from artifacts 2025-08-26T22:57:49.4853569Z Running all tests 2025-08-26T22:57:49.4858558Z Running parallel tests on 3 processes 2025-08-26T22:57:49.4858945Z Name: tests to run (est. time: 0.0min) 2025-08-26T22:57:49.4859221Z Serial tests (0): 2025-08-26T22:57:49.4859440Z Parallel tests (1): 2025-08-26T22:57:49.4859664Z cpp/c10_generic_math_test 1/1 2025-08-26T22:57:49.4859926Z Name: excluded (est. time: 0.0min) 2025-08-26T22:57:49.4860176Z Serial tests (0): 2025-08-26T22:57:49.4860382Z Parallel tests (0): 2025-08-26T22:57:49.4862287Z Running cpp/c10_generic_math_test 1/1 ... [2025-08-26 22:57:49.484976] 2025-08-26T22:57:49.4862702Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:57:49.4872115Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_generic_math_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-16495a6a580b7c06.xml', '-x', '--reruns=2'] ... [2025-08-26 22:57:49.484976] 2025-08-26T22:57:49.4874052Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T22:57:51.0166867Z 2025-08-26T22:57:51.0167844Z cpp/c10_generic_math_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_generic_math_test_1.1_c024c60a99183379_.log 2025-08-26T22:57:51.0168514Z 2025-08-26T22:57:55.3680269Z Running cpp/c10_generic_math_test 1/1 ... [2025-08-26 22:57:55.359463] 2025-08-26T22:57:55.3680797Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:57:55.3689964Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_generic_math_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-c3c4649fcb40a7c7.xml', '-x', '--reruns=2'] ... [2025-08-26 22:57:55.359463] 2025-08-26T22:57:56.8911340Z 2025-08-26T22:57:56.8912356Z cpp/c10_generic_math_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_generic_math_test_1.1_d7396d8c37a3df55_.log 2025-08-26T22:57:56.8914070Z 2025-08-26T22:57:57.7329260Z Running test batch 'tests to run' cost 8.24 seconds 2025-08-26T22:57:57.7335816Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T22:57:57.7336309Z Uploading artifacts took 0.00 seconds 2025-08-26T22:57:58.4048601Z 2025-08-26T22:57:58.4049138Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T22:57:58.4049618Z echo "c10_generic_math_test" failed with exit code 0 2025-08-26T22:57:58.4049936Z goto fail 2025-08-26T22:57:58.4050108Z ) 2025-08-26T22:57:58.4050207Z 2025-08-26T22:57:58.4050396Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T22:57:58.4050832Z echo "c10_generic_math_test" failed with exit code 0 2025-08-26T22:57:58.4051142Z goto fail 2025-08-26T22:57:58.4051352Z ) 2025-08-26T22:57:58.4051616Z 2025-08-26T22:57:58.4051817Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T22:57:58.4058326Z 2025-08-26T22:57:58.4058578Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T22:57:58.4059355Z call :libtorch_check "c10_Half_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Half_test.exe" 2025-08-26T22:57:58.4060021Z if errorlevel 1 goto fail 2025-08-26T22:57:58.4060270Z ) 2025-08-26T22:57:58.4069156Z 2025-08-26T22:57:58.4069879Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:57:58.4073286Z 2025-08-26T22:57:58.4073878Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T22:57:58.4076484Z 2025-08-26T22:57:58.4077047Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Half_test" == "verify_api_visibility" goto :eof 2025-08-26T22:57:58.4078277Z 2025-08-26T22:57:58.4078950Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Half_test.exe" 2025-08-26T22:57:58.4079903Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Half_test.exe" 2025-08-26T22:57:58.4080839Z 2025-08-26T22:57:58.4081258Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Half_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T22:57:58.4082063Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Half_test.exe" 2025-08-26T22:57:58.4082614Z goto :eof 2025-08-26T22:57:58.4082833Z ) 2025-08-26T22:57:58.4082940Z 2025-08-26T22:57:58.4083308Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_Half_test" 2025-08-26T22:58:04.5007681Z Found test times from artifacts 2025-08-26T22:58:04.5685706Z Found test times from artifacts 2025-08-26T22:58:04.5708276Z Running all tests 2025-08-26T22:58:04.5713617Z Running parallel tests on 3 processes 2025-08-26T22:58:04.5714020Z Name: tests to run (est. time: 0.0min) 2025-08-26T22:58:04.5714322Z Serial tests (0): 2025-08-26T22:58:04.5714628Z Parallel tests (1): 2025-08-26T22:58:04.5714876Z cpp/c10_Half_test 1/1 2025-08-26T22:58:04.5715202Z Name: excluded (est. time: 0.0min) 2025-08-26T22:58:04.5715484Z Serial tests (0): 2025-08-26T22:58:04.5715745Z Parallel tests (0): 2025-08-26T22:58:04.5717624Z Running cpp/c10_Half_test 1/1 ... [2025-08-26 22:58:04.571494] 2025-08-26T22:58:04.5718107Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:58:04.5727897Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_Half_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-3a1c93cd4f30c045.xml', '-x', '--reruns=2'] ... [2025-08-26 22:58:04.572066] 2025-08-26T22:58:04.5729698Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T22:58:06.1008161Z 2025-08-26T22:58:06.1009059Z cpp/c10_Half_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_Half_test_1.1_1f7fd1f1df26a76d_.log 2025-08-26T22:58:06.1009793Z 2025-08-26T22:58:10.4796884Z Running cpp/c10_Half_test 1/1 ... [2025-08-26 22:58:10.479228] 2025-08-26T22:58:10.4797358Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:58:10.4806612Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_Half_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-6256e546f2ae5229.xml', '-x', '--reruns=2'] ... [2025-08-26 22:58:10.480404] 2025-08-26T22:58:12.0051090Z 2025-08-26T22:58:12.0051985Z cpp/c10_Half_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_Half_test_1.1_57788988d3146057_.log 2025-08-26T22:58:12.0052927Z 2025-08-26T22:58:12.8180332Z Running test batch 'tests to run' cost 8.24 seconds 2025-08-26T22:58:12.8187081Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T22:58:12.8187629Z Uploading artifacts took 0.00 seconds 2025-08-26T22:58:13.4888254Z 2025-08-26T22:58:13.4888850Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T22:58:13.4889367Z echo "c10_Half_test" failed with exit code 0 2025-08-26T22:58:13.4889686Z goto fail 2025-08-26T22:58:13.4889904Z ) 2025-08-26T22:58:13.4890041Z 2025-08-26T22:58:13.4890246Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T22:58:13.4890706Z echo "c10_Half_test" failed with exit code 0 2025-08-26T22:58:13.4891024Z goto fail 2025-08-26T22:58:13.4891241Z ) 2025-08-26T22:58:13.4891358Z 2025-08-26T22:58:13.4891533Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T22:58:13.4898908Z 2025-08-26T22:58:13.4899141Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T22:58:13.4899971Z call :libtorch_check "c10_InlineDeviceGuard_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_InlineDeviceGuard_test.exe" 2025-08-26T22:58:13.4900811Z if errorlevel 1 goto fail 2025-08-26T22:58:13.4901131Z ) 2025-08-26T22:58:13.4909528Z 2025-08-26T22:58:13.4909968Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:58:13.4913711Z 2025-08-26T22:58:13.4914206Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T22:58:13.4916576Z 2025-08-26T22:58:13.4917141Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_InlineDeviceGuard_test" == "verify_api_visibility" goto :eof 2025-08-26T22:58:13.4918112Z 2025-08-26T22:58:13.4918732Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_InlineDeviceGuard_test.exe" 2025-08-26T22:58:13.4919784Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_InlineDeviceGuard_test.exe" 2025-08-26T22:58:13.4920841Z 2025-08-26T22:58:13.4921332Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_InlineDeviceGuard_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T22:58:13.4923057Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_InlineDeviceGuard_test.exe" 2025-08-26T22:58:13.4923723Z goto :eof 2025-08-26T22:58:13.4923953Z ) 2025-08-26T22:58:13.4924063Z 2025-08-26T22:58:13.4924501Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_InlineDeviceGuard_test" 2025-08-26T22:58:19.5561223Z Found test times from artifacts 2025-08-26T22:58:19.6237376Z Found test times from artifacts 2025-08-26T22:58:19.6258968Z Running all tests 2025-08-26T22:58:19.6264504Z Running parallel tests on 3 processes 2025-08-26T22:58:19.6264892Z Name: tests to run (est. time: 0.0min) 2025-08-26T22:58:19.6265214Z Serial tests (0): 2025-08-26T22:58:19.6265447Z Parallel tests (1): 2025-08-26T22:58:19.6265731Z cpp/c10_InlineDeviceGuard_test 1/1 2025-08-26T22:58:19.6266071Z Name: excluded (est. time: 0.0min) 2025-08-26T22:58:19.6266345Z Serial tests (0): 2025-08-26T22:58:19.6266671Z Parallel tests (0): 2025-08-26T22:58:19.6267802Z Running cpp/c10_InlineDeviceGuard_test 1/1 ... [2025-08-26 22:58:19.613301] 2025-08-26T22:58:19.6268299Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:58:19.6277372Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_InlineDeviceGuard_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-c4466aed74037021.xml', '-x', '--reruns=2'] ... [2025-08-26 22:58:19.613301] 2025-08-26T22:58:19.6279366Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T22:58:21.1739412Z 2025-08-26T22:58:21.1740463Z cpp/c10_InlineDeviceGuard_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_InlineDeviceGuard_test_1.1_d46e12f70a062b7c_.log 2025-08-26T22:58:21.1741840Z 2025-08-26T22:58:25.5485615Z Running cpp/c10_InlineDeviceGuard_test 1/1 ... [2025-08-26 22:58:25.546648] 2025-08-26T22:58:25.5486121Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:58:25.5496340Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_InlineDeviceGuard_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-4563aae37a9e408f.xml', '-x', '--reruns=2'] ... [2025-08-26 22:58:25.546648] 2025-08-26T22:58:27.0934639Z 2025-08-26T22:58:27.0935642Z cpp/c10_InlineDeviceGuard_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_InlineDeviceGuard_test_1.1_1bb9afb007e8a24f_.log 2025-08-26T22:58:27.0936394Z 2025-08-26T22:58:27.9712863Z Running test batch 'tests to run' cost 8.35 seconds 2025-08-26T22:58:27.9718464Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T22:58:27.9718967Z Uploading artifacts took 0.00 seconds 2025-08-26T22:58:28.6464714Z 2025-08-26T22:58:28.6465473Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T22:58:28.6465983Z echo "c10_InlineDeviceGuard_test" failed with exit code 0 2025-08-26T22:58:28.6466325Z goto fail 2025-08-26T22:58:28.6466512Z ) 2025-08-26T22:58:28.6466648Z 2025-08-26T22:58:28.6466849Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T22:58:28.6467321Z echo "c10_InlineDeviceGuard_test" failed with exit code 0 2025-08-26T22:58:28.6467678Z goto fail 2025-08-26T22:58:28.6467863Z ) 2025-08-26T22:58:28.6467959Z 2025-08-26T22:58:28.6468124Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T22:58:28.6476027Z 2025-08-26T22:58:28.6476459Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T22:58:28.6477995Z call :libtorch_check "c10_InlineStreamGuard_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_InlineStreamGuard_test.exe" 2025-08-26T22:58:28.6478748Z if errorlevel 1 goto fail 2025-08-26T22:58:28.6479063Z ) 2025-08-26T22:58:28.6487187Z 2025-08-26T22:58:28.6487614Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:58:28.6491246Z 2025-08-26T22:58:28.6491953Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T22:58:28.6494279Z 2025-08-26T22:58:28.6494790Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_InlineStreamGuard_test" == "verify_api_visibility" goto :eof 2025-08-26T22:58:28.6495699Z 2025-08-26T22:58:28.6496301Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_InlineStreamGuard_test.exe" 2025-08-26T22:58:28.6497309Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_InlineStreamGuard_test.exe" 2025-08-26T22:58:28.6498443Z 2025-08-26T22:58:28.6498846Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_InlineStreamGuard_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T22:58:28.6499690Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_InlineStreamGuard_test.exe" 2025-08-26T22:58:28.6500230Z goto :eof 2025-08-26T22:58:28.6500421Z ) 2025-08-26T22:58:28.6500518Z 2025-08-26T22:58:28.6500929Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_InlineStreamGuard_test" 2025-08-26T22:58:34.6984935Z Found test times from artifacts 2025-08-26T22:58:34.7668107Z Found test times from artifacts 2025-08-26T22:58:34.7689171Z Running all tests 2025-08-26T22:58:34.7694493Z Running parallel tests on 3 processes 2025-08-26T22:58:34.7694829Z Name: tests to run (est. time: 0.0min) 2025-08-26T22:58:34.7695116Z Serial tests (0): 2025-08-26T22:58:34.7695341Z Parallel tests (1): 2025-08-26T22:58:34.7695622Z cpp/c10_InlineStreamGuard_test 1/1 2025-08-26T22:58:34.7695912Z Name: excluded (est. time: 0.0min) 2025-08-26T22:58:34.7696184Z Serial tests (0): 2025-08-26T22:58:34.7696391Z Parallel tests (0): 2025-08-26T22:58:34.7698163Z Running cpp/c10_InlineStreamGuard_test 1/1 ... [2025-08-26 22:58:34.764262] 2025-08-26T22:58:34.7698599Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:58:34.7708028Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_InlineStreamGuard_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-3d42e71bf496a1c4.xml', '-x', '--reruns=2'] ... [2025-08-26 22:58:34.764262] 2025-08-26T22:58:34.7709839Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T22:58:36.3099203Z 2025-08-26T22:58:36.3100442Z cpp/c10_InlineStreamGuard_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_InlineStreamGuard_test_1.1_d7a8dd7f83abb5ed_.log 2025-08-26T22:58:36.3101215Z 2025-08-26T22:58:40.7716346Z Running cpp/c10_InlineStreamGuard_test 1/1 ... [2025-08-26 22:58:40.771230] 2025-08-26T22:58:40.7716841Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:58:40.7725918Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_InlineStreamGuard_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-7a7857818509e86f.xml', '-x', '--reruns=2'] ... [2025-08-26 22:58:40.772429] 2025-08-26T22:58:42.3192311Z 2025-08-26T22:58:42.3193279Z cpp/c10_InlineStreamGuard_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_InlineStreamGuard_test_1.1_d48d195795383abc_.log 2025-08-26T22:58:42.3194037Z 2025-08-26T22:58:43.1737496Z Running test batch 'tests to run' cost 8.4 seconds 2025-08-26T22:58:43.1744139Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T22:58:43.1744605Z Uploading artifacts took 0.00 seconds 2025-08-26T22:58:43.8751324Z 2025-08-26T22:58:43.8751869Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T22:58:43.8752352Z echo "c10_InlineStreamGuard_test" failed with exit code 0 2025-08-26T22:58:43.8752714Z goto fail 2025-08-26T22:58:43.8752891Z ) 2025-08-26T22:58:43.8753006Z 2025-08-26T22:58:43.8753225Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T22:58:43.8753687Z echo "c10_InlineStreamGuard_test" failed with exit code 0 2025-08-26T22:58:43.8754022Z goto fail 2025-08-26T22:58:43.8754209Z ) 2025-08-26T22:58:43.8754343Z 2025-08-26T22:58:43.8754507Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T22:58:43.8763010Z 2025-08-26T22:58:43.8763503Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T22:58:43.8764311Z call :libtorch_check "c10_IntrusiveList_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_IntrusiveList_test.exe" 2025-08-26T22:58:43.8765022Z if errorlevel 1 goto fail 2025-08-26T22:58:43.8765261Z ) 2025-08-26T22:58:43.8808436Z 2025-08-26T22:58:43.8808860Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:58:43.8813218Z 2025-08-26T22:58:43.8813734Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T22:58:43.8816138Z 2025-08-26T22:58:43.8816672Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_IntrusiveList_test" == "verify_api_visibility" goto :eof 2025-08-26T22:58:43.8817887Z 2025-08-26T22:58:43.8818471Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_IntrusiveList_test.exe" 2025-08-26T22:58:43.8819490Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_IntrusiveList_test.exe" 2025-08-26T22:58:43.8820534Z 2025-08-26T22:58:43.8820955Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_IntrusiveList_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T22:58:43.8821759Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_IntrusiveList_test.exe" 2025-08-26T22:58:43.8822295Z goto :eof 2025-08-26T22:58:43.8822468Z ) 2025-08-26T22:58:43.8822591Z 2025-08-26T22:58:43.8823014Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_IntrusiveList_test" 2025-08-26T22:58:49.9879388Z Found test times from artifacts 2025-08-26T22:58:50.0614789Z Found test times from artifacts 2025-08-26T22:58:50.0636785Z Running all tests 2025-08-26T22:58:50.0641944Z Running parallel tests on 3 processes 2025-08-26T22:58:50.0642328Z Name: tests to run (est. time: 0.0min) 2025-08-26T22:58:50.0642648Z Serial tests (0): 2025-08-26T22:58:50.0642867Z Parallel tests (1): 2025-08-26T22:58:50.0643121Z cpp/c10_IntrusiveList_test 1/1 2025-08-26T22:58:50.0643394Z Name: excluded (est. time: 0.0min) 2025-08-26T22:58:50.0643664Z Serial tests (0): 2025-08-26T22:58:50.0643873Z Parallel tests (0): 2025-08-26T22:58:50.0645647Z Running cpp/c10_IntrusiveList_test 1/1 ... [2025-08-26 22:58:50.062494] 2025-08-26T22:58:50.0646079Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:58:50.0655577Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_IntrusiveList_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-38420eaa2100d337.xml', '-x', '--reruns=2'] ... [2025-08-26 22:58:50.062494] 2025-08-26T22:58:50.0657605Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T22:58:51.5918228Z 2025-08-26T22:58:51.5919292Z cpp/c10_IntrusiveList_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_IntrusiveList_test_1.1_2a5213b833e481c1_.log 2025-08-26T22:58:51.5919992Z 2025-08-26T22:58:56.0504458Z Running cpp/c10_IntrusiveList_test 1/1 ... [2025-08-26 22:58:56.048890] 2025-08-26T22:58:56.0504917Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:58:56.0513771Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_IntrusiveList_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-76a6524f27042697.xml', '-x', '--reruns=2'] ... [2025-08-26 22:58:56.048890] 2025-08-26T22:58:57.5948315Z 2025-08-26T22:58:57.5949379Z cpp/c10_IntrusiveList_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_IntrusiveList_test_1.1_223c1235636d3733_.log 2025-08-26T22:58:57.5950180Z 2025-08-26T22:58:58.4509149Z Running test batch 'tests to run' cost 8.39 seconds 2025-08-26T22:58:58.4517595Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T22:58:58.4518058Z Uploading artifacts took 0.00 seconds 2025-08-26T22:58:59.2234814Z 2025-08-26T22:58:59.2235649Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T22:58:59.2236134Z echo "c10_IntrusiveList_test" failed with exit code 0 2025-08-26T22:58:59.2236634Z goto fail 2025-08-26T22:58:59.2236828Z ) 2025-08-26T22:58:59.2236936Z 2025-08-26T22:58:59.2237128Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T22:58:59.2237583Z echo "c10_IntrusiveList_test" failed with exit code 0 2025-08-26T22:58:59.2237898Z goto fail 2025-08-26T22:58:59.2238091Z ) 2025-08-26T22:58:59.2238191Z 2025-08-26T22:58:59.2238346Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T22:58:59.2245456Z 2025-08-26T22:58:59.2245898Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T22:58:59.2246733Z call :libtorch_check "c10_intrusive_ptr_benchmark" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_intrusive_ptr_benchmark.exe" 2025-08-26T22:58:59.2247463Z if errorlevel 1 goto fail 2025-08-26T22:58:59.2247706Z ) 2025-08-26T22:58:59.2256293Z 2025-08-26T22:58:59.2256663Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:58:59.2260497Z 2025-08-26T22:58:59.2260990Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T22:58:59.2263436Z 2025-08-26T22:58:59.2264157Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_intrusive_ptr_benchmark" == "verify_api_visibility" goto :eof 2025-08-26T22:58:59.2264984Z 2025-08-26T22:58:59.2265637Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_intrusive_ptr_benchmark.exe" 2025-08-26T22:58:59.2266669Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_intrusive_ptr_benchmark.exe" 2025-08-26T22:58:59.2267739Z 2025-08-26T22:58:59.2268195Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_intrusive_ptr_benchmark" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T22:58:59.2269027Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_intrusive_ptr_benchmark.exe" 2025-08-26T22:58:59.2269564Z goto :eof 2025-08-26T22:58:59.2269754Z ) 2025-08-26T22:58:59.2455569Z 2025-08-26T22:58:59+00:00 2025-08-26T22:58:59.2456169Z Running C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_intrusive_ptr_benchmark.exe 2025-08-26T22:58:59.2456752Z Run on (16 X 3000 MHz CPU s) 2025-08-26T22:58:59.2456984Z CPU Caches: 2025-08-26T22:58:59.2457181Z L1 Data 32 KiB (x8) 2025-08-26T22:58:59.2457623Z L1 Instruction 32 KiB (x8) 2025-08-26T22:58:59.2457956Z L2 Unified 1024 KiB (x8) 2025-08-26T22:58:59.2458186Z L3 Unified 36608 KiB (x1) 2025-08-26T22:59:00.1505594Z ---------------------------------------------------------------------------- 2025-08-26T22:59:00.1506120Z Benchmark Time CPU Iterations 2025-08-26T22:59:00.1506545Z ---------------------------------------------------------------------------- 2025-08-26T22:59:00.1507094Z BM_IntrusivePtrCtorDtor 12.0 ns 12.2 ns 64000000 2025-08-26T22:59:00.9594025Z BM_SharedPtrCtorDtor 12.1 ns 12.0 ns 56000000 2025-08-26T22:59:01.8835222Z BM_IntrusivePtrArray/16 225 ns 225 ns 2986667 2025-08-26T22:59:03.1278431Z BM_IntrusivePtrArray/32 449 ns 452 ns 1659259 2025-08-26T22:59:03.9125926Z BM_IntrusivePtrArray/64 917 ns 921 ns 746667 2025-08-26T22:59:04.8433563Z BM_IntrusivePtrArray/128 1796 ns 1803 ns 407273 2025-08-26T22:59:05.9463559Z BM_IntrusivePtrArray/256 3605 ns 3610 ns 194783 2025-08-26T22:59:06.5643701Z BM_IntrusivePtrArray/512 7201 ns 7115 ns 74667 2025-08-26T22:59:07.3694885Z BM_IntrusivePtrArray/1024 14401 ns 14300 ns 44800 2025-08-26T22:59:08.4484771Z BM_IntrusivePtrArray/2048 28777 ns 29053 ns 26353 2025-08-26T22:59:09.1615837Z BM_IntrusivePtrArray/4096 57833 ns 57199 ns 11200 2025-08-26T22:59:10.1300183Z BM_SharedPtrArray/16 225 ns 225 ns 3200000 2025-08-26T22:59:11.3132238Z BM_SharedPtrArray/32 449 ns 450 ns 1493333 2025-08-26T22:59:12.2301468Z BM_SharedPtrArray/64 912 ns 924 ns 896000 2025-08-26T22:59:13.1610864Z BM_SharedPtrArray/128 1795 ns 1803 ns 407273 2025-08-26T22:59:14.2335134Z BM_SharedPtrArray/256 3599 ns 3599 ns 186667 2025-08-26T22:59:14.9597150Z BM_SharedPtrArray/512 7209 ns 7150 ns 89600 2025-08-26T22:59:15.8361628Z BM_SharedPtrArray/1024 14393 ns 14439 ns 49778 2025-08-26T22:59:16.8398492Z BM_SharedPtrArray/2048 28924 ns 29157 ns 23579 2025-08-26T22:59:17.5514769Z BM_SharedPtrArray/4096 57797 ns 57199 ns 11200 2025-08-26T22:59:18.2848185Z BM_IntrusivePtrExclusiveOwnership 66.6 ns 60.9 ns 10000000 2025-08-26T22:59:18.9624522Z BM_SharedPtrExclusiveOwnership 67.6 ns 66.3 ns 8960000 2025-08-26T22:59:18.9652431Z 2025-08-26T22:59:18.9652985Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T22:59:18.9653775Z call :libtorch_check "c10_intrusive_ptr_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_intrusive_ptr_test.exe" 2025-08-26T22:59:18.9654514Z if errorlevel 1 goto fail 2025-08-26T22:59:18.9654758Z ) 2025-08-26T22:59:18.9663753Z 2025-08-26T22:59:18.9664245Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:59:18.9667907Z 2025-08-26T22:59:18.9668400Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T22:59:18.9671058Z 2025-08-26T22:59:18.9671458Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_intrusive_ptr_test" == "verify_api_visibility" goto :eof 2025-08-26T22:59:18.9672749Z 2025-08-26T22:59:18.9673389Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_intrusive_ptr_test.exe" 2025-08-26T22:59:18.9674436Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_intrusive_ptr_test.exe" 2025-08-26T22:59:18.9675458Z 2025-08-26T22:59:18.9675885Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_intrusive_ptr_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T22:59:18.9676680Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_intrusive_ptr_test.exe" 2025-08-26T22:59:18.9677203Z goto :eof 2025-08-26T22:59:18.9677381Z ) 2025-08-26T22:59:18.9677479Z 2025-08-26T22:59:18.9677883Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_intrusive_ptr_test" 2025-08-26T22:59:25.0892878Z Found test times from artifacts 2025-08-26T22:59:25.1608945Z Found test times from artifacts 2025-08-26T22:59:25.1632024Z Running all tests 2025-08-26T22:59:25.1638146Z Running parallel tests on 3 processes 2025-08-26T22:59:25.1638651Z Name: tests to run (est. time: 0.0min) 2025-08-26T22:59:25.1638950Z Serial tests (0): 2025-08-26T22:59:25.1639196Z Parallel tests (1): 2025-08-26T22:59:25.1639463Z cpp/c10_intrusive_ptr_test 1/1 2025-08-26T22:59:25.1639750Z Name: excluded (est. time: 0.0min) 2025-08-26T22:59:25.1640010Z Serial tests (0): 2025-08-26T22:59:25.1640237Z Parallel tests (0): 2025-08-26T22:59:25.1642842Z Running cpp/c10_intrusive_ptr_test 1/1 ... [2025-08-26 22:59:25.163908] 2025-08-26T22:59:25.1643290Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:59:25.1653271Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_intrusive_ptr_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-d578edd13a9550fd.xml', '-x', '--reruns=2'] ... [2025-08-26 22:59:25.165128] 2025-08-26T22:59:25.1655292Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T22:59:26.6625791Z 2025-08-26T22:59:26.6626931Z cpp/c10_intrusive_ptr_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_intrusive_ptr_test_1.1_24b1f44c59e7814c_.log 2025-08-26T22:59:26.6627629Z 2025-08-26T22:59:31.0777434Z Running cpp/c10_intrusive_ptr_test 1/1 ... [2025-08-26 22:59:31.077374] 2025-08-26T22:59:31.0777915Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:59:31.0786663Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_intrusive_ptr_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-3183f460808b02d6.xml', '-x', '--reruns=2'] ... [2025-08-26 22:59:31.078472] 2025-08-26T22:59:33.9412461Z 2025-08-26T22:59:33.9413631Z cpp/c10_intrusive_ptr_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_intrusive_ptr_test_1.1_5581672a786cba67_.log 2025-08-26T22:59:33.9420101Z 2025-08-26T22:59:34.7486943Z Running test batch 'tests to run' cost 9.58 seconds 2025-08-26T22:59:34.7493702Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T22:59:34.7494225Z Uploading artifacts took 0.00 seconds 2025-08-26T22:59:35.5076874Z 2025-08-26T22:59:35.5077421Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T22:59:35.5077890Z echo "c10_intrusive_ptr_test" failed with exit code 0 2025-08-26T22:59:35.5078227Z goto fail 2025-08-26T22:59:35.5078404Z ) 2025-08-26T22:59:35.5078528Z 2025-08-26T22:59:35.5078724Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T22:59:35.5079181Z echo "c10_intrusive_ptr_test" failed with exit code 0 2025-08-26T22:59:35.5079517Z goto fail 2025-08-26T22:59:35.5079694Z ) 2025-08-26T22:59:35.5079804Z 2025-08-26T22:59:35.5079957Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T22:59:35.5087213Z 2025-08-26T22:59:35.5087467Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T22:59:35.5088360Z call :libtorch_check "c10_irange_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_irange_test.exe" 2025-08-26T22:59:35.5089079Z if errorlevel 1 goto fail 2025-08-26T22:59:35.5089322Z ) 2025-08-26T22:59:35.5097619Z 2025-08-26T22:59:35.5098010Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:59:35.5101785Z 2025-08-26T22:59:35.5102296Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T22:59:35.5104668Z 2025-08-26T22:59:35.5105184Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_irange_test" == "verify_api_visibility" goto :eof 2025-08-26T22:59:35.5106232Z 2025-08-26T22:59:35.5107116Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_irange_test.exe" 2025-08-26T22:59:35.5108100Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_irange_test.exe" 2025-08-26T22:59:35.5109170Z 2025-08-26T22:59:35.5109609Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_irange_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T22:59:35.5110345Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_irange_test.exe" 2025-08-26T22:59:35.5110859Z goto :eof 2025-08-26T22:59:35.5111036Z ) 2025-08-26T22:59:35.5111133Z 2025-08-26T22:59:35.5111513Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_irange_test" 2025-08-26T22:59:41.6007033Z Found test times from artifacts 2025-08-26T22:59:41.6690544Z Found test times from artifacts 2025-08-26T22:59:41.6712039Z Running all tests 2025-08-26T22:59:41.6717604Z Running parallel tests on 3 processes 2025-08-26T22:59:41.6717983Z Name: tests to run (est. time: 0.0min) 2025-08-26T22:59:41.6718272Z Serial tests (0): 2025-08-26T22:59:41.6718499Z Parallel tests (1): 2025-08-26T22:59:41.6718774Z cpp/c10_irange_test 1/1 2025-08-26T22:59:41.6720839Z Name: excluded (est. time: 0.0min) 2025-08-26T22:59:41.6721136Z Serial tests (0): 2025-08-26T22:59:41.6721347Z Parallel tests (0): 2025-08-26T22:59:41.6721676Z Running cpp/c10_irange_test 1/1 ... [2025-08-26 22:59:41.669525] 2025-08-26T22:59:41.6722061Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:59:41.6742930Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_irange_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-eafc1a3d38aaa611.xml', '-x', '--reruns=2'] ... [2025-08-26 22:59:41.673777] 2025-08-26T22:59:41.6744879Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T22:59:43.1807793Z 2025-08-26T22:59:43.1808655Z cpp/c10_irange_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_irange_test_1.1_f9ce6e2df575763f_.log 2025-08-26T22:59:43.1809552Z 2025-08-26T22:59:47.5360949Z Running cpp/c10_irange_test 1/1 ... [2025-08-26 22:59:47.531459] 2025-08-26T22:59:47.5361393Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:59:47.5370334Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_irange_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-71e6405e06268ee1.xml', '-x', '--reruns=2'] ... [2025-08-26 22:59:47.531459] 2025-08-26T22:59:49.0870813Z 2025-08-26T22:59:49.0871689Z cpp/c10_irange_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_irange_test_1.1_579778c13e4edff3_.log 2025-08-26T22:59:49.0872482Z 2025-08-26T22:59:49.8983995Z Running test batch 'tests to run' cost 8.23 seconds 2025-08-26T22:59:49.8990610Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T22:59:49.8991152Z Uploading artifacts took 0.00 seconds 2025-08-26T22:59:50.5916177Z 2025-08-26T22:59:50.5916825Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T22:59:50.5917305Z echo "c10_irange_test" failed with exit code 0 2025-08-26T22:59:50.5917609Z goto fail 2025-08-26T22:59:50.5917803Z ) 2025-08-26T22:59:50.5917913Z 2025-08-26T22:59:50.5918106Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T22:59:50.5918554Z echo "c10_irange_test" failed with exit code 0 2025-08-26T22:59:50.5918865Z goto fail 2025-08-26T22:59:50.5919047Z ) 2025-08-26T22:59:50.5919143Z 2025-08-26T22:59:50.5919316Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T22:59:50.5926435Z 2025-08-26T22:59:50.5926660Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T22:59:50.5927377Z call :libtorch_check "c10_lazy_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_lazy_test.exe" 2025-08-26T22:59:50.5928006Z if errorlevel 1 goto fail 2025-08-26T22:59:50.5928233Z ) 2025-08-26T22:59:50.5937201Z 2025-08-26T22:59:50.5937600Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:59:50.5941339Z 2025-08-26T22:59:50.5941845Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T22:59:50.5944203Z 2025-08-26T22:59:50.5944612Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_lazy_test" == "verify_api_visibility" goto :eof 2025-08-26T22:59:50.5945712Z 2025-08-26T22:59:50.5946255Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_lazy_test.exe" 2025-08-26T22:59:50.5947352Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_lazy_test.exe" 2025-08-26T22:59:50.5948981Z 2025-08-26T22:59:50.5949406Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_lazy_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T22:59:50.5950131Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_lazy_test.exe" 2025-08-26T22:59:50.5950613Z goto :eof 2025-08-26T22:59:50.5950803Z ) 2025-08-26T22:59:50.5950904Z 2025-08-26T22:59:50.5951273Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_lazy_test" 2025-08-26T22:59:56.6272461Z Found test times from artifacts 2025-08-26T22:59:56.6951834Z Found test times from artifacts 2025-08-26T22:59:56.6973309Z Running all tests 2025-08-26T22:59:56.6978340Z Running parallel tests on 3 processes 2025-08-26T22:59:56.6978725Z Name: tests to run (est. time: 0.0min) 2025-08-26T22:59:56.6978997Z Serial tests (0): 2025-08-26T22:59:56.6979223Z Parallel tests (1): 2025-08-26T22:59:56.6979510Z cpp/c10_lazy_test 1/1 2025-08-26T22:59:56.6979773Z Name: excluded (est. time: 0.0min) 2025-08-26T22:59:56.6980091Z Serial tests (0): 2025-08-26T22:59:56.6980290Z Parallel tests (0): 2025-08-26T22:59:56.6982228Z Running cpp/c10_lazy_test 1/1 ... [2025-08-26 22:59:56.697981] 2025-08-26T22:59:56.6982601Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:59:56.6992320Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_lazy_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-71d617f1b6c43d51.xml', '-x', '--reruns=2'] ... [2025-08-26 22:59:56.699078] 2025-08-26T22:59:56.6994077Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T22:59:58.1848863Z 2025-08-26T22:59:58.1850025Z cpp/c10_lazy_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_lazy_test_1.1_0aeb7f75cc0913d7_.log 2025-08-26T22:59:58.1850728Z 2025-08-26T23:00:02.6938202Z Running cpp/c10_lazy_test 1/1 ... [2025-08-26 23:00:02.693659] 2025-08-26T23:00:02.6938641Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:00:02.6947408Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_lazy_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-ae56e68260ce7465.xml', '-x', '--reruns=2'] ... [2025-08-26 23:00:02.694255] 2025-08-26T23:00:04.2034091Z 2025-08-26T23:00:04.2034909Z cpp/c10_lazy_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_lazy_test_1.1_157027a5a15c0ac1_.log 2025-08-26T23:00:04.2035622Z 2025-08-26T23:00:05.0526833Z Running test batch 'tests to run' cost 8.36 seconds 2025-08-26T23:00:05.0533475Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:00:05.0533968Z Uploading artifacts took 0.00 seconds 2025-08-26T23:00:05.7322249Z 2025-08-26T23:00:05.7322833Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:00:05.7323295Z echo "c10_lazy_test" failed with exit code 0 2025-08-26T23:00:05.7323606Z goto fail 2025-08-26T23:00:05.7323777Z ) 2025-08-26T23:00:05.7324018Z 2025-08-26T23:00:05.7324263Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:00:05.7324669Z echo "c10_lazy_test" failed with exit code 0 2025-08-26T23:00:05.7325146Z goto fail 2025-08-26T23:00:05.7325325Z ) 2025-08-26T23:00:05.7325428Z 2025-08-26T23:00:05.7327038Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:00:05.7333102Z 2025-08-26T23:00:05.7333390Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:00:05.7334107Z call :libtorch_check "c10_LeftRight_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_LeftRight_test.exe" 2025-08-26T23:00:05.7334782Z if errorlevel 1 goto fail 2025-08-26T23:00:05.7335013Z ) 2025-08-26T23:00:05.7343448Z 2025-08-26T23:00:05.7344087Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:00:05.7348046Z 2025-08-26T23:00:05.7348579Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:00:05.7350882Z 2025-08-26T23:00:05.7351395Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_LeftRight_test" == "verify_api_visibility" goto :eof 2025-08-26T23:00:05.7352428Z 2025-08-26T23:00:05.7352989Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_LeftRight_test.exe" 2025-08-26T23:00:05.7353956Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_LeftRight_test.exe" 2025-08-26T23:00:05.7355738Z 2025-08-26T23:00:05.7356225Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_LeftRight_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:00:05.7356993Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_LeftRight_test.exe" 2025-08-26T23:00:05.7357503Z goto :eof 2025-08-26T23:00:05.7357691Z ) 2025-08-26T23:00:05.7357792Z 2025-08-26T23:00:05.7358177Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_LeftRight_test" 2025-08-26T23:00:11.7571769Z Found test times from artifacts 2025-08-26T23:00:11.8257215Z Found test times from artifacts 2025-08-26T23:00:11.8279415Z Running all tests 2025-08-26T23:00:11.8284564Z Running parallel tests on 3 processes 2025-08-26T23:00:11.8284907Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:00:11.8285197Z Serial tests (0): 2025-08-26T23:00:11.8285402Z Parallel tests (1): 2025-08-26T23:00:11.8285677Z cpp/c10_LeftRight_test 1/1 2025-08-26T23:00:11.8286154Z Name: excluded (est. time: 0.0min) 2025-08-26T23:00:11.8286420Z Serial tests (0): 2025-08-26T23:00:11.8286702Z Parallel tests (0): 2025-08-26T23:00:11.8288314Z Running cpp/c10_LeftRight_test 1/1 ... [2025-08-26 23:00:11.828022] 2025-08-26T23:00:11.8288710Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:00:11.8298362Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_LeftRight_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-d522b85d3a91094a.xml', '-x', '--reruns=2'] ... [2025-08-26 23:00:11.828022] 2025-08-26T23:00:11.8300141Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:00:13.3252722Z 2025-08-26T23:00:13.3253895Z cpp/c10_LeftRight_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_LeftRight_test_1.1_a732a835bb10e579_.log 2025-08-26T23:00:13.3254575Z 2025-08-26T23:00:17.7976204Z Running cpp/c10_LeftRight_test 1/1 ... [2025-08-26 23:00:17.796913] 2025-08-26T23:00:17.7976651Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:00:17.7985574Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_LeftRight_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-e23b9e58af26dd1e.xml', '-x', '--reruns=2'] ... [2025-08-26 23:00:17.798114] 2025-08-26T23:00:19.4955784Z 2025-08-26T23:00:19.4956659Z cpp/c10_LeftRight_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_LeftRight_test_1.1_889d07195a23c1e7_.log 2025-08-26T23:00:19.4957717Z 2025-08-26T23:00:20.3904434Z Running test batch 'tests to run' cost 8.56 seconds 2025-08-26T23:00:20.3911627Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:00:20.3912138Z Uploading artifacts took 0.00 seconds 2025-08-26T23:00:21.0535782Z 2025-08-26T23:00:21.0536305Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:00:21.0536781Z echo "c10_LeftRight_test" failed with exit code 0 2025-08-26T23:00:21.0537093Z goto fail 2025-08-26T23:00:21.0537294Z ) 2025-08-26T23:00:21.0537389Z 2025-08-26T23:00:21.0537604Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:00:21.0538028Z echo "c10_LeftRight_test" failed with exit code 0 2025-08-26T23:00:21.0538367Z goto fail 2025-08-26T23:00:21.0538538Z ) 2025-08-26T23:00:21.0538638Z 2025-08-26T23:00:21.0539129Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:00:21.0545939Z 2025-08-26T23:00:21.0546171Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:00:21.0546909Z call :libtorch_check "c10_logging_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_logging_test.exe" 2025-08-26T23:00:21.0547564Z if errorlevel 1 goto fail 2025-08-26T23:00:21.0547793Z ) 2025-08-26T23:00:21.0556732Z 2025-08-26T23:00:21.0557110Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:00:21.0560814Z 2025-08-26T23:00:21.0561375Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:00:21.0563785Z 2025-08-26T23:00:21.0564203Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_logging_test" == "verify_api_visibility" goto :eof 2025-08-26T23:00:21.0565294Z 2025-08-26T23:00:21.0565968Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_logging_test.exe" 2025-08-26T23:00:21.0567757Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_logging_test.exe" 2025-08-26T23:00:21.0576641Z 2025-08-26T23:00:21.0577471Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_logging_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:00:21.0578776Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_logging_test.exe" 2025-08-26T23:00:21.0579275Z goto :eof 2025-08-26T23:00:21.0579466Z ) 2025-08-26T23:00:21.0579565Z 2025-08-26T23:00:21.0579944Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_logging_test" 2025-08-26T23:00:27.1071060Z Found test times from artifacts 2025-08-26T23:00:27.1755862Z Found test times from artifacts 2025-08-26T23:00:27.1777801Z Running all tests 2025-08-26T23:00:27.1783234Z Running parallel tests on 3 processes 2025-08-26T23:00:27.1783613Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:00:27.1783905Z Serial tests (0): 2025-08-26T23:00:27.1784123Z Parallel tests (1): 2025-08-26T23:00:27.1784360Z cpp/c10_logging_test 1/1 2025-08-26T23:00:27.1784643Z Name: excluded (est. time: 0.0min) 2025-08-26T23:00:27.1784916Z Serial tests (0): 2025-08-26T23:00:27.1785123Z Parallel tests (0): 2025-08-26T23:00:27.1787033Z Running cpp/c10_logging_test 1/1 ... [2025-08-26 23:00:27.175976] 2025-08-26T23:00:27.1787436Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:00:27.1797118Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_logging_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-2937d6c75104cd2b.xml', '-x', '--reruns=2'] ... [2025-08-26 23:00:27.179046] 2025-08-26T23:00:27.1799043Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:00:28.7465726Z 2025-08-26T23:00:28.7466662Z cpp/c10_logging_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_logging_test_1.1_8b234abbdf7da146_.log 2025-08-26T23:00:28.7467314Z 2025-08-26T23:00:33.1944928Z Running cpp/c10_logging_test 1/1 ... [2025-08-26 23:00:33.189557] 2025-08-26T23:00:33.1945377Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:00:33.1954019Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_logging_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-0de76ad5bd73db24.xml', '-x', '--reruns=2'] ... [2025-08-26 23:00:33.189557] 2025-08-26T23:00:34.7644436Z 2025-08-26T23:00:34.7645330Z cpp/c10_logging_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_logging_test_1.1_f8ae47ef463e59e4_.log 2025-08-26T23:00:34.7646093Z 2025-08-26T23:00:35.5986576Z Running test batch 'tests to run' cost 8.41 seconds 2025-08-26T23:00:35.5993128Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:00:35.5993635Z Uploading artifacts took 0.00 seconds 2025-08-26T23:00:36.3167783Z 2025-08-26T23:00:36.3168648Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:00:36.3169154Z echo "c10_logging_test" failed with exit code 0 2025-08-26T23:00:36.3169495Z goto fail 2025-08-26T23:00:36.3169712Z ) 2025-08-26T23:00:36.3169826Z 2025-08-26T23:00:36.3170030Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:00:36.3170536Z echo "c10_logging_test" failed with exit code 0 2025-08-26T23:00:36.3170881Z goto fail 2025-08-26T23:00:36.3171100Z ) 2025-08-26T23:00:36.3171212Z 2025-08-26T23:00:36.3171401Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:00:36.3178384Z 2025-08-26T23:00:36.3178611Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:00:36.3187767Z call :libtorch_check "c10_Metaprogramming_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Metaprogramming_test.exe" 2025-08-26T23:00:36.3188582Z if errorlevel 1 goto fail 2025-08-26T23:00:36.3188830Z ) 2025-08-26T23:00:36.3188931Z 2025-08-26T23:00:36.3189664Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:00:36.3193272Z 2025-08-26T23:00:36.3193901Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:00:36.3196250Z 2025-08-26T23:00:36.3196810Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Metaprogramming_test" == "verify_api_visibility" goto :eof 2025-08-26T23:00:36.3197873Z 2025-08-26T23:00:36.3198567Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Metaprogramming_test.exe" 2025-08-26T23:00:36.3199574Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Metaprogramming_test.exe" 2025-08-26T23:00:36.3200530Z 2025-08-26T23:00:36.3201005Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Metaprogramming_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:00:36.3201912Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Metaprogramming_test.exe" 2025-08-26T23:00:36.3202451Z goto :eof 2025-08-26T23:00:36.3202645Z ) 2025-08-26T23:00:36.3202747Z 2025-08-26T23:00:36.3203154Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_Metaprogramming_test" 2025-08-26T23:00:42.4061740Z Found test times from artifacts 2025-08-26T23:00:42.4749786Z Found test times from artifacts 2025-08-26T23:00:42.4771788Z Running all tests 2025-08-26T23:00:42.4777685Z Running parallel tests on 3 processes 2025-08-26T23:00:42.4778031Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:00:42.4778318Z Serial tests (0): 2025-08-26T23:00:42.4778536Z Parallel tests (1): 2025-08-26T23:00:42.4778818Z cpp/c10_Metaprogramming_test 1/1 2025-08-26T23:00:42.4779097Z Name: excluded (est. time: 0.0min) 2025-08-26T23:00:42.4779369Z Serial tests (0): 2025-08-26T23:00:42.4779586Z Parallel tests (0): 2025-08-26T23:00:42.4781310Z Running cpp/c10_Metaprogramming_test 1/1 ... [2025-08-26 23:00:42.475420] 2025-08-26T23:00:42.4781757Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:00:42.4791481Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_Metaprogramming_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-5a0c2764caf7ccc8.xml', '-x', '--reruns=2'] ... [2025-08-26 23:00:42.478511] 2025-08-26T23:00:42.4793317Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:00:43.9884590Z 2025-08-26T23:00:43.9885535Z cpp/c10_Metaprogramming_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_Metaprogramming_test_1.1_9135fb434bc3248e_.log 2025-08-26T23:00:43.9886281Z 2025-08-26T23:00:48.5538627Z Running cpp/c10_Metaprogramming_test 1/1 ... [2025-08-26 23:00:48.553589] 2025-08-26T23:00:48.5539132Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:00:48.5548539Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_Metaprogramming_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-6c99f427e55f1148.xml', '-x', '--reruns=2'] ... [2025-08-26 23:00:48.554339] 2025-08-26T23:00:50.1583764Z 2025-08-26T23:00:50.1584731Z cpp/c10_Metaprogramming_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_Metaprogramming_test_1.1_43938f6bc93e29d5_.log 2025-08-26T23:00:50.1585716Z 2025-08-26T23:00:51.0203666Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:00:51.0204278Z Uploading artifacts took 0.00 seconds 2025-08-26T23:00:51.0204608Z Running test batch 'tests to run' cost 8.54 seconds 2025-08-26T23:00:51.7813560Z 2025-08-26T23:00:51.7814310Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:00:51.7814813Z echo "c10_Metaprogramming_test" failed with exit code 0 2025-08-26T23:00:51.7815166Z goto fail 2025-08-26T23:00:51.7815362Z ) 2025-08-26T23:00:51.7815470Z 2025-08-26T23:00:51.7815681Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:00:51.7816149Z echo "c10_Metaprogramming_test" failed with exit code 0 2025-08-26T23:00:51.7816484Z goto fail 2025-08-26T23:00:51.7816678Z ) 2025-08-26T23:00:51.7816902Z 2025-08-26T23:00:51.7817413Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:00:51.7824505Z 2025-08-26T23:00:51.7824767Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:00:51.7825516Z call :libtorch_check "c10_NetworkFlow_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_NetworkFlow_test.exe" 2025-08-26T23:00:51.7826225Z if errorlevel 1 goto fail 2025-08-26T23:00:51.7826515Z ) 2025-08-26T23:00:51.7835304Z 2025-08-26T23:00:51.7835807Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:00:51.7839545Z 2025-08-26T23:00:51.7840097Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:00:51.7842463Z 2025-08-26T23:00:51.7843002Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_NetworkFlow_test" == "verify_api_visibility" goto :eof 2025-08-26T23:00:51.7844036Z 2025-08-26T23:00:51.7845921Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_NetworkFlow_test.exe" 2025-08-26T23:00:51.7846946Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_NetworkFlow_test.exe" 2025-08-26T23:00:51.7847419Z 2025-08-26T23:00:51.7847755Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_NetworkFlow_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:00:51.7848537Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_NetworkFlow_test.exe" 2025-08-26T23:00:51.7849064Z goto :eof 2025-08-26T23:00:51.7849237Z ) 2025-08-26T23:00:51.7849338Z 2025-08-26T23:00:51.7849737Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_NetworkFlow_test" 2025-08-26T23:00:57.8153816Z Found test times from artifacts 2025-08-26T23:00:57.8821676Z Found test times from artifacts 2025-08-26T23:00:57.8843919Z Running all tests 2025-08-26T23:00:57.8849049Z Running parallel tests on 3 processes 2025-08-26T23:00:57.8849433Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:00:57.8849731Z Serial tests (0): 2025-08-26T23:00:57.8849997Z Parallel tests (1): 2025-08-26T23:00:57.8850235Z cpp/c10_NetworkFlow_test 1/1 2025-08-26T23:00:57.8850516Z Name: excluded (est. time: 0.0min) 2025-08-26T23:00:57.8850770Z Serial tests (0): 2025-08-26T23:00:57.8850997Z Parallel tests (0): 2025-08-26T23:00:57.8852620Z Running cpp/c10_NetworkFlow_test 1/1 ... [2025-08-26 23:00:57.878397] 2025-08-26T23:00:57.8853056Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:00:57.8863226Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_NetworkFlow_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-226b08a817685bb8.xml', '-x', '--reruns=2'] ... [2025-08-26 23:00:57.878397] 2025-08-26T23:00:57.8865026Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:00:59.3978935Z 2025-08-26T23:00:59.3979824Z cpp/c10_NetworkFlow_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_NetworkFlow_test_1.1_8cbdac39b1cf571e_.log 2025-08-26T23:00:59.3980583Z 2025-08-26T23:01:03.9082035Z Running cpp/c10_NetworkFlow_test 1/1 ... [2025-08-26 23:01:03.904979] 2025-08-26T23:01:03.9082483Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:01:03.9091345Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_NetworkFlow_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-cd79a7a1f843b6fd.xml', '-x', '--reruns=2'] ... [2025-08-26 23:01:03.904979] 2025-08-26T23:01:05.4786641Z 2025-08-26T23:01:05.4789230Z cpp/c10_NetworkFlow_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_NetworkFlow_test_1.1_e9109e87e02979b2_.log 2025-08-26T23:01:05.4789925Z 2025-08-26T23:01:06.3151103Z Running test batch 'tests to run' cost 8.44 seconds 2025-08-26T23:01:06.3159594Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:01:06.3160083Z Uploading artifacts took 0.00 seconds 2025-08-26T23:01:07.1116950Z 2025-08-26T23:01:07.1117501Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:01:07.1117976Z echo "c10_NetworkFlow_test" failed with exit code 0 2025-08-26T23:01:07.1118309Z goto fail 2025-08-26T23:01:07.1118649Z ) 2025-08-26T23:01:07.1118770Z 2025-08-26T23:01:07.1118972Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:01:07.1119404Z echo "c10_NetworkFlow_test" failed with exit code 0 2025-08-26T23:01:07.1119733Z goto fail 2025-08-26T23:01:07.1119912Z ) 2025-08-26T23:01:07.1120031Z 2025-08-26T23:01:07.1120188Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:01:07.1127543Z 2025-08-26T23:01:07.1128042Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:01:07.1128798Z call :libtorch_check "c10_optional_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_optional_test.exe" 2025-08-26T23:01:07.1129446Z if errorlevel 1 goto fail 2025-08-26T23:01:07.1129685Z ) 2025-08-26T23:01:07.1138114Z 2025-08-26T23:01:07.1138597Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:01:07.1142269Z 2025-08-26T23:01:07.1142829Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:01:07.1145272Z 2025-08-26T23:01:07.1145776Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_optional_test" == "verify_api_visibility" goto :eof 2025-08-26T23:01:07.1146913Z 2025-08-26T23:01:07.1147591Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_optional_test.exe" 2025-08-26T23:01:07.1148564Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_optional_test.exe" 2025-08-26T23:01:07.1149664Z 2025-08-26T23:01:07.1150015Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_optional_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:01:07.1150752Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_optional_test.exe" 2025-08-26T23:01:07.1151265Z goto :eof 2025-08-26T23:01:07.1151460Z ) 2025-08-26T23:01:07.1151569Z 2025-08-26T23:01:07.1151936Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_optional_test" 2025-08-26T23:01:13.3857316Z Found test times from artifacts 2025-08-26T23:01:13.4541514Z Found test times from artifacts 2025-08-26T23:01:13.4565228Z Running all tests 2025-08-26T23:01:13.4571253Z Running parallel tests on 3 processes 2025-08-26T23:01:13.4571754Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:01:13.4572278Z Serial tests (0): 2025-08-26T23:01:13.4572580Z Parallel tests (1): 2025-08-26T23:01:13.4572816Z cpp/c10_optional_test 1/1 2025-08-26T23:01:13.4573082Z Name: excluded (est. time: 0.0min) 2025-08-26T23:01:13.4573345Z Serial tests (0): 2025-08-26T23:01:13.4573571Z Parallel tests (0): 2025-08-26T23:01:13.4575254Z Running cpp/c10_optional_test 1/1 ... [2025-08-26 23:01:13.447693] 2025-08-26T23:01:13.4575674Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:01:13.4585913Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_optional_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-dce3a83d6d469840.xml', '-x', '--reruns=2'] ... [2025-08-26 23:01:13.458356] 2025-08-26T23:01:13.4587754Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:01:15.1228516Z 2025-08-26T23:01:15.1229530Z cpp/c10_optional_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_optional_test_1.1_4dcf65bb4e70967a_.log 2025-08-26T23:01:15.1230173Z 2025-08-26T23:01:19.6862695Z Running cpp/c10_optional_test 1/1 ... [2025-08-26 23:01:19.685780] 2025-08-26T23:01:19.6863137Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:01:19.6872595Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_optional_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-4107482e12d7f7ba.xml', '-x', '--reruns=2'] ... [2025-08-26 23:01:19.686974] 2025-08-26T23:01:21.3356260Z 2025-08-26T23:01:21.3357385Z cpp/c10_optional_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_optional_test_1.1_6bee766bd6901729_.log 2025-08-26T23:01:21.3359463Z 2025-08-26T23:01:22.2131233Z Running test batch 'tests to run' cost 8.77 seconds 2025-08-26T23:01:22.2137812Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:01:22.2138275Z Uploading artifacts took 0.00 seconds 2025-08-26T23:01:23.0361883Z 2025-08-26T23:01:23.0362581Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:01:23.0363069Z echo "c10_optional_test" failed with exit code 0 2025-08-26T23:01:23.0363382Z goto fail 2025-08-26T23:01:23.0363598Z ) 2025-08-26T23:01:23.0363694Z 2025-08-26T23:01:23.0363889Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:01:23.0364530Z echo "c10_optional_test" failed with exit code 0 2025-08-26T23:01:23.0364851Z goto fail 2025-08-26T23:01:23.0365023Z ) 2025-08-26T23:01:23.0365122Z 2025-08-26T23:01:23.0365298Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:01:23.0372032Z 2025-08-26T23:01:23.0372608Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:01:23.0373467Z call :libtorch_check "c10_ordered_preserving_dict_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ordered_preserving_dict_test.exe" 2025-08-26T23:01:23.0374250Z if errorlevel 1 goto fail 2025-08-26T23:01:23.0374492Z ) 2025-08-26T23:01:23.0382994Z 2025-08-26T23:01:23.0383374Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:01:23.0396944Z 2025-08-26T23:01:23.0397651Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:01:23.0400454Z 2025-08-26T23:01:23.0400901Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_ordered_preserving_dict_test" == "verify_api_visibility" goto :eof 2025-08-26T23:01:23.0402204Z 2025-08-26T23:01:23.0403235Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ordered_preserving_dict_test.exe" 2025-08-26T23:01:23.0404407Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ordered_preserving_dict_test.exe" 2025-08-26T23:01:23.0405367Z 2025-08-26T23:01:23.0406112Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_ordered_preserving_dict_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:01:23.0407049Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ordered_preserving_dict_test.exe" 2025-08-26T23:01:23.0407665Z goto :eof 2025-08-26T23:01:23.0407844Z ) 2025-08-26T23:01:23.0407947Z 2025-08-26T23:01:23.0408388Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_ordered_preserving_dict_test" 2025-08-26T23:01:29.3317875Z Found test times from artifacts 2025-08-26T23:01:29.4028719Z Found test times from artifacts 2025-08-26T23:01:29.4051244Z Running all tests 2025-08-26T23:01:29.4056978Z Running parallel tests on 3 processes 2025-08-26T23:01:29.4057405Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:01:29.4057711Z Serial tests (0): 2025-08-26T23:01:29.4057945Z Parallel tests (1): 2025-08-26T23:01:29.4058209Z cpp/c10_ordered_preserving_dict_test 1/1 2025-08-26T23:01:29.4058514Z Name: excluded (est. time: 0.0min) 2025-08-26T23:01:29.4058783Z Serial tests (0): 2025-08-26T23:01:29.4058994Z Parallel tests (0): 2025-08-26T23:01:29.4061452Z Running cpp/c10_ordered_preserving_dict_test 1/1 ... [2025-08-26 23:01:29.397507] 2025-08-26T23:01:29.4062102Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:01:29.4071623Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_ordered_preserving_dict_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-bc3a056cdc962897.xml', '-x', '--reruns=2'] ... [2025-08-26 23:01:29.397507] 2025-08-26T23:01:29.4073588Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:01:30.9603565Z 2025-08-26T23:01:30.9604823Z cpp/c10_ordered_preserving_dict_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_ordered_preserving_dict_test_1.1_ce934f8448f87a4f_.log 2025-08-26T23:01:30.9605622Z 2025-08-26T23:01:35.4951053Z Running cpp/c10_ordered_preserving_dict_test 1/1 ... [2025-08-26 23:01:35.490775] 2025-08-26T23:01:35.4951570Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:01:35.4960304Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_ordered_preserving_dict_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-961455042fa5ba82.xml', '-x', '--reruns=2'] ... [2025-08-26 23:01:35.490775] 2025-08-26T23:01:37.1304841Z 2025-08-26T23:01:37.1305800Z cpp/c10_ordered_preserving_dict_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_ordered_preserving_dict_test_1.1_b0ad2ff3eff3e351_.log 2025-08-26T23:01:37.1306812Z 2025-08-26T23:01:37.9682404Z Running test batch 'tests to run' cost 8.57 seconds 2025-08-26T23:01:37.9690069Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:01:37.9690546Z Uploading artifacts took 0.00 seconds 2025-08-26T23:01:38.7257010Z 2025-08-26T23:01:38.7257811Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:01:38.7258340Z echo "c10_ordered_preserving_dict_test" failed with exit code 0 2025-08-26T23:01:38.7258725Z goto fail 2025-08-26T23:01:38.7258897Z ) 2025-08-26T23:01:38.7259005Z 2025-08-26T23:01:38.7259197Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:01:38.7260346Z echo "c10_ordered_preserving_dict_test" failed with exit code 0 2025-08-26T23:01:38.7260871Z goto fail 2025-08-26T23:01:38.7261107Z ) 2025-08-26T23:01:38.7261207Z 2025-08-26T23:01:38.7261368Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:01:38.7267460Z 2025-08-26T23:01:38.7267676Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:01:38.7268367Z call :libtorch_check "c10_registry_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_registry_test.exe" 2025-08-26T23:01:38.7269022Z if errorlevel 1 goto fail 2025-08-26T23:01:38.7269281Z ) 2025-08-26T23:01:38.7278545Z 2025-08-26T23:01:38.7279172Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:01:38.7297584Z 2025-08-26T23:01:38.7298125Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:01:38.7301417Z 2025-08-26T23:01:38.7301899Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_registry_test" == "verify_api_visibility" goto :eof 2025-08-26T23:01:38.7302874Z 2025-08-26T23:01:38.7303457Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_registry_test.exe" 2025-08-26T23:01:38.7304455Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_registry_test.exe" 2025-08-26T23:01:38.7305715Z 2025-08-26T23:01:38.7306353Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_registry_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:01:38.7307280Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_registry_test.exe" 2025-08-26T23:01:38.7307791Z goto :eof 2025-08-26T23:01:38.7307982Z ) 2025-08-26T23:01:38.7308086Z 2025-08-26T23:01:38.7308473Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_registry_test" 2025-08-26T23:01:44.8848822Z Found test times from artifacts 2025-08-26T23:01:44.9533157Z Found test times from artifacts 2025-08-26T23:01:44.9556693Z Running all tests 2025-08-26T23:01:44.9562619Z Running parallel tests on 3 processes 2025-08-26T23:01:44.9562956Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:01:44.9563243Z Serial tests (0): 2025-08-26T23:01:44.9563467Z Parallel tests (1): 2025-08-26T23:01:44.9563710Z cpp/c10_registry_test 1/1 2025-08-26T23:01:44.9564021Z Name: excluded (est. time: 0.0min) 2025-08-26T23:01:44.9564333Z Serial tests (0): 2025-08-26T23:01:44.9564561Z Parallel tests (0): 2025-08-26T23:01:44.9566621Z Running cpp/c10_registry_test 1/1 ... [2025-08-26 23:01:44.956420] 2025-08-26T23:01:44.9567023Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:01:44.9576882Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_registry_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-e32f496580e9da84.xml', '-x', '--reruns=2'] ... [2025-08-26 23:01:44.957516] 2025-08-26T23:01:44.9578668Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:01:46.5642061Z 2025-08-26T23:01:46.5642940Z cpp/c10_registry_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_registry_test_1.1_dd15a4fb5b1930b1_.log 2025-08-26T23:01:46.5643615Z 2025-08-26T23:01:51.1556152Z Running cpp/c10_registry_test 1/1 ... [2025-08-26 23:01:51.152210] 2025-08-26T23:01:51.1556587Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:01:51.1566213Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_registry_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-a33db87e5a978b57.xml', '-x', '--reruns=2'] ... [2025-08-26 23:01:51.152210] 2025-08-26T23:01:52.7957763Z 2025-08-26T23:01:52.7958635Z cpp/c10_registry_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_registry_test_1.1_6a6aba687d45995e_.log 2025-08-26T23:01:52.7959339Z 2025-08-26T23:01:53.7256432Z Running test batch 'tests to run' cost 8.77 seconds 2025-08-26T23:01:53.7263366Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:01:53.7263872Z Uploading artifacts took 0.00 seconds 2025-08-26T23:01:54.5665342Z 2025-08-26T23:01:54.5666039Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:01:54.5666499Z echo "c10_registry_test" failed with exit code 0 2025-08-26T23:01:54.5666801Z goto fail 2025-08-26T23:01:54.5666973Z ) 2025-08-26T23:01:54.5667123Z 2025-08-26T23:01:54.5667358Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:01:54.5667827Z echo "c10_registry_test" failed with exit code 0 2025-08-26T23:01:54.5668171Z goto fail 2025-08-26T23:01:54.5668367Z ) 2025-08-26T23:01:54.5668491Z 2025-08-26T23:01:54.5668687Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:01:54.5676006Z 2025-08-26T23:01:54.5676235Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:01:54.5676968Z call :libtorch_check "c10_Scalar_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Scalar_test.exe" 2025-08-26T23:01:54.5677635Z if errorlevel 1 goto fail 2025-08-26T23:01:54.5678100Z ) 2025-08-26T23:01:54.5686995Z 2025-08-26T23:01:54.5687613Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:01:54.5691409Z 2025-08-26T23:01:54.5692029Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:01:54.5694656Z 2025-08-26T23:01:54.5695182Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Scalar_test" == "verify_api_visibility" goto :eof 2025-08-26T23:01:54.5696095Z 2025-08-26T23:01:54.5696763Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Scalar_test.exe" 2025-08-26T23:01:54.5697767Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Scalar_test.exe" 2025-08-26T23:01:54.5698950Z 2025-08-26T23:01:54.5699399Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Scalar_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:01:54.5700161Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Scalar_test.exe" 2025-08-26T23:01:54.5700705Z goto :eof 2025-08-26T23:01:54.5700902Z ) 2025-08-26T23:01:54.5701039Z 2025-08-26T23:01:54.5701413Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_Scalar_test" 2025-08-26T23:02:00.9200053Z Found test times from artifacts 2025-08-26T23:02:00.9887786Z Found test times from artifacts 2025-08-26T23:02:00.9911321Z Running all tests 2025-08-26T23:02:00.9917060Z Running parallel tests on 3 processes 2025-08-26T23:02:00.9917480Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:02:00.9917807Z Serial tests (0): 2025-08-26T23:02:00.9918052Z Parallel tests (1): 2025-08-26T23:02:00.9918325Z cpp/c10_Scalar_test 1/1 2025-08-26T23:02:00.9918616Z Name: excluded (est. time: 0.0min) 2025-08-26T23:02:00.9918897Z Serial tests (0): 2025-08-26T23:02:00.9919155Z Parallel tests (0): 2025-08-26T23:02:00.9920888Z Running cpp/c10_Scalar_test 1/1 ... [2025-08-26 23:02:00.985206] 2025-08-26T23:02:00.9921322Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:02:00.9931093Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_Scalar_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-782dd987da6b9a24.xml', '-x', '--reruns=2'] ... [2025-08-26 23:02:00.985206] 2025-08-26T23:02:00.9932967Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:02:02.5984093Z 2025-08-26T23:02:02.5985165Z cpp/c10_Scalar_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_Scalar_test_1.1_57a92f5161cd7a3c_.log 2025-08-26T23:02:02.5986035Z 2025-08-26T23:02:07.1650162Z Running cpp/c10_Scalar_test 1/1 ... [2025-08-26 23:02:07.164836] 2025-08-26T23:02:07.1650647Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:02:07.1659938Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_Scalar_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-fa434fe1b43912c2.xml', '-x', '--reruns=2'] ... [2025-08-26 23:02:07.165444] 2025-08-26T23:02:08.7421847Z 2025-08-26T23:02:08.7422978Z cpp/c10_Scalar_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_Scalar_test_1.1_1a483bfd3034da2a_.log 2025-08-26T23:02:08.7423617Z 2025-08-26T23:02:09.6254096Z Running test batch 'tests to run' cost 8.63 seconds 2025-08-26T23:02:09.6260787Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:02:09.6261301Z Uploading artifacts took 0.00 seconds 2025-08-26T23:02:10.3440148Z 2025-08-26T23:02:10.3440958Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:02:10.3441477Z echo "c10_Scalar_test" failed with exit code 0 2025-08-26T23:02:10.3441805Z goto fail 2025-08-26T23:02:10.3442029Z ) 2025-08-26T23:02:10.3442141Z 2025-08-26T23:02:10.3442342Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:02:10.3442805Z echo "c10_Scalar_test" failed with exit code 0 2025-08-26T23:02:10.3443169Z goto fail 2025-08-26T23:02:10.3443371Z ) 2025-08-26T23:02:10.3443475Z 2025-08-26T23:02:10.3443663Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:02:10.3451731Z 2025-08-26T23:02:10.3452264Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:02:10.3453073Z call :libtorch_check "c10_Semaphore_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Semaphore_test.exe" 2025-08-26T23:02:10.3453780Z if errorlevel 1 goto fail 2025-08-26T23:02:10.3454047Z ) 2025-08-26T23:02:10.3463304Z 2025-08-26T23:02:10.3463700Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:02:10.3470310Z 2025-08-26T23:02:10.3470979Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:02:10.3474029Z 2025-08-26T23:02:10.3474515Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Semaphore_test" == "verify_api_visibility" goto :eof 2025-08-26T23:02:10.3475648Z 2025-08-26T23:02:10.3478121Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Semaphore_test.exe" 2025-08-26T23:02:10.3479127Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Semaphore_test.exe" 2025-08-26T23:02:10.3479616Z 2025-08-26T23:02:10.3479943Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Semaphore_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:02:10.3480749Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Semaphore_test.exe" 2025-08-26T23:02:10.3481271Z goto :eof 2025-08-26T23:02:10.3481488Z ) 2025-08-26T23:02:10.3481600Z 2025-08-26T23:02:10.3481985Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_Semaphore_test" 2025-08-26T23:02:16.6313239Z Found test times from artifacts 2025-08-26T23:02:16.6992375Z Found test times from artifacts 2025-08-26T23:02:16.7014894Z Running all tests 2025-08-26T23:02:16.7020499Z Running parallel tests on 3 processes 2025-08-26T23:02:16.7020911Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:02:16.7021223Z Serial tests (0): 2025-08-26T23:02:16.7021459Z Parallel tests (1): 2025-08-26T23:02:16.7021731Z cpp/c10_Semaphore_test 1/1 2025-08-26T23:02:16.7022011Z Name: excluded (est. time: 0.0min) 2025-08-26T23:02:16.7022306Z Serial tests (0): 2025-08-26T23:02:16.7022537Z Parallel tests (0): 2025-08-26T23:02:16.7024323Z Running cpp/c10_Semaphore_test 1/1 ... [2025-08-26 23:02:16.688286] 2025-08-26T23:02:16.7024774Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:02:16.7034461Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_Semaphore_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-712a9f0385e2aba5.xml', '-x', '--reruns=2'] ... [2025-08-26 23:02:16.688286] 2025-08-26T23:02:16.7036267Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:02:18.2766927Z 2025-08-26T23:02:18.2767885Z cpp/c10_Semaphore_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_Semaphore_test_1.1_5cc2844b92acb1ed_.log 2025-08-26T23:02:18.2768559Z 2025-08-26T23:02:22.8466265Z Running cpp/c10_Semaphore_test 1/1 ... [2025-08-26 23:02:22.843548] 2025-08-26T23:02:22.8466724Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:02:22.8475765Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_Semaphore_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-41e3329714bc0e7d.xml', '-x', '--reruns=2'] ... [2025-08-26 23:02:22.843548] 2025-08-26T23:02:24.4440581Z 2025-08-26T23:02:24.4441507Z cpp/c10_Semaphore_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_Semaphore_test_1.1_44491f72d535723b_.log 2025-08-26T23:02:24.4442221Z 2025-08-26T23:02:25.3059012Z Running test batch 'tests to run' cost 8.61 seconds 2025-08-26T23:02:25.3065924Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:02:25.3066423Z Uploading artifacts took 0.00 seconds 2025-08-26T23:02:26.0440899Z 2025-08-26T23:02:26.0441407Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:02:26.0441871Z echo "c10_Semaphore_test" failed with exit code 0 2025-08-26T23:02:26.0442201Z goto fail 2025-08-26T23:02:26.0442374Z ) 2025-08-26T23:02:26.0442538Z 2025-08-26T23:02:26.0442734Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:02:26.0443242Z echo "c10_Semaphore_test" failed with exit code 0 2025-08-26T23:02:26.0443548Z goto fail 2025-08-26T23:02:26.0443739Z ) 2025-08-26T23:02:26.0443838Z 2025-08-26T23:02:26.0443995Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:02:26.0450946Z 2025-08-26T23:02:26.0451474Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:02:26.0452275Z call :libtorch_check "c10_SizesAndStrides_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_SizesAndStrides_test.exe" 2025-08-26T23:02:26.0453010Z if errorlevel 1 goto fail 2025-08-26T23:02:26.0453262Z ) 2025-08-26T23:02:26.0461707Z 2025-08-26T23:02:26.0462054Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:02:26.0466140Z 2025-08-26T23:02:26.0466755Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:02:26.0468972Z 2025-08-26T23:02:26.0469719Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_SizesAndStrides_test" == "verify_api_visibility" goto :eof 2025-08-26T23:02:26.0470441Z 2025-08-26T23:02:26.0471067Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_SizesAndStrides_test.exe" 2025-08-26T23:02:26.0472074Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_SizesAndStrides_test.exe" 2025-08-26T23:02:26.0473138Z 2025-08-26T23:02:26.0473586Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_SizesAndStrides_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:02:26.0474405Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_SizesAndStrides_test.exe" 2025-08-26T23:02:26.0474935Z goto :eof 2025-08-26T23:02:26.0475126Z ) 2025-08-26T23:02:26.0475230Z 2025-08-26T23:02:26.0475628Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_SizesAndStrides_test" 2025-08-26T23:02:32.3048393Z Found test times from artifacts 2025-08-26T23:02:32.3727855Z Found test times from artifacts 2025-08-26T23:02:32.3750832Z Running all tests 2025-08-26T23:02:32.3756311Z Running parallel tests on 3 processes 2025-08-26T23:02:32.3756736Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:02:32.3757011Z Serial tests (0): 2025-08-26T23:02:32.3757230Z Parallel tests (1): 2025-08-26T23:02:32.3757472Z cpp/c10_SizesAndStrides_test 1/1 2025-08-26T23:02:32.3757762Z Name: excluded (est. time: 0.0min) 2025-08-26T23:02:32.3759269Z Serial tests (0): 2025-08-26T23:02:32.3759476Z Parallel tests (0): 2025-08-26T23:02:32.3760349Z Running cpp/c10_SizesAndStrides_test 1/1 ... [2025-08-26 23:02:32.375861] 2025-08-26T23:02:32.3760790Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:02:32.3771675Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_SizesAndStrides_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-87d44a744d6b2113.xml', '-x', '--reruns=2'] ... [2025-08-26 23:02:32.376436] 2025-08-26T23:02:32.3773497Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:02:33.9001409Z 2025-08-26T23:02:33.9002352Z cpp/c10_SizesAndStrides_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_SizesAndStrides_test_1.1_4a1d8c78b0081e00_.log 2025-08-26T23:02:33.9003099Z 2025-08-26T23:02:38.3418151Z Running cpp/c10_SizesAndStrides_test 1/1 ... [2025-08-26 23:02:38.340459] 2025-08-26T23:02:38.3418613Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:02:38.3428258Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_SizesAndStrides_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-e2fd0e4db07128d1.xml', '-x', '--reruns=2'] ... [2025-08-26 23:02:38.342033] 2025-08-26T23:02:39.9138788Z 2025-08-26T23:02:39.9139744Z cpp/c10_SizesAndStrides_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_SizesAndStrides_test_1.1_42842043fac0f6ee_.log 2025-08-26T23:02:39.9141004Z 2025-08-26T23:02:40.7984206Z Running test batch 'tests to run' cost 8.42 seconds 2025-08-26T23:02:40.7990730Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:02:40.7991233Z Uploading artifacts took 0.00 seconds 2025-08-26T23:02:41.5000744Z 2025-08-26T23:02:41.5001420Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:02:41.5001932Z echo "c10_SizesAndStrides_test" failed with exit code 0 2025-08-26T23:02:41.5002272Z goto fail 2025-08-26T23:02:41.5002470Z ) 2025-08-26T23:02:41.5002581Z 2025-08-26T23:02:41.5003009Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:02:41.5003554Z echo "c10_SizesAndStrides_test" failed with exit code 0 2025-08-26T23:02:41.5003906Z goto fail 2025-08-26T23:02:41.5004090Z ) 2025-08-26T23:02:41.5004190Z 2025-08-26T23:02:41.5004359Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:02:41.5011652Z 2025-08-26T23:02:41.5012120Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:02:41.5014033Z call :libtorch_check "c10_small_vector_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_small_vector_test.exe" 2025-08-26T23:02:41.5014734Z if errorlevel 1 goto fail 2025-08-26T23:02:41.5014987Z ) 2025-08-26T23:02:41.5022409Z 2025-08-26T23:02:41.5022785Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:02:41.5026753Z 2025-08-26T23:02:41.5027252Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:02:41.5029643Z 2025-08-26T23:02:41.5031248Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_small_vector_test" == "verify_api_visibility" goto :eof 2025-08-26T23:02:41.5031729Z 2025-08-26T23:02:41.5032263Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_small_vector_test.exe" 2025-08-26T23:02:41.5033252Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_small_vector_test.exe" 2025-08-26T23:02:41.5033877Z 2025-08-26T23:02:41.5034284Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_small_vector_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:02:41.5035063Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_small_vector_test.exe" 2025-08-26T23:02:41.5036581Z goto :eof 2025-08-26T23:02:41.5036784Z ) 2025-08-26T23:02:41.5036884Z 2025-08-26T23:02:41.5037293Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_small_vector_test" 2025-08-26T23:02:47.6513555Z Found test times from artifacts 2025-08-26T23:02:47.7297196Z Found test times from artifacts 2025-08-26T23:02:47.7320137Z Running all tests 2025-08-26T23:02:47.7325850Z Running parallel tests on 3 processes 2025-08-26T23:02:47.7326240Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:02:47.7326533Z Serial tests (0): 2025-08-26T23:02:47.7326751Z Parallel tests (1): 2025-08-26T23:02:47.7327024Z cpp/c10_small_vector_test 1/1 2025-08-26T23:02:47.7327287Z Name: excluded (est. time: 0.0min) 2025-08-26T23:02:47.7327556Z Serial tests (0): 2025-08-26T23:02:47.7327771Z Parallel tests (0): 2025-08-26T23:02:47.7329613Z Running cpp/c10_small_vector_test 1/1 ... [2025-08-26 23:02:47.731592] 2025-08-26T23:02:47.7330043Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:02:47.7339603Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_small_vector_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-dddc08da87aeba26.xml', '-x', '--reruns=2'] ... [2025-08-26 23:02:47.733196] 2025-08-26T23:02:47.7341393Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:02:49.2796427Z 2025-08-26T23:02:49.2797330Z cpp/c10_small_vector_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_small_vector_test_1.1_7fbb89e967a9a4ba_.log 2025-08-26T23:02:49.2798156Z 2025-08-26T23:02:53.6624661Z Running cpp/c10_small_vector_test 1/1 ... [2025-08-26 23:02:53.662006] 2025-08-26T23:02:53.6625189Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:02:53.6634659Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_small_vector_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-61a40666223914a9.xml', '-x', '--reruns=2'] ... [2025-08-26 23:02:53.663219] 2025-08-26T23:02:56.1243307Z 2025-08-26T23:02:56.1244257Z cpp/c10_small_vector_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_small_vector_test_1.1_6f630e366a789192_.log 2025-08-26T23:02:56.1248796Z 2025-08-26T23:02:56.9829355Z Running test batch 'tests to run' cost 9.25 seconds 2025-08-26T23:02:56.9835577Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:02:56.9836051Z Uploading artifacts took 0.00 seconds 2025-08-26T23:02:57.7341556Z 2025-08-26T23:02:57.7342071Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:02:57.7342568Z echo "c10_small_vector_test" failed with exit code 0 2025-08-26T23:02:57.7342890Z goto fail 2025-08-26T23:02:57.7343106Z ) 2025-08-26T23:02:57.7343213Z 2025-08-26T23:02:57.7343412Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:02:57.7343860Z echo "c10_small_vector_test" failed with exit code 0 2025-08-26T23:02:57.7344180Z goto fail 2025-08-26T23:02:57.7344353Z ) 2025-08-26T23:02:57.7345017Z 2025-08-26T23:02:57.7345268Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:02:57.7353292Z 2025-08-26T23:02:57.7353539Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:02:57.7354386Z call :libtorch_check "c10_ssize_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ssize_test.exe" 2025-08-26T23:02:57.7355031Z if errorlevel 1 goto fail 2025-08-26T23:02:57.7355265Z ) 2025-08-26T23:02:57.7363947Z 2025-08-26T23:02:57.7364608Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:02:57.7368210Z 2025-08-26T23:02:57.7368812Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:02:57.7371271Z 2025-08-26T23:02:57.7371739Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_ssize_test" == "verify_api_visibility" goto :eof 2025-08-26T23:02:57.7372720Z 2025-08-26T23:02:57.7373350Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ssize_test.exe" 2025-08-26T23:02:57.7374318Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ssize_test.exe" 2025-08-26T23:02:57.7375521Z 2025-08-26T23:02:57.7375976Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_ssize_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:02:57.7376681Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ssize_test.exe" 2025-08-26T23:02:57.7377180Z goto :eof 2025-08-26T23:02:57.7377362Z ) 2025-08-26T23:02:57.7377479Z 2025-08-26T23:02:57.7377853Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_ssize_test" 2025-08-26T23:03:03.9540933Z Found test times from artifacts 2025-08-26T23:03:04.0223549Z Found test times from artifacts 2025-08-26T23:03:04.0245112Z Running all tests 2025-08-26T23:03:04.0250579Z Running parallel tests on 3 processes 2025-08-26T23:03:04.0250979Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:03:04.0251255Z Serial tests (0): 2025-08-26T23:03:04.0251478Z Parallel tests (1): 2025-08-26T23:03:04.0251743Z cpp/c10_ssize_test 1/1 2025-08-26T23:03:04.0251988Z Name: excluded (est. time: 0.0min) 2025-08-26T23:03:04.0252260Z Serial tests (0): 2025-08-26T23:03:04.0252471Z Parallel tests (0): 2025-08-26T23:03:04.0254409Z Running cpp/c10_ssize_test 1/1 ... [2025-08-26 23:03:04.025343] 2025-08-26T23:03:04.0254789Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:03:04.0264704Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_ssize_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-20f6d6b1c9a4fd60.xml', '-x', '--reruns=2'] ... [2025-08-26 23:03:04.025914] 2025-08-26T23:03:04.0266828Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:03:05.5475214Z 2025-08-26T23:03:05.5476300Z cpp/c10_ssize_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_ssize_test_1.1_2188bf777aae916d_.log 2025-08-26T23:03:05.5476960Z 2025-08-26T23:03:10.0193308Z Running cpp/c10_ssize_test 1/1 ... [2025-08-26 23:03:10.018626] 2025-08-26T23:03:10.0193745Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:03:10.0202557Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_ssize_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-3af07692222db986.xml', '-x', '--reruns=2'] ... [2025-08-26 23:03:10.018626] 2025-08-26T23:03:11.5400859Z 2025-08-26T23:03:11.5401698Z cpp/c10_ssize_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_ssize_test_1.1_ed7a5ea82ede6280_.log 2025-08-26T23:03:11.5402367Z 2025-08-26T23:03:12.3855041Z Running test batch 'tests to run' cost 8.36 seconds 2025-08-26T23:03:12.3861469Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:03:12.3861935Z Uploading artifacts took 0.00 seconds 2025-08-26T23:03:13.0816566Z 2025-08-26T23:03:13.0817083Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:03:13.0817551Z echo "c10_ssize_test" failed with exit code 0 2025-08-26T23:03:13.0817863Z goto fail 2025-08-26T23:03:13.0818061Z ) 2025-08-26T23:03:13.0818164Z 2025-08-26T23:03:13.0818394Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:03:13.0818813Z echo "c10_ssize_test" failed with exit code 0 2025-08-26T23:03:13.0819123Z goto fail 2025-08-26T23:03:13.0819290Z ) 2025-08-26T23:03:13.0819384Z 2025-08-26T23:03:13.0819551Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:03:13.0826607Z 2025-08-26T23:03:13.0827089Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:03:13.0827841Z call :libtorch_check "c10_StreamGuard_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_StreamGuard_test.exe" 2025-08-26T23:03:13.0828551Z if errorlevel 1 goto fail 2025-08-26T23:03:13.0828793Z ) 2025-08-26T23:03:13.0837137Z 2025-08-26T23:03:13.0837500Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:03:13.0841282Z 2025-08-26T23:03:13.0841775Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:03:13.0844151Z 2025-08-26T23:03:13.0844692Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_StreamGuard_test" == "verify_api_visibility" goto :eof 2025-08-26T23:03:13.0845697Z 2025-08-26T23:03:13.0846274Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_StreamGuard_test.exe" 2025-08-26T23:03:13.0847254Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_StreamGuard_test.exe" 2025-08-26T23:03:13.0848498Z 2025-08-26T23:03:13.0848929Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_StreamGuard_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:03:13.0849685Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_StreamGuard_test.exe" 2025-08-26T23:03:13.0850205Z goto :eof 2025-08-26T23:03:13.0850392Z ) 2025-08-26T23:03:13.0850504Z 2025-08-26T23:03:13.0851122Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_StreamGuard_test" 2025-08-26T23:03:19.1730801Z Found test times from artifacts 2025-08-26T23:03:19.2418434Z Found test times from artifacts 2025-08-26T23:03:19.2440528Z Running all tests 2025-08-26T23:03:19.2446108Z Running parallel tests on 3 processes 2025-08-26T23:03:19.2446515Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:03:19.2446804Z Serial tests (0): 2025-08-26T23:03:19.2447010Z Parallel tests (1): 2025-08-26T23:03:19.2447283Z cpp/c10_StreamGuard_test 1/1 2025-08-26T23:03:19.2447542Z Name: excluded (est. time: 0.0min) 2025-08-26T23:03:19.2447814Z Serial tests (0): 2025-08-26T23:03:19.2448024Z Parallel tests (0): 2025-08-26T23:03:19.2449920Z Running cpp/c10_StreamGuard_test 1/1 ... [2025-08-26 23:03:19.236292] 2025-08-26T23:03:19.2450338Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:03:19.2460139Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_StreamGuard_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-15087da0b36f55f0.xml', '-x', '--reruns=2'] ... [2025-08-26 23:03:19.236292] 2025-08-26T23:03:19.2461918Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:03:20.7403591Z 2025-08-26T23:03:20.7404489Z cpp/c10_StreamGuard_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_StreamGuard_test_1.1_02205e699c847160_.log 2025-08-26T23:03:20.7405316Z 2025-08-26T23:03:25.2718385Z Running cpp/c10_StreamGuard_test 1/1 ... [2025-08-26 23:03:25.271655] 2025-08-26T23:03:25.2718870Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:03:25.2728251Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_StreamGuard_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-0e6ba18b76dde83d.xml', '-x', '--reruns=2'] ... [2025-08-26 23:03:25.272593] 2025-08-26T23:03:26.7771548Z 2025-08-26T23:03:26.7774199Z cpp/c10_StreamGuard_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_StreamGuard_test_1.1_d6c4c3da8d6f9e08_.log 2025-08-26T23:03:26.7774873Z 2025-08-26T23:03:27.6399638Z Running test batch 'tests to run' cost 8.4 seconds 2025-08-26T23:03:27.6406150Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:03:27.6406624Z Uploading artifacts took 0.00 seconds 2025-08-26T23:03:28.3252336Z 2025-08-26T23:03:28.3252863Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:03:28.3253346Z echo "c10_StreamGuard_test" failed with exit code 0 2025-08-26T23:03:28.3253681Z goto fail 2025-08-26T23:03:28.3253887Z ) 2025-08-26T23:03:28.3253985Z 2025-08-26T23:03:28.3254263Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:03:28.3254702Z echo "c10_StreamGuard_test" failed with exit code 0 2025-08-26T23:03:28.3255037Z goto fail 2025-08-26T23:03:28.3255212Z ) 2025-08-26T23:03:28.3256307Z 2025-08-26T23:03:28.3256748Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:03:28.3263698Z 2025-08-26T23:03:28.3264074Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:03:28.3264888Z call :libtorch_check "c10_string_util_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_string_util_test.exe" 2025-08-26T23:03:28.3265552Z if errorlevel 1 goto fail 2025-08-26T23:03:28.3265789Z ) 2025-08-26T23:03:28.3274577Z 2025-08-26T23:03:28.3275022Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:03:28.3278713Z 2025-08-26T23:03:28.3279474Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:03:28.3281732Z 2025-08-26T23:03:28.3282129Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_string_util_test" == "verify_api_visibility" goto :eof 2025-08-26T23:03:28.3283200Z 2025-08-26T23:03:28.3283778Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_string_util_test.exe" 2025-08-26T23:03:28.3284754Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_string_util_test.exe" 2025-08-26T23:03:28.3286027Z 2025-08-26T23:03:28.3286491Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_string_util_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:03:28.3287336Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_string_util_test.exe" 2025-08-26T23:03:28.3287903Z goto :eof 2025-08-26T23:03:28.3288122Z ) 2025-08-26T23:03:28.3288221Z 2025-08-26T23:03:28.3288720Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_string_util_test" 2025-08-26T23:03:34.4772003Z Found test times from artifacts 2025-08-26T23:03:34.5453119Z Found test times from artifacts 2025-08-26T23:03:34.5476248Z Running all tests 2025-08-26T23:03:34.5482082Z Running parallel tests on 3 processes 2025-08-26T23:03:34.5482418Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:03:34.5482702Z Serial tests (0): 2025-08-26T23:03:34.5483480Z Parallel tests (1): 2025-08-26T23:03:34.5483710Z cpp/c10_string_util_test 1/1 2025-08-26T23:03:34.5483994Z Name: excluded (est. time: 0.0min) 2025-08-26T23:03:34.5484254Z Serial tests (0): 2025-08-26T23:03:34.5484468Z Parallel tests (0): 2025-08-26T23:03:34.5485907Z Running cpp/c10_string_util_test 1/1 ... [2025-08-26 23:03:34.548479] 2025-08-26T23:03:34.5486328Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:03:34.5496179Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_string_util_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-4425b1bc06be51fc.xml', '-x', '--reruns=2'] ... [2025-08-26 23:03:34.549098] 2025-08-26T23:03:34.5498063Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:03:36.0546161Z 2025-08-26T23:03:36.0547352Z cpp/c10_string_util_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_string_util_test_1.1_c6cee4486bc810dc_.log 2025-08-26T23:03:36.0548014Z 2025-08-26T23:03:40.5731564Z Running cpp/c10_string_util_test 1/1 ... [2025-08-26 23:03:40.568051] 2025-08-26T23:03:40.5732023Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:03:40.5740736Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_string_util_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-026657007e6c79f5.xml', '-x', '--reruns=2'] ... [2025-08-26 23:03:40.568051] 2025-08-26T23:03:42.1335031Z 2025-08-26T23:03:42.1335911Z cpp/c10_string_util_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_string_util_test_1.1_7c3247b2c69addab_.log 2025-08-26T23:03:42.1336685Z 2025-08-26T23:03:43.0142873Z Running test batch 'tests to run' cost 8.47 seconds 2025-08-26T23:03:43.0149352Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:03:43.0149825Z Uploading artifacts took 0.00 seconds 2025-08-26T23:03:43.7073714Z 2025-08-26T23:03:43.7074465Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:03:43.7074944Z echo "c10_string_util_test" failed with exit code 0 2025-08-26T23:03:43.7075514Z goto fail 2025-08-26T23:03:43.7076312Z ) 2025-08-26T23:03:43.7076411Z 2025-08-26T23:03:43.7076607Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:03:43.7077059Z echo "c10_string_util_test" failed with exit code 0 2025-08-26T23:03:43.7077376Z goto fail 2025-08-26T23:03:43.7077546Z ) 2025-08-26T23:03:43.7077646Z 2025-08-26T23:03:43.7077817Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:03:43.7084265Z 2025-08-26T23:03:43.7084803Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:03:43.7085577Z call :libtorch_check "c10_string_view_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_string_view_test.exe" 2025-08-26T23:03:43.7086266Z if errorlevel 1 goto fail 2025-08-26T23:03:43.7086496Z ) 2025-08-26T23:03:43.7095196Z 2025-08-26T23:03:43.7095664Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:03:43.7099384Z 2025-08-26T23:03:43.7100011Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:03:43.7102433Z 2025-08-26T23:03:43.7102888Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_string_view_test" == "verify_api_visibility" goto :eof 2025-08-26T23:03:43.7104035Z 2025-08-26T23:03:43.7104691Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_string_view_test.exe" 2025-08-26T23:03:43.7105911Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_string_view_test.exe" 2025-08-26T23:03:43.7106897Z 2025-08-26T23:03:43.7107366Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_string_view_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:03:43.7108128Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_string_view_test.exe" 2025-08-26T23:03:43.7108659Z goto :eof 2025-08-26T23:03:43.7108858Z ) 2025-08-26T23:03:43.7108959Z 2025-08-26T23:03:43.7109335Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_string_view_test" 2025-08-26T23:03:49.8277242Z Found test times from artifacts 2025-08-26T23:03:49.8963313Z Found test times from artifacts 2025-08-26T23:03:49.8990406Z Running all tests 2025-08-26T23:03:49.8996210Z Running parallel tests on 3 processes 2025-08-26T23:03:49.8996619Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:03:49.8996951Z Serial tests (0): 2025-08-26T23:03:49.8997165Z Parallel tests (1): 2025-08-26T23:03:49.8997421Z cpp/c10_string_view_test 1/1 2025-08-26T23:03:49.8997701Z Name: excluded (est. time: 0.0min) 2025-08-26T23:03:49.8997957Z Serial tests (0): 2025-08-26T23:03:49.8998176Z Parallel tests (0): 2025-08-26T23:03:49.9000067Z Running cpp/c10_string_view_test 1/1 ... [2025-08-26 23:03:49.898552] 2025-08-26T23:03:49.9000496Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:03:49.9010611Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_string_view_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-63f0773c01adfc59.xml', '-x', '--reruns=2'] ... [2025-08-26 23:03:49.898552] 2025-08-26T23:03:49.9012424Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:03:51.4386926Z 2025-08-26T23:03:51.4387800Z cpp/c10_string_view_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_string_view_test_1.1_cb85a46bd8e334df_.log 2025-08-26T23:03:51.4388544Z 2025-08-26T23:03:55.8958710Z Running cpp/c10_string_view_test 1/1 ... [2025-08-26 23:03:55.892709] 2025-08-26T23:03:55.8959152Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:03:55.8967945Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_string_view_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-b6c28da1f5d77f40.xml', '-x', '--reruns=2'] ... [2025-08-26 23:03:55.895801] 2025-08-26T23:03:57.3779746Z 2025-08-26T23:03:57.3782264Z cpp/c10_string_view_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_string_view_test_1.1_716881f40583c15b_.log 2025-08-26T23:03:57.3782979Z 2025-08-26T23:03:58.1950916Z Running test batch 'tests to run' cost 8.3 seconds 2025-08-26T23:03:58.1957766Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:03:58.1958241Z Uploading artifacts took 0.00 seconds 2025-08-26T23:03:58.8851408Z 2025-08-26T23:03:58.8851932Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:03:58.8852428Z echo "c10_string_view_test" failed with exit code 0 2025-08-26T23:03:58.8852762Z goto fail 2025-08-26T23:03:58.8852929Z ) 2025-08-26T23:03:58.8853040Z 2025-08-26T23:03:58.8853573Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:03:58.8854054Z echo "c10_string_view_test" failed with exit code 0 2025-08-26T23:03:58.8854385Z goto fail 2025-08-26T23:03:58.8854572Z ) 2025-08-26T23:03:58.8854675Z 2025-08-26T23:03:58.8854832Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:03:58.8861668Z 2025-08-26T23:03:58.8861865Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:03:58.8862534Z call :libtorch_check "c10_SymInt_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_SymInt_test.exe" 2025-08-26T23:03:58.8863196Z if errorlevel 1 goto fail 2025-08-26T23:03:58.8863439Z ) 2025-08-26T23:03:58.8872714Z 2025-08-26T23:03:58.8873187Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:03:58.8876934Z 2025-08-26T23:03:58.8877426Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:03:58.8879855Z 2025-08-26T23:03:58.8880349Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_SymInt_test" == "verify_api_visibility" goto :eof 2025-08-26T23:03:58.8881444Z 2025-08-26T23:03:58.8882163Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_SymInt_test.exe" 2025-08-26T23:03:58.8883128Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_SymInt_test.exe" 2025-08-26T23:03:58.8884191Z 2025-08-26T23:03:58.8884644Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_SymInt_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:03:58.8885393Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_SymInt_test.exe" 2025-08-26T23:03:58.8885888Z goto :eof 2025-08-26T23:03:58.8886075Z ) 2025-08-26T23:03:58.8886171Z 2025-08-26T23:03:58.8886546Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_SymInt_test" 2025-08-26T23:04:04.9705238Z Found test times from artifacts 2025-08-26T23:04:05.0392480Z Found test times from artifacts 2025-08-26T23:04:05.0419489Z Running all tests 2025-08-26T23:04:05.0421198Z Running parallel tests on 3 processes 2025-08-26T23:04:05.0421581Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:04:05.0421896Z Serial tests (0): 2025-08-26T23:04:05.0422112Z Parallel tests (1): 2025-08-26T23:04:05.0422349Z cpp/c10_SymInt_test 1/1 2025-08-26T23:04:05.0422593Z Name: excluded (est. time: 0.0min) 2025-08-26T23:04:05.0422865Z Serial tests (0): 2025-08-26T23:04:05.0423071Z Parallel tests (0): 2025-08-26T23:04:05.0425415Z Running cpp/c10_SymInt_test 1/1 ... [2025-08-26 23:04:05.042434] 2025-08-26T23:04:05.0426027Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:04:05.0435619Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_SymInt_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-40b92ca00b885277.xml', '-x', '--reruns=2'] ... [2025-08-26 23:04:05.043082] 2025-08-26T23:04:05.0438380Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:04:06.5586571Z 2025-08-26T23:04:06.5587402Z cpp/c10_SymInt_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_SymInt_test_1.1_c9045a18500450f6_.log 2025-08-26T23:04:06.5588078Z 2025-08-26T23:04:11.0980172Z Running cpp/c10_SymInt_test 1/1 ... [2025-08-26 23:04:11.097411] 2025-08-26T23:04:11.0980660Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:04:11.0990106Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_SymInt_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-20dee3222b107cf8.xml', '-x', '--reruns=2'] ... [2025-08-26 23:04:11.097411] 2025-08-26T23:04:12.6693085Z 2025-08-26T23:04:12.6694002Z cpp/c10_SymInt_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_SymInt_test_1.1_0ad05a1a1fffae6c_.log 2025-08-26T23:04:12.6694793Z 2025-08-26T23:04:13.5913296Z Running test batch 'tests to run' cost 8.55 seconds 2025-08-26T23:04:13.5919057Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:04:13.5919571Z Uploading artifacts took 0.00 seconds 2025-08-26T23:04:14.3693692Z 2025-08-26T23:04:14.3694310Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:04:14.3694871Z echo "c10_SymInt_test" failed with exit code 0 2025-08-26T23:04:14.3695264Z goto fail 2025-08-26T23:04:14.3695506Z ) 2025-08-26T23:04:14.3695642Z 2025-08-26T23:04:14.3695850Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:04:14.3696321Z echo "c10_SymInt_test" failed with exit code 0 2025-08-26T23:04:14.3696641Z goto fail 2025-08-26T23:04:14.3696867Z ) 2025-08-26T23:04:14.3696982Z 2025-08-26T23:04:14.3697513Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:04:14.3704736Z 2025-08-26T23:04:14.3705180Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:04:14.3705955Z call :libtorch_check "c10_Synchronized_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Synchronized_test.exe" 2025-08-26T23:04:14.3706696Z if errorlevel 1 goto fail 2025-08-26T23:04:14.3706945Z ) 2025-08-26T23:04:14.3715857Z 2025-08-26T23:04:14.3716409Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:04:14.3720219Z 2025-08-26T23:04:14.3720807Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:04:14.3723173Z 2025-08-26T23:04:14.3723856Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Synchronized_test" == "verify_api_visibility" goto :eof 2025-08-26T23:04:14.3725018Z 2025-08-26T23:04:14.3725630Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Synchronized_test.exe" 2025-08-26T23:04:14.3726646Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Synchronized_test.exe" 2025-08-26T23:04:14.3727886Z 2025-08-26T23:04:14.3728324Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Synchronized_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:04:14.3729356Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Synchronized_test.exe" 2025-08-26T23:04:14.3729900Z goto :eof 2025-08-26T23:04:14.3730196Z ) 2025-08-26T23:04:14.3730298Z 2025-08-26T23:04:14.3730694Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_Synchronized_test" 2025-08-26T23:04:20.6015383Z Found test times from artifacts 2025-08-26T23:04:20.6704140Z Found test times from artifacts 2025-08-26T23:04:20.6727501Z Running all tests 2025-08-26T23:04:20.6733270Z Running parallel tests on 3 processes 2025-08-26T23:04:20.6733705Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:04:20.6734042Z Serial tests (0): 2025-08-26T23:04:20.6734305Z Parallel tests (1): 2025-08-26T23:04:20.6734555Z cpp/c10_Synchronized_test 1/1 2025-08-26T23:04:20.6734875Z Name: excluded (est. time: 0.0min) 2025-08-26T23:04:20.6735168Z Serial tests (0): 2025-08-26T23:04:20.6735392Z Parallel tests (0): 2025-08-26T23:04:20.6737129Z Running cpp/c10_Synchronized_test 1/1 ... [2025-08-26 23:04:20.667319] 2025-08-26T23:04:20.6737580Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:04:20.6747172Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_Synchronized_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-9eb205b54626d4e1.xml', '-x', '--reruns=2'] ... [2025-08-26 23:04:20.667319] 2025-08-26T23:04:20.6749043Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:04:22.2561509Z 2025-08-26T23:04:22.2562687Z cpp/c10_Synchronized_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_Synchronized_test_1.1_cf06fa780660e5fe_.log 2025-08-26T23:04:22.2563393Z 2025-08-26T23:04:26.8019282Z Running cpp/c10_Synchronized_test 1/1 ... [2025-08-26 23:04:26.800911] 2025-08-26T23:04:26.8019790Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:04:26.8028971Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_Synchronized_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-237b01111843593b.xml', '-x', '--reruns=2'] ... [2025-08-26 23:04:26.800911] 2025-08-26T23:04:28.3477132Z 2025-08-26T23:04:28.3478094Z cpp/c10_Synchronized_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_Synchronized_test_1.1_11d8113929b9b907_.log 2025-08-26T23:04:28.3478946Z 2025-08-26T23:04:29.2911370Z Running test batch 'tests to run' cost 8.62 seconds 2025-08-26T23:04:29.2918223Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:04:29.2918731Z Uploading artifacts took 0.00 seconds 2025-08-26T23:04:30.0289577Z 2025-08-26T23:04:30.0290557Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:04:30.0291068Z echo "c10_Synchronized_test" failed with exit code 0 2025-08-26T23:04:30.0291438Z goto fail 2025-08-26T23:04:30.0291639Z ) 2025-08-26T23:04:30.0291771Z 2025-08-26T23:04:30.0291974Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:04:30.0292429Z echo "c10_Synchronized_test" failed with exit code 0 2025-08-26T23:04:30.0292798Z goto fail 2025-08-26T23:04:30.0293009Z ) 2025-08-26T23:04:30.0293117Z 2025-08-26T23:04:30.0293281Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:04:30.0299740Z 2025-08-26T23:04:30.0299909Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:04:30.0300610Z call :libtorch_check "c10_tempfile_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_tempfile_test.exe" 2025-08-26T23:04:30.0301299Z if errorlevel 1 goto fail 2025-08-26T23:04:30.0301570Z ) 2025-08-26T23:04:30.0310475Z 2025-08-26T23:04:30.0311080Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:04:30.0315653Z 2025-08-26T23:04:30.0316234Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:04:30.0317823Z 2025-08-26T23:04:30.0318377Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_tempfile_test" == "verify_api_visibility" goto :eof 2025-08-26T23:04:30.0319388Z 2025-08-26T23:04:30.0320057Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_tempfile_test.exe" 2025-08-26T23:04:30.0321069Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_tempfile_test.exe" 2025-08-26T23:04:30.0322411Z 2025-08-26T23:04:30.0322784Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_tempfile_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:04:30.0323550Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_tempfile_test.exe" 2025-08-26T23:04:30.0324104Z goto :eof 2025-08-26T23:04:30.0324324Z ) 2025-08-26T23:04:30.0324431Z 2025-08-26T23:04:30.0330505Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_tempfile_test" 2025-08-26T23:04:36.3589516Z Found test times from artifacts 2025-08-26T23:04:36.4284471Z Found test times from artifacts 2025-08-26T23:04:36.4308399Z Running all tests 2025-08-26T23:04:36.4313742Z Running parallel tests on 3 processes 2025-08-26T23:04:36.4314513Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:04:36.4314859Z Serial tests (0): 2025-08-26T23:04:36.4315091Z Parallel tests (1): 2025-08-26T23:04:36.4315342Z cpp/c10_tempfile_test 1/1 2025-08-26T23:04:36.4315603Z Name: excluded (est. time: 0.0min) 2025-08-26T23:04:36.4315875Z Serial tests (0): 2025-08-26T23:04:36.4316079Z Parallel tests (0): 2025-08-26T23:04:36.4317795Z Running cpp/c10_tempfile_test 1/1 ... [2025-08-26 23:04:36.431467] 2025-08-26T23:04:36.4318184Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:04:36.4328682Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_tempfile_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-2320aa74bfff256e.xml', '-x', '--reruns=2'] ... [2025-08-26 23:04:36.432609] 2025-08-26T23:04:36.4330464Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:04:37.9947560Z 2025-08-26T23:04:37.9948467Z cpp/c10_tempfile_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_tempfile_test_1.1_c1ca13681202b88d_.log 2025-08-26T23:04:37.9949142Z 2025-08-26T23:04:42.5144646Z Running cpp/c10_tempfile_test 1/1 ... [2025-08-26 23:04:42.511582] 2025-08-26T23:04:42.5145126Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:04:42.5153849Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_tempfile_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-35e2dd7209ccd2d2.xml', '-x', '--reruns=2'] ... [2025-08-26 23:04:42.511582] 2025-08-26T23:04:44.0563756Z 2025-08-26T23:04:44.0564644Z cpp/c10_tempfile_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_tempfile_test_1.1_479b628ea2105e08_.log 2025-08-26T23:04:44.0565483Z 2025-08-26T23:04:44.9533796Z Running test batch 'tests to run' cost 8.52 seconds 2025-08-26T23:04:44.9540256Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:04:44.9540720Z Uploading artifacts took 0.00 seconds 2025-08-26T23:04:45.7046275Z 2025-08-26T23:04:45.7047184Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:04:45.7047668Z echo "c10_tempfile_test" failed with exit code 0 2025-08-26T23:04:45.7048090Z goto fail 2025-08-26T23:04:45.7048284Z ) 2025-08-26T23:04:45.7048379Z 2025-08-26T23:04:45.7048580Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:04:45.7049024Z echo "c10_tempfile_test" failed with exit code 0 2025-08-26T23:04:45.7049322Z goto fail 2025-08-26T23:04:45.7049502Z ) 2025-08-26T23:04:45.7049765Z 2025-08-26T23:04:45.7049993Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:04:45.7058410Z 2025-08-26T23:04:45.7058910Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:04:45.7059700Z call :libtorch_check "c10_ThreadLocal_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ThreadLocal_test.exe" 2025-08-26T23:04:45.7060382Z if errorlevel 1 goto fail 2025-08-26T23:04:45.7060636Z ) 2025-08-26T23:04:45.7069148Z 2025-08-26T23:04:45.7069654Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:04:45.7073517Z 2025-08-26T23:04:45.7074083Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:04:45.7076626Z 2025-08-26T23:04:45.7077135Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_ThreadLocal_test" == "verify_api_visibility" goto :eof 2025-08-26T23:04:45.7078168Z 2025-08-26T23:04:45.7078751Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ThreadLocal_test.exe" 2025-08-26T23:04:45.7079889Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ThreadLocal_test.exe" 2025-08-26T23:04:45.7080823Z 2025-08-26T23:04:45.7081251Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_ThreadLocal_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:04:45.7082109Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ThreadLocal_test.exe" 2025-08-26T23:04:45.7082635Z goto :eof 2025-08-26T23:04:45.7082812Z ) 2025-08-26T23:04:45.7083041Z 2025-08-26T23:04:45.7083434Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_ThreadLocal_test" 2025-08-26T23:04:51.9926953Z Found test times from artifacts 2025-08-26T23:04:52.0612844Z Found test times from artifacts 2025-08-26T23:04:52.0635558Z Running all tests 2025-08-26T23:04:52.0641399Z Running parallel tests on 3 processes 2025-08-26T23:04:52.0641791Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:04:52.0642084Z Serial tests (0): 2025-08-26T23:04:52.0642317Z Parallel tests (1): 2025-08-26T23:04:52.0642552Z cpp/c10_ThreadLocal_test 1/1 2025-08-26T23:04:52.0642838Z Name: excluded (est. time: 0.0min) 2025-08-26T23:04:52.0643101Z Serial tests (0): 2025-08-26T23:04:52.0643327Z Parallel tests (0): 2025-08-26T23:04:52.0645018Z Running cpp/c10_ThreadLocal_test 1/1 ... [2025-08-26 23:04:52.064422] 2025-08-26T23:04:52.0645514Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:04:52.0654860Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_ThreadLocal_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-595afe1951ec37a3.xml', '-x', '--reruns=2'] ... [2025-08-26 23:04:52.064464] 2025-08-26T23:04:52.0656648Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:04:53.5923124Z 2025-08-26T23:04:53.5924008Z cpp/c10_ThreadLocal_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_ThreadLocal_test_1.1_83972e8f449892bc_.log 2025-08-26T23:04:53.5924685Z 2025-08-26T23:04:58.0365132Z Running cpp/c10_ThreadLocal_test 1/1 ... [2025-08-26 23:04:58.036048] 2025-08-26T23:04:58.0365651Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:04:58.0373566Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_ThreadLocal_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-1d357d05c4800b67.xml', '-x', '--reruns=2'] ... [2025-08-26 23:04:58.037187] 2025-08-26T23:04:59.6331334Z 2025-08-26T23:04:59.6332294Z cpp/c10_ThreadLocal_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_ThreadLocal_test_1.1_9a7e39f3e9308f81_.log 2025-08-26T23:04:59.6334490Z 2025-08-26T23:05:00.4961556Z Running test batch 'tests to run' cost 8.44 seconds 2025-08-26T23:05:00.4968001Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:05:00.4968486Z Uploading artifacts took 0.00 seconds 2025-08-26T23:05:01.2329424Z 2025-08-26T23:05:01.2330196Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:05:01.2330698Z echo "c10_ThreadLocal_test" failed with exit code 0 2025-08-26T23:05:01.2331040Z goto fail 2025-08-26T23:05:01.2331238Z ) 2025-08-26T23:05:01.2331350Z 2025-08-26T23:05:01.2332567Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:05:01.2333039Z echo "c10_ThreadLocal_test" failed with exit code 0 2025-08-26T23:05:01.2333353Z goto fail 2025-08-26T23:05:01.2333541Z ) 2025-08-26T23:05:01.2333637Z 2025-08-26T23:05:01.2333974Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:05:01.2341402Z 2025-08-26T23:05:01.2341868Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:05:01.2342642Z call :libtorch_check "c10_typeid_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_typeid_test.exe" 2025-08-26T23:05:01.2343322Z if errorlevel 1 goto fail 2025-08-26T23:05:01.2343567Z ) 2025-08-26T23:05:01.2352524Z 2025-08-26T23:05:01.2352997Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:05:01.2356895Z 2025-08-26T23:05:01.2357564Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:05:01.2360271Z 2025-08-26T23:05:01.2360830Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_typeid_test" == "verify_api_visibility" goto :eof 2025-08-26T23:05:01.2362333Z 2025-08-26T23:05:01.2363062Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_typeid_test.exe" 2025-08-26T23:05:01.2364011Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_typeid_test.exe" 2025-08-26T23:05:01.2365288Z 2025-08-26T23:05:01.2365659Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_typeid_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:05:01.2367448Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_typeid_test.exe" 2025-08-26T23:05:01.2367955Z goto :eof 2025-08-26T23:05:01.2368148Z ) 2025-08-26T23:05:01.2368251Z 2025-08-26T23:05:01.2368625Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_typeid_test" 2025-08-26T23:05:07.4544639Z Found test times from artifacts 2025-08-26T23:05:07.5223174Z Found test times from artifacts 2025-08-26T23:05:07.5245921Z Running all tests 2025-08-26T23:05:07.5251565Z Running parallel tests on 3 processes 2025-08-26T23:05:07.5252015Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:05:07.5252297Z Serial tests (0): 2025-08-26T23:05:07.5252517Z Parallel tests (1): 2025-08-26T23:05:07.5252737Z cpp/c10_typeid_test 1/1 2025-08-26T23:05:07.5252993Z Name: excluded (est. time: 0.0min) 2025-08-26T23:05:07.5253244Z Serial tests (0): 2025-08-26T23:05:07.5253465Z Parallel tests (0): 2025-08-26T23:05:07.5255645Z Running cpp/c10_typeid_test 1/1 ... [2025-08-26 23:05:07.515929] 2025-08-26T23:05:07.5256125Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:05:07.5265968Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_typeid_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-c91095d2ca17f5e6.xml', '-x', '--reruns=2'] ... [2025-08-26 23:05:07.515929] 2025-08-26T23:05:07.5267730Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:05:09.0687316Z 2025-08-26T23:05:09.0688410Z cpp/c10_typeid_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_typeid_test_1.1_5a8414974e8bdf99_.log 2025-08-26T23:05:09.0689044Z 2025-08-26T23:05:13.5934065Z Running cpp/c10_typeid_test 1/1 ... [2025-08-26 23:05:13.592764] 2025-08-26T23:05:13.5934522Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:05:13.5943774Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_typeid_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-f13bd147e0614dba.xml', '-x', '--reruns=2'] ... [2025-08-26 23:05:13.593978] 2025-08-26T23:05:15.1787206Z 2025-08-26T23:05:15.1788004Z cpp/c10_typeid_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_typeid_test_1.1_1fd47850169ad578_.log 2025-08-26T23:05:15.1788774Z 2025-08-26T23:05:16.0883022Z Running test batch 'tests to run' cost 8.57 seconds 2025-08-26T23:05:16.0889588Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:05:16.0890047Z Uploading artifacts took 0.00 seconds 2025-08-26T23:05:16.8644991Z 2025-08-26T23:05:16.8645593Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:05:16.8646096Z echo "c10_typeid_test" failed with exit code 0 2025-08-26T23:05:16.8646472Z goto fail 2025-08-26T23:05:16.8646695Z ) 2025-08-26T23:05:16.8646892Z 2025-08-26T23:05:16.8647241Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:05:16.8647727Z echo "c10_typeid_test" failed with exit code 0 2025-08-26T23:05:16.8648071Z goto fail 2025-08-26T23:05:16.8648305Z ) 2025-08-26T23:05:16.8648446Z 2025-08-26T23:05:16.8648736Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:05:16.8663830Z 2025-08-26T23:05:16.8664052Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:05:16.8664786Z call :libtorch_check "c10_TypeIndex_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_TypeIndex_test.exe" 2025-08-26T23:05:16.8665438Z if errorlevel 1 goto fail 2025-08-26T23:05:16.8665673Z ) 2025-08-26T23:05:16.8668716Z 2025-08-26T23:05:16.8669103Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:05:16.8673122Z 2025-08-26T23:05:16.8673597Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:05:16.8676116Z 2025-08-26T23:05:16.8676874Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_TypeIndex_test" == "verify_api_visibility" goto :eof 2025-08-26T23:05:16.8677657Z 2025-08-26T23:05:16.8678225Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_TypeIndex_test.exe" 2025-08-26T23:05:16.8679217Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_TypeIndex_test.exe" 2025-08-26T23:05:16.8680259Z 2025-08-26T23:05:16.8680625Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_TypeIndex_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:05:16.8681680Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_TypeIndex_test.exe" 2025-08-26T23:05:16.8682268Z goto :eof 2025-08-26T23:05:16.8682458Z ) 2025-08-26T23:05:16.8682557Z 2025-08-26T23:05:16.8682930Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_TypeIndex_test" 2025-08-26T23:05:23.0530406Z Found test times from artifacts 2025-08-26T23:05:23.1251313Z Found test times from artifacts 2025-08-26T23:05:23.1273090Z Running all tests 2025-08-26T23:05:23.1278532Z Running parallel tests on 3 processes 2025-08-26T23:05:23.1278939Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:05:23.1279228Z Serial tests (0): 2025-08-26T23:05:23.1279453Z Parallel tests (1): 2025-08-26T23:05:23.1279697Z cpp/c10_TypeIndex_test 1/1 2025-08-26T23:05:23.1279958Z Name: excluded (est. time: 0.0min) 2025-08-26T23:05:23.1280227Z Serial tests (0): 2025-08-26T23:05:23.1280430Z Parallel tests (0): 2025-08-26T23:05:23.1282310Z Running cpp/c10_TypeIndex_test 1/1 ... [2025-08-26 23:05:23.118122] 2025-08-26T23:05:23.1282714Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:05:23.1292143Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_TypeIndex_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-6c161d8a7a7ff2c4.xml', '-x', '--reruns=2'] ... [2025-08-26 23:05:23.118122] 2025-08-26T23:05:23.1293919Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:05:24.6279504Z 2025-08-26T23:05:24.6280594Z cpp/c10_TypeIndex_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_TypeIndex_test_1.1_7ccacaa0bf240cf3_.log 2025-08-26T23:05:24.6281428Z 2025-08-26T23:05:29.0401217Z Running cpp/c10_TypeIndex_test 1/1 ... [2025-08-26 23:05:29.039367] 2025-08-26T23:05:29.0401677Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:05:29.0413629Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_TypeIndex_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-a087f77c0be21fd5.xml', '-x', '--reruns=2'] ... [2025-08-26 23:05:29.041155] 2025-08-26T23:05:30.5913247Z 2025-08-26T23:05:30.5914136Z cpp/c10_TypeIndex_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_TypeIndex_test_1.1_dde093c47af114c6_.log 2025-08-26T23:05:30.5915390Z 2025-08-26T23:05:31.4745723Z Running test batch 'tests to run' cost 8.35 seconds 2025-08-26T23:05:31.4752725Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:05:31.4753194Z Uploading artifacts took 0.00 seconds 2025-08-26T23:05:32.1927334Z 2025-08-26T23:05:32.1927872Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:05:32.1928318Z echo "c10_TypeIndex_test" failed with exit code 0 2025-08-26T23:05:32.1928644Z goto fail 2025-08-26T23:05:32.1928815Z ) 2025-08-26T23:05:32.1928920Z 2025-08-26T23:05:32.1929107Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:05:32.1929532Z echo "c10_TypeIndex_test" failed with exit code 0 2025-08-26T23:05:32.1929824Z goto fail 2025-08-26T23:05:32.1929992Z ) 2025-08-26T23:05:32.1930086Z 2025-08-26T23:05:32.1930243Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:05:32.1938673Z 2025-08-26T23:05:32.1938926Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:05:32.1939623Z call :libtorch_check "c10_TypeList_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_TypeList_test.exe" 2025-08-26T23:05:32.1940261Z if errorlevel 1 goto fail 2025-08-26T23:05:32.1940488Z ) 2025-08-26T23:05:32.1949847Z 2025-08-26T23:05:32.1950392Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:05:32.1953961Z 2025-08-26T23:05:32.1954506Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:05:32.1956959Z 2025-08-26T23:05:32.1957713Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_TypeList_test" == "verify_api_visibility" goto :eof 2025-08-26T23:05:32.1958495Z 2025-08-26T23:05:32.1959151Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_TypeList_test.exe" 2025-08-26T23:05:32.1960094Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_TypeList_test.exe" 2025-08-26T23:05:32.1961339Z 2025-08-26T23:05:32.1961749Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_TypeList_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:05:32.1962493Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_TypeList_test.exe" 2025-08-26T23:05:32.1962983Z goto :eof 2025-08-26T23:05:32.1963163Z ) 2025-08-26T23:05:32.1963256Z 2025-08-26T23:05:32.1963617Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_TypeList_test" 2025-08-26T23:05:38.3150202Z Found test times from artifacts 2025-08-26T23:05:38.3823102Z Found test times from artifacts 2025-08-26T23:05:38.3845106Z Running all tests 2025-08-26T23:05:38.3850086Z Running parallel tests on 3 processes 2025-08-26T23:05:38.3850429Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:05:38.3850704Z Serial tests (0): 2025-08-26T23:05:38.3850916Z Parallel tests (1): 2025-08-26T23:05:38.3851137Z cpp/c10_TypeList_test 1/1 2025-08-26T23:05:38.3851392Z Name: excluded (est. time: 0.0min) 2025-08-26T23:05:38.3851633Z Serial tests (0): 2025-08-26T23:05:38.3851834Z Parallel tests (0): 2025-08-26T23:05:38.3855028Z Running cpp/c10_TypeList_test 1/1 ... [2025-08-26 23:05:38.384844] 2025-08-26T23:05:38.3855447Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:05:38.3879405Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_TypeList_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-8b8db8d088605533.xml', '-x', '--reruns=2'] ... [2025-08-26 23:05:38.387705] 2025-08-26T23:05:38.3881153Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:05:39.9047131Z 2025-08-26T23:05:39.9047996Z cpp/c10_TypeList_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_TypeList_test_1.1_4a531454fbc0539b_.log 2025-08-26T23:05:39.9048682Z 2025-08-26T23:05:44.3566100Z Running cpp/c10_TypeList_test 1/1 ... [2025-08-26 23:05:44.356106] 2025-08-26T23:05:44.3566525Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:05:44.3575342Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_TypeList_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-ce6beb84d1e6c76e.xml', '-x', '--reruns=2'] ... [2025-08-26 23:05:44.356106] 2025-08-26T23:05:45.8941215Z 2025-08-26T23:05:45.8942174Z cpp/c10_TypeList_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_TypeList_test_1.1_d46042206c409a8b_.log 2025-08-26T23:05:45.8942872Z 2025-08-26T23:05:46.7677896Z Running test batch 'tests to run' cost 8.38 seconds 2025-08-26T23:05:46.7683200Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:05:46.7683673Z Uploading artifacts took 0.00 seconds 2025-08-26T23:05:47.4672545Z 2025-08-26T23:05:47.4673430Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:05:47.4673961Z echo "c10_TypeList_test" failed with exit code 0 2025-08-26T23:05:47.4674276Z goto fail 2025-08-26T23:05:47.4674438Z ) 2025-08-26T23:05:47.4674551Z 2025-08-26T23:05:47.4674739Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:05:47.4675150Z echo "c10_TypeList_test" failed with exit code 0 2025-08-26T23:05:47.4675446Z goto fail 2025-08-26T23:05:47.4675603Z ) 2025-08-26T23:05:47.4675703Z 2025-08-26T23:05:47.4675862Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:05:47.4684041Z 2025-08-26T23:05:47.4684510Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:05:47.4685251Z call :libtorch_check "c10_TypeTraits_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_TypeTraits_test.exe" 2025-08-26T23:05:47.4685921Z if errorlevel 1 goto fail 2025-08-26T23:05:47.4686142Z ) 2025-08-26T23:05:47.4694805Z 2025-08-26T23:05:47.4695173Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:05:47.4699011Z 2025-08-26T23:05:47.4699510Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:05:47.4702171Z 2025-08-26T23:05:47.4702740Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_TypeTraits_test" == "verify_api_visibility" goto :eof 2025-08-26T23:05:47.4703582Z 2025-08-26T23:05:47.4704246Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_TypeTraits_test.exe" 2025-08-26T23:05:47.4705210Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_TypeTraits_test.exe" 2025-08-26T23:05:47.4706217Z 2025-08-26T23:05:47.4706633Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_TypeTraits_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:05:47.4707383Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_TypeTraits_test.exe" 2025-08-26T23:05:47.4707901Z goto :eof 2025-08-26T23:05:47.4708069Z ) 2025-08-26T23:05:47.4708203Z 2025-08-26T23:05:47.4708593Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_TypeTraits_test" 2025-08-26T23:05:53.6292740Z Found test times from artifacts 2025-08-26T23:05:53.6976149Z Found test times from artifacts 2025-08-26T23:05:53.6998926Z Running all tests 2025-08-26T23:05:53.7004445Z Running parallel tests on 3 processes 2025-08-26T23:05:53.7004893Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:05:53.7005189Z Serial tests (0): 2025-08-26T23:05:53.7005445Z Parallel tests (1): 2025-08-26T23:05:53.7005698Z cpp/c10_TypeTraits_test 1/1 2025-08-26T23:05:53.7006008Z Name: excluded (est. time: 0.0min) 2025-08-26T23:05:53.7006286Z Serial tests (0): 2025-08-26T23:05:53.7006535Z Parallel tests (0): 2025-08-26T23:05:53.7008351Z Running cpp/c10_TypeTraits_test 1/1 ... [2025-08-26 23:05:53.698802] 2025-08-26T23:05:53.7008813Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:05:53.7018415Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_TypeTraits_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-ab41c759aa4d2150.xml', '-x', '--reruns=2'] ... [2025-08-26 23:05:53.698802] 2025-08-26T23:05:53.7020295Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:05:55.1920781Z 2025-08-26T23:05:55.1922697Z cpp/c10_TypeTraits_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_TypeTraits_test_1.1_3eec43d9b4aa881c_.log 2025-08-26T23:05:55.1923389Z 2025-08-26T23:05:59.5464110Z Running cpp/c10_TypeTraits_test 1/1 ... [2025-08-26 23:05:59.545286] 2025-08-26T23:05:59.5464728Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:05:59.5473139Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_TypeTraits_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-547a8e061b369a18.xml', '-x', '--reruns=2'] ... [2025-08-26 23:05:59.545286] 2025-08-26T23:06:01.0434928Z 2025-08-26T23:06:01.0435916Z cpp/c10_TypeTraits_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_TypeTraits_test_1.1_d444bacd55cbde58_.log 2025-08-26T23:06:01.0436720Z 2025-08-26T23:06:01.8950368Z Running test batch 'tests to run' cost 8.19 seconds 2025-08-26T23:06:01.8956624Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:06:01.8957135Z Uploading artifacts took 0.00 seconds 2025-08-26T23:06:02.6671223Z 2025-08-26T23:06:02.6671838Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:06:02.6672471Z echo "c10_TypeTraits_test" failed with exit code 0 2025-08-26T23:06:02.6672856Z goto fail 2025-08-26T23:06:02.6673122Z ) 2025-08-26T23:06:02.6673778Z 2025-08-26T23:06:02.6674069Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:06:02.6674621Z echo "c10_TypeTraits_test" failed with exit code 0 2025-08-26T23:06:02.6675005Z goto fail 2025-08-26T23:06:02.6675199Z ) 2025-08-26T23:06:02.6675493Z 2025-08-26T23:06:02.6675685Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:06:02.6682539Z 2025-08-26T23:06:02.6683138Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:06:02.6683984Z call :libtorch_check "CppSignature_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\CppSignature_test.exe" 2025-08-26T23:06:02.6684783Z if errorlevel 1 goto fail 2025-08-26T23:06:02.6685081Z ) 2025-08-26T23:06:02.6694721Z 2025-08-26T23:06:02.6695172Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:06:02.6699708Z 2025-08-26T23:06:02.6700414Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:06:02.6703013Z 2025-08-26T23:06:02.6703526Z (base) C:\actions-runner\_work\pytorch\pytorch>if "CppSignature_test" == "verify_api_visibility" goto :eof 2025-08-26T23:06:02.6704595Z 2025-08-26T23:06:02.6705261Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\CppSignature_test.exe" 2025-08-26T23:06:02.6706243Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\CppSignature_test.exe" 2025-08-26T23:06:02.6707154Z 2025-08-26T23:06:02.6707588Z (base) C:\actions-runner\_work\pytorch\pytorch>if "CppSignature_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:06:02.6708435Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\CppSignature_test.exe" 2025-08-26T23:06:02.6709012Z goto :eof 2025-08-26T23:06:02.6709230Z ) 2025-08-26T23:06:02.6709333Z 2025-08-26T23:06:02.6709710Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/CppSignature_test" 2025-08-26T23:06:09.0738222Z Found test times from artifacts 2025-08-26T23:06:09.1506479Z Found test times from artifacts 2025-08-26T23:06:09.1550439Z Running all tests 2025-08-26T23:06:09.1557274Z Running parallel tests on 3 processes 2025-08-26T23:06:09.1557730Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:06:09.1558037Z Serial tests (0): 2025-08-26T23:06:09.1558306Z Parallel tests (1): 2025-08-26T23:06:09.1558565Z cpp/CppSignature_test 1/1 2025-08-26T23:06:09.1558874Z Name: excluded (est. time: 0.0min) 2025-08-26T23:06:09.1559151Z Serial tests (0): 2025-08-26T23:06:09.1559600Z Parallel tests (0): 2025-08-26T23:06:09.1561148Z Running cpp/CppSignature_test 1/1 ... [2025-08-26 23:06:09.155385] 2025-08-26T23:06:09.1561661Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:06:09.1572684Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\CppSignature_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-6e108e370e162742.xml', '-x', '--reruns=2'] ... [2025-08-26 23:06:09.156514] 2025-08-26T23:06:09.1574652Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:06:11.4206626Z 2025-08-26T23:06:11.4207582Z cpp/CppSignature_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.CppSignature_test_1.1_28538c4e3bf15a16_.log 2025-08-26T23:06:11.4208261Z 2025-08-26T23:06:15.8174742Z Running cpp/CppSignature_test 1/1 ... [2025-08-26 23:06:15.811416] 2025-08-26T23:06:15.8175254Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:06:15.8184098Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\CppSignature_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-f54b20c8aa5e7a6a.xml', '-x', '--reruns=2'] ... [2025-08-26 23:06:15.811416] 2025-08-26T23:06:18.9648575Z 2025-08-26T23:06:18.9651548Z cpp/CppSignature_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.CppSignature_test_1.1_20ed5d3046b7fffd_.log 2025-08-26T23:06:18.9652414Z 2025-08-26T23:06:19.8163894Z Running test batch 'tests to run' cost 10.66 seconds 2025-08-26T23:06:19.8170753Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:06:19.8171262Z Uploading artifacts took 0.00 seconds 2025-08-26T23:06:20.5487642Z 2025-08-26T23:06:20.5488383Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:06:20.5488918Z echo "CppSignature_test" failed with exit code 0 2025-08-26T23:06:20.5489260Z goto fail 2025-08-26T23:06:20.5489481Z ) 2025-08-26T23:06:20.5489598Z 2025-08-26T23:06:20.5489804Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:06:20.5490284Z echo "CppSignature_test" failed with exit code 0 2025-08-26T23:06:20.5490612Z goto fail 2025-08-26T23:06:20.5490834Z ) 2025-08-26T23:06:20.5490952Z 2025-08-26T23:06:20.5491151Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:06:20.5499032Z 2025-08-26T23:06:20.5499268Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:06:20.5500014Z call :libtorch_check "cpu_allocator_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_allocator_test.exe" 2025-08-26T23:06:20.5500674Z if errorlevel 1 goto fail 2025-08-26T23:06:20.5500897Z ) 2025-08-26T23:06:20.5510188Z 2025-08-26T23:06:20.5510734Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:06:20.5514452Z 2025-08-26T23:06:20.5514964Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:06:20.5517405Z 2025-08-26T23:06:20.5517913Z (base) C:\actions-runner\_work\pytorch\pytorch>if "cpu_allocator_test" == "verify_api_visibility" goto :eof 2025-08-26T23:06:20.5518953Z 2025-08-26T23:06:20.5519563Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_allocator_test.exe" 2025-08-26T23:06:20.5520523Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_allocator_test.exe" 2025-08-26T23:06:20.5521589Z 2025-08-26T23:06:20.5522200Z (base) C:\actions-runner\_work\pytorch\pytorch>if "cpu_allocator_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:06:20.5522953Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_allocator_test.exe" 2025-08-26T23:06:20.5523525Z goto :eof 2025-08-26T23:06:20.5523691Z ) 2025-08-26T23:06:20.5523785Z 2025-08-26T23:06:20.5524161Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/cpu_allocator_test" 2025-08-26T23:06:26.6980019Z Found test times from artifacts 2025-08-26T23:06:26.7784738Z Found test times from artifacts 2025-08-26T23:06:26.7807634Z Running all tests 2025-08-26T23:06:26.7813169Z Running parallel tests on 3 processes 2025-08-26T23:06:26.7813563Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:06:26.7813829Z Serial tests (0): 2025-08-26T23:06:26.7814045Z Parallel tests (1): 2025-08-26T23:06:26.7814267Z cpp/cpu_allocator_test 1/1 2025-08-26T23:06:26.7814524Z Name: excluded (est. time: 0.0min) 2025-08-26T23:06:26.7814769Z Serial tests (0): 2025-08-26T23:06:26.7814990Z Parallel tests (0): 2025-08-26T23:06:26.7816979Z Running cpp/cpu_allocator_test 1/1 ... [2025-08-26 23:06:26.778254] 2025-08-26T23:06:26.7817381Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:06:26.7827401Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\cpu_allocator_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-82a788501931d7ef.xml', '-x', '--reruns=2'] ... [2025-08-26 23:06:26.778254] 2025-08-26T23:06:26.7829297Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:06:29.0917442Z 2025-08-26T23:06:29.0918329Z cpp/cpu_allocator_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.cpu_allocator_test_1.1_f8a77757408b2334_.log 2025-08-26T23:06:29.0919092Z 2025-08-26T23:06:33.5308451Z Running cpp/cpu_allocator_test 1/1 ... [2025-08-26 23:06:33.529988] 2025-08-26T23:06:33.5308906Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:06:33.5317545Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\cpu_allocator_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-f22597dfc3816faa.xml', '-x', '--reruns=2'] ... [2025-08-26 23:06:33.529988] 2025-08-26T23:06:36.2359524Z 2025-08-26T23:06:36.2360561Z cpp/cpu_allocator_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.cpu_allocator_test_1.1_e1a41a9895c87925_.log 2025-08-26T23:06:36.2361236Z 2025-08-26T23:06:37.0805371Z Running test batch 'tests to run' cost 10.3 seconds 2025-08-26T23:06:37.0812357Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:06:37.0812837Z Uploading artifacts took 0.00 seconds 2025-08-26T23:06:37.7701520Z 2025-08-26T23:06:37.7702009Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:06:37.7702458Z echo "cpu_allocator_test" failed with exit code 0 2025-08-26T23:06:37.7702764Z goto fail 2025-08-26T23:06:37.7702929Z ) 2025-08-26T23:06:37.7703037Z 2025-08-26T23:06:37.7703225Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:06:37.7703640Z echo "cpu_allocator_test" failed with exit code 0 2025-08-26T23:06:37.7703929Z goto fail 2025-08-26T23:06:37.7704099Z ) 2025-08-26T23:06:37.7704299Z 2025-08-26T23:06:37.7704662Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:06:37.7711628Z 2025-08-26T23:06:37.7711956Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:06:37.7712723Z call :libtorch_check "cpu_generator_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_generator_test.exe" 2025-08-26T23:06:37.7713365Z if errorlevel 1 goto fail 2025-08-26T23:06:37.7713810Z ) 2025-08-26T23:06:37.7722476Z 2025-08-26T23:06:37.7722876Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:06:37.7726788Z 2025-08-26T23:06:37.7727290Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:06:37.7729760Z 2025-08-26T23:06:37.7730228Z (base) C:\actions-runner\_work\pytorch\pytorch>if "cpu_generator_test" == "verify_api_visibility" goto :eof 2025-08-26T23:06:37.7731329Z 2025-08-26T23:06:37.7731904Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_generator_test.exe" 2025-08-26T23:06:37.7732853Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_generator_test.exe" 2025-08-26T23:06:37.7733947Z 2025-08-26T23:06:37.7734365Z (base) C:\actions-runner\_work\pytorch\pytorch>if "cpu_generator_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:06:37.7735194Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_generator_test.exe" 2025-08-26T23:06:37.7735689Z goto :eof 2025-08-26T23:06:37.7735861Z ) 2025-08-26T23:06:37.7735952Z 2025-08-26T23:06:37.7736597Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/cpu_generator_test" 2025-08-26T23:06:43.9516308Z Found test times from artifacts 2025-08-26T23:06:44.0197644Z Found test times from artifacts 2025-08-26T23:06:44.0219947Z Running all tests 2025-08-26T23:06:44.0225585Z Running parallel tests on 3 processes 2025-08-26T23:06:44.0226088Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:06:44.0226355Z Serial tests (0): 2025-08-26T23:06:44.0226560Z Parallel tests (1): 2025-08-26T23:06:44.0226782Z cpp/cpu_generator_test 1/1 2025-08-26T23:06:44.0227041Z Name: excluded (est. time: 0.0min) 2025-08-26T23:06:44.0227296Z Serial tests (0): 2025-08-26T23:06:44.0227513Z Parallel tests (0): 2025-08-26T23:06:44.0229008Z Running cpp/cpu_generator_test 1/1 ... [2025-08-26 23:06:44.022452] 2025-08-26T23:06:44.0229398Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:06:44.0238977Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\cpu_generator_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-8375c91b9d6f2868.xml', '-x', '--reruns=2'] ... [2025-08-26 23:06:44.023624] 2025-08-26T23:06:44.0240757Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:06:46.2596678Z 2025-08-26T23:06:46.2597659Z cpp/cpu_generator_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.cpu_generator_test_1.1_a8a21a79e7101263_.log 2025-08-26T23:06:46.2598314Z 2025-08-26T23:06:50.6746136Z Running cpp/cpu_generator_test 1/1 ... [2025-08-26 23:06:50.674146] 2025-08-26T23:06:50.6746589Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:06:50.6755867Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\cpu_generator_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-99498f2b51fede8f.xml', '-x', '--reruns=2'] ... [2025-08-26 23:06:50.675361] 2025-08-26T23:06:55.5467940Z 2025-08-26T23:06:55.5468813Z cpp/cpu_generator_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.cpu_generator_test_1.1_b442703cc2dd020d_.log 2025-08-26T23:06:55.5469804Z 2025-08-26T23:06:56.4499665Z Running test batch 'tests to run' cost 12.43 seconds 2025-08-26T23:06:56.4506476Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:06:56.4507155Z Uploading artifacts took 0.00 seconds 2025-08-26T23:06:57.2221366Z 2025-08-26T23:06:57.2222037Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:06:57.2222505Z echo "cpu_generator_test" failed with exit code 0 2025-08-26T23:06:57.2222816Z goto fail 2025-08-26T23:06:57.2222996Z ) 2025-08-26T23:06:57.2223092Z 2025-08-26T23:06:57.2223280Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:06:57.2223705Z echo "cpu_generator_test" failed with exit code 0 2025-08-26T23:06:57.2224011Z goto fail 2025-08-26T23:06:57.2224189Z ) 2025-08-26T23:06:57.2224281Z 2025-08-26T23:06:57.2224434Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:06:57.2231917Z 2025-08-26T23:06:57.2232427Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:06:57.2233244Z call :libtorch_check "cpu_profiling_allocator_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_profiling_allocator_test.exe" 2025-08-26T23:06:57.2234001Z if errorlevel 1 goto fail 2025-08-26T23:06:57.2234232Z ) 2025-08-26T23:06:57.2243244Z 2025-08-26T23:06:57.2243583Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:06:57.2247665Z 2025-08-26T23:06:57.2248168Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:06:57.2250594Z 2025-08-26T23:06:57.2251450Z (base) C:\actions-runner\_work\pytorch\pytorch>if "cpu_profiling_allocator_test" == "verify_api_visibility" goto :eof 2025-08-26T23:06:57.2252576Z 2025-08-26T23:06:57.2253133Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_profiling_allocator_test.exe" 2025-08-26T23:06:57.2254165Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_profiling_allocator_test.exe" 2025-08-26T23:06:57.2254800Z 2025-08-26T23:06:57.2255233Z (base) C:\actions-runner\_work\pytorch\pytorch>if "cpu_profiling_allocator_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:06:57.2256059Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_profiling_allocator_test.exe" 2025-08-26T23:06:57.2256582Z goto :eof 2025-08-26T23:06:57.2256756Z ) 2025-08-26T23:06:57.2256851Z 2025-08-26T23:06:57.2257262Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/cpu_profiling_allocator_test" 2025-08-26T23:07:03.3744911Z Found test times from artifacts 2025-08-26T23:07:03.4435922Z Found test times from artifacts 2025-08-26T23:07:03.4459587Z Running all tests 2025-08-26T23:07:03.4465814Z Running parallel tests on 3 processes 2025-08-26T23:07:03.4466254Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:07:03.4466577Z Serial tests (0): 2025-08-26T23:07:03.4466817Z Parallel tests (1): 2025-08-26T23:07:03.4467067Z cpp/cpu_profiling_allocator_test 1/1 2025-08-26T23:07:03.4467424Z Name: excluded (est. time: 0.0min) 2025-08-26T23:07:03.4467688Z Serial tests (0): 2025-08-26T23:07:03.4467932Z Parallel tests (0): 2025-08-26T23:07:03.4470099Z Running cpp/cpu_profiling_allocator_test 1/1 ... [2025-08-26 23:07:03.446921] 2025-08-26T23:07:03.4470583Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:07:03.4480765Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\cpu_profiling_allocator_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-74fd3959d60862de.xml', '-x', '--reruns=2'] ... [2025-08-26 23:07:03.447370] 2025-08-26T23:07:03.4482575Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:07:05.8258749Z 2025-08-26T23:07:05.8259934Z cpp/cpu_profiling_allocator_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.cpu_profiling_allocator_test_1.1_e7ee6e364444ab73_.log 2025-08-26T23:07:05.8261394Z 2025-08-26T23:07:10.1641515Z Running cpp/cpu_profiling_allocator_test 1/1 ... [2025-08-26 23:07:10.152798] 2025-08-26T23:07:10.1642009Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:07:10.1650950Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\cpu_profiling_allocator_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-0bf0d79f7f145291.xml', '-x', '--reruns=2'] ... [2025-08-26 23:07:10.152798] 2025-08-26T23:07:12.8882883Z 2025-08-26T23:07:12.8884142Z cpp/cpu_profiling_allocator_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.cpu_profiling_allocator_test_1.1_c7b41b09795bb735_.log 2025-08-26T23:07:12.8884984Z 2025-08-26T23:07:13.7249466Z Running test batch 'tests to run' cost 10.27 seconds 2025-08-26T23:07:13.7255839Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:07:13.7256314Z Uploading artifacts took 0.00 seconds 2025-08-26T23:07:14.4371715Z 2025-08-26T23:07:14.4372233Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:07:14.4372720Z echo "cpu_profiling_allocator_test" failed with exit code 0 2025-08-26T23:07:14.4373066Z goto fail 2025-08-26T23:07:14.4373231Z ) 2025-08-26T23:07:14.4373344Z 2025-08-26T23:07:14.4373696Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:07:14.4374154Z echo "cpu_profiling_allocator_test" failed with exit code 0 2025-08-26T23:07:14.4374503Z goto fail 2025-08-26T23:07:14.4374671Z ) 2025-08-26T23:07:14.4374788Z 2025-08-26T23:07:14.4374936Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:07:14.4382547Z 2025-08-26T23:07:14.4383015Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:07:14.4383765Z call :libtorch_check "cpu_rng_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_rng_test.exe" 2025-08-26T23:07:14.4384383Z if errorlevel 1 goto fail 2025-08-26T23:07:14.4384609Z ) 2025-08-26T23:07:14.4393314Z 2025-08-26T23:07:14.4393684Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:07:14.4397625Z 2025-08-26T23:07:14.4398120Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:07:14.4400616Z 2025-08-26T23:07:14.4400976Z (base) C:\actions-runner\_work\pytorch\pytorch>if "cpu_rng_test" == "verify_api_visibility" goto :eof 2025-08-26T23:07:14.4402094Z 2025-08-26T23:07:14.4402841Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_rng_test.exe" 2025-08-26T23:07:14.4403785Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_rng_test.exe" 2025-08-26T23:07:14.4404849Z 2025-08-26T23:07:14.4405298Z (base) C:\actions-runner\_work\pytorch\pytorch>if "cpu_rng_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:07:14.4406042Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_rng_test.exe" 2025-08-26T23:07:14.4406560Z goto :eof 2025-08-26T23:07:14.4406731Z ) 2025-08-26T23:07:14.4406822Z 2025-08-26T23:07:14.4407184Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/cpu_rng_test" 2025-08-26T23:07:20.7374542Z Found test times from artifacts 2025-08-26T23:07:20.8060822Z Found test times from artifacts 2025-08-26T23:07:20.8083544Z Running all tests 2025-08-26T23:07:20.8089063Z Running parallel tests on 3 processes 2025-08-26T23:07:20.8089458Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:07:20.8089746Z Serial tests (0): 2025-08-26T23:07:20.8089965Z Parallel tests (1): 2025-08-26T23:07:20.8090436Z cpp/cpu_rng_test 1/1 2025-08-26T23:07:20.8090743Z Name: excluded (est. time: 0.0min) 2025-08-26T23:07:20.8091007Z Serial tests (0): 2025-08-26T23:07:20.8091201Z Parallel tests (0): 2025-08-26T23:07:20.8092820Z Running cpp/cpu_rng_test 1/1 ... [2025-08-26 23:07:20.808504] 2025-08-26T23:07:20.8101959Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:07:20.8103178Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\cpu_rng_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-10c5b8ee654be4e3.xml', '-x', '--reruns=2'] ... [2025-08-26 23:07:20.810112] 2025-08-26T23:07:20.8104932Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:07:23.0570164Z 2025-08-26T23:07:23.0571126Z cpp/cpu_rng_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.cpu_rng_test_1.1_dcf372453c7faf6f_.log 2025-08-26T23:07:23.0571740Z 2025-08-26T23:07:27.4773073Z Running cpp/cpu_rng_test 1/1 ... [2025-08-26 23:07:27.476845] 2025-08-26T23:07:27.4773484Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:07:27.4783114Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\cpu_rng_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-52a41d220a0ca46c.xml', '-x', '--reruns=2'] ... [2025-08-26 23:07:27.478034] 2025-08-26T23:07:32.9816620Z 2025-08-26T23:07:32.9817584Z cpp/cpu_rng_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.cpu_rng_test_1.1_91b2504c30952025_.log 2025-08-26T23:07:32.9818695Z 2025-08-26T23:07:33.8162474Z Running test batch 'tests to run' cost 13.01 seconds 2025-08-26T23:07:33.8189977Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:07:33.8190442Z Uploading artifacts took 0.00 seconds 2025-08-26T23:07:34.5161830Z 2025-08-26T23:07:34.5162346Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:07:34.5162798Z echo "cpu_rng_test" failed with exit code 0 2025-08-26T23:07:34.5163097Z goto fail 2025-08-26T23:07:34.5163272Z ) 2025-08-26T23:07:34.5163362Z 2025-08-26T23:07:34.5163553Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:07:34.5163979Z echo "cpu_rng_test" failed with exit code 0 2025-08-26T23:07:34.5164252Z goto fail 2025-08-26T23:07:34.5164423Z ) 2025-08-26T23:07:34.5164547Z 2025-08-26T23:07:34.5165095Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:07:34.5172339Z 2025-08-26T23:07:34.5172607Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:07:34.5173250Z call :libtorch_check "Dict_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\Dict_test.exe" 2025-08-26T23:07:34.5173851Z if errorlevel 1 goto fail 2025-08-26T23:07:34.5174073Z ) 2025-08-26T23:07:34.5183108Z 2025-08-26T23:07:34.5183470Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:07:34.5187293Z 2025-08-26T23:07:34.5187772Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:07:34.5190214Z 2025-08-26T23:07:34.5190792Z (base) C:\actions-runner\_work\pytorch\pytorch>if "Dict_test" == "verify_api_visibility" goto :eof 2025-08-26T23:07:34.5191829Z 2025-08-26T23:07:34.5192338Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\Dict_test.exe" 2025-08-26T23:07:34.5193233Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\Dict_test.exe" 2025-08-26T23:07:34.5194464Z 2025-08-26T23:07:34.5195066Z (base) C:\actions-runner\_work\pytorch\pytorch>if "Dict_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:07:34.5195808Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\Dict_test.exe" 2025-08-26T23:07:34.5196291Z goto :eof 2025-08-26T23:07:34.5196455Z ) 2025-08-26T23:07:34.5196555Z 2025-08-26T23:07:34.5196893Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/Dict_test" 2025-08-26T23:07:40.5468928Z Found test times from artifacts 2025-08-26T23:07:40.6146329Z Found test times from artifacts 2025-08-26T23:07:40.6169184Z Running all tests 2025-08-26T23:07:40.6174767Z Running parallel tests on 3 processes 2025-08-26T23:07:40.6175168Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:07:40.6175451Z Serial tests (0): 2025-08-26T23:07:40.6175654Z Parallel tests (1): 2025-08-26T23:07:40.6175867Z cpp/Dict_test 1/1 2025-08-26T23:07:40.6176082Z Name: excluded (est. time: 0.0min) 2025-08-26T23:07:40.6176359Z Serial tests (0): 2025-08-26T23:07:40.6176571Z Parallel tests (0): 2025-08-26T23:07:40.6178651Z Running cpp/Dict_test 1/1 ... [2025-08-26 23:07:40.617752] 2025-08-26T23:07:40.6179022Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:07:40.6188988Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\Dict_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-d3653dafff9509ae.xml', '-x', '--reruns=2'] ... [2025-08-26 23:07:40.618326] 2025-08-26T23:07:40.6191016Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:07:42.9811923Z 2025-08-26T23:07:42.9812905Z cpp/Dict_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.Dict_test_1.1_0ba92648fd5ee55a_.log 2025-08-26T23:07:42.9813518Z 2025-08-26T23:07:47.4992104Z Running cpp/Dict_test 1/1 ... [2025-08-26 23:07:47.499003] 2025-08-26T23:07:47.4992538Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:07:47.5001070Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\Dict_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-ff5b72d395989cea.xml', '-x', '--reruns=2'] ... [2025-08-26 23:07:47.499647] 2025-08-26T23:07:56.3514788Z 2025-08-26T23:07:56.3515578Z cpp/Dict_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.Dict_test_1.1_d69fc445c8015c31_.log 2025-08-26T23:07:56.3517172Z 2025-08-26T23:07:57.1835393Z Running test batch 'tests to run' cost 16.57 seconds 2025-08-26T23:07:57.1841658Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:07:57.1842125Z Uploading artifacts took 0.00 seconds 2025-08-26T23:07:57.8775062Z 2025-08-26T23:07:57.8775677Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:07:57.8776148Z echo "Dict_test" failed with exit code 0 2025-08-26T23:07:57.8776476Z goto fail 2025-08-26T23:07:57.8776639Z ) 2025-08-26T23:07:57.8776790Z 2025-08-26T23:07:57.8776980Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:07:57.8777422Z echo "Dict_test" failed with exit code 0 2025-08-26T23:07:57.8777729Z goto fail 2025-08-26T23:07:57.8777943Z ) 2025-08-26T23:07:57.8778047Z 2025-08-26T23:07:57.8778206Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:07:57.8787039Z 2025-08-26T23:07:57.8787527Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:07:57.8788442Z call :libtorch_check "Dimname_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\Dimname_test.exe" 2025-08-26T23:07:57.8789058Z if errorlevel 1 goto fail 2025-08-26T23:07:57.8789285Z ) 2025-08-26T23:07:57.8798126Z 2025-08-26T23:07:57.8798515Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:07:57.8802516Z 2025-08-26T23:07:57.8803142Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:07:57.8805534Z 2025-08-26T23:07:57.8806069Z (base) C:\actions-runner\_work\pytorch\pytorch>if "Dimname_test" == "verify_api_visibility" goto :eof 2025-08-26T23:07:57.8807154Z 2025-08-26T23:07:57.8807696Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\Dimname_test.exe" 2025-08-26T23:07:57.8808594Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\Dimname_test.exe" 2025-08-26T23:07:57.8809841Z 2025-08-26T23:07:57.8810233Z (base) C:\actions-runner\_work\pytorch\pytorch>if "Dimname_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:07:57.8810950Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\Dimname_test.exe" 2025-08-26T23:07:57.8811418Z goto :eof 2025-08-26T23:07:57.8811594Z ) 2025-08-26T23:07:57.8811686Z 2025-08-26T23:07:57.8812037Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/Dimname_test" 2025-08-26T23:08:03.9265973Z Found test times from artifacts 2025-08-26T23:08:03.9946949Z Found test times from artifacts 2025-08-26T23:08:03.9969463Z Running all tests 2025-08-26T23:08:03.9974910Z Running parallel tests on 3 processes 2025-08-26T23:08:03.9975303Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:08:03.9975570Z Serial tests (0): 2025-08-26T23:08:03.9975795Z Parallel tests (1): 2025-08-26T23:08:03.9976003Z cpp/Dimname_test 1/1 2025-08-26T23:08:03.9976240Z Name: excluded (est. time: 0.0min) 2025-08-26T23:08:03.9976483Z Serial tests (0): 2025-08-26T23:08:03.9976683Z Parallel tests (0): 2025-08-26T23:08:03.9978818Z Running cpp/Dimname_test 1/1 ... [2025-08-26 23:08:03.997774] 2025-08-26T23:08:03.9979247Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:08:03.9988907Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\Dimname_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-20bc1f4ee21de834.xml', '-x', '--reruns=2'] ... [2025-08-26 23:08:03.998348] 2025-08-26T23:08:03.9990683Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:08:06.2677654Z 2025-08-26T23:08:06.2678489Z cpp/Dimname_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.Dimname_test_1.1_bce5b047abbc9843_.log 2025-08-26T23:08:06.2679162Z 2025-08-26T23:08:10.7022892Z Running cpp/Dimname_test 1/1 ... [2025-08-26 23:08:10.702131] 2025-08-26T23:08:10.7023337Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:08:10.7032364Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\Dimname_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-cdc160b2d1835db3.xml', '-x', '--reruns=2'] ... [2025-08-26 23:08:10.702755] 2025-08-26T23:08:13.7892227Z 2025-08-26T23:08:13.7893057Z cpp/Dimname_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.Dimname_test_1.1_d550c6b88ec32154_.log 2025-08-26T23:08:13.7893770Z 2025-08-26T23:08:14.6030264Z Running test batch 'tests to run' cost 10.6 seconds 2025-08-26T23:08:14.6036656Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:08:14.6037116Z Uploading artifacts took 0.00 seconds 2025-08-26T23:08:15.3428171Z 2025-08-26T23:08:15.3428933Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:08:15.3429392Z echo "Dimname_test" failed with exit code 0 2025-08-26T23:08:15.3429742Z goto fail 2025-08-26T23:08:15.3429940Z ) 2025-08-26T23:08:15.3430035Z 2025-08-26T23:08:15.3430233Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:08:15.3430635Z echo "Dimname_test" failed with exit code 0 2025-08-26T23:08:15.3430916Z goto fail 2025-08-26T23:08:15.3431083Z ) 2025-08-26T23:08:15.3431171Z 2025-08-26T23:08:15.3431336Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:08:15.3438720Z 2025-08-26T23:08:15.3439180Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:08:15.3439915Z call :libtorch_check "dlconvertor_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\dlconvertor_test.exe" 2025-08-26T23:08:15.3440571Z if errorlevel 1 goto fail 2025-08-26T23:08:15.3440791Z ) 2025-08-26T23:08:15.3449420Z 2025-08-26T23:08:15.3449824Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:08:15.3453532Z 2025-08-26T23:08:15.3454039Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:08:15.3456411Z 2025-08-26T23:08:15.3456919Z (base) C:\actions-runner\_work\pytorch\pytorch>if "dlconvertor_test" == "verify_api_visibility" goto :eof 2025-08-26T23:08:15.3457945Z 2025-08-26T23:08:15.3458492Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\dlconvertor_test.exe" 2025-08-26T23:08:15.3459633Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\dlconvertor_test.exe" 2025-08-26T23:08:15.3460694Z 2025-08-26T23:08:15.3461079Z (base) C:\actions-runner\_work\pytorch\pytorch>if "dlconvertor_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:08:15.3461817Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\dlconvertor_test.exe" 2025-08-26T23:08:15.3462325Z goto :eof 2025-08-26T23:08:15.3462493Z ) 2025-08-26T23:08:15.3462602Z 2025-08-26T23:08:15.3462963Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/dlconvertor_test" 2025-08-26T23:08:21.4694972Z Found test times from artifacts 2025-08-26T23:08:21.5374543Z Found test times from artifacts 2025-08-26T23:08:21.5396472Z Running all tests 2025-08-26T23:08:21.5401829Z Running parallel tests on 3 processes 2025-08-26T23:08:21.5402248Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:08:21.5402520Z Serial tests (0): 2025-08-26T23:08:21.5402724Z Parallel tests (1): 2025-08-26T23:08:21.5402945Z cpp/dlconvertor_test 1/1 2025-08-26T23:08:21.5403192Z Name: excluded (est. time: 0.0min) 2025-08-26T23:08:21.5403429Z Serial tests (0): 2025-08-26T23:08:21.5403635Z Parallel tests (0): 2025-08-26T23:08:21.5406173Z Running cpp/dlconvertor_test 1/1 ... [2025-08-26 23:08:21.539185] 2025-08-26T23:08:21.5406612Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:08:21.5415623Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\dlconvertor_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-24a94b4ae910c262.xml', '-x', '--reruns=2'] ... [2025-08-26 23:08:21.539185] 2025-08-26T23:08:21.5417458Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:08:23.8301292Z 2025-08-26T23:08:23.8302112Z cpp/dlconvertor_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.dlconvertor_test_1.1_efc7c494fb83ad6b_.log 2025-08-26T23:08:23.8303006Z 2025-08-26T23:08:28.2908243Z Running cpp/dlconvertor_test 1/1 ... [2025-08-26 23:08:28.283685] 2025-08-26T23:08:28.2908907Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:08:28.2917321Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\dlconvertor_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-2ea2dfdf462be586.xml', '-x', '--reruns=2'] ... [2025-08-26 23:08:28.283685] 2025-08-26T23:08:31.3194525Z 2025-08-26T23:08:31.3195385Z cpp/dlconvertor_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.dlconvertor_test_1.1_96b308f7a2725c64_.log 2025-08-26T23:08:31.3196091Z 2025-08-26T23:08:32.1634151Z Running test batch 'tests to run' cost 10.62 seconds 2025-08-26T23:08:32.1640516Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:08:32.1640970Z Uploading artifacts took 0.00 seconds 2025-08-26T23:08:33.0432609Z 2025-08-26T23:08:33.0433464Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:08:33.0433989Z echo "dlconvertor_test" failed with exit code 0 2025-08-26T23:08:33.0434308Z goto fail 2025-08-26T23:08:33.0434479Z ) 2025-08-26T23:08:33.0434575Z 2025-08-26T23:08:33.0434764Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:08:33.0435183Z echo "dlconvertor_test" failed with exit code 0 2025-08-26T23:08:33.0435472Z goto fail 2025-08-26T23:08:33.0435636Z ) 2025-08-26T23:08:33.0435731Z 2025-08-26T23:08:33.0435881Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:08:33.0443247Z 2025-08-26T23:08:33.0443671Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:08:33.0444433Z call :libtorch_check "extension_backend_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\extension_backend_test.exe" 2025-08-26T23:08:33.0445127Z if errorlevel 1 goto fail 2025-08-26T23:08:33.0445340Z ) 2025-08-26T23:08:33.0455056Z 2025-08-26T23:08:33.0455543Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:08:33.0459348Z 2025-08-26T23:08:33.0459929Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:08:33.0462359Z 2025-08-26T23:08:33.0462869Z (base) C:\actions-runner\_work\pytorch\pytorch>if "extension_backend_test" == "verify_api_visibility" goto :eof 2025-08-26T23:08:33.0463778Z 2025-08-26T23:08:33.0464366Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\extension_backend_test.exe" 2025-08-26T23:08:33.0465343Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\extension_backend_test.exe" 2025-08-26T23:08:33.0466102Z 2025-08-26T23:08:33.0466550Z (base) C:\actions-runner\_work\pytorch\pytorch>if "extension_backend_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:08:33.0467335Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\extension_backend_test.exe" 2025-08-26T23:08:33.0467845Z goto :eof 2025-08-26T23:08:33.0468056Z ) 2025-08-26T23:08:33.0468146Z 2025-08-26T23:08:33.0468567Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/extension_backend_test" 2025-08-26T23:08:39.1869097Z Found test times from artifacts 2025-08-26T23:08:39.2549178Z Found test times from artifacts 2025-08-26T23:08:39.2570506Z Running all tests 2025-08-26T23:08:39.2575855Z Running parallel tests on 3 processes 2025-08-26T23:08:39.2576229Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:08:39.2576522Z Serial tests (0): 2025-08-26T23:08:39.2576738Z Parallel tests (1): 2025-08-26T23:08:39.2576983Z cpp/extension_backend_test 1/1 2025-08-26T23:08:39.2577254Z Name: excluded (est. time: 0.0min) 2025-08-26T23:08:39.2577513Z Serial tests (0): 2025-08-26T23:08:39.2577715Z Parallel tests (0): 2025-08-26T23:08:39.2580889Z Running cpp/extension_backend_test 1/1 ... [2025-08-26 23:08:39.253871] 2025-08-26T23:08:39.2581429Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:08:39.2589589Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\extension_backend_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-59f9abc2c2334bbd.xml', '-x', '--reruns=2'] ... [2025-08-26 23:08:39.253871] 2025-08-26T23:08:39.2591384Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:08:41.4952178Z 2025-08-26T23:08:41.4953123Z cpp/extension_backend_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.extension_backend_test_1.1_4426631998412420_.log 2025-08-26T23:08:41.4953828Z 2025-08-26T23:08:45.8233187Z Running cpp/extension_backend_test 1/1 ... [2025-08-26 23:08:45.823052] 2025-08-26T23:08:45.8233670Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:08:45.8242764Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\extension_backend_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-9cd63132defce121.xml', '-x', '--reruns=2'] ... [2025-08-26 23:08:45.823625] 2025-08-26T23:08:48.4445054Z 2025-08-26T23:08:48.4446211Z cpp/extension_backend_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.extension_backend_test_1.1_9f2e24e5c7a902c5_.log 2025-08-26T23:08:48.4447096Z 2025-08-26T23:08:49.2819728Z Running test batch 'tests to run' cost 10.01 seconds 2025-08-26T23:08:49.2826563Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:08:49.2827388Z Uploading artifacts took 0.00 seconds 2025-08-26T23:08:49.9852702Z 2025-08-26T23:08:49.9853432Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:08:49.9853924Z echo "extension_backend_test" failed with exit code 0 2025-08-26T23:08:49.9854277Z goto fail 2025-08-26T23:08:49.9854470Z ) 2025-08-26T23:08:49.9854578Z 2025-08-26T23:08:49.9854772Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:08:49.9855224Z echo "extension_backend_test" failed with exit code 0 2025-08-26T23:08:49.9863737Z goto fail 2025-08-26T23:08:49.9864001Z ) 2025-08-26T23:08:49.9864150Z 2025-08-26T23:08:49.9864329Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:08:49.9864652Z 2025-08-26T23:08:49.9864802Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:08:49.9865426Z call :libtorch_check "half_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\half_test.exe" 2025-08-26T23:08:49.9866031Z if errorlevel 1 goto fail 2025-08-26T23:08:49.9866261Z ) 2025-08-26T23:08:49.9873958Z 2025-08-26T23:08:49.9874536Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:08:49.9878161Z 2025-08-26T23:08:49.9878946Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:08:49.9880793Z 2025-08-26T23:08:49.9881136Z (base) C:\actions-runner\_work\pytorch\pytorch>if "half_test" == "verify_api_visibility" goto :eof 2025-08-26T23:08:49.9882646Z 2025-08-26T23:08:49.9883160Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\half_test.exe" 2025-08-26T23:08:49.9884077Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\half_test.exe" 2025-08-26T23:08:49.9885027Z 2025-08-26T23:08:49.9885482Z (base) C:\actions-runner\_work\pytorch\pytorch>if "half_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:08:49.9886412Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\half_test.exe" 2025-08-26T23:08:49.9886955Z goto :eof 2025-08-26T23:08:49.9887160Z ) 2025-08-26T23:08:49.9887259Z 2025-08-26T23:08:49.9887660Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/half_test" 2025-08-26T23:08:56.0980023Z Found test times from artifacts 2025-08-26T23:08:56.1764869Z Found test times from artifacts 2025-08-26T23:08:56.1787633Z Running all tests 2025-08-26T23:08:56.1793818Z Running parallel tests on 3 processes 2025-08-26T23:08:56.1794193Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:08:56.1794483Z Serial tests (0): 2025-08-26T23:08:56.1794725Z Parallel tests (1): 2025-08-26T23:08:56.1794943Z cpp/half_test 1/1 2025-08-26T23:08:56.1796095Z Name: excluded (est. time: 0.0min) 2025-08-26T23:08:56.1796364Z Serial tests (0): 2025-08-26T23:08:56.1796602Z Parallel tests (0): 2025-08-26T23:08:56.1797346Z Running cpp/half_test 1/1 ... [2025-08-26 23:08:56.171371] 2025-08-26T23:08:56.1797726Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:08:56.1807390Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\half_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-d5f1395d58df984f.xml', '-x', '--reruns=2'] ... [2025-08-26 23:08:56.171371] 2025-08-26T23:08:56.1809127Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:08:58.4701527Z 2025-08-26T23:08:58.4702322Z cpp/half_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.half_test_1.1_1ea2c3ee34401b3a_.log 2025-08-26T23:08:58.4703249Z 2025-08-26T23:09:02.9927752Z Running cpp/half_test 1/1 ... [2025-08-26 23:09:02.991047] 2025-08-26T23:09:02.9928153Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:09:02.9936666Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\half_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-f9fb4cb628be064c.xml', '-x', '--reruns=2'] ... [2025-08-26 23:09:02.992649] 2025-08-26T23:09:06.4445826Z 2025-08-26T23:09:06.4446621Z cpp/half_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.half_test_1.1_ea6a68718c70d883_.log 2025-08-26T23:09:06.4447558Z 2025-08-26T23:09:07.3235372Z Running test batch 'tests to run' cost 11.15 seconds 2025-08-26T23:09:07.3241764Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:09:07.3242224Z Uploading artifacts took 0.00 seconds 2025-08-26T23:09:08.0952502Z 2025-08-26T23:09:08.0953049Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:09:08.0953519Z echo "half_test" failed with exit code 0 2025-08-26T23:09:08.0953835Z goto fail 2025-08-26T23:09:08.0954013Z ) 2025-08-26T23:09:08.0954131Z 2025-08-26T23:09:08.0954320Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:09:08.0954719Z echo "half_test" failed with exit code 0 2025-08-26T23:09:08.0955014Z goto fail 2025-08-26T23:09:08.0955180Z ) 2025-08-26T23:09:08.0955289Z 2025-08-26T23:09:08.0955444Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:09:08.0962017Z 2025-08-26T23:09:08.0962420Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:09:08.0963126Z call :libtorch_check "IListRef_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\IListRef_test.exe" 2025-08-26T23:09:08.0963779Z if errorlevel 1 goto fail 2025-08-26T23:09:08.0964033Z ) 2025-08-26T23:09:08.0971935Z 2025-08-26T23:09:08.0972294Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:09:08.0975918Z 2025-08-26T23:09:08.0976377Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:09:08.0978316Z 2025-08-26T23:09:08.0978970Z (base) C:\actions-runner\_work\pytorch\pytorch>if "IListRef_test" == "verify_api_visibility" goto :eof 2025-08-26T23:09:08.0979519Z 2025-08-26T23:09:08.0980063Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\IListRef_test.exe" 2025-08-26T23:09:08.0981022Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\IListRef_test.exe" 2025-08-26T23:09:08.0981803Z 2025-08-26T23:09:08.0982189Z (base) C:\actions-runner\_work\pytorch\pytorch>if "IListRef_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:09:08.0982921Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\IListRef_test.exe" 2025-08-26T23:09:08.0983443Z goto :eof 2025-08-26T23:09:08.0983617Z ) 2025-08-26T23:09:08.0983719Z 2025-08-26T23:09:08.0984094Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/IListRef_test" 2025-08-26T23:09:14.2505947Z Found test times from artifacts 2025-08-26T23:09:14.3188898Z Found test times from artifacts 2025-08-26T23:09:14.3210859Z Running all tests 2025-08-26T23:09:14.3216774Z Running parallel tests on 3 processes 2025-08-26T23:09:14.3217169Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:09:14.3217662Z Serial tests (0): 2025-08-26T23:09:14.3217891Z Parallel tests (1): 2025-08-26T23:09:14.3218116Z cpp/IListRef_test 1/1 2025-08-26T23:09:14.3218390Z Name: excluded (est. time: 0.0min) 2025-08-26T23:09:14.3218669Z Serial tests (0): 2025-08-26T23:09:14.3218882Z Parallel tests (0): 2025-08-26T23:09:14.3220397Z Running cpp/IListRef_test 1/1 ... [2025-08-26 23:09:14.321601] 2025-08-26T23:09:14.3229304Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:09:14.3230576Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\IListRef_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-ddc4bcab8a1dcfb6.xml', '-x', '--reruns=2'] ... [2025-08-26 23:09:14.321601] 2025-08-26T23:09:14.3232551Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:09:16.5773556Z 2025-08-26T23:09:16.5774381Z cpp/IListRef_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.IListRef_test_1.1_9769095e133bfad5_.log 2025-08-26T23:09:16.5775053Z 2025-08-26T23:09:21.0606198Z Running cpp/IListRef_test 1/1 ... [2025-08-26 23:09:21.059617] 2025-08-26T23:09:21.0606619Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:09:21.0615402Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\IListRef_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-d7f8a555a4cace92.xml', '-x', '--reruns=2'] ... [2025-08-26 23:09:21.059617] 2025-08-26T23:09:26.3574522Z 2025-08-26T23:09:26.3575381Z cpp/IListRef_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.IListRef_test_1.1_778e377154fa8955_.log 2025-08-26T23:09:26.3576466Z 2025-08-26T23:09:27.2413579Z Running test batch 'tests to run' cost 12.92 seconds 2025-08-26T23:09:27.2420789Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:09:27.2421358Z Uploading artifacts took 0.00 seconds 2025-08-26T23:09:28.0573865Z 2025-08-26T23:09:28.0574393Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:09:28.0574868Z echo "IListRef_test" failed with exit code 0 2025-08-26T23:09:28.0575169Z goto fail 2025-08-26T23:09:28.0575609Z ) 2025-08-26T23:09:28.0575792Z 2025-08-26T23:09:28.0575990Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:09:28.0576414Z echo "IListRef_test" failed with exit code 0 2025-08-26T23:09:28.0576713Z goto fail 2025-08-26T23:09:28.0576945Z ) 2025-08-26T23:09:28.0577047Z 2025-08-26T23:09:28.0577222Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:09:28.0583483Z 2025-08-26T23:09:28.0583688Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:09:28.0584443Z call :libtorch_check "inline_container_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\inline_container_test.exe" 2025-08-26T23:09:28.0585127Z if errorlevel 1 goto fail 2025-08-26T23:09:28.0585361Z ) 2025-08-26T23:09:28.0594388Z 2025-08-26T23:09:28.0594991Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:09:28.0600154Z 2025-08-26T23:09:28.0600814Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:09:28.0601892Z 2025-08-26T23:09:28.0602431Z (base) C:\actions-runner\_work\pytorch\pytorch>if "inline_container_test" == "verify_api_visibility" goto :eof 2025-08-26T23:09:28.0603817Z 2025-08-26T23:09:28.0604465Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\inline_container_test.exe" 2025-08-26T23:09:28.0609786Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\inline_container_test.exe" 2025-08-26T23:09:28.0610240Z 2025-08-26T23:09:28.0610591Z (base) C:\actions-runner\_work\pytorch\pytorch>if "inline_container_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:09:28.0611355Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\inline_container_test.exe" 2025-08-26T23:09:28.0611878Z goto :eof 2025-08-26T23:09:28.0612059Z ) 2025-08-26T23:09:28.0612165Z 2025-08-26T23:09:28.0612554Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/inline_container_test" 2025-08-26T23:09:34.2505640Z Found test times from artifacts 2025-08-26T23:09:34.3188314Z Found test times from artifacts 2025-08-26T23:09:34.3210934Z Running all tests 2025-08-26T23:09:34.3216067Z Running parallel tests on 3 processes 2025-08-26T23:09:34.3216854Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:09:34.3217123Z Serial tests (0): 2025-08-26T23:09:34.3217376Z Parallel tests (1): 2025-08-26T23:09:34.3217607Z cpp/inline_container_test 1/1 2025-08-26T23:09:34.3217890Z Name: excluded (est. time: 0.0min) 2025-08-26T23:09:34.3218145Z Serial tests (0): 2025-08-26T23:09:34.3218365Z Parallel tests (0): 2025-08-26T23:09:34.3219458Z Running cpp/inline_container_test 1/1 ... [2025-08-26 23:09:34.321614] 2025-08-26T23:09:34.3219876Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:09:34.3229693Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\inline_container_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-f2f8a663059316f8.xml', '-x', '--reruns=2'] ... [2025-08-26 23:09:34.322717] 2025-08-26T23:09:34.3231519Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:09:36.6023590Z 2025-08-26T23:09:36.6024478Z cpp/inline_container_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.inline_container_test_1.1_202407349632e711_.log 2025-08-26T23:09:36.6025473Z 2025-08-26T23:09:41.0499028Z Running cpp/inline_container_test 1/1 ... [2025-08-26 23:09:41.047366] 2025-08-26T23:09:41.0499483Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:09:41.0508691Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\inline_container_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-5a5905f100615842.xml', '-x', '--reruns=2'] ... [2025-08-26 23:09:41.047366] 2025-08-26T23:09:44.9484585Z 2025-08-26T23:09:44.9485570Z cpp/inline_container_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.inline_container_test_1.1_168121d2122b129b_.log 2025-08-26T23:09:44.9486512Z 2025-08-26T23:09:45.7604516Z Running test batch 'tests to run' cost 11.44 seconds 2025-08-26T23:09:45.7611947Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:09:45.7612446Z Uploading artifacts took 0.00 seconds 2025-08-26T23:09:46.4698129Z 2025-08-26T23:09:46.4698662Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:09:46.4699183Z echo "inline_container_test" failed with exit code 0 2025-08-26T23:09:46.4699529Z goto fail 2025-08-26T23:09:46.4699710Z ) 2025-08-26T23:09:46.4700466Z 2025-08-26T23:09:46.4701060Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:09:46.4701523Z echo "inline_container_test" failed with exit code 0 2025-08-26T23:09:46.4701844Z goto fail 2025-08-26T23:09:46.4702026Z ) 2025-08-26T23:09:46.4702121Z 2025-08-26T23:09:46.4702276Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:09:46.4708308Z 2025-08-26T23:09:46.4708642Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:09:46.4709290Z call :libtorch_check "ivalue_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\ivalue_test.exe" 2025-08-26T23:09:46.4709914Z if errorlevel 1 goto fail 2025-08-26T23:09:46.4710153Z ) 2025-08-26T23:09:46.4719281Z 2025-08-26T23:09:46.4719641Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:09:46.4723894Z 2025-08-26T23:09:46.4724517Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:09:46.4726383Z 2025-08-26T23:09:46.4727119Z (base) C:\actions-runner\_work\pytorch\pytorch>if "ivalue_test" == "verify_api_visibility" goto :eof 2025-08-26T23:09:46.4727673Z 2025-08-26T23:09:46.4728271Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\ivalue_test.exe" 2025-08-26T23:09:46.4729222Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\ivalue_test.exe" 2025-08-26T23:09:46.4730123Z 2025-08-26T23:09:46.4730481Z (base) C:\actions-runner\_work\pytorch\pytorch>if "ivalue_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:09:46.4731186Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\ivalue_test.exe" 2025-08-26T23:09:46.4731668Z goto :eof 2025-08-26T23:09:46.4731865Z ) 2025-08-26T23:09:46.4731964Z 2025-08-26T23:09:46.4732322Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/ivalue_test" 2025-08-26T23:09:52.6467128Z Found test times from artifacts 2025-08-26T23:09:52.7154856Z Found test times from artifacts 2025-08-26T23:09:52.7177677Z Running all tests 2025-08-26T23:09:52.7183831Z Running parallel tests on 3 processes 2025-08-26T23:09:52.7184183Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:09:52.7184467Z Serial tests (0): 2025-08-26T23:09:52.7184702Z Parallel tests (1): 2025-08-26T23:09:52.7184941Z cpp/ivalue_test 1/1 2025-08-26T23:09:52.7185171Z Name: excluded (est. time: 0.0min) 2025-08-26T23:09:52.7185435Z Serial tests (0): 2025-08-26T23:09:52.7185631Z Parallel tests (0): 2025-08-26T23:09:52.7187154Z Running cpp/ivalue_test 1/1 ... [2025-08-26 23:09:52.718017] 2025-08-26T23:09:52.7187533Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:09:52.7197222Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\ivalue_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-35663de70048a527.xml', '-x', '--reruns=2'] ... [2025-08-26 23:09:52.718017] 2025-08-26T23:09:52.7199063Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:09:54.9398307Z 2025-08-26T23:09:54.9399168Z cpp/ivalue_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.ivalue_test_1.1_b5c70a368ebb2633_.log 2025-08-26T23:09:54.9399861Z 2025-08-26T23:09:59.4436162Z Running cpp/ivalue_test 1/1 ... [2025-08-26 23:09:59.443127] 2025-08-26T23:09:59.4436638Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:09:59.4445325Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\ivalue_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-462802cc5804500d.xml', '-x', '--reruns=2'] ... [2025-08-26 23:09:59.444272] 2025-08-26T23:10:07.3364750Z 2025-08-26T23:10:07.3365544Z cpp/ivalue_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.ivalue_test_1.1_5908fd70bfca5a50_.log 2025-08-26T23:10:07.3367144Z 2025-08-26T23:10:08.1495703Z Running test batch 'tests to run' cost 15.43 seconds 2025-08-26T23:10:08.1505173Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:10:08.1505658Z Uploading artifacts took 0.00 seconds 2025-08-26T23:10:08.8943371Z 2025-08-26T23:10:08.8944021Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:10:08.8944470Z echo "ivalue_test" failed with exit code 0 2025-08-26T23:10:08.8944779Z goto fail 2025-08-26T23:10:08.8944957Z ) 2025-08-26T23:10:08.8945098Z 2025-08-26T23:10:08.8945289Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:10:08.8945752Z echo "ivalue_test" failed with exit code 0 2025-08-26T23:10:08.8946089Z goto fail 2025-08-26T23:10:08.8946262Z ) 2025-08-26T23:10:08.8946415Z 2025-08-26T23:10:08.8946574Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:10:08.8953008Z 2025-08-26T23:10:08.8953399Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:10:08.8954137Z call :libtorch_check "KernelFunction_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\KernelFunction_test.exe" 2025-08-26T23:10:08.8954858Z if errorlevel 1 goto fail 2025-08-26T23:10:08.8955092Z ) 2025-08-26T23:10:08.8964318Z 2025-08-26T23:10:08.8964714Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:10:08.8968373Z 2025-08-26T23:10:08.8969089Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:10:08.8971239Z 2025-08-26T23:10:08.8971646Z (base) C:\actions-runner\_work\pytorch\pytorch>if "KernelFunction_test" == "verify_api_visibility" goto :eof 2025-08-26T23:10:08.8972715Z 2025-08-26T23:10:08.8973374Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\KernelFunction_test.exe" 2025-08-26T23:10:08.8974354Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\KernelFunction_test.exe" 2025-08-26T23:10:08.8974808Z 2025-08-26T23:10:08.8975170Z (base) C:\actions-runner\_work\pytorch\pytorch>if "KernelFunction_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:10:08.8975995Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\KernelFunction_test.exe" 2025-08-26T23:10:08.8976503Z goto :eof 2025-08-26T23:10:08.8976690Z ) 2025-08-26T23:10:08.8976790Z 2025-08-26T23:10:08.8977404Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/KernelFunction_test" 2025-08-26T23:10:15.1139355Z Found test times from artifacts 2025-08-26T23:10:15.1821428Z Found test times from artifacts 2025-08-26T23:10:15.1844194Z Running all tests 2025-08-26T23:10:15.1850947Z Running parallel tests on 3 processes 2025-08-26T23:10:15.1851315Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:10:15.1851588Z Serial tests (0): 2025-08-26T23:10:15.1851787Z Parallel tests (1): 2025-08-26T23:10:15.1852042Z cpp/KernelFunction_test 1/1 2025-08-26T23:10:15.1852297Z Name: excluded (est. time: 0.0min) 2025-08-26T23:10:15.1852557Z Serial tests (0): 2025-08-26T23:10:15.1852750Z Parallel tests (0): 2025-08-26T23:10:15.1853901Z Running cpp/KernelFunction_test 1/1 ... [2025-08-26 23:10:15.185000] 2025-08-26T23:10:15.1854332Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:10:15.1864010Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\KernelFunction_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-b86d5a54fe099117.xml', '-x', '--reruns=2'] ... [2025-08-26 23:10:15.186194] 2025-08-26T23:10:15.1866061Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:10:17.5743943Z 2025-08-26T23:10:17.5745010Z cpp/KernelFunction_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.KernelFunction_test_1.1_f06684f134ac764e_.log 2025-08-26T23:10:17.5745694Z 2025-08-26T23:10:22.0085631Z Running cpp/KernelFunction_test 1/1 ... [2025-08-26 23:10:22.008407] 2025-08-26T23:10:22.0086081Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:10:22.0095244Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\KernelFunction_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-d38b658702651633.xml', '-x', '--reruns=2'] ... [2025-08-26 23:10:22.008494] 2025-08-26T23:10:28.2120942Z 2025-08-26T23:10:28.2121949Z cpp/KernelFunction_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.KernelFunction_test_1.1_51588c63733d6094_.log 2025-08-26T23:10:28.2123138Z 2025-08-26T23:10:29.1050741Z Running test batch 'tests to run' cost 13.92 seconds 2025-08-26T23:10:29.1057179Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:10:29.1057642Z Uploading artifacts took 0.00 seconds 2025-08-26T23:10:29.8202953Z 2025-08-26T23:10:29.8203430Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:10:29.8203898Z echo "KernelFunction_test" failed with exit code 0 2025-08-26T23:10:29.8204238Z goto fail 2025-08-26T23:10:29.8204444Z ) 2025-08-26T23:10:29.8204578Z 2025-08-26T23:10:29.8204772Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:10:29.8205233Z echo "KernelFunction_test" failed with exit code 0 2025-08-26T23:10:29.8205553Z goto fail 2025-08-26T23:10:29.8205747Z ) 2025-08-26T23:10:29.8205847Z 2025-08-26T23:10:29.8206001Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:10:29.8211396Z 2025-08-26T23:10:29.8211898Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:10:29.8212744Z call :libtorch_check "kernel_function_legacy_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_function_legacy_test.exe" 2025-08-26T23:10:29.8213474Z if errorlevel 1 goto fail 2025-08-26T23:10:29.8213717Z ) 2025-08-26T23:10:29.8222054Z 2025-08-26T23:10:29.8222488Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:10:29.8225933Z 2025-08-26T23:10:29.8226715Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:10:29.8228868Z 2025-08-26T23:10:29.8229337Z (base) C:\actions-runner\_work\pytorch\pytorch>if "kernel_function_legacy_test" == "verify_api_visibility" goto :eof 2025-08-26T23:10:29.8230183Z 2025-08-26T23:10:29.8230863Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_function_legacy_test.exe" 2025-08-26T23:10:29.8231884Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_function_legacy_test.exe" 2025-08-26T23:10:29.8232379Z 2025-08-26T23:10:29.8232737Z (base) C:\actions-runner\_work\pytorch\pytorch>if "kernel_function_legacy_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:10:29.8233563Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_function_legacy_test.exe" 2025-08-26T23:10:29.8234111Z goto :eof 2025-08-26T23:10:29.8234307Z ) 2025-08-26T23:10:29.8234405Z 2025-08-26T23:10:29.8234817Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/kernel_function_legacy_test" 2025-08-26T23:10:35.9138122Z Found test times from artifacts 2025-08-26T23:10:35.9820767Z Found test times from artifacts 2025-08-26T23:10:35.9842747Z Running all tests 2025-08-26T23:10:35.9848642Z Running parallel tests on 3 processes 2025-08-26T23:10:35.9849046Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:10:35.9849489Z Serial tests (0): 2025-08-26T23:10:35.9849707Z Parallel tests (1): 2025-08-26T23:10:35.9849963Z cpp/kernel_function_legacy_test 1/1 2025-08-26T23:10:35.9850252Z Name: excluded (est. time: 0.0min) 2025-08-26T23:10:35.9850513Z Serial tests (0): 2025-08-26T23:10:35.9850755Z Parallel tests (0): 2025-08-26T23:10:35.9857683Z Running cpp/kernel_function_legacy_test 1/1 ... [2025-08-26 23:10:35.985181] 2025-08-26T23:10:35.9858141Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:10:35.9863138Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\kernel_function_legacy_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-c871a0861bf7ed9b.xml', '-x', '--reruns=2'] ... [2025-08-26 23:10:35.985687] 2025-08-26T23:10:35.9864948Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:10:38.2858296Z 2025-08-26T23:10:38.2859328Z cpp/kernel_function_legacy_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.kernel_function_legacy_test_1.1_0e7deadc03caf2e2_.log 2025-08-26T23:10:38.2860069Z 2025-08-26T23:10:42.7767167Z Running cpp/kernel_function_legacy_test 1/1 ... [2025-08-26 23:10:42.776524] 2025-08-26T23:10:42.7767769Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:10:42.7777255Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\kernel_function_legacy_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-2214da3a013a9391.xml', '-x', '--reruns=2'] ... [2025-08-26 23:10:42.777537] 2025-08-26T23:10:52.5807338Z 2025-08-26T23:10:52.5808520Z cpp/kernel_function_legacy_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.kernel_function_legacy_test_1.1_6439fb5236d9557e_.log 2025-08-26T23:10:52.5811109Z 2025-08-26T23:10:53.4470050Z Running test batch 'tests to run' cost 17.46 seconds 2025-08-26T23:10:53.4477695Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:10:53.4478199Z Uploading artifacts took 0.00 seconds 2025-08-26T23:10:54.1319492Z 2025-08-26T23:10:54.1320273Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:10:54.1320864Z echo "kernel_function_legacy_test" failed with exit code 0 2025-08-26T23:10:54.1321258Z goto fail 2025-08-26T23:10:54.1321452Z ) 2025-08-26T23:10:54.1321593Z 2025-08-26T23:10:54.1321792Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:10:54.1322276Z echo "kernel_function_legacy_test" failed with exit code 0 2025-08-26T23:10:54.1322638Z goto fail 2025-08-26T23:10:54.1322814Z ) 2025-08-26T23:10:54.1322912Z 2025-08-26T23:10:54.1323090Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:10:54.1329852Z 2025-08-26T23:10:54.1330382Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:10:54.1331157Z call :libtorch_check "kernel_function_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_function_test.exe" 2025-08-26T23:10:54.1331833Z if errorlevel 1 goto fail 2025-08-26T23:10:54.1332079Z ) 2025-08-26T23:10:54.1340546Z 2025-08-26T23:10:54.1341012Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:10:54.1344608Z 2025-08-26T23:10:54.1345193Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:10:54.1347469Z 2025-08-26T23:10:54.1347891Z (base) C:\actions-runner\_work\pytorch\pytorch>if "kernel_function_test" == "verify_api_visibility" goto :eof 2025-08-26T23:10:54.1348826Z 2025-08-26T23:10:54.1349596Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_function_test.exe" 2025-08-26T23:10:54.1350670Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_function_test.exe" 2025-08-26T23:10:54.1351414Z 2025-08-26T23:10:54.1351826Z (base) C:\actions-runner\_work\pytorch\pytorch>if "kernel_function_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:10:54.1352616Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_function_test.exe" 2025-08-26T23:10:54.1353129Z goto :eof 2025-08-26T23:10:54.1353319Z ) 2025-08-26T23:10:54.1353415Z 2025-08-26T23:10:54.1353790Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/kernel_function_test" 2025-08-26T23:11:00.2977885Z Found test times from artifacts 2025-08-26T23:11:00.3652265Z Found test times from artifacts 2025-08-26T23:11:00.3674047Z Running all tests 2025-08-26T23:11:00.3679502Z Running parallel tests on 3 processes 2025-08-26T23:11:00.3679873Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:11:00.3680184Z Serial tests (0): 2025-08-26T23:11:00.3680404Z Parallel tests (1): 2025-08-26T23:11:00.3680658Z cpp/kernel_function_test 1/1 2025-08-26T23:11:00.3680945Z Name: excluded (est. time: 0.0min) 2025-08-26T23:11:00.3681202Z Serial tests (0): 2025-08-26T23:11:00.3681437Z Parallel tests (0): 2025-08-26T23:11:00.3683249Z Running cpp/kernel_function_test 1/1 ... [2025-08-26 23:11:00.364869] 2025-08-26T23:11:00.3683690Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:11:00.3693333Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\kernel_function_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-aad76684c514c6e1.xml', '-x', '--reruns=2'] ... [2025-08-26 23:11:00.364869] 2025-08-26T23:11:00.3695157Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:11:02.7161410Z 2025-08-26T23:11:02.7162278Z cpp/kernel_function_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.kernel_function_test_1.1_2b26221710eb8814_.log 2025-08-26T23:11:02.7163138Z 2025-08-26T23:11:07.1513683Z Running cpp/kernel_function_test 1/1 ... [2025-08-26 23:11:07.141792] 2025-08-26T23:11:07.1514251Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:11:07.1522848Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\kernel_function_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-bbfb047e8bb299ee.xml', '-x', '--reruns=2'] ... [2025-08-26 23:11:07.141792] 2025-08-26T23:11:15.7014805Z 2025-08-26T23:11:15.7015767Z cpp/kernel_function_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.kernel_function_test_1.1_44027dfaee989143_.log 2025-08-26T23:11:15.7017127Z 2025-08-26T23:11:16.5609368Z Running test batch 'tests to run' cost 16.19 seconds 2025-08-26T23:11:16.5616041Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:11:16.5616518Z Uploading artifacts took 0.00 seconds 2025-08-26T23:11:17.2746868Z 2025-08-26T23:11:17.2747685Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:11:17.2748197Z echo "kernel_function_test" failed with exit code 0 2025-08-26T23:11:17.2748539Z goto fail 2025-08-26T23:11:17.2748716Z ) 2025-08-26T23:11:17.2748828Z 2025-08-26T23:11:17.2749023Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:11:17.2749456Z echo "kernel_function_test" failed with exit code 0 2025-08-26T23:11:17.2749835Z goto fail 2025-08-26T23:11:17.2750587Z ) 2025-08-26T23:11:17.2750694Z 2025-08-26T23:11:17.2750849Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:11:17.2756458Z 2025-08-26T23:11:17.2756857Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:11:17.2757695Z call :libtorch_check "kernel_lambda_legacy_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_lambda_legacy_test.exe" 2025-08-26T23:11:17.2758492Z if errorlevel 1 goto fail 2025-08-26T23:11:17.2758786Z ) 2025-08-26T23:11:17.2767791Z 2025-08-26T23:11:17.2768416Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:11:17.2771882Z 2025-08-26T23:11:17.2772457Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:11:17.2774850Z 2025-08-26T23:11:17.2775412Z (base) C:\actions-runner\_work\pytorch\pytorch>if "kernel_lambda_legacy_test" == "verify_api_visibility" goto :eof 2025-08-26T23:11:17.2776450Z 2025-08-26T23:11:17.2777151Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_lambda_legacy_test.exe" 2025-08-26T23:11:17.2778178Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_lambda_legacy_test.exe" 2025-08-26T23:11:17.2779016Z 2025-08-26T23:11:17.2779490Z (base) C:\actions-runner\_work\pytorch\pytorch>if "kernel_lambda_legacy_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:11:17.2780302Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_lambda_legacy_test.exe" 2025-08-26T23:11:17.2780918Z goto :eof 2025-08-26T23:11:17.2781099Z ) 2025-08-26T23:11:17.2781311Z 2025-08-26T23:11:17.2781799Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/kernel_lambda_legacy_test" 2025-08-26T23:11:23.4557737Z Found test times from artifacts 2025-08-26T23:11:23.5235613Z Found test times from artifacts 2025-08-26T23:11:23.5257045Z Running all tests 2025-08-26T23:11:23.5262812Z Running parallel tests on 3 processes 2025-08-26T23:11:23.5263170Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:11:23.5263457Z Serial tests (0): 2025-08-26T23:11:23.5263684Z Parallel tests (1): 2025-08-26T23:11:23.5263931Z cpp/kernel_lambda_legacy_test 1/1 2025-08-26T23:11:23.5264467Z Name: excluded (est. time: 0.0min) 2025-08-26T23:11:23.5264745Z Serial tests (0): 2025-08-26T23:11:23.5265541Z Parallel tests (0): 2025-08-26T23:11:23.5266775Z Running cpp/kernel_lambda_legacy_test 1/1 ... [2025-08-26 23:11:23.526477] 2025-08-26T23:11:23.5267227Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:11:23.5276798Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\kernel_lambda_legacy_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-52fa398dcebb60b5.xml', '-x', '--reruns=2'] ... [2025-08-26 23:11:23.527048] 2025-08-26T23:11:23.5278672Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:11:25.7681910Z 2025-08-26T23:11:25.7683170Z cpp/kernel_lambda_legacy_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.kernel_lambda_legacy_test_1.1_cff2ab9b37144de3_.log 2025-08-26T23:11:25.7683929Z 2025-08-26T23:11:30.2121035Z Running cpp/kernel_lambda_legacy_test 1/1 ... [2025-08-26 23:11:30.208051] 2025-08-26T23:11:30.2121555Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:11:30.2130167Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\kernel_lambda_legacy_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-1cb19e175e1ab5fa.xml', '-x', '--reruns=2'] ... [2025-08-26 23:11:30.208051] 2025-08-26T23:11:40.2861570Z 2025-08-26T23:11:40.2862547Z cpp/kernel_lambda_legacy_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.kernel_lambda_legacy_test_1.1_b49ad568775b5409_.log 2025-08-26T23:11:40.2864159Z 2025-08-26T23:11:41.1202158Z Running test batch 'tests to run' cost 17.59 seconds 2025-08-26T23:11:41.1208046Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:11:41.1208540Z Uploading artifacts took 0.00 seconds 2025-08-26T23:11:41.8237665Z 2025-08-26T23:11:41.8239200Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:11:41.8239703Z echo "kernel_lambda_legacy_test" failed with exit code 0 2025-08-26T23:11:41.8240091Z goto fail 2025-08-26T23:11:41.8240317Z ) 2025-08-26T23:11:41.8240430Z 2025-08-26T23:11:41.8240644Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:11:41.8241161Z echo "kernel_lambda_legacy_test" failed with exit code 0 2025-08-26T23:11:41.8241521Z goto fail 2025-08-26T23:11:41.8241743Z ) 2025-08-26T23:11:41.8241850Z 2025-08-26T23:11:41.8242013Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:11:41.8247595Z 2025-08-26T23:11:41.8247840Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:11:41.8248601Z call :libtorch_check "kernel_lambda_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_lambda_test.exe" 2025-08-26T23:11:41.8249302Z if errorlevel 1 goto fail 2025-08-26T23:11:41.8249580Z ) 2025-08-26T23:11:41.8257933Z 2025-08-26T23:11:41.8258323Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:11:41.8261621Z 2025-08-26T23:11:41.8262167Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:11:41.8264114Z 2025-08-26T23:11:41.8264825Z (base) C:\actions-runner\_work\pytorch\pytorch>if "kernel_lambda_test" == "verify_api_visibility" goto :eof 2025-08-26T23:11:41.8265354Z 2025-08-26T23:11:41.8266010Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_lambda_test.exe" 2025-08-26T23:11:41.8267262Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_lambda_test.exe" 2025-08-26T23:11:41.8267816Z 2025-08-26T23:11:41.8268156Z (base) C:\actions-runner\_work\pytorch\pytorch>if "kernel_lambda_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:11:41.8268961Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_lambda_test.exe" 2025-08-26T23:11:41.8269496Z goto :eof 2025-08-26T23:11:41.8269723Z ) 2025-08-26T23:11:41.8269841Z 2025-08-26T23:11:41.8270265Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/kernel_lambda_test" 2025-08-26T23:11:48.0843876Z Found test times from artifacts 2025-08-26T23:11:48.1570364Z Found test times from artifacts 2025-08-26T23:11:48.1593268Z Running all tests 2025-08-26T23:11:48.1599074Z Running parallel tests on 3 processes 2025-08-26T23:11:48.1599490Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:11:48.1599821Z Serial tests (0): 2025-08-26T23:11:48.1600091Z Parallel tests (1): 2025-08-26T23:11:48.1600367Z cpp/kernel_lambda_test 1/1 2025-08-26T23:11:48.1600678Z Name: excluded (est. time: 0.0min) 2025-08-26T23:11:48.1600955Z Serial tests (0): 2025-08-26T23:11:48.1601207Z Parallel tests (0): 2025-08-26T23:11:48.1602927Z Running cpp/kernel_lambda_test 1/1 ... [2025-08-26 23:11:48.156709] 2025-08-26T23:11:48.1603376Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:11:48.1613539Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\kernel_lambda_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-1a51c0d9ff71a828.xml', '-x', '--reruns=2'] ... [2025-08-26 23:11:48.156709] 2025-08-26T23:11:48.1615523Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:11:50.4334171Z 2025-08-26T23:11:50.4335165Z cpp/kernel_lambda_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.kernel_lambda_test_1.1_f68ec6f340c5cf63_.log 2025-08-26T23:11:50.4335902Z 2025-08-26T23:11:54.9289881Z Running cpp/kernel_lambda_test 1/1 ... [2025-08-26 23:11:54.928790] 2025-08-26T23:11:54.9290388Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:11:54.9299800Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\kernel_lambda_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-9fffda5fbd2b7363.xml', '-x', '--reruns=2'] ... [2025-08-26 23:11:54.929452] 2025-08-26T23:12:03.3819585Z 2025-08-26T23:12:03.3823091Z cpp/kernel_lambda_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.kernel_lambda_test_1.1_61d048c51aeaf08e_.log 2025-08-26T23:12:03.3823776Z 2025-08-26T23:12:04.2164596Z Running test batch 'tests to run' cost 16.06 seconds 2025-08-26T23:12:04.2173607Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:12:04.2174119Z Uploading artifacts took 0.00 seconds 2025-08-26T23:12:04.9099190Z 2025-08-26T23:12:04.9099896Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:12:04.9100410Z echo "kernel_lambda_test" failed with exit code 0 2025-08-26T23:12:04.9100748Z goto fail 2025-08-26T23:12:04.9100982Z ) 2025-08-26T23:12:04.9101105Z 2025-08-26T23:12:04.9101333Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:12:04.9101809Z echo "kernel_lambda_test" failed with exit code 0 2025-08-26T23:12:04.9102170Z goto fail 2025-08-26T23:12:04.9102367Z ) 2025-08-26T23:12:04.9102503Z 2025-08-26T23:12:04.9102675Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:12:04.9109614Z 2025-08-26T23:12:04.9109861Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:12:04.9110860Z call :libtorch_check "kernel_stackbased_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_stackbased_test.exe" 2025-08-26T23:12:04.9111685Z if errorlevel 1 goto fail 2025-08-26T23:12:04.9111942Z ) 2025-08-26T23:12:04.9119568Z 2025-08-26T23:12:04.9119983Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:12:04.9123624Z 2025-08-26T23:12:04.9124154Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:12:04.9126464Z 2025-08-26T23:12:04.9126934Z (base) C:\actions-runner\_work\pytorch\pytorch>if "kernel_stackbased_test" == "verify_api_visibility" goto :eof 2025-08-26T23:12:04.9128095Z 2025-08-26T23:12:04.9128738Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_stackbased_test.exe" 2025-08-26T23:12:04.9129786Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_stackbased_test.exe" 2025-08-26T23:12:04.9130550Z 2025-08-26T23:12:04.9130987Z (base) C:\actions-runner\_work\pytorch\pytorch>if "kernel_stackbased_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:12:04.9131790Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_stackbased_test.exe" 2025-08-26T23:12:04.9132360Z goto :eof 2025-08-26T23:12:04.9132564Z ) 2025-08-26T23:12:04.9132693Z 2025-08-26T23:12:04.9133153Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/kernel_stackbased_test" 2025-08-26T23:12:11.0454981Z Found test times from artifacts 2025-08-26T23:12:11.1137054Z Found test times from artifacts 2025-08-26T23:12:11.1158845Z Running all tests 2025-08-26T23:12:11.1164135Z Running parallel tests on 3 processes 2025-08-26T23:12:11.1164480Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:12:11.1164807Z Serial tests (0): 2025-08-26T23:12:11.1165067Z Parallel tests (1): 2025-08-26T23:12:11.1165346Z cpp/kernel_stackbased_test 1/1 2025-08-26T23:12:11.1165642Z Name: excluded (est. time: 0.0min) 2025-08-26T23:12:11.1165941Z Serial tests (0): 2025-08-26T23:12:11.1166160Z Parallel tests (0): 2025-08-26T23:12:11.1167920Z Running cpp/kernel_stackbased_test 1/1 ... [2025-08-26 23:12:11.102220] 2025-08-26T23:12:11.1168385Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:12:11.1177711Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\kernel_stackbased_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-83e5af69f6831f65.xml', '-x', '--reruns=2'] ... [2025-08-26 23:12:11.102220] 2025-08-26T23:12:11.1179813Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:12:13.3864337Z 2025-08-26T23:12:13.3865701Z cpp/kernel_stackbased_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.kernel_stackbased_test_1.1_f0f86e47777ee2e1_.log 2025-08-26T23:12:13.3867171Z 2025-08-26T23:12:17.8932917Z Running cpp/kernel_stackbased_test 1/1 ... [2025-08-26 23:12:17.890402] 2025-08-26T23:12:17.8933432Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:12:17.8942151Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\kernel_stackbased_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-e518299a303d4a19.xml', '-x', '--reruns=2'] ... [2025-08-26 23:12:17.890402] 2025-08-26T23:12:21.9491045Z 2025-08-26T23:12:21.9492361Z cpp/kernel_stackbased_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.kernel_stackbased_test_1.1_ab6f494ef006a75e_.log 2025-08-26T23:12:21.9494179Z 2025-08-26T23:12:22.8512544Z Running test batch 'tests to run' cost 11.75 seconds 2025-08-26T23:12:22.8519901Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:12:22.8520464Z Uploading artifacts took 0.00 seconds 2025-08-26T23:12:23.6139618Z 2025-08-26T23:12:23.6140466Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:12:23.6140979Z echo "kernel_stackbased_test" failed with exit code 0 2025-08-26T23:12:23.6141382Z goto fail 2025-08-26T23:12:23.6141579Z ) 2025-08-26T23:12:23.6141739Z 2025-08-26T23:12:23.6141946Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:12:23.6142441Z echo "kernel_stackbased_test" failed with exit code 0 2025-08-26T23:12:23.6142772Z goto fail 2025-08-26T23:12:23.6143026Z ) 2025-08-26T23:12:23.6143137Z 2025-08-26T23:12:23.6143303Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:12:23.6148793Z 2025-08-26T23:12:23.6149256Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:12:23.6150048Z call :libtorch_check "lazy_tensor_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\lazy_tensor_test.exe" 2025-08-26T23:12:23.6150779Z if errorlevel 1 goto fail 2025-08-26T23:12:23.6159364Z ) 2025-08-26T23:12:23.6159486Z 2025-08-26T23:12:23.6159788Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:12:23.6163083Z 2025-08-26T23:12:23.6163665Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:12:23.6165604Z 2025-08-26T23:12:23.6166135Z (base) C:\actions-runner\_work\pytorch\pytorch>if "lazy_tensor_test" == "verify_api_visibility" goto :eof 2025-08-26T23:12:23.6166937Z 2025-08-26T23:12:23.6167559Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\lazy_tensor_test.exe" 2025-08-26T23:12:23.6168599Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\lazy_tensor_test.exe" 2025-08-26T23:12:23.6169145Z 2025-08-26T23:12:23.6169482Z (base) C:\actions-runner\_work\pytorch\pytorch>if "lazy_tensor_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:12:23.6170241Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\lazy_tensor_test.exe" 2025-08-26T23:12:23.6170769Z goto :eof 2025-08-26T23:12:23.6170985Z ) 2025-08-26T23:12:23.6171094Z 2025-08-26T23:12:23.6171470Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/lazy_tensor_test" 2025-08-26T23:12:29.6983121Z Found test times from artifacts 2025-08-26T23:12:29.7661967Z Found test times from artifacts 2025-08-26T23:12:29.7683999Z Running all tests 2025-08-26T23:12:29.7689895Z Running parallel tests on 3 processes 2025-08-26T23:12:29.7690301Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:12:29.7690650Z Serial tests (0): 2025-08-26T23:12:29.7690908Z Parallel tests (1): 2025-08-26T23:12:29.7691164Z cpp/lazy_tensor_test 1/1 2025-08-26T23:12:29.7691467Z Name: excluded (est. time: 0.0min) 2025-08-26T23:12:29.7691750Z Serial tests (0): 2025-08-26T23:12:29.7692002Z Parallel tests (0): 2025-08-26T23:12:29.7693717Z Running cpp/lazy_tensor_test 1/1 ... [2025-08-26 23:12:29.768344] 2025-08-26T23:12:29.7694158Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:12:29.7703547Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\lazy_tensor_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-33c4f3d81964a70c.xml', '-x', '--reruns=2'] ... [2025-08-26 23:12:29.768344] 2025-08-26T23:12:29.7705326Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:12:32.1284461Z 2025-08-26T23:12:32.1285400Z cpp/lazy_tensor_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.lazy_tensor_test_1.1_74cacfdb3eb9fee9_.log 2025-08-26T23:12:32.1287548Z 2025-08-26T23:12:36.6040443Z Running cpp/lazy_tensor_test 1/1 ... [2025-08-26 23:12:36.603715] 2025-08-26T23:12:36.6040901Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:12:36.6051255Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\lazy_tensor_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-a09abbce62c87647.xml', '-x', '--reruns=2'] ... [2025-08-26 23:12:36.604901] 2025-08-26T23:12:39.2331360Z 2025-08-26T23:12:39.2332581Z cpp/lazy_tensor_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.lazy_tensor_test_1.1_797b39cab13734bd_.log 2025-08-26T23:12:39.2333267Z 2025-08-26T23:12:40.0583203Z Running test batch 'tests to run' cost 10.28 seconds 2025-08-26T23:12:40.0591045Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:12:40.0591573Z Uploading artifacts took 0.00 seconds 2025-08-26T23:12:40.7403738Z 2025-08-26T23:12:40.7404364Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:12:40.7404916Z echo "lazy_tensor_test" failed with exit code 0 2025-08-26T23:12:40.7405287Z goto fail 2025-08-26T23:12:40.7405489Z ) 2025-08-26T23:12:40.7405766Z 2025-08-26T23:12:40.7405995Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:12:40.7406440Z echo "lazy_tensor_test" failed with exit code 0 2025-08-26T23:12:40.7406786Z goto fail 2025-08-26T23:12:40.7406986Z ) 2025-08-26T23:12:40.7407120Z 2025-08-26T23:12:40.7407287Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:12:40.7413525Z 2025-08-26T23:12:40.7414045Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:12:40.7414820Z call :libtorch_check "legacy_vmap_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\legacy_vmap_test.exe" 2025-08-26T23:12:40.7415519Z if errorlevel 1 goto fail 2025-08-26T23:12:40.7415776Z ) 2025-08-26T23:12:40.7423942Z 2025-08-26T23:12:40.7424351Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:12:40.7427780Z 2025-08-26T23:12:40.7428318Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:12:40.7430309Z 2025-08-26T23:12:40.7430823Z (base) C:\actions-runner\_work\pytorch\pytorch>if "legacy_vmap_test" == "verify_api_visibility" goto :eof 2025-08-26T23:12:40.7432222Z 2025-08-26T23:12:40.7432913Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\legacy_vmap_test.exe" 2025-08-26T23:12:40.7433902Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\legacy_vmap_test.exe" 2025-08-26T23:12:40.7434392Z 2025-08-26T23:12:40.7434718Z (base) C:\actions-runner\_work\pytorch\pytorch>if "legacy_vmap_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:12:40.7435492Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\legacy_vmap_test.exe" 2025-08-26T23:12:40.7436007Z goto :eof 2025-08-26T23:12:40.7436223Z ) 2025-08-26T23:12:40.7436330Z 2025-08-26T23:12:40.7436718Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/legacy_vmap_test" 2025-08-26T23:12:46.8246665Z Found test times from artifacts 2025-08-26T23:12:46.8947034Z Found test times from artifacts 2025-08-26T23:12:46.8972790Z Running all tests 2025-08-26T23:12:46.8977936Z Running parallel tests on 3 processes 2025-08-26T23:12:46.8978322Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:12:46.8978903Z Serial tests (0): 2025-08-26T23:12:46.8979148Z Parallel tests (1): 2025-08-26T23:12:46.8979502Z cpp/legacy_vmap_test 1/1 2025-08-26T23:12:46.8979780Z Name: excluded (est. time: 0.0min) 2025-08-26T23:12:46.8980090Z Serial tests (0): 2025-08-26T23:12:46.8980326Z Parallel tests (0): 2025-08-26T23:12:46.8981572Z Running cpp/legacy_vmap_test 1/1 ... [2025-08-26 23:12:46.897769] 2025-08-26T23:12:46.8982014Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:12:46.8992201Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\legacy_vmap_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-4d1a6b8d9deb8bdb.xml', '-x', '--reruns=2'] ... [2025-08-26 23:12:46.898921] 2025-08-26T23:12:46.8994035Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:12:49.2166839Z 2025-08-26T23:12:49.2167751Z cpp/legacy_vmap_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.legacy_vmap_test_1.1_bef40e4262c81ac5_.log 2025-08-26T23:12:49.2168449Z 2025-08-26T23:12:53.5665318Z Running cpp/legacy_vmap_test 1/1 ... [2025-08-26 23:12:53.564037] 2025-08-26T23:12:53.5665818Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:12:53.5674627Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\legacy_vmap_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-09e025e686f1ea07.xml', '-x', '--reruns=2'] ... [2025-08-26 23:12:53.567104] 2025-08-26T23:12:59.1395359Z 2025-08-26T23:12:59.1396271Z cpp/legacy_vmap_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.legacy_vmap_test_1.1_5af88761a607548c_.log 2025-08-26T23:12:59.1403046Z 2025-08-26T23:12:59.9986522Z Running test batch 'tests to run' cost 13.1 seconds 2025-08-26T23:12:59.9993214Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:12:59.9993771Z Uploading artifacts took 0.00 seconds 2025-08-26T23:13:00.7170352Z 2025-08-26T23:13:00.7171182Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:13:00.7171774Z echo "legacy_vmap_test" failed with exit code 0 2025-08-26T23:13:00.7172134Z goto fail 2025-08-26T23:13:00.7172338Z ) 2025-08-26T23:13:00.7172474Z 2025-08-26T23:13:00.7172701Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:13:00.7173181Z echo "legacy_vmap_test" failed with exit code 0 2025-08-26T23:13:00.7173536Z goto fail 2025-08-26T23:13:00.7173733Z ) 2025-08-26T23:13:00.7173875Z 2025-08-26T23:13:00.7174048Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:13:00.7179729Z 2025-08-26T23:13:00.7180025Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:13:00.7180683Z call :libtorch_check "List_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\List_test.exe" 2025-08-26T23:13:00.7181336Z if errorlevel 1 goto fail 2025-08-26T23:13:00.7181586Z ) 2025-08-26T23:13:00.7190863Z 2025-08-26T23:13:00.7191252Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:13:00.7194862Z 2025-08-26T23:13:00.7195401Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:13:00.7197739Z 2025-08-26T23:13:00.7198262Z (base) C:\actions-runner\_work\pytorch\pytorch>if "List_test" == "verify_api_visibility" goto :eof 2025-08-26T23:13:00.7199104Z 2025-08-26T23:13:00.7199642Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\List_test.exe" 2025-08-26T23:13:00.7201528Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\List_test.exe" 2025-08-26T23:13:00.7202082Z 2025-08-26T23:13:00.7202412Z (base) C:\actions-runner\_work\pytorch\pytorch>if "List_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:13:00.7203117Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\List_test.exe" 2025-08-26T23:13:00.7203650Z goto :eof 2025-08-26T23:13:00.7203851Z ) 2025-08-26T23:13:00.7203987Z 2025-08-26T23:13:00.7204343Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/List_test" 2025-08-26T23:13:06.8613189Z Found test times from artifacts 2025-08-26T23:13:06.9372062Z Found test times from artifacts 2025-08-26T23:13:06.9422661Z Running all tests 2025-08-26T23:13:06.9430177Z Running parallel tests on 3 processes 2025-08-26T23:13:06.9430590Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:13:06.9430917Z Serial tests (0): 2025-08-26T23:13:06.9431155Z Parallel tests (1): 2025-08-26T23:13:06.9431450Z cpp/List_test 1/1 2025-08-26T23:13:06.9431703Z Name: excluded (est. time: 0.0min) 2025-08-26T23:13:06.9432002Z Serial tests (0): 2025-08-26T23:13:06.9432232Z Parallel tests (0): 2025-08-26T23:13:06.9434026Z Running cpp/List_test 1/1 ... [2025-08-26 23:13:06.942804] 2025-08-26T23:13:06.9434420Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:13:06.9445806Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\List_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-d77dc9673d47ae44.xml', '-x', '--reruns=2'] ... [2025-08-26 23:13:06.943938] 2025-08-26T23:13:06.9447751Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:13:09.3692918Z 2025-08-26T23:13:09.3693821Z cpp/List_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.List_test_1.1_ebbf4edc8be9e956_.log 2025-08-26T23:13:09.3694472Z 2025-08-26T23:13:13.7893799Z Running cpp/List_test 1/1 ... [2025-08-26 23:13:13.788329] 2025-08-26T23:13:13.7894293Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:13:13.7903067Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\List_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-4bbc86b70b113c67.xml', '-x', '--reruns=2'] ... [2025-08-26 23:13:13.789486] 2025-08-26T23:13:34.5280404Z 2025-08-26T23:13:34.5281232Z cpp/List_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.List_test_1.1_36ea1cf9be16233f_.log 2025-08-26T23:13:34.5284677Z 2025-08-26T23:13:35.3452316Z Running test batch 'tests to run' cost 28.4 seconds 2025-08-26T23:13:35.3458938Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:13:35.3459442Z Uploading artifacts took 0.00 seconds 2025-08-26T23:13:36.0574923Z 2025-08-26T23:13:36.0575502Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:13:36.0576026Z echo "List_test" failed with exit code 0 2025-08-26T23:13:36.0576368Z goto fail 2025-08-26T23:13:36.0576565Z ) 2025-08-26T23:13:36.0576678Z 2025-08-26T23:13:36.0576907Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:13:36.0577340Z echo "List_test" failed with exit code 0 2025-08-26T23:13:36.0577693Z goto fail 2025-08-26T23:13:36.0577900Z ) 2025-08-26T23:13:36.0578042Z 2025-08-26T23:13:36.0578444Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:13:36.0585036Z 2025-08-26T23:13:36.0585259Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:13:36.0586477Z call :libtorch_check "make_boxed_from_unboxed_functor_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\make_boxed_from_unboxed_functor_test.exe" 2025-08-26T23:13:36.0587375Z if errorlevel 1 goto fail 2025-08-26T23:13:36.0587651Z ) 2025-08-26T23:13:36.0596292Z 2025-08-26T23:13:36.0596686Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:13:36.0600432Z 2025-08-26T23:13:36.0601168Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:13:36.0603382Z 2025-08-26T23:13:36.0604010Z (base) C:\actions-runner\_work\pytorch\pytorch>if "make_boxed_from_unboxed_functor_test" == "verify_api_visibility" goto :eof 2025-08-26T23:13:36.0604941Z 2025-08-26T23:13:36.0605699Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\make_boxed_from_unboxed_functor_test.exe" 2025-08-26T23:13:36.0606847Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\make_boxed_from_unboxed_functor_test.exe" 2025-08-26T23:13:36.0607398Z 2025-08-26T23:13:36.0607796Z (base) C:\actions-runner\_work\pytorch\pytorch>if "make_boxed_from_unboxed_functor_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:13:36.0608708Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\make_boxed_from_unboxed_functor_test.exe" 2025-08-26T23:13:36.0609319Z goto :eof 2025-08-26T23:13:36.0609541Z ) 2025-08-26T23:13:36.0609651Z 2025-08-26T23:13:36.0610093Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/make_boxed_from_unboxed_functor_test" 2025-08-26T23:13:42.2447493Z Found test times from artifacts 2025-08-26T23:13:42.3136741Z Found test times from artifacts 2025-08-26T23:13:42.3160941Z Running all tests 2025-08-26T23:13:42.3166121Z Running parallel tests on 3 processes 2025-08-26T23:13:42.3166760Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:13:42.3167125Z Serial tests (0): 2025-08-26T23:13:42.3167390Z Parallel tests (1): 2025-08-26T23:13:42.3167699Z cpp/make_boxed_from_unboxed_functor_test 1/1 2025-08-26T23:13:42.3168049Z Name: excluded (est. time: 0.0min) 2025-08-26T23:13:42.3168351Z Serial tests (0): 2025-08-26T23:13:42.3168589Z Parallel tests (0): 2025-08-26T23:13:42.3169960Z Running cpp/make_boxed_from_unboxed_functor_test 1/1 ... [2025-08-26 23:13:42.316896] 2025-08-26T23:13:42.3170538Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:13:42.3180003Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\make_boxed_from_unboxed_functor_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-f54156c2e8848fd5.xml', '-x', '--reruns=2'] ... [2025-08-26 23:13:42.317583] 2025-08-26T23:13:42.3182029Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:13:44.6036227Z 2025-08-26T23:13:44.6037199Z cpp/make_boxed_from_unboxed_functor_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.make_boxed_from_unboxed_functor_test_1.1_35a102b7317987ff_.log 2025-08-26T23:13:44.6038007Z 2025-08-26T23:13:49.0353509Z Running cpp/make_boxed_from_unboxed_functor_test 1/1 ... [2025-08-26 23:13:49.035085] 2025-08-26T23:13:49.0354076Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:13:49.0362799Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\make_boxed_from_unboxed_functor_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-d5cd8bd02221565b.xml', '-x', '--reruns=2'] ... [2025-08-26 23:13:49.035695] 2025-08-26T23:13:57.8185707Z 2025-08-26T23:13:57.8187021Z cpp/make_boxed_from_unboxed_functor_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.make_boxed_from_unboxed_functor_test_1.1_6f276754e1386e08_.log 2025-08-26T23:13:57.8188423Z 2025-08-26T23:13:58.6570887Z Running test batch 'tests to run' cost 16.34 seconds 2025-08-26T23:13:58.6577956Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:13:58.6578462Z Uploading artifacts took 0.00 seconds 2025-08-26T23:13:59.3655264Z 2025-08-26T23:13:59.3655918Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:13:59.3656565Z echo "make_boxed_from_unboxed_functor_test" failed with exit code 0 2025-08-26T23:13:59.3656970Z goto fail 2025-08-26T23:13:59.3657200Z ) 2025-08-26T23:13:59.3657319Z 2025-08-26T23:13:59.3657523Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:13:59.3658058Z echo "make_boxed_from_unboxed_functor_test" failed with exit code 0 2025-08-26T23:13:59.3658454Z goto fail 2025-08-26T23:13:59.3658669Z ) 2025-08-26T23:13:59.3658789Z 2025-08-26T23:13:59.3658988Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:13:59.3665096Z 2025-08-26T23:13:59.3665386Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:13:59.3666128Z call :libtorch_check "math_kernel_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\math_kernel_test.exe" 2025-08-26T23:13:59.3666800Z if errorlevel 1 goto fail 2025-08-26T23:13:59.3667110Z ) 2025-08-26T23:13:59.3676367Z 2025-08-26T23:13:59.3677041Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:13:59.3680575Z 2025-08-26T23:13:59.3681172Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:13:59.3683476Z 2025-08-26T23:13:59.3684040Z (base) C:\actions-runner\_work\pytorch\pytorch>if "math_kernel_test" == "verify_api_visibility" goto :eof 2025-08-26T23:13:59.3684979Z 2025-08-26T23:13:59.3685702Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\math_kernel_test.exe" 2025-08-26T23:13:59.3686684Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\math_kernel_test.exe" 2025-08-26T23:13:59.3687171Z 2025-08-26T23:13:59.3687819Z (base) C:\actions-runner\_work\pytorch\pytorch>if "math_kernel_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:13:59.3688633Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\math_kernel_test.exe" 2025-08-26T23:13:59.3689192Z goto :eof 2025-08-26T23:13:59.3689387Z ) 2025-08-26T23:13:59.3689497Z 2025-08-26T23:13:59.3689956Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/math_kernel_test" 2025-08-26T23:14:05.4489731Z Found test times from artifacts 2025-08-26T23:14:05.5177915Z Found test times from artifacts 2025-08-26T23:14:05.5200396Z Running all tests 2025-08-26T23:14:05.5206353Z Running parallel tests on 3 processes 2025-08-26T23:14:05.5206765Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:14:05.5207055Z Serial tests (0): 2025-08-26T23:14:05.5207312Z Parallel tests (1): 2025-08-26T23:14:05.5207558Z cpp/math_kernel_test 1/1 2025-08-26T23:14:05.5207857Z Name: excluded (est. time: 0.0min) 2025-08-26T23:14:05.5208153Z Serial tests (0): 2025-08-26T23:14:05.5208373Z Parallel tests (0): 2025-08-26T23:14:05.5209844Z Running cpp/math_kernel_test 1/1 ... [2025-08-26 23:14:05.519549] 2025-08-26T23:14:05.5210265Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:14:05.5220165Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\math_kernel_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-70a1728b156598bf.xml', '-x', '--reruns=2'] ... [2025-08-26 23:14:05.519549] 2025-08-26T23:14:05.5222173Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:14:07.7851782Z 2025-08-26T23:14:07.7852755Z cpp/math_kernel_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.math_kernel_test_1.1_3790b1f5b1e2ff42_.log 2025-08-26T23:14:07.7853442Z 2025-08-26T23:14:12.2010576Z Running cpp/math_kernel_test 1/1 ... [2025-08-26 23:14:12.200551] 2025-08-26T23:14:12.2011072Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:14:12.2020143Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\math_kernel_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-2b7b29af1344a720.xml', '-x', '--reruns=2'] ... [2025-08-26 23:14:12.201744] 2025-08-26T23:14:15.3658582Z 2025-08-26T23:14:15.3659697Z cpp/math_kernel_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.math_kernel_test_1.1_d456698724d15d08_.log 2025-08-26T23:14:15.3660359Z 2025-08-26T23:14:16.1833504Z Running test batch 'tests to run' cost 10.66 seconds 2025-08-26T23:14:16.1840133Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:14:16.1840626Z Uploading artifacts took 0.00 seconds 2025-08-26T23:14:16.8844408Z 2025-08-26T23:14:16.8845418Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:14:16.8846522Z echo "math_kernel_test" failed with exit code 0 2025-08-26T23:14:16.8860261Z goto fail 2025-08-26T23:14:16.8860637Z ) 2025-08-26T23:14:16.8860835Z 2025-08-26T23:14:16.8861225Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:14:16.8862033Z echo "math_kernel_test" failed with exit code 0 2025-08-26T23:14:16.8862643Z goto fail 2025-08-26T23:14:16.8862943Z ) 2025-08-26T23:14:16.8863153Z 2025-08-26T23:14:16.8863450Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:14:16.8863956Z 2025-08-26T23:14:16.8864191Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:14:16.8865270Z call :libtorch_check "MaybeOwned_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\MaybeOwned_test.exe" 2025-08-26T23:14:16.8865914Z if errorlevel 1 goto fail 2025-08-26T23:14:16.8866158Z ) 2025-08-26T23:14:16.8866716Z 2025-08-26T23:14:16.8867320Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:14:16.8871391Z 2025-08-26T23:14:16.8871960Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:14:16.8874616Z 2025-08-26T23:14:16.8875131Z (base) C:\actions-runner\_work\pytorch\pytorch>if "MaybeOwned_test" == "verify_api_visibility" goto :eof 2025-08-26T23:14:16.8877326Z 2025-08-26T23:14:16.8877984Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\MaybeOwned_test.exe" 2025-08-26T23:14:16.8878951Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\MaybeOwned_test.exe" 2025-08-26T23:14:16.8879386Z 2025-08-26T23:14:16.8879700Z (base) C:\actions-runner\_work\pytorch\pytorch>if "MaybeOwned_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:14:16.8880441Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\MaybeOwned_test.exe" 2025-08-26T23:14:16.8880931Z goto :eof 2025-08-26T23:14:16.8881109Z ) 2025-08-26T23:14:16.8881204Z 2025-08-26T23:14:16.8881578Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/MaybeOwned_test" 2025-08-26T23:14:22.9746168Z Found test times from artifacts 2025-08-26T23:14:23.0426537Z Found test times from artifacts 2025-08-26T23:14:23.0448338Z Running all tests 2025-08-26T23:14:23.0453751Z Running parallel tests on 3 processes 2025-08-26T23:14:23.0454169Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:14:23.0454466Z Serial tests (0): 2025-08-26T23:14:23.0454689Z Parallel tests (1): 2025-08-26T23:14:23.0454927Z cpp/MaybeOwned_test 1/1 2025-08-26T23:14:23.0455197Z Name: excluded (est. time: 0.0min) 2025-08-26T23:14:23.0455458Z Serial tests (0): 2025-08-26T23:14:23.0455679Z Parallel tests (0): 2025-08-26T23:14:23.0457311Z Running cpp/MaybeOwned_test 1/1 ... [2025-08-26 23:14:23.041103] 2025-08-26T23:14:23.0457732Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:14:23.0467010Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\MaybeOwned_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-b29d4ad45eb574c2.xml', '-x', '--reruns=2'] ... [2025-08-26 23:14:23.041103] 2025-08-26T23:14:23.0468798Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:14:25.3791137Z 2025-08-26T23:14:25.3792430Z cpp/MaybeOwned_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.MaybeOwned_test_1.1_cf3b166950e09ebd_.log 2025-08-26T23:14:25.3793090Z 2025-08-26T23:14:29.7876418Z Running cpp/MaybeOwned_test 1/1 ... [2025-08-26 23:14:29.778283] 2025-08-26T23:14:29.7876884Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:14:29.7885974Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\MaybeOwned_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-e93070b8e6d165b5.xml', '-x', '--reruns=2'] ... [2025-08-26 23:14:29.788378] 2025-08-26T23:14:36.0660386Z 2025-08-26T23:14:36.0661492Z cpp/MaybeOwned_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.MaybeOwned_test_1.1_f2519b6aa8e3f4f3_.log 2025-08-26T23:14:36.0662514Z 2025-08-26T23:14:36.9406430Z Running test batch 'tests to run' cost 13.89 seconds 2025-08-26T23:14:36.9413292Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:14:36.9413783Z Uploading artifacts took 0.00 seconds 2025-08-26T23:14:37.6474808Z 2025-08-26T23:14:37.6475362Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:14:37.6475856Z echo "MaybeOwned_test" failed with exit code 0 2025-08-26T23:14:37.6476165Z goto fail 2025-08-26T23:14:37.6476362Z ) 2025-08-26T23:14:37.6476472Z 2025-08-26T23:14:37.6476665Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:14:37.6477102Z echo "MaybeOwned_test" failed with exit code 0 2025-08-26T23:14:37.6477397Z goto fail 2025-08-26T23:14:37.6477590Z ) 2025-08-26T23:14:37.6477687Z 2025-08-26T23:14:37.6477877Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:14:37.6485240Z 2025-08-26T23:14:37.6485708Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:14:37.6486520Z call :libtorch_check "memory_format_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\memory_format_test.exe" 2025-08-26T23:14:37.6487193Z if errorlevel 1 goto fail 2025-08-26T23:14:37.6487445Z ) 2025-08-26T23:14:37.6496483Z 2025-08-26T23:14:37.6496961Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:14:37.6500706Z 2025-08-26T23:14:37.6501234Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:14:37.6503677Z 2025-08-26T23:14:37.6504188Z (base) C:\actions-runner\_work\pytorch\pytorch>if "memory_format_test" == "verify_api_visibility" goto :eof 2025-08-26T23:14:37.6505072Z 2025-08-26T23:14:37.6505877Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\memory_format_test.exe" 2025-08-26T23:14:37.6506931Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\memory_format_test.exe" 2025-08-26T23:14:37.6507467Z 2025-08-26T23:14:37.6507850Z (base) C:\actions-runner\_work\pytorch\pytorch>if "memory_format_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:14:37.6508648Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\memory_format_test.exe" 2025-08-26T23:14:37.6509219Z goto :eof 2025-08-26T23:14:37.6509410Z ) 2025-08-26T23:14:37.6509531Z 2025-08-26T23:14:37.6509903Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/memory_format_test" 2025-08-26T23:14:43.7905712Z Found test times from artifacts 2025-08-26T23:14:43.8588777Z Found test times from artifacts 2025-08-26T23:14:43.8610297Z Running all tests 2025-08-26T23:14:43.8615585Z Running parallel tests on 3 processes 2025-08-26T23:14:43.8615934Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:14:43.8616235Z Serial tests (0): 2025-08-26T23:14:43.8616456Z Parallel tests (1): 2025-08-26T23:14:43.8616682Z cpp/memory_format_test 1/1 2025-08-26T23:14:43.8616950Z Name: excluded (est. time: 0.0min) 2025-08-26T23:14:43.8617194Z Serial tests (0): 2025-08-26T23:14:43.8617413Z Parallel tests (0): 2025-08-26T23:14:43.8619220Z Running cpp/memory_format_test 1/1 ... [2025-08-26 23:14:43.852822] 2025-08-26T23:14:43.8619777Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:14:43.8629133Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\memory_format_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-bc430a65cd40ecdc.xml', '-x', '--reruns=2'] ... [2025-08-26 23:14:43.852822] 2025-08-26T23:14:43.8630897Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:14:46.0845736Z 2025-08-26T23:14:46.0846632Z cpp/memory_format_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.memory_format_test_1.1_c86ba0defcf2b39c_.log 2025-08-26T23:14:46.0847320Z 2025-08-26T23:14:50.5204005Z Running cpp/memory_format_test 1/1 ... [2025-08-26 23:14:50.511996] 2025-08-26T23:14:50.5204466Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:14:50.5213915Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\memory_format_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-8c62e91541d59f24.xml', '-x', '--reruns=2'] ... [2025-08-26 23:14:50.511996] 2025-08-26T23:14:53.5604842Z 2025-08-26T23:14:53.5605795Z cpp/memory_format_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.memory_format_test_1.1_faddb6dfe96090f7_.log 2025-08-26T23:14:53.5606499Z 2025-08-26T23:14:54.3945195Z Running test batch 'tests to run' cost 10.53 seconds 2025-08-26T23:14:54.3951625Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:14:54.3952087Z Uploading artifacts took 0.00 seconds 2025-08-26T23:14:55.0939017Z 2025-08-26T23:14:55.0939696Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:14:55.0940193Z echo "memory_format_test" failed with exit code 0 2025-08-26T23:14:55.0940527Z goto fail 2025-08-26T23:14:55.0940713Z ) 2025-08-26T23:14:55.0940833Z 2025-08-26T23:14:55.0941026Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:14:55.0941459Z echo "memory_format_test" failed with exit code 0 2025-08-26T23:14:55.0941767Z goto fail 2025-08-26T23:14:55.0941953Z ) 2025-08-26T23:14:55.0942051Z 2025-08-26T23:14:55.0942447Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:14:55.0949081Z 2025-08-26T23:14:55.0949311Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:14:55.0950072Z call :libtorch_check "memory_overlapping_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\memory_overlapping_test.exe" 2025-08-26T23:14:55.0950781Z if errorlevel 1 goto fail 2025-08-26T23:14:55.0951022Z ) 2025-08-26T23:14:55.0959638Z 2025-08-26T23:14:55.0960014Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:14:55.0963686Z 2025-08-26T23:14:55.0964172Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:14:55.0966279Z 2025-08-26T23:14:55.0966750Z (base) C:\actions-runner\_work\pytorch\pytorch>if "memory_overlapping_test" == "verify_api_visibility" goto :eof 2025-08-26T23:14:55.0967632Z 2025-08-26T23:14:55.0968233Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\memory_overlapping_test.exe" 2025-08-26T23:14:55.0969300Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\memory_overlapping_test.exe" 2025-08-26T23:14:55.0969999Z 2025-08-26T23:14:55.0970421Z (base) C:\actions-runner\_work\pytorch\pytorch>if "memory_overlapping_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:14:55.0971218Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\memory_overlapping_test.exe" 2025-08-26T23:14:55.0971833Z goto :eof 2025-08-26T23:14:55.0972027Z ) 2025-08-26T23:14:55.0972124Z 2025-08-26T23:14:55.0972524Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/memory_overlapping_test" 2025-08-26T23:15:01.2087191Z Found test times from artifacts 2025-08-26T23:15:01.2773329Z Found test times from artifacts 2025-08-26T23:15:01.2795262Z Running all tests 2025-08-26T23:15:01.2800928Z Running parallel tests on 3 processes 2025-08-26T23:15:01.2801293Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:15:01.2801568Z Serial tests (0): 2025-08-26T23:15:01.2801792Z Parallel tests (1): 2025-08-26T23:15:01.2802041Z cpp/memory_overlapping_test 1/1 2025-08-26T23:15:01.2802320Z Name: excluded (est. time: 0.0min) 2025-08-26T23:15:01.2802586Z Serial tests (0): 2025-08-26T23:15:01.2802793Z Parallel tests (0): 2025-08-26T23:15:01.2804392Z Running cpp/memory_overlapping_test 1/1 ... [2025-08-26 23:15:01.278093] 2025-08-26T23:15:01.2804831Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:15:01.2814442Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\memory_overlapping_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-9ac00de46c1409c8.xml', '-x', '--reruns=2'] ... [2025-08-26 23:15:01.281176] 2025-08-26T23:15:01.2816285Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:15:03.5450492Z 2025-08-26T23:15:03.5451420Z cpp/memory_overlapping_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.memory_overlapping_test_1.1_92680afaa00ab44b_.log 2025-08-26T23:15:03.5452125Z 2025-08-26T23:15:07.9254064Z Running cpp/memory_overlapping_test 1/1 ... [2025-08-26 23:15:07.924658] 2025-08-26T23:15:07.9254558Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:15:07.9263782Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\memory_overlapping_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-5663138fc977bb44.xml', '-x', '--reruns=2'] ... [2025-08-26 23:15:07.924658] 2025-08-26T23:15:10.9436368Z 2025-08-26T23:15:10.9437384Z cpp/memory_overlapping_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.memory_overlapping_test_1.1_d7d67f2cb978a07b_.log 2025-08-26T23:15:10.9438098Z 2025-08-26T23:15:11.7764891Z Running test batch 'tests to run' cost 10.5 seconds 2025-08-26T23:15:11.7771513Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:15:11.7771997Z Uploading artifacts took 0.00 seconds 2025-08-26T23:15:12.4841063Z 2025-08-26T23:15:12.4841752Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:15:12.4842255Z echo "memory_overlapping_test" failed with exit code 0 2025-08-26T23:15:12.4842823Z goto fail 2025-08-26T23:15:12.4843121Z ) 2025-08-26T23:15:12.4843318Z 2025-08-26T23:15:12.4843655Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:15:12.4844115Z echo "memory_overlapping_test" failed with exit code 0 2025-08-26T23:15:12.4844466Z goto fail 2025-08-26T23:15:12.4844667Z ) 2025-08-26T23:15:12.4844764Z 2025-08-26T23:15:12.4844972Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:15:12.4852764Z 2025-08-26T23:15:12.4853009Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:15:12.4853756Z call :libtorch_check "mobile_memory_cleanup" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\mobile_memory_cleanup.exe" 2025-08-26T23:15:12.4854792Z if errorlevel 1 goto fail 2025-08-26T23:15:12.4855412Z ) 2025-08-26T23:15:12.4862917Z 2025-08-26T23:15:12.4863291Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:15:12.4866731Z 2025-08-26T23:15:12.4867526Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:15:12.4869886Z 2025-08-26T23:15:12.4870349Z (base) C:\actions-runner\_work\pytorch\pytorch>if "mobile_memory_cleanup" == "verify_api_visibility" goto :eof 2025-08-26T23:15:12.4871758Z 2025-08-26T23:15:12.4872646Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\mobile_memory_cleanup.exe" 2025-08-26T23:15:12.4873681Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\mobile_memory_cleanup.exe" 2025-08-26T23:15:12.4875117Z 2025-08-26T23:15:12.4875658Z (base) C:\actions-runner\_work\pytorch\pytorch>if "mobile_memory_cleanup" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:15:12.4876469Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\mobile_memory_cleanup.exe" 2025-08-26T23:15:12.4877002Z goto :eof 2025-08-26T23:15:12.4877180Z ) 2025-08-26T23:15:12.4877275Z 2025-08-26T23:15:12.4877905Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/mobile_memory_cleanup" 2025-08-26T23:15:18.6268169Z Found test times from artifacts 2025-08-26T23:15:18.6951959Z Found test times from artifacts 2025-08-26T23:15:18.6973998Z Running all tests 2025-08-26T23:15:18.6979725Z Running parallel tests on 3 processes 2025-08-26T23:15:18.6980117Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:15:18.6980382Z Serial tests (0): 2025-08-26T23:15:18.6980585Z Parallel tests (1): 2025-08-26T23:15:18.6980825Z cpp/mobile_memory_cleanup 1/1 2025-08-26T23:15:18.6981097Z Name: excluded (est. time: 0.0min) 2025-08-26T23:15:18.6981338Z Serial tests (0): 2025-08-26T23:15:18.6981554Z Parallel tests (0): 2025-08-26T23:15:18.6983534Z Running cpp/mobile_memory_cleanup 1/1 ... [2025-08-26 23:15:18.695663] 2025-08-26T23:15:18.6983934Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:15:18.6993815Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\mobile_memory_cleanup.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-0567829a6c51c960.xml', '-x', '--reruns=2'] ... [2025-08-26 23:15:18.695663] 2025-08-26T23:15:18.6995655Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:15:21.0695916Z 2025-08-26T23:15:21.0697085Z cpp/mobile_memory_cleanup 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.mobile_memory_cleanup_1.1_e643ba39a20eb2fc_.log 2025-08-26T23:15:21.0697806Z 2025-08-26T23:15:25.4663673Z Running cpp/mobile_memory_cleanup 1/1 ... [2025-08-26 23:15:25.464046] 2025-08-26T23:15:25.4664113Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:15:25.4673148Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\mobile_memory_cleanup.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-d5c85cbd5d615edf.xml', '-x', '--reruns=2'] ... [2025-08-26 23:15:25.464046] 2025-08-26T23:15:28.3159522Z 2025-08-26T23:15:28.3160704Z cpp/mobile_memory_cleanup 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.mobile_memory_cleanup_1.1_75e321c0a654eacb_.log 2025-08-26T23:15:28.3161395Z 2025-08-26T23:15:29.1651653Z Running test batch 'tests to run' cost 10.46 seconds 2025-08-26T23:15:29.1658159Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:15:29.1658772Z Uploading artifacts took 0.00 seconds 2025-08-26T23:15:29.8573793Z 2025-08-26T23:15:29.8574426Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:15:29.8574917Z echo "mobile_memory_cleanup" failed with exit code 0 2025-08-26T23:15:29.8575232Z goto fail 2025-08-26T23:15:29.8575399Z ) 2025-08-26T23:15:29.8575504Z 2025-08-26T23:15:29.8575693Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:15:29.8576159Z echo "mobile_memory_cleanup" failed with exit code 0 2025-08-26T23:15:29.8576479Z goto fail 2025-08-26T23:15:29.8576642Z ) 2025-08-26T23:15:29.8576737Z 2025-08-26T23:15:29.8576897Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:15:29.8583169Z 2025-08-26T23:15:29.8583372Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:15:29.8584064Z call :libtorch_check "NamedTensor_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\NamedTensor_test.exe" 2025-08-26T23:15:29.8584771Z if errorlevel 1 goto fail 2025-08-26T23:15:29.8585029Z ) 2025-08-26T23:15:29.8593572Z 2025-08-26T23:15:29.8593948Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:15:29.8597309Z 2025-08-26T23:15:29.8597795Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:15:29.8599857Z 2025-08-26T23:15:29.8600314Z (base) C:\actions-runner\_work\pytorch\pytorch>if "NamedTensor_test" == "verify_api_visibility" goto :eof 2025-08-26T23:15:29.8601154Z 2025-08-26T23:15:29.8601700Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\NamedTensor_test.exe" 2025-08-26T23:15:29.8602638Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\NamedTensor_test.exe" 2025-08-26T23:15:29.8603241Z 2025-08-26T23:15:29.8603614Z (base) C:\actions-runner\_work\pytorch\pytorch>if "NamedTensor_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:15:29.8604351Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\NamedTensor_test.exe" 2025-08-26T23:15:29.8604836Z goto :eof 2025-08-26T23:15:29.8604997Z ) 2025-08-26T23:15:29.8605089Z 2025-08-26T23:15:29.8605458Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/NamedTensor_test" 2025-08-26T23:15:35.9730139Z Found test times from artifacts 2025-08-26T23:15:36.0412103Z Found test times from artifacts 2025-08-26T23:15:36.0437220Z Running all tests 2025-08-26T23:15:36.0443202Z Running parallel tests on 3 processes 2025-08-26T23:15:36.0443644Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:15:36.0443910Z Serial tests (0): 2025-08-26T23:15:36.0444110Z Parallel tests (1): 2025-08-26T23:15:36.0444340Z cpp/NamedTensor_test 1/1 2025-08-26T23:15:36.0444579Z Name: excluded (est. time: 0.0min) 2025-08-26T23:15:36.0444841Z Serial tests (0): 2025-08-26T23:15:36.0445031Z Parallel tests (0): 2025-08-26T23:15:36.0447333Z Running cpp/NamedTensor_test 1/1 ... [2025-08-26 23:15:36.044644] 2025-08-26T23:15:36.0447765Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:15:36.0457859Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\NamedTensor_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-8cf22f01853bf796.xml', '-x', '--reruns=2'] ... [2025-08-26 23:15:36.045247] 2025-08-26T23:15:36.0459704Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:15:38.2749253Z 2025-08-26T23:15:38.2750114Z cpp/NamedTensor_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.NamedTensor_test_1.1_1a7e89f60b58fb6d_.log 2025-08-26T23:15:38.2751329Z 2025-08-26T23:15:42.6899933Z Running cpp/NamedTensor_test 1/1 ... [2025-08-26 23:15:42.688567] 2025-08-26T23:15:42.6900376Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:15:42.6909475Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\NamedTensor_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-554bd5b1468dbc35.xml', '-x', '--reruns=2'] ... [2025-08-26 23:15:42.688567] 2025-08-26T23:15:46.3925472Z 2025-08-26T23:15:46.3926334Z cpp/NamedTensor_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.NamedTensor_test_1.1_461fb2ebbf35a7a1_.log 2025-08-26T23:15:46.3927208Z 2025-08-26T23:15:47.3356643Z Running test batch 'tests to run' cost 11.29 seconds 2025-08-26T23:15:47.3363928Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:15:47.3364437Z Uploading artifacts took 0.00 seconds 2025-08-26T23:15:48.0655452Z 2025-08-26T23:15:48.0656130Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:15:48.0656589Z echo "NamedTensor_test" failed with exit code 0 2025-08-26T23:15:48.0656984Z goto fail 2025-08-26T23:15:48.0657189Z ) 2025-08-26T23:15:48.0657335Z 2025-08-26T23:15:48.0657541Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:15:48.0658039Z echo "NamedTensor_test" failed with exit code 0 2025-08-26T23:15:48.0658372Z goto fail 2025-08-26T23:15:48.0658607Z ) 2025-08-26T23:15:48.0658720Z 2025-08-26T23:15:48.0658887Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:15:48.0665281Z 2025-08-26T23:15:48.0665571Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:15:48.0666249Z call :libtorch_check "native_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\native_test.exe" 2025-08-26T23:15:48.0666922Z if errorlevel 1 goto fail 2025-08-26T23:15:48.0667192Z ) 2025-08-26T23:15:48.0675640Z 2025-08-26T23:15:48.0676029Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:15:48.0679475Z 2025-08-26T23:15:48.0680240Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:15:48.0682038Z 2025-08-26T23:15:48.0682702Z (base) C:\actions-runner\_work\pytorch\pytorch>if "native_test" == "verify_api_visibility" goto :eof 2025-08-26T23:15:48.0683830Z 2025-08-26T23:15:48.0684402Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\native_test.exe" 2025-08-26T23:15:48.0685334Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\native_test.exe" 2025-08-26T23:15:48.0685804Z 2025-08-26T23:15:48.0686112Z (base) C:\actions-runner\_work\pytorch\pytorch>if "native_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:15:48.0686860Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\native_test.exe" 2025-08-26T23:15:48.0687429Z goto :eof 2025-08-26T23:15:48.0687654Z ) 2025-08-26T23:15:48.0687765Z 2025-08-26T23:15:48.0688128Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/native_test" 2025-08-26T23:15:54.1531199Z Found test times from artifacts 2025-08-26T23:15:54.2211662Z Found test times from artifacts 2025-08-26T23:15:54.2233020Z Running all tests 2025-08-26T23:15:54.2238328Z Running parallel tests on 3 processes 2025-08-26T23:15:54.2238724Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:15:54.2239042Z Serial tests (0): 2025-08-26T23:15:54.2239275Z Parallel tests (1): 2025-08-26T23:15:54.2239547Z cpp/native_test 1/1 2025-08-26T23:15:54.2239824Z Name: excluded (est. time: 0.0min) 2025-08-26T23:15:54.2240102Z Serial tests (0): 2025-08-26T23:15:54.2240502Z Parallel tests (0): 2025-08-26T23:15:54.2241968Z Running cpp/native_test 1/1 ... [2025-08-26 23:15:54.216474] 2025-08-26T23:15:54.2242394Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:15:54.2251751Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\native_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-6a086e538fe27b47.xml', '-x', '--reruns=2'] ... [2025-08-26 23:15:54.216474] 2025-08-26T23:15:54.2253509Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:15:56.5504245Z 2025-08-26T23:15:56.5506981Z cpp/native_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.native_test_1.1_05832acdcac35544_.log 2025-08-26T23:16:01.0187465Z 2025-08-26T23:16:01.0187986Z Running cpp/native_test 1/1 ... [2025-08-26 23:16:01.011162] 2025-08-26T23:16:01.0188481Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:16:01.0197121Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\native_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-2e5be2c5db2c3f6a.xml', '-x', '--reruns=2'] ... [2025-08-26 23:16:01.011162] 2025-08-26T23:16:03.6788375Z 2025-08-26T23:16:03.6789153Z cpp/native_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.native_test_1.1_9b7905003c15c3e3_.log 2025-08-26T23:16:03.6790143Z 2025-08-26T23:16:04.5162965Z Running test batch 'tests to run' cost 10.29 seconds 2025-08-26T23:16:04.5168316Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:16:04.5168809Z Uploading artifacts took 0.00 seconds 2025-08-26T23:16:05.2094994Z 2025-08-26T23:16:05.2095578Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:16:05.2096061Z echo "native_test" failed with exit code 0 2025-08-26T23:16:05.2096409Z goto fail 2025-08-26T23:16:05.2096635Z ) 2025-08-26T23:16:05.2096750Z 2025-08-26T23:16:05.2096999Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:16:05.2097493Z echo "native_test" failed with exit code 0 2025-08-26T23:16:05.2097800Z goto fail 2025-08-26T23:16:05.2098233Z ) 2025-08-26T23:16:05.2098350Z 2025-08-26T23:16:05.2098592Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:16:05.2105058Z 2025-08-26T23:16:05.2105303Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:16:05.2106031Z call :libtorch_check "operators_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\operators_test.exe" 2025-08-26T23:16:05.2106700Z if errorlevel 1 goto fail 2025-08-26T23:16:05.2106974Z ) 2025-08-26T23:16:05.2116127Z 2025-08-26T23:16:05.2116650Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:16:05.2120217Z 2025-08-26T23:16:05.2120789Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:16:05.2123175Z 2025-08-26T23:16:05.2123883Z (base) C:\actions-runner\_work\pytorch\pytorch>if "operators_test" == "verify_api_visibility" goto :eof 2025-08-26T23:16:05.2124431Z 2025-08-26T23:16:05.2125067Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\operators_test.exe" 2025-08-26T23:16:05.2126094Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\operators_test.exe" 2025-08-26T23:16:05.2126966Z 2025-08-26T23:16:05.2127607Z (base) C:\actions-runner\_work\pytorch\pytorch>if "operators_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:16:05.2128390Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\operators_test.exe" 2025-08-26T23:16:05.2129077Z goto :eof 2025-08-26T23:16:05.2129274Z ) 2025-08-26T23:16:05.2129411Z 2025-08-26T23:16:05.2129788Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/operators_test" 2025-08-26T23:16:11.3735453Z Found test times from artifacts 2025-08-26T23:16:11.4431590Z Found test times from artifacts 2025-08-26T23:16:11.4454495Z Running all tests 2025-08-26T23:16:11.4460278Z Running parallel tests on 3 processes 2025-08-26T23:16:11.4460658Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:16:11.4460991Z Serial tests (0): 2025-08-26T23:16:11.4461234Z Parallel tests (1): 2025-08-26T23:16:11.4461508Z cpp/operators_test 1/1 2025-08-26T23:16:11.4461778Z Name: excluded (est. time: 0.0min) 2025-08-26T23:16:11.4462076Z Serial tests (0): 2025-08-26T23:16:11.4462301Z Parallel tests (0): 2025-08-26T23:16:11.4464242Z Running cpp/operators_test 1/1 ... [2025-08-26 23:16:11.446315] 2025-08-26T23:16:11.4464681Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:16:11.4474336Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\operators_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-baa154462f856a82.xml', '-x', '--reruns=2'] ... [2025-08-26 23:16:11.446938] 2025-08-26T23:16:11.4476809Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:16:13.7223038Z 2025-08-26T23:16:13.7223906Z cpp/operators_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.operators_test_1.1_2a5da110aa496bfc_.log 2025-08-26T23:16:13.7224965Z 2025-08-26T23:16:18.1040048Z Running cpp/operators_test 1/1 ... [2025-08-26 23:16:18.103823] 2025-08-26T23:16:18.1040579Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:16:18.1050646Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\operators_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-200d90faa451ff54.xml', '-x', '--reruns=2'] ... [2025-08-26 23:16:18.104842] 2025-08-26T23:16:21.1762738Z 2025-08-26T23:16:21.1763740Z cpp/operators_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.operators_test_1.1_1c6bd690bf40bfed_.log 2025-08-26T23:16:21.1764447Z 2025-08-26T23:16:22.0425040Z Running test batch 'tests to run' cost 10.59 seconds 2025-08-26T23:16:22.0431836Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:16:22.0432326Z Uploading artifacts took 0.00 seconds 2025-08-26T23:16:22.7362292Z 2025-08-26T23:16:22.7362823Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:16:22.7363309Z echo "operators_test" failed with exit code 0 2025-08-26T23:16:22.7363603Z goto fail 2025-08-26T23:16:22.7363780Z ) 2025-08-26T23:16:22.7363879Z 2025-08-26T23:16:22.7364234Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:16:22.7364655Z echo "operators_test" failed with exit code 0 2025-08-26T23:16:22.7364948Z goto fail 2025-08-26T23:16:22.7365112Z ) 2025-08-26T23:16:22.7365503Z 2025-08-26T23:16:22.7366025Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:16:22.7372172Z 2025-08-26T23:16:22.7372415Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:16:22.7373120Z call :libtorch_check "operator_name_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\operator_name_test.exe" 2025-08-26T23:16:22.7373821Z if errorlevel 1 goto fail 2025-08-26T23:16:22.7374088Z ) 2025-08-26T23:16:22.7390573Z 2025-08-26T23:16:22.7391197Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:16:22.7398263Z 2025-08-26T23:16:22.7399236Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:16:22.7401880Z 2025-08-26T23:16:22.7402493Z (base) C:\actions-runner\_work\pytorch\pytorch>if "operator_name_test" == "verify_api_visibility" goto :eof 2025-08-26T23:16:22.7403826Z 2025-08-26T23:16:22.7404531Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\operator_name_test.exe" 2025-08-26T23:16:22.7405517Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\operator_name_test.exe" 2025-08-26T23:16:22.7406111Z 2025-08-26T23:16:22.7406593Z (base) C:\actions-runner\_work\pytorch\pytorch>if "operator_name_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:16:22.7407349Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\operator_name_test.exe" 2025-08-26T23:16:22.7407860Z goto :eof 2025-08-26T23:16:22.7408024Z ) 2025-08-26T23:16:22.7408117Z 2025-08-26T23:16:22.7408498Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/operator_name_test" 2025-08-26T23:16:28.8966806Z Found test times from artifacts 2025-08-26T23:16:28.9650339Z Found test times from artifacts 2025-08-26T23:16:28.9672419Z Running all tests 2025-08-26T23:16:28.9677721Z Running parallel tests on 3 processes 2025-08-26T23:16:28.9678055Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:16:28.9678326Z Serial tests (0): 2025-08-26T23:16:28.9678531Z Parallel tests (1): 2025-08-26T23:16:28.9680341Z cpp/operator_name_test 1/1 2025-08-26T23:16:28.9680611Z Name: excluded (est. time: 0.0min) 2025-08-26T23:16:28.9680865Z Serial tests (0): 2025-08-26T23:16:28.9681058Z Parallel tests (0): 2025-08-26T23:16:28.9681769Z Running cpp/operator_name_test 1/1 ... [2025-08-26 23:16:28.967626] 2025-08-26T23:16:28.9682257Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:16:28.9691890Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\operator_name_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-b6e15c201ab874c7.xml', '-x', '--reruns=2'] ... [2025-08-26 23:16:28.968788] 2025-08-26T23:16:28.9694129Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:16:30.5218258Z 2025-08-26T23:16:30.5219122Z cpp/operator_name_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.operator_name_test_1.1_95d575ca5d72606a_.log 2025-08-26T23:16:30.5219819Z 2025-08-26T23:16:34.9212882Z Running cpp/operator_name_test 1/1 ... [2025-08-26 23:16:34.919526] 2025-08-26T23:16:34.9213336Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:16:34.9222126Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\operator_name_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-43cb1efac44281b1.xml', '-x', '--reruns=2'] ... [2025-08-26 23:16:34.919526] 2025-08-26T23:16:36.4307040Z 2025-08-26T23:16:36.4307922Z cpp/operator_name_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.operator_name_test_1.1_9207f68a9cb659ee_.log 2025-08-26T23:16:36.4308633Z 2025-08-26T23:16:37.2380382Z Running test batch 'tests to run' cost 8.27 seconds 2025-08-26T23:16:37.2386706Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:16:37.2387167Z Uploading artifacts took 0.00 seconds 2025-08-26T23:16:37.9482078Z 2025-08-26T23:16:37.9482582Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:16:37.9483220Z echo "operator_name_test" failed with exit code 0 2025-08-26T23:16:37.9483534Z goto fail 2025-08-26T23:16:37.9483702Z ) 2025-08-26T23:16:37.9483814Z 2025-08-26T23:16:37.9484004Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:16:37.9484431Z echo "operator_name_test" failed with exit code 0 2025-08-26T23:16:37.9484724Z goto fail 2025-08-26T23:16:37.9484896Z ) 2025-08-26T23:16:37.9485009Z 2025-08-26T23:16:37.9485159Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:16:37.9491760Z 2025-08-26T23:16:37.9491997Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:16:37.9492692Z call :libtorch_check "op_allowlist_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\op_allowlist_test.exe" 2025-08-26T23:16:37.9493336Z if errorlevel 1 goto fail 2025-08-26T23:16:37.9493562Z ) 2025-08-26T23:16:37.9502497Z 2025-08-26T23:16:37.9502881Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:16:37.9506209Z 2025-08-26T23:16:37.9506878Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:16:37.9509112Z 2025-08-26T23:16:37.9509603Z (base) C:\actions-runner\_work\pytorch\pytorch>if "op_allowlist_test" == "verify_api_visibility" goto :eof 2025-08-26T23:16:37.9510508Z 2025-08-26T23:16:37.9511099Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\op_allowlist_test.exe" 2025-08-26T23:16:37.9512060Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\op_allowlist_test.exe" 2025-08-26T23:16:37.9512493Z 2025-08-26T23:16:37.9512811Z (base) C:\actions-runner\_work\pytorch\pytorch>if "op_allowlist_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:16:37.9513532Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\op_allowlist_test.exe" 2025-08-26T23:16:37.9514038Z goto :eof 2025-08-26T23:16:37.9514199Z ) 2025-08-26T23:16:37.9514301Z 2025-08-26T23:16:37.9514659Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/op_allowlist_test" 2025-08-26T23:16:44.1212415Z Found test times from artifacts 2025-08-26T23:16:44.1891470Z Found test times from artifacts 2025-08-26T23:16:44.1913958Z Running all tests 2025-08-26T23:16:44.1919295Z Running parallel tests on 3 processes 2025-08-26T23:16:44.1919696Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:16:44.1919982Z Serial tests (0): 2025-08-26T23:16:44.1920202Z Parallel tests (1): 2025-08-26T23:16:44.1920424Z cpp/op_allowlist_test 1/1 2025-08-26T23:16:44.1920685Z Name: excluded (est. time: 0.0min) 2025-08-26T23:16:44.1920928Z Serial tests (0): 2025-08-26T23:16:44.1921129Z Parallel tests (0): 2025-08-26T23:16:44.1922992Z Running cpp/op_allowlist_test 1/1 ... [2025-08-26 23:16:44.182355] 2025-08-26T23:16:44.1923398Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:16:44.1932814Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\op_allowlist_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-d106c05a54f003bf.xml', '-x', '--reruns=2'] ... [2025-08-26 23:16:44.182355] 2025-08-26T23:16:44.1934625Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:16:45.6921128Z 2025-08-26T23:16:45.6921984Z cpp/op_allowlist_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.op_allowlist_test_1.1_e0b4c37dee710c92_.log 2025-08-26T23:16:45.6922859Z 2025-08-26T23:16:50.0950832Z Running cpp/op_allowlist_test 1/1 ... [2025-08-26 23:16:50.094779] 2025-08-26T23:16:50.0951430Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:16:50.0960427Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\op_allowlist_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-a7414d8e0cb33bb0.xml', '-x', '--reruns=2'] ... [2025-08-26 23:16:50.095372] 2025-08-26T23:16:51.5873227Z 2025-08-26T23:16:51.5874106Z cpp/op_allowlist_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.op_allowlist_test_1.1_4266487b2e9822a8_.log 2025-08-26T23:16:51.5874904Z 2025-08-26T23:16:52.4816690Z Running test batch 'tests to run' cost 8.3 seconds 2025-08-26T23:16:52.4823378Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:16:52.4823874Z Uploading artifacts took 0.00 seconds 2025-08-26T23:16:53.1644991Z 2025-08-26T23:16:53.1646018Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:16:53.1646740Z echo "op_allowlist_test" failed with exit code 0 2025-08-26T23:16:53.1647042Z goto fail 2025-08-26T23:16:53.1647217Z ) 2025-08-26T23:16:53.1647308Z 2025-08-26T23:16:53.1647494Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:16:53.1647919Z echo "op_allowlist_test" failed with exit code 0 2025-08-26T23:16:53.1648207Z goto fail 2025-08-26T23:16:53.1648377Z ) 2025-08-26T23:16:53.1648481Z 2025-08-26T23:16:53.1648641Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:16:53.1654916Z 2025-08-26T23:16:53.1655346Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:16:53.1656102Z call :libtorch_check "op_registration_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\op_registration_test.exe" 2025-08-26T23:16:53.1656777Z if errorlevel 1 goto fail 2025-08-26T23:16:53.1657008Z ) 2025-08-26T23:16:53.1665994Z 2025-08-26T23:16:53.1666407Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:16:53.1670092Z 2025-08-26T23:16:53.1670722Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:16:53.1673033Z 2025-08-26T23:16:53.1673532Z (base) C:\actions-runner\_work\pytorch\pytorch>if "op_registration_test" == "verify_api_visibility" goto :eof 2025-08-26T23:16:53.1674739Z 2025-08-26T23:16:53.1675323Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\op_registration_test.exe" 2025-08-26T23:16:53.1676372Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\op_registration_test.exe" 2025-08-26T23:16:53.1677403Z 2025-08-26T23:16:53.1677823Z (base) C:\actions-runner\_work\pytorch\pytorch>if "op_registration_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:16:53.1678591Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\op_registration_test.exe" 2025-08-26T23:16:53.1679101Z goto :eof 2025-08-26T23:16:53.1679281Z ) 2025-08-26T23:16:53.1679374Z 2025-08-26T23:16:53.1679755Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/op_registration_test" 2025-08-26T23:16:59.2912105Z Found test times from artifacts 2025-08-26T23:16:59.3596914Z Found test times from artifacts 2025-08-26T23:16:59.3618549Z Running all tests 2025-08-26T23:16:59.3623749Z Running parallel tests on 3 processes 2025-08-26T23:16:59.3624121Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:16:59.3624399Z Serial tests (0): 2025-08-26T23:16:59.3624599Z Parallel tests (1): 2025-08-26T23:16:59.3624833Z cpp/op_registration_test 1/1 2025-08-26T23:16:59.3625087Z Name: excluded (est. time: 0.0min) 2025-08-26T23:16:59.3625387Z Serial tests (0): 2025-08-26T23:16:59.3625581Z Parallel tests (0): 2025-08-26T23:16:59.3627623Z Running cpp/op_registration_test 1/1 ... [2025-08-26 23:16:59.362557] 2025-08-26T23:16:59.3628177Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:16:59.3638306Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\op_registration_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-7b540e4b12a312e0.xml', '-x', '--reruns=2'] ... [2025-08-26 23:16:59.363623] 2025-08-26T23:16:59.3640322Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:17:01.6656829Z 2025-08-26T23:17:01.6657844Z cpp/op_registration_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.op_registration_test_1.1_f50f7507ae6d7531_.log 2025-08-26T23:17:01.6658522Z 2025-08-26T23:17:06.0663941Z Running cpp/op_registration_test 1/1 ... [2025-08-26 23:17:06.066170] 2025-08-26T23:17:06.0664737Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:17:06.0676464Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\op_registration_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-f324bde772d6379a.xml', '-x', '--reruns=2'] ... [2025-08-26 23:17:06.066947] 2025-08-26T23:17:25.4942719Z 2025-08-26T23:17:25.4943885Z cpp/op_registration_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.op_registration_test_1.1_3feff6321db28d0c_.log 2025-08-26T23:17:25.4945753Z 2025-08-26T23:17:26.4027396Z Running test batch 'tests to run' cost 27.03 seconds 2025-08-26T23:17:26.4033800Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:17:26.4034304Z Uploading artifacts took 0.00 seconds 2025-08-26T23:17:27.0863615Z 2025-08-26T23:17:27.0864243Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:17:27.0864757Z echo "op_registration_test" failed with exit code 0 2025-08-26T23:17:27.0865108Z goto fail 2025-08-26T23:17:27.0866439Z ) 2025-08-26T23:17:27.0866663Z 2025-08-26T23:17:27.0867057Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:17:27.0867899Z echo "op_registration_test" failed with exit code 0 2025-08-26T23:17:27.0869757Z goto fail 2025-08-26T23:17:27.0870089Z ) 2025-08-26T23:17:27.0870381Z 2025-08-26T23:17:27.0870655Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:17:27.0874969Z 2025-08-26T23:17:27.0875316Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:17:27.0876118Z call :libtorch_check "packedtensoraccessor_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\packedtensoraccessor_test.exe" 2025-08-26T23:17:27.0876843Z if errorlevel 1 goto fail 2025-08-26T23:17:27.0877106Z ) 2025-08-26T23:17:27.0887676Z 2025-08-26T23:17:27.0888192Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:17:27.0892100Z 2025-08-26T23:17:27.0892682Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:17:27.0895471Z 2025-08-26T23:17:27.0896174Z (base) C:\actions-runner\_work\pytorch\pytorch>if "packedtensoraccessor_test" == "verify_api_visibility" goto :eof 2025-08-26T23:17:27.0897056Z 2025-08-26T23:17:27.0897700Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\packedtensoraccessor_test.exe" 2025-08-26T23:17:27.0898836Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\packedtensoraccessor_test.exe" 2025-08-26T23:17:27.0899862Z 2025-08-26T23:17:27.0900370Z (base) C:\actions-runner\_work\pytorch\pytorch>if "packedtensoraccessor_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:17:27.0901437Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\packedtensoraccessor_test.exe" 2025-08-26T23:17:27.0901968Z goto :eof 2025-08-26T23:17:27.0902155Z ) 2025-08-26T23:17:27.0902254Z 2025-08-26T23:17:27.0902665Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/packedtensoraccessor_test" 2025-08-26T23:17:33.3372108Z Found test times from artifacts 2025-08-26T23:17:33.4053790Z Found test times from artifacts 2025-08-26T23:17:33.4076397Z Running all tests 2025-08-26T23:17:33.4081965Z Running parallel tests on 3 processes 2025-08-26T23:17:33.4082308Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:17:33.4082594Z Serial tests (0): 2025-08-26T23:17:33.4082808Z Parallel tests (1): 2025-08-26T23:17:33.4083059Z cpp/packedtensoraccessor_test 1/1 2025-08-26T23:17:33.4083346Z Name: excluded (est. time: 0.0min) 2025-08-26T23:17:33.4083612Z Serial tests (0): 2025-08-26T23:17:33.4083839Z Parallel tests (0): 2025-08-26T23:17:33.4086028Z Running cpp/packedtensoraccessor_test 1/1 ... [2025-08-26 23:17:33.408498] 2025-08-26T23:17:33.4086494Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:17:33.4095937Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\packedtensoraccessor_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-fdc7a04427dfdef8.xml', '-x', '--reruns=2'] ... [2025-08-26 23:17:33.409123] 2025-08-26T23:17:33.4098399Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:17:35.7403764Z 2025-08-26T23:17:35.7404743Z cpp/packedtensoraccessor_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.packedtensoraccessor_test_1.1_7dbeaea4a9864309_.log 2025-08-26T23:17:35.7405524Z 2025-08-26T23:17:40.1511613Z Running cpp/packedtensoraccessor_test 1/1 ... [2025-08-26 23:17:40.150594] 2025-08-26T23:17:40.1512512Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:17:40.1520685Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\packedtensoraccessor_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-9ab09a2651a90db2.xml', '-x', '--reruns=2'] ... [2025-08-26 23:17:40.151738] 2025-08-26T23:17:42.7693263Z 2025-08-26T23:17:42.7694732Z cpp/packedtensoraccessor_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.packedtensoraccessor_test_1.1_4283d7bad1a13904_.log 2025-08-26T23:17:42.7695493Z 2025-08-26T23:17:43.6018136Z Running test batch 'tests to run' cost 10.19 seconds 2025-08-26T23:17:43.6024513Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:17:43.6024999Z Uploading artifacts took 0.00 seconds 2025-08-26T23:17:44.2877322Z 2025-08-26T23:17:44.2877852Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:17:44.2878370Z echo "packedtensoraccessor_test" failed with exit code 0 2025-08-26T23:17:44.2878729Z goto fail 2025-08-26T23:17:44.2878926Z ) 2025-08-26T23:17:44.2879031Z 2025-08-26T23:17:44.2879252Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:17:44.2879729Z echo "packedtensoraccessor_test" failed with exit code 0 2025-08-26T23:17:44.2880086Z goto fail 2025-08-26T23:17:44.2880258Z ) 2025-08-26T23:17:44.2880346Z 2025-08-26T23:17:44.2880511Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:17:44.2888968Z 2025-08-26T23:17:44.2889425Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:17:44.2890100Z call :libtorch_check "pow_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\pow_test.exe" 2025-08-26T23:17:44.2890861Z if errorlevel 1 goto fail 2025-08-26T23:17:44.2891103Z ) 2025-08-26T23:17:44.2899529Z 2025-08-26T23:17:44.2899962Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:17:44.2903258Z 2025-08-26T23:17:44.2903804Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:17:44.2905805Z 2025-08-26T23:17:44.2906281Z (base) C:\actions-runner\_work\pytorch\pytorch>if "pow_test" == "verify_api_visibility" goto :eof 2025-08-26T23:17:44.2907146Z 2025-08-26T23:17:44.2907643Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\pow_test.exe" 2025-08-26T23:17:44.2908528Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\pow_test.exe" 2025-08-26T23:17:44.2909401Z 2025-08-26T23:17:44.2909846Z (base) C:\actions-runner\_work\pytorch\pytorch>if "pow_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:17:44.2910526Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\pow_test.exe" 2025-08-26T23:17:44.2910979Z goto :eof 2025-08-26T23:17:44.2911160Z ) 2025-08-26T23:17:44.2911250Z 2025-08-26T23:17:44.2911598Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/pow_test" 2025-08-26T23:17:50.3980684Z Found test times from artifacts 2025-08-26T23:17:50.4657800Z Found test times from artifacts 2025-08-26T23:17:50.4680702Z Running all tests 2025-08-26T23:17:50.4686402Z Running parallel tests on 3 processes 2025-08-26T23:17:50.4686745Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:17:50.4687017Z Serial tests (0): 2025-08-26T23:17:50.4687225Z Parallel tests (1): 2025-08-26T23:17:50.4687439Z cpp/pow_test 1/1 2025-08-26T23:17:50.4687657Z Name: excluded (est. time: 0.0min) 2025-08-26T23:17:50.4687909Z Serial tests (0): 2025-08-26T23:17:50.4688122Z Parallel tests (0): 2025-08-26T23:17:50.4690133Z Running cpp/pow_test 1/1 ... [2025-08-26 23:17:50.468561] 2025-08-26T23:17:50.4690519Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:17:50.4700405Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\pow_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-018a656095de329c.xml', '-x', '--reruns=2'] ... [2025-08-26 23:17:50.469712] 2025-08-26T23:17:50.4702214Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:17:52.7611613Z 2025-08-26T23:17:52.7614029Z cpp/pow_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.pow_test_1.1_85b8aa9fad3c3b31_.log 2025-08-26T23:17:52.7614597Z 2025-08-26T23:17:57.0907231Z Running cpp/pow_test 1/1 ... [2025-08-26 23:17:57.088949] 2025-08-26T23:17:57.0907645Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:17:57.0916598Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\pow_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-116af5242b874849.xml', '-x', '--reruns=2'] ... [2025-08-26 23:17:57.088949] 2025-08-26T23:18:01.4733607Z 2025-08-26T23:18:01.4734439Z cpp/pow_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.pow_test_1.1_7a43ff4691c20667_.log 2025-08-26T23:18:01.4735550Z 2025-08-26T23:18:02.2990040Z Running test batch 'tests to run' cost 11.82 seconds 2025-08-26T23:18:02.2996234Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:18:02.2996704Z Uploading artifacts took 0.00 seconds 2025-08-26T23:18:03.0029118Z 2025-08-26T23:18:03.0029832Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:18:03.0030266Z echo "pow_test" failed with exit code 0 2025-08-26T23:18:03.0030549Z goto fail 2025-08-26T23:18:03.0030711Z ) 2025-08-26T23:18:03.0030807Z 2025-08-26T23:18:03.0031409Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:18:03.0031900Z echo "pow_test" failed with exit code 0 2025-08-26T23:18:03.0032182Z goto fail 2025-08-26T23:18:03.0032371Z ) 2025-08-26T23:18:03.0032495Z 2025-08-26T23:18:03.0032709Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:18:03.0040226Z 2025-08-26T23:18:03.0040413Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:18:03.0041123Z call :libtorch_check "quantized_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\quantized_test.exe" 2025-08-26T23:18:03.0041753Z if errorlevel 1 goto fail 2025-08-26T23:18:03.0041979Z ) 2025-08-26T23:18:03.0051604Z 2025-08-26T23:18:03.0052352Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:18:03.0055406Z 2025-08-26T23:18:03.0056031Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:18:03.0058183Z 2025-08-26T23:18:03.0058991Z (base) C:\actions-runner\_work\pytorch\pytorch>if "quantized_test" == "verify_api_visibility" goto :eof 2025-08-26T23:18:03.0059991Z 2025-08-26T23:18:03.0060737Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\quantized_test.exe" 2025-08-26T23:18:03.0061796Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\quantized_test.exe" 2025-08-26T23:18:03.0063124Z 2025-08-26T23:18:03.0063709Z (base) C:\actions-runner\_work\pytorch\pytorch>if "quantized_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:18:03.0064553Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\quantized_test.exe" 2025-08-26T23:18:03.0065102Z goto :eof 2025-08-26T23:18:03.0065325Z ) 2025-08-26T23:18:03.0065417Z 2025-08-26T23:18:03.0065839Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/quantized_test" 2025-08-26T23:18:09.1054958Z Found test times from artifacts 2025-08-26T23:18:09.1781357Z Found test times from artifacts 2025-08-26T23:18:09.1803389Z Running all tests 2025-08-26T23:18:09.1808755Z Running parallel tests on 3 processes 2025-08-26T23:18:09.1809152Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:18:09.1809422Z Serial tests (0): 2025-08-26T23:18:09.1809621Z Parallel tests (1): 2025-08-26T23:18:09.1809847Z cpp/quantized_test 1/1 2025-08-26T23:18:09.1810094Z Name: excluded (est. time: 0.0min) 2025-08-26T23:18:09.1810341Z Serial tests (0): 2025-08-26T23:18:09.1810545Z Parallel tests (0): 2025-08-26T23:18:09.1812534Z Running cpp/quantized_test 1/1 ... [2025-08-26 23:18:09.177402] 2025-08-26T23:18:09.1812939Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:18:09.1822357Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\quantized_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-0e7a8d8b49b987d4.xml', '-x', '--reruns=2'] ... [2025-08-26 23:18:09.177402] 2025-08-26T23:18:09.1824104Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:18:11.4222645Z 2025-08-26T23:18:11.4223887Z cpp/quantized_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.quantized_test_1.1_ef2d7f87871d2ba8_.log 2025-08-26T23:18:11.4225180Z 2025-08-26T23:18:15.8458653Z Running cpp/quantized_test 1/1 ... [2025-08-26 23:18:15.845671] 2025-08-26T23:18:15.8459495Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:18:15.8468943Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\quantized_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-4211b8a3c02a5034.xml', '-x', '--reruns=2'] ... [2025-08-26 23:18:15.846295] 2025-08-26T23:18:19.5220580Z 2025-08-26T23:18:19.5221787Z cpp/quantized_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.quantized_test_1.1_a8bcfccaf243b171_.log 2025-08-26T23:18:19.5223522Z 2025-08-26T23:18:20.3390952Z Running test batch 'tests to run' cost 11.15 seconds 2025-08-26T23:18:20.3397561Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:18:20.3398039Z Uploading artifacts took 0.00 seconds 2025-08-26T23:18:21.0301354Z 2025-08-26T23:18:21.0301870Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:18:21.0302347Z echo "quantized_test" failed with exit code 0 2025-08-26T23:18:21.0302651Z goto fail 2025-08-26T23:18:21.0302821Z ) 2025-08-26T23:18:21.0302913Z 2025-08-26T23:18:21.0303336Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:18:21.0304078Z echo "quantized_test" failed with exit code 0 2025-08-26T23:18:21.0304557Z goto fail 2025-08-26T23:18:21.0304722Z ) 2025-08-26T23:18:21.0304835Z 2025-08-26T23:18:21.0305005Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:18:21.0311556Z 2025-08-26T23:18:21.0311798Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:18:21.0312469Z call :libtorch_check "reduce_ops_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\reduce_ops_test.exe" 2025-08-26T23:18:21.0313093Z if errorlevel 1 goto fail 2025-08-26T23:18:21.0313303Z ) 2025-08-26T23:18:21.0322034Z 2025-08-26T23:18:21.0322655Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:18:21.0325958Z 2025-08-26T23:18:21.0326471Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:18:21.0328607Z 2025-08-26T23:18:21.0329097Z (base) C:\actions-runner\_work\pytorch\pytorch>if "reduce_ops_test" == "verify_api_visibility" goto :eof 2025-08-26T23:18:21.0329966Z 2025-08-26T23:18:21.0330715Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\reduce_ops_test.exe" 2025-08-26T23:18:21.0331724Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\reduce_ops_test.exe" 2025-08-26T23:18:21.0332158Z 2025-08-26T23:18:21.0332653Z (base) C:\actions-runner\_work\pytorch\pytorch>if "reduce_ops_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:18:21.0333421Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\reduce_ops_test.exe" 2025-08-26T23:18:21.0333919Z goto :eof 2025-08-26T23:18:21.0334092Z ) 2025-08-26T23:18:21.0334191Z 2025-08-26T23:18:21.0334548Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/reduce_ops_test" 2025-08-26T23:18:27.1029966Z Found test times from artifacts 2025-08-26T23:18:27.1709109Z Found test times from artifacts 2025-08-26T23:18:27.1731287Z Running all tests 2025-08-26T23:18:27.1736765Z Running parallel tests on 3 processes 2025-08-26T23:18:27.1737087Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:18:27.1737437Z Serial tests (0): 2025-08-26T23:18:27.1737659Z Parallel tests (1): 2025-08-26T23:18:27.1737926Z cpp/reduce_ops_test 1/1 2025-08-26T23:18:27.1738187Z Name: excluded (est. time: 0.0min) 2025-08-26T23:18:27.1738441Z Serial tests (0): 2025-08-26T23:18:27.1738657Z Parallel tests (0): 2025-08-26T23:18:27.1740557Z Running cpp/reduce_ops_test 1/1 ... [2025-08-26 23:18:27.173779] 2025-08-26T23:18:27.1741104Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:18:27.1750393Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\reduce_ops_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-834fd5288a84888b.xml', '-x', '--reruns=2'] ... [2025-08-26 23:18:27.174876] 2025-08-26T23:18:27.1752147Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:18:29.5399488Z 2025-08-26T23:18:29.5400319Z cpp/reduce_ops_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.reduce_ops_test_1.1_997212148e7a3fd9_.log 2025-08-26T23:18:29.5401216Z 2025-08-26T23:18:33.8452126Z Running cpp/reduce_ops_test 1/1 ... [2025-08-26 23:18:33.844983] 2025-08-26T23:18:33.8452593Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:18:33.8469886Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\reduce_ops_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-e2f764ffa7db2e1b.xml', '-x', '--reruns=2'] ... [2025-08-26 23:18:33.846773] 2025-08-26T23:18:36.4354764Z 2025-08-26T23:18:36.4355695Z cpp/reduce_ops_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.reduce_ops_test_1.1_f87f7b7af67fec62_.log 2025-08-26T23:18:36.4356384Z 2025-08-26T23:18:37.2596294Z Running test batch 'tests to run' cost 10.08 seconds 2025-08-26T23:18:37.2602523Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:18:37.2603070Z Uploading artifacts took 0.00 seconds 2025-08-26T23:18:37.9703790Z 2025-08-26T23:18:37.9704531Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:18:37.9705033Z echo "reduce_ops_test" failed with exit code 0 2025-08-26T23:18:37.9705403Z goto fail 2025-08-26T23:18:37.9705595Z ) 2025-08-26T23:18:37.9705740Z 2025-08-26T23:18:37.9705939Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:18:37.9706419Z echo "reduce_ops_test" failed with exit code 0 2025-08-26T23:18:37.9706765Z goto fail 2025-08-26T23:18:37.9706993Z ) 2025-08-26T23:18:37.9707124Z 2025-08-26T23:18:37.9707518Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:18:37.9715597Z 2025-08-26T23:18:37.9716118Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:18:37.9716978Z call :libtorch_check "reportMemoryUsage_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\reportMemoryUsage_test.exe" 2025-08-26T23:18:37.9717730Z if errorlevel 1 goto fail 2025-08-26T23:18:37.9717976Z ) 2025-08-26T23:18:37.9725989Z 2025-08-26T23:18:37.9726513Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:18:37.9730388Z 2025-08-26T23:18:37.9731043Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:18:37.9732888Z 2025-08-26T23:18:37.9733388Z (base) C:\actions-runner\_work\pytorch\pytorch>if "reportMemoryUsage_test" == "verify_api_visibility" goto :eof 2025-08-26T23:18:37.9734795Z 2025-08-26T23:18:37.9735537Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\reportMemoryUsage_test.exe" 2025-08-26T23:18:37.9736575Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\reportMemoryUsage_test.exe" 2025-08-26T23:18:37.9737040Z 2025-08-26T23:18:37.9737417Z (base) C:\actions-runner\_work\pytorch\pytorch>if "reportMemoryUsage_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:18:37.9738216Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\reportMemoryUsage_test.exe" 2025-08-26T23:18:37.9738871Z goto :eof 2025-08-26T23:18:37.9739072Z ) 2025-08-26T23:18:37.9739211Z 2025-08-26T23:18:37.9739610Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/reportMemoryUsage_test" 2025-08-26T23:18:44.1076492Z Found test times from artifacts 2025-08-26T23:18:44.1794238Z Found test times from artifacts 2025-08-26T23:18:44.1816043Z Running all tests 2025-08-26T23:18:44.1821288Z Running parallel tests on 3 processes 2025-08-26T23:18:44.1821658Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:18:44.1821959Z Serial tests (0): 2025-08-26T23:18:44.1822214Z Parallel tests (1): 2025-08-26T23:18:44.1822469Z cpp/reportMemoryUsage_test 1/1 2025-08-26T23:18:44.1822788Z Name: excluded (est. time: 0.0min) 2025-08-26T23:18:44.1823057Z Serial tests (0): 2025-08-26T23:18:44.1823306Z Parallel tests (0): 2025-08-26T23:18:44.1825097Z Running cpp/reportMemoryUsage_test 1/1 ... [2025-08-26 23:18:44.177066] 2025-08-26T23:18:44.1825557Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:18:44.1835059Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\reportMemoryUsage_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-62eea8b1cefb2989.xml', '-x', '--reruns=2'] ... [2025-08-26 23:18:44.177066] 2025-08-26T23:18:44.1836903Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:18:46.4556960Z 2025-08-26T23:18:46.4557965Z cpp/reportMemoryUsage_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.reportMemoryUsage_test_1.1_f93f39d6783341b5_.log 2025-08-26T23:18:46.4558692Z 2025-08-26T23:18:50.8750979Z Running cpp/reportMemoryUsage_test 1/1 ... [2025-08-26 23:18:50.870022] 2025-08-26T23:18:50.8751544Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:18:50.8760469Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\reportMemoryUsage_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-c2ae719e5628805c.xml', '-x', '--reruns=2'] ... [2025-08-26 23:18:50.870022] 2025-08-26T23:18:53.4575460Z 2025-08-26T23:18:53.4576706Z cpp/reportMemoryUsage_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.reportMemoryUsage_test_1.1_a900af79b89cbcf0_.log 2025-08-26T23:18:53.4577519Z 2025-08-26T23:18:54.2925199Z Running test batch 'tests to run' cost 10.11 seconds 2025-08-26T23:18:54.2931758Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:18:54.2932276Z Uploading artifacts took 0.00 seconds 2025-08-26T23:18:54.9712607Z 2025-08-26T23:18:54.9713477Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:18:54.9714025Z echo "reportMemoryUsage_test" failed with exit code 0 2025-08-26T23:18:54.9714409Z goto fail 2025-08-26T23:18:54.9714609Z ) 2025-08-26T23:18:54.9722551Z 2025-08-26T23:18:54.9723059Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:18:54.9723610Z echo "reportMemoryUsage_test" failed with exit code 0 2025-08-26T23:18:54.9723978Z goto fail 2025-08-26T23:18:54.9724159Z ) 2025-08-26T23:18:54.9724291Z 2025-08-26T23:18:54.9724452Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:18:54.9724710Z 2025-08-26T23:18:54.9724853Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:18:54.9725540Z call :libtorch_check "scalar_tensor_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\scalar_tensor_test.exe" 2025-08-26T23:18:54.9726214Z if errorlevel 1 goto fail 2025-08-26T23:18:54.9726447Z ) 2025-08-26T23:18:54.9733695Z 2025-08-26T23:18:54.9734337Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:18:54.9737743Z 2025-08-26T23:18:54.9738240Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:18:54.9740803Z 2025-08-26T23:18:54.9741267Z (base) C:\actions-runner\_work\pytorch\pytorch>if "scalar_tensor_test" == "verify_api_visibility" goto :eof 2025-08-26T23:18:54.9742078Z 2025-08-26T23:18:54.9742922Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\scalar_tensor_test.exe" 2025-08-26T23:18:54.9743929Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\scalar_tensor_test.exe" 2025-08-26T23:18:54.9744381Z 2025-08-26T23:18:54.9744812Z (base) C:\actions-runner\_work\pytorch\pytorch>if "scalar_tensor_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:18:54.9745743Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\scalar_tensor_test.exe" 2025-08-26T23:18:54.9746645Z goto :eof 2025-08-26T23:18:54.9746877Z ) 2025-08-26T23:18:54.9746978Z 2025-08-26T23:18:54.9747373Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/scalar_tensor_test" 2025-08-26T23:19:01.0919004Z Found test times from artifacts 2025-08-26T23:19:01.1596200Z Found test times from artifacts 2025-08-26T23:19:01.1618007Z Running all tests 2025-08-26T23:19:01.1623633Z Running parallel tests on 3 processes 2025-08-26T23:19:01.1623976Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:19:01.1624261Z Serial tests (0): 2025-08-26T23:19:01.1624484Z Parallel tests (1): 2025-08-26T23:19:01.1624718Z cpp/scalar_tensor_test 1/1 2025-08-26T23:19:01.1624986Z Name: excluded (est. time: 0.0min) 2025-08-26T23:19:01.1625239Z Serial tests (0): 2025-08-26T23:19:01.1625461Z Parallel tests (0): 2025-08-26T23:19:01.1627494Z Running cpp/scalar_tensor_test 1/1 ... [2025-08-26 23:19:01.162177] 2025-08-26T23:19:01.1628190Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:19:01.1637644Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\scalar_tensor_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-a343d1bd826f4392.xml', '-x', '--reruns=2'] ... [2025-08-26 23:19:01.163348] 2025-08-26T23:19:01.1640120Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:19:03.4460138Z 2025-08-26T23:19:03.4461250Z cpp/scalar_tensor_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.scalar_tensor_test_1.1_cae695aee51e648c_.log 2025-08-26T23:19:03.4461936Z 2025-08-26T23:19:07.8612917Z Running cpp/scalar_tensor_test 1/1 ... [2025-08-26 23:19:07.860592] 2025-08-26T23:19:07.8613410Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:19:07.8622848Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\scalar_tensor_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-2fc2da5c1ffda5f0.xml', '-x', '--reruns=2'] ... [2025-08-26 23:19:07.861807] 2025-08-26T23:19:10.5377762Z 2025-08-26T23:19:10.5378651Z cpp/scalar_tensor_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.scalar_tensor_test_1.1_4d5b200949caa12a_.log 2025-08-26T23:19:10.5379341Z 2025-08-26T23:19:11.4350344Z Running test batch 'tests to run' cost 10.27 seconds 2025-08-26T23:19:11.4357217Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:19:11.4357732Z Uploading artifacts took 0.00 seconds 2025-08-26T23:19:12.1626735Z 2025-08-26T23:19:12.1627388Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:19:12.1627877Z echo "scalar_tensor_test" failed with exit code 0 2025-08-26T23:19:12.1628200Z goto fail 2025-08-26T23:19:12.1628391Z ) 2025-08-26T23:19:12.1628501Z 2025-08-26T23:19:12.1628702Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:19:12.1629145Z echo "scalar_tensor_test" failed with exit code 0 2025-08-26T23:19:12.1629469Z goto fail 2025-08-26T23:19:12.1629663Z ) 2025-08-26T23:19:12.1629770Z 2025-08-26T23:19:12.1629946Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:19:12.1636181Z 2025-08-26T23:19:12.1636690Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:19:12.1637397Z call :libtorch_check "scalar_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\scalar_test.exe" 2025-08-26T23:19:12.1638019Z if errorlevel 1 goto fail 2025-08-26T23:19:12.1638268Z ) 2025-08-26T23:19:12.1647266Z 2025-08-26T23:19:12.1647834Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:19:12.1651340Z 2025-08-26T23:19:12.1651809Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:19:12.1654236Z 2025-08-26T23:19:12.1654749Z (base) C:\actions-runner\_work\pytorch\pytorch>if "scalar_test" == "verify_api_visibility" goto :eof 2025-08-26T23:19:12.1655742Z 2025-08-26T23:19:12.1656292Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\scalar_test.exe" 2025-08-26T23:19:12.1657214Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\scalar_test.exe" 2025-08-26T23:19:12.1658422Z 2025-08-26T23:19:12.1658828Z (base) C:\actions-runner\_work\pytorch\pytorch>if "scalar_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:19:12.1659541Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\scalar_test.exe" 2025-08-26T23:19:12.1660040Z goto :eof 2025-08-26T23:19:12.1660232Z ) 2025-08-26T23:19:12.1660345Z 2025-08-26T23:19:12.1660696Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/scalar_test" 2025-08-26T23:19:18.2404197Z Found test times from artifacts 2025-08-26T23:19:18.3083495Z Found test times from artifacts 2025-08-26T23:19:18.3106718Z Running all tests 2025-08-26T23:19:18.3112215Z Running parallel tests on 3 processes 2025-08-26T23:19:18.3112653Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:19:18.3112945Z Serial tests (0): 2025-08-26T23:19:18.3113175Z Parallel tests (1): 2025-08-26T23:19:18.3113396Z cpp/scalar_test 1/1 2025-08-26T23:19:18.3113640Z Name: excluded (est. time: 0.0min) 2025-08-26T23:19:18.3113895Z Serial tests (0): 2025-08-26T23:19:18.3114114Z Parallel tests (0): 2025-08-26T23:19:18.3116048Z Running cpp/scalar_test 1/1 ... [2025-08-26 23:19:18.311105] 2025-08-26T23:19:18.3116482Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:19:18.3126353Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\scalar_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-8b957fed9f584d4f.xml', '-x', '--reruns=2'] ... [2025-08-26 23:19:18.312254] 2025-08-26T23:19:18.3128158Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:19:20.6085617Z 2025-08-26T23:19:20.6086441Z cpp/scalar_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.scalar_test_1.1_b0d0cffbf7110435_.log 2025-08-26T23:19:20.6088916Z 2025-08-26T23:19:25.0986579Z Running cpp/scalar_test 1/1 ... [2025-08-26 23:19:25.089394] 2025-08-26T23:19:25.0987007Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:19:25.0995705Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\scalar_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-db6792a9b2ce00be.xml', '-x', '--reruns=2'] ... [2025-08-26 23:19:25.089394] 2025-08-26T23:19:28.2505574Z 2025-08-26T23:19:28.2506428Z cpp/scalar_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.scalar_test_1.1_57a8af134a872cf0_.log 2025-08-26T23:19:28.2507250Z 2025-08-26T23:19:29.1055889Z Running test batch 'tests to run' cost 10.79 seconds 2025-08-26T23:19:29.1062648Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:19:29.1063140Z Uploading artifacts took 0.00 seconds 2025-08-26T23:19:29.7904014Z 2025-08-26T23:19:29.7904845Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:19:29.7905317Z echo "scalar_test" failed with exit code 0 2025-08-26T23:19:29.7905622Z goto fail 2025-08-26T23:19:29.7905797Z ) 2025-08-26T23:19:29.7905920Z 2025-08-26T23:19:29.7906112Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:19:29.7906525Z echo "scalar_test" failed with exit code 0 2025-08-26T23:19:29.7906821Z goto fail 2025-08-26T23:19:29.7907002Z ) 2025-08-26T23:19:29.7907099Z 2025-08-26T23:19:29.7907635Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:19:29.7913597Z 2025-08-26T23:19:29.7913837Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:19:29.7914540Z call :libtorch_check "StorageUtils_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\StorageUtils_test.exe" 2025-08-26T23:19:29.7915211Z if errorlevel 1 goto fail 2025-08-26T23:19:29.7915440Z ) 2025-08-26T23:19:29.7925140Z 2025-08-26T23:19:29.7925858Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:19:29.7929306Z 2025-08-26T23:19:29.7929869Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:19:29.7932266Z 2025-08-26T23:19:29.7932866Z (base) C:\actions-runner\_work\pytorch\pytorch>if "StorageUtils_test" == "verify_api_visibility" goto :eof 2025-08-26T23:19:29.7933648Z 2025-08-26T23:19:29.7934475Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\StorageUtils_test.exe" 2025-08-26T23:19:29.7935517Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\StorageUtils_test.exe" 2025-08-26T23:19:29.7935961Z 2025-08-26T23:19:29.7936298Z (base) C:\actions-runner\_work\pytorch\pytorch>if "StorageUtils_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:19:29.7937037Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\StorageUtils_test.exe" 2025-08-26T23:19:29.7937552Z goto :eof 2025-08-26T23:19:29.7937728Z ) 2025-08-26T23:19:29.7937840Z 2025-08-26T23:19:29.7938211Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/StorageUtils_test" 2025-08-26T23:19:35.8740347Z Found test times from artifacts 2025-08-26T23:19:35.9422035Z Found test times from artifacts 2025-08-26T23:19:35.9444112Z Running all tests 2025-08-26T23:19:35.9449527Z Running parallel tests on 3 processes 2025-08-26T23:19:35.9449921Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:19:35.9450198Z Serial tests (0): 2025-08-26T23:19:35.9450423Z Parallel tests (1): 2025-08-26T23:19:35.9450655Z cpp/StorageUtils_test 1/1 2025-08-26T23:19:35.9450927Z Name: excluded (est. time: 0.0min) 2025-08-26T23:19:35.9451177Z Serial tests (0): 2025-08-26T23:19:35.9451396Z Parallel tests (0): 2025-08-26T23:19:35.9453275Z Running cpp/StorageUtils_test 1/1 ... [2025-08-26 23:19:35.941777] 2025-08-26T23:19:35.9454324Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:19:35.9463325Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\StorageUtils_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-2b8760d728abb010.xml', '-x', '--reruns=2'] ... [2025-08-26 23:19:35.941777] 2025-08-26T23:19:35.9465128Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:19:38.3142755Z 2025-08-26T23:19:38.3143613Z cpp/StorageUtils_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.StorageUtils_test_1.1_5d9ba9356f208daa_.log 2025-08-26T23:19:38.3144395Z 2025-08-26T23:19:42.7725607Z Running cpp/StorageUtils_test 1/1 ... [2025-08-26 23:19:42.772373] 2025-08-26T23:19:42.7726079Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:19:42.7734887Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\StorageUtils_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-f940a85cd97dba49.xml', '-x', '--reruns=2'] ... [2025-08-26 23:19:42.772373] 2025-08-26T23:19:45.4729890Z 2025-08-26T23:19:45.4731051Z cpp/StorageUtils_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.StorageUtils_test_1.1_97d186f7d2b9eb28_.log 2025-08-26T23:19:45.4731735Z 2025-08-26T23:19:46.3213682Z Running test batch 'tests to run' cost 10.38 seconds 2025-08-26T23:19:46.3220590Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:19:46.3221097Z Uploading artifacts took 0.00 seconds 2025-08-26T23:19:47.0483543Z 2025-08-26T23:19:47.0484257Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:19:47.0484752Z echo "StorageUtils_test" failed with exit code 0 2025-08-26T23:19:47.0485080Z goto fail 2025-08-26T23:19:47.0485255Z ) 2025-08-26T23:19:47.0485375Z 2025-08-26T23:19:47.0485566Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:19:47.0485998Z echo "StorageUtils_test" failed with exit code 0 2025-08-26T23:19:47.0486299Z goto fail 2025-08-26T23:19:47.0486486Z ) 2025-08-26T23:19:47.0487020Z 2025-08-26T23:19:47.0487507Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:19:47.0493807Z 2025-08-26T23:19:47.0494253Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:19:47.0495047Z call :libtorch_check "stride_properties_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\stride_properties_test.exe" 2025-08-26T23:19:47.0495757Z if errorlevel 1 goto fail 2025-08-26T23:19:47.0495985Z ) 2025-08-26T23:19:47.0504672Z 2025-08-26T23:19:47.0505130Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:19:47.0508604Z 2025-08-26T23:19:47.0509269Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:19:47.0511512Z 2025-08-26T23:19:47.0511935Z (base) C:\actions-runner\_work\pytorch\pytorch>if "stride_properties_test" == "verify_api_visibility" goto :eof 2025-08-26T23:19:47.0512844Z 2025-08-26T23:19:47.0513458Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\stride_properties_test.exe" 2025-08-26T23:19:47.0514484Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\stride_properties_test.exe" 2025-08-26T23:19:47.0515033Z 2025-08-26T23:19:47.0515453Z (base) C:\actions-runner\_work\pytorch\pytorch>if "stride_properties_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:19:47.0516330Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\stride_properties_test.exe" 2025-08-26T23:19:47.0517062Z goto :eof 2025-08-26T23:19:47.0517269Z ) 2025-08-26T23:19:47.0517370Z 2025-08-26T23:19:47.0517757Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/stride_properties_test" 2025-08-26T23:19:53.1149754Z Found test times from artifacts 2025-08-26T23:19:53.1829955Z Found test times from artifacts 2025-08-26T23:19:53.1851927Z Running all tests 2025-08-26T23:19:53.1857116Z Running parallel tests on 3 processes 2025-08-26T23:19:53.1857440Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:19:53.1857735Z Serial tests (0): 2025-08-26T23:19:53.1857944Z Parallel tests (1): 2025-08-26T23:19:53.1858196Z cpp/stride_properties_test 1/1 2025-08-26T23:19:53.1858468Z Name: excluded (est. time: 0.0min) 2025-08-26T23:19:53.1858766Z Serial tests (0): 2025-08-26T23:19:53.1858975Z Parallel tests (0): 2025-08-26T23:19:53.1861039Z Running cpp/stride_properties_test 1/1 ... [2025-08-26 23:19:53.185898] 2025-08-26T23:19:53.1861467Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:19:53.1871578Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\stride_properties_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-92765a77c9d95989.xml', '-x', '--reruns=2'] ... [2025-08-26 23:19:53.186470] 2025-08-26T23:19:53.1873346Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:19:55.5170729Z 2025-08-26T23:19:55.5171636Z cpp/stride_properties_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.stride_properties_test_1.1_664c1e890cda9b85_.log 2025-08-26T23:19:55.5172330Z 2025-08-26T23:19:59.9351609Z Running cpp/stride_properties_test 1/1 ... [2025-08-26 23:19:59.932753] 2025-08-26T23:19:59.9352095Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:19:59.9360456Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\stride_properties_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-dd4b3a404746ed1d.xml', '-x', '--reruns=2'] ... [2025-08-26 23:19:59.932753] 2025-08-26T23:20:03.0408403Z 2025-08-26T23:20:03.0409359Z cpp/stride_properties_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.stride_properties_test_1.1_10d47a7e0a8b111b_.log 2025-08-26T23:20:03.0410145Z 2025-08-26T23:20:03.8427313Z Running test batch 'tests to run' cost 10.65 seconds 2025-08-26T23:20:03.8433692Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:20:03.8434141Z Uploading artifacts took 0.00 seconds 2025-08-26T23:20:04.5228909Z 2025-08-26T23:20:04.5229440Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:20:04.5229897Z echo "stride_properties_test" failed with exit code 0 2025-08-26T23:20:04.5230226Z goto fail 2025-08-26T23:20:04.5230388Z ) 2025-08-26T23:20:04.5230491Z 2025-08-26T23:20:04.5230682Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:20:04.5231115Z echo "stride_properties_test" failed with exit code 0 2025-08-26T23:20:04.5231443Z goto fail 2025-08-26T23:20:04.5231606Z ) 2025-08-26T23:20:04.5236026Z 2025-08-26T23:20:04.5236189Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:20:04.5238807Z 2025-08-26T23:20:04.5239089Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:20:04.5239789Z call :libtorch_check "tensor_iterator_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\tensor_iterator_test.exe" 2025-08-26T23:20:04.5240467Z if errorlevel 1 goto fail 2025-08-26T23:20:04.5240679Z ) 2025-08-26T23:20:04.5249339Z 2025-08-26T23:20:04.5249672Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:20:04.5253334Z 2025-08-26T23:20:04.5253838Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:20:04.5256195Z 2025-08-26T23:20:04.5256675Z (base) C:\actions-runner\_work\pytorch\pytorch>if "tensor_iterator_test" == "verify_api_visibility" goto :eof 2025-08-26T23:20:04.5257573Z 2025-08-26T23:20:04.5258243Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\tensor_iterator_test.exe" 2025-08-26T23:20:04.5259203Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\tensor_iterator_test.exe" 2025-08-26T23:20:04.5260187Z 2025-08-26T23:20:04.5260578Z (base) C:\actions-runner\_work\pytorch\pytorch>if "tensor_iterator_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:20:04.5261329Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\tensor_iterator_test.exe" 2025-08-26T23:20:04.5261836Z goto :eof 2025-08-26T23:20:04.5262002Z ) 2025-08-26T23:20:04.5262113Z 2025-08-26T23:20:04.5262485Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/tensor_iterator_test" 2025-08-26T23:20:10.6358035Z Found test times from artifacts 2025-08-26T23:20:10.7042638Z Found test times from artifacts 2025-08-26T23:20:10.7066026Z Running all tests 2025-08-26T23:20:10.7071792Z Running parallel tests on 3 processes 2025-08-26T23:20:10.7072219Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:20:10.7072500Z Serial tests (0): 2025-08-26T23:20:10.7072717Z Parallel tests (1): 2025-08-26T23:20:10.7072951Z cpp/tensor_iterator_test 1/1 2025-08-26T23:20:10.7073210Z Name: excluded (est. time: 0.0min) 2025-08-26T23:20:10.7073466Z Serial tests (0): 2025-08-26T23:20:10.7073663Z Parallel tests (0): 2025-08-26T23:20:10.7075726Z Running cpp/tensor_iterator_test 1/1 ... [2025-08-26 23:20:10.707045] 2025-08-26T23:20:10.7076213Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:20:10.7086278Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\tensor_iterator_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-a77fcc7a93d9d703.xml', '-x', '--reruns=2'] ... [2025-08-26 23:20:10.708245] 2025-08-26T23:20:10.7088240Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:20:12.9448350Z 2025-08-26T23:20:12.9449273Z cpp/tensor_iterator_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.tensor_iterator_test_1.1_28b31d672b6c2f58_.log 2025-08-26T23:20:12.9449978Z 2025-08-26T23:20:17.4389668Z Running cpp/tensor_iterator_test 1/1 ... [2025-08-26 23:20:17.428918] 2025-08-26T23:20:17.4390193Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:20:17.4398949Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\tensor_iterator_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-c4fa88160d6c2d46.xml', '-x', '--reruns=2'] ... [2025-08-26 23:20:17.439029] 2025-08-26T23:20:28.6967818Z 2025-08-26T23:20:28.6969873Z cpp/tensor_iterator_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.tensor_iterator_test_1.1_61d7704acd66e11c_.log 2025-08-26T23:20:28.6970574Z 2025-08-26T23:20:29.5608800Z Running test batch 'tests to run' cost 18.84 seconds 2025-08-26T23:20:29.5615296Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:20:29.5615784Z Uploading artifacts took 0.00 seconds 2025-08-26T23:20:30.2449360Z 2025-08-26T23:20:30.2450308Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:20:30.2450806Z echo "tensor_iterator_test" failed with exit code 0 2025-08-26T23:20:30.2451182Z goto fail 2025-08-26T23:20:30.2451380Z ) 2025-08-26T23:20:30.2451934Z 2025-08-26T23:20:30.2452439Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:20:30.2452990Z echo "tensor_iterator_test" failed with exit code 0 2025-08-26T23:20:30.2453341Z goto fail 2025-08-26T23:20:30.2453576Z ) 2025-08-26T23:20:30.2453689Z 2025-08-26T23:20:30.2453855Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:20:30.2460638Z 2025-08-26T23:20:30.2460829Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:20:30.2461630Z call :libtorch_check "test_parallel" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\test_parallel.exe" 2025-08-26T23:20:30.2462281Z if errorlevel 1 goto fail 2025-08-26T23:20:30.2462555Z ) 2025-08-26T23:20:30.2471991Z 2025-08-26T23:20:30.2472386Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:20:30.2476106Z 2025-08-26T23:20:30.2476599Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:20:30.2478757Z 2025-08-26T23:20:30.2479304Z (base) C:\actions-runner\_work\pytorch\pytorch>if "test_parallel" == "verify_api_visibility" goto :eof 2025-08-26T23:20:30.2479926Z 2025-08-26T23:20:30.2480526Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\test_parallel.exe" 2025-08-26T23:20:30.2481476Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\test_parallel.exe" 2025-08-26T23:20:30.2482326Z 2025-08-26T23:20:30.2482848Z (base) C:\actions-runner\_work\pytorch\pytorch>if "test_parallel" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:20:30.2483607Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\test_parallel.exe" 2025-08-26T23:20:30.2484117Z goto :eof 2025-08-26T23:20:30.2484337Z ) 2025-08-26T23:20:30.2484442Z 2025-08-26T23:20:30.2484812Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/test_parallel" 2025-08-26T23:20:36.2738527Z Found test times from artifacts 2025-08-26T23:20:36.3513691Z Found test times from artifacts 2025-08-26T23:20:36.3535469Z Running all tests 2025-08-26T23:20:36.3540381Z Running parallel tests on 3 processes 2025-08-26T23:20:36.3540724Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:20:36.3541041Z Serial tests (0): 2025-08-26T23:20:36.3541317Z Parallel tests (1): 2025-08-26T23:20:36.3541583Z cpp/test_parallel 1/1 2025-08-26T23:20:36.3541844Z Name: excluded (est. time: 0.0min) 2025-08-26T23:20:36.3542140Z Serial tests (0): 2025-08-26T23:20:36.3542366Z Parallel tests (0): 2025-08-26T23:20:36.3544265Z Running cpp/test_parallel 1/1 ... [2025-08-26 23:20:36.344179] 2025-08-26T23:20:36.3544698Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:20:36.3554218Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\test_parallel.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-b009c2ebdce64e7f.xml', '-x', '--reruns=2'] ... [2025-08-26 23:20:36.344179] 2025-08-26T23:20:36.3556475Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:20:38.6743468Z 2025-08-26T23:20:38.6744352Z cpp/test_parallel 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.test_parallel_1.1_5be39c231381fddc_.log 2025-08-26T23:20:38.6745045Z 2025-08-26T23:20:43.1288901Z Running cpp/test_parallel 1/1 ... [2025-08-26 23:20:43.128638] 2025-08-26T23:20:43.1289354Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:20:43.1297948Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\test_parallel.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-3d35de715febd91b.xml', '-x', '--reruns=2'] ... [2025-08-26 23:20:43.129263] 2025-08-26T23:20:46.5057887Z 2025-08-26T23:20:46.5058967Z cpp/test_parallel 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.test_parallel_1.1_dc0d0944263ae1a0_.log 2025-08-26T23:20:46.5059641Z 2025-08-26T23:20:47.3959057Z Running test batch 'tests to run' cost 11.05 seconds 2025-08-26T23:20:47.3967161Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:20:47.3967695Z Uploading artifacts took 0.00 seconds 2025-08-26T23:20:48.1329937Z 2025-08-26T23:20:48.1330584Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:20:48.1331094Z echo "test_parallel" failed with exit code 0 2025-08-26T23:20:48.1331446Z goto fail 2025-08-26T23:20:48.1331642Z ) 2025-08-26T23:20:48.1331748Z 2025-08-26T23:20:48.1331975Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:20:48.1332422Z echo "test_parallel" failed with exit code 0 2025-08-26T23:20:48.1332758Z goto fail 2025-08-26T23:20:48.1332976Z ) 2025-08-26T23:20:48.1333315Z 2025-08-26T23:20:48.1333783Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:20:48.1340626Z 2025-08-26T23:20:48.1341085Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:20:48.1341869Z call :libtorch_check "thread_init_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\thread_init_test.exe" 2025-08-26T23:20:48.1342623Z if errorlevel 1 goto fail 2025-08-26T23:20:48.1342903Z ) 2025-08-26T23:20:48.1351389Z 2025-08-26T23:20:48.1351797Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:20:48.1355224Z 2025-08-26T23:20:48.1355832Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:20:48.1358372Z 2025-08-26T23:20:48.1359158Z (base) C:\actions-runner\_work\pytorch\pytorch>if "thread_init_test" == "verify_api_visibility" goto :eof 2025-08-26T23:20:48.1360367Z 2025-08-26T23:20:48.1361004Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\thread_init_test.exe" 2025-08-26T23:20:48.1361962Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\thread_init_test.exe" 2025-08-26T23:20:48.1362765Z 2025-08-26T23:20:48.1363188Z (base) C:\actions-runner\_work\pytorch\pytorch>if "thread_init_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:20:48.1364062Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\thread_init_test.exe" 2025-08-26T23:20:48.1364635Z goto :eof 2025-08-26T23:20:48.1364872Z ) 2025-08-26T23:20:48.1364973Z 2025-08-26T23:20:48.1365403Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/thread_init_test" 2025-08-26T23:20:54.2697360Z Found test times from artifacts 2025-08-26T23:20:54.3378919Z Found test times from artifacts 2025-08-26T23:20:54.3401756Z Running all tests 2025-08-26T23:20:54.3407593Z Running parallel tests on 3 processes 2025-08-26T23:20:54.3407957Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:20:54.3408257Z Serial tests (0): 2025-08-26T23:20:54.3408518Z Parallel tests (1): 2025-08-26T23:20:54.3408761Z cpp/thread_init_test 1/1 2025-08-26T23:20:54.3409075Z Name: excluded (est. time: 0.0min) 2025-08-26T23:20:54.3409329Z Serial tests (0): 2025-08-26T23:20:54.3409550Z Parallel tests (0): 2025-08-26T23:20:54.3411357Z Running cpp/thread_init_test 1/1 ... [2025-08-26 23:20:54.340879] 2025-08-26T23:20:54.3411761Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:20:54.3421490Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\thread_init_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-c51a8ffa8448ce2d.xml', '-x', '--reruns=2'] ... [2025-08-26 23:20:54.341975] 2025-08-26T23:20:54.3423264Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:20:56.7239203Z 2025-08-26T23:20:56.7240076Z cpp/thread_init_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.thread_init_test_1.1_27bb38c525461ef8_.log 2025-08-26T23:20:56.7240768Z 2025-08-26T23:21:01.0799174Z Running cpp/thread_init_test 1/1 ... [2025-08-26 23:21:01.078933] 2025-08-26T23:21:01.0799608Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:21:01.0808725Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\thread_init_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-5b97fca475ec2c56.xml', '-x', '--reruns=2'] ... [2025-08-26 23:21:01.078933] 2025-08-26T23:21:04.0856897Z 2025-08-26T23:21:04.0857999Z cpp/thread_init_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.thread_init_test_1.1_cdcacae7f1d3f66d_.log 2025-08-26T23:21:04.0858693Z 2025-08-26T23:21:04.9221625Z Running test batch 'tests to run' cost 10.58 seconds 2025-08-26T23:21:04.9227807Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:21:04.9228266Z Uploading artifacts took 0.00 seconds 2025-08-26T23:21:05.5958524Z 2025-08-26T23:21:05.5959071Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:21:05.5959551Z echo "thread_init_test" failed with exit code 0 2025-08-26T23:21:05.5959865Z goto fail 2025-08-26T23:21:05.5960059Z ) 2025-08-26T23:21:05.5960165Z 2025-08-26T23:21:05.5960363Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:21:05.5960806Z echo "thread_init_test" failed with exit code 0 2025-08-26T23:21:05.5961108Z goto fail 2025-08-26T23:21:05.5961532Z ) 2025-08-26T23:21:05.5961636Z 2025-08-26T23:21:05.5961882Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:21:05.5967928Z 2025-08-26T23:21:05.5968435Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:21:05.5969146Z call :libtorch_check "type_ptr_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\type_ptr_test.exe" 2025-08-26T23:21:05.5969762Z if errorlevel 1 goto fail 2025-08-26T23:21:05.5970000Z ) 2025-08-26T23:21:05.5978412Z 2025-08-26T23:21:05.5978834Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:21:05.5982212Z 2025-08-26T23:21:05.5982789Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:21:05.5984829Z 2025-08-26T23:21:05.5985276Z (base) C:\actions-runner\_work\pytorch\pytorch>if "type_ptr_test" == "verify_api_visibility" goto :eof 2025-08-26T23:21:05.5986120Z 2025-08-26T23:21:05.5986882Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\type_ptr_test.exe" 2025-08-26T23:21:05.5987988Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\type_ptr_test.exe" 2025-08-26T23:21:05.5988472Z 2025-08-26T23:21:05.5988815Z (base) C:\actions-runner\_work\pytorch\pytorch>if "type_ptr_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:21:05.5989550Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\type_ptr_test.exe" 2025-08-26T23:21:05.5990041Z goto :eof 2025-08-26T23:21:05.5990229Z ) 2025-08-26T23:21:05.5990326Z 2025-08-26T23:21:05.5990697Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/type_ptr_test" 2025-08-26T23:21:11.6580989Z Found test times from artifacts 2025-08-26T23:21:11.7262108Z Found test times from artifacts 2025-08-26T23:21:11.7283551Z Running all tests 2025-08-26T23:21:11.7288937Z Running parallel tests on 3 processes 2025-08-26T23:21:11.7289337Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:21:11.7289626Z Serial tests (0): 2025-08-26T23:21:11.7289860Z Parallel tests (1): 2025-08-26T23:21:11.7290084Z cpp/type_ptr_test 1/1 2025-08-26T23:21:11.7290342Z Name: excluded (est. time: 0.0min) 2025-08-26T23:21:11.7290596Z Serial tests (0): 2025-08-26T23:21:11.7290814Z Parallel tests (0): 2025-08-26T23:21:11.7293146Z Running cpp/type_ptr_test 1/1 ... [2025-08-26 23:21:11.723138] 2025-08-26T23:21:11.7293572Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:21:11.7302497Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\type_ptr_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-3afa1fe986b0b99e.xml', '-x', '--reruns=2'] ... [2025-08-26 23:21:11.723138] 2025-08-26T23:21:11.7304399Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:21:13.9441960Z 2025-08-26T23:21:13.9442815Z cpp/type_ptr_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.type_ptr_test_1.1_a3537c8e00573543_.log 2025-08-26T23:21:13.9443642Z 2025-08-26T23:21:18.3620193Z Running cpp/type_ptr_test 1/1 ... [2025-08-26 23:21:18.361609] 2025-08-26T23:21:18.3620640Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:21:18.3630524Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\type_ptr_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-424f3bee808fca9c.xml', '-x', '--reruns=2'] ... [2025-08-26 23:21:18.362834] 2025-08-26T23:21:21.4469654Z 2025-08-26T23:21:21.4471314Z cpp/type_ptr_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.type_ptr_test_1.1_0e3367f73dea5737_.log 2025-08-26T23:21:21.4472061Z 2025-08-26T23:21:22.2805657Z Running test batch 'tests to run' cost 10.56 seconds 2025-08-26T23:21:22.2812107Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:21:22.2812582Z Uploading artifacts took 0.00 seconds 2025-08-26T23:21:22.9654207Z 2025-08-26T23:21:22.9654746Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:21:22.9655205Z echo "type_ptr_test" failed with exit code 0 2025-08-26T23:21:22.9655507Z goto fail 2025-08-26T23:21:22.9655700Z ) 2025-08-26T23:21:22.9655806Z 2025-08-26T23:21:22.9656001Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:21:22.9656435Z echo "type_ptr_test" failed with exit code 0 2025-08-26T23:21:22.9656741Z goto fail 2025-08-26T23:21:22.9656913Z ) 2025-08-26T23:21:22.9657008Z 2025-08-26T23:21:22.9657200Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:21:22.9663691Z 2025-08-26T23:21:22.9663880Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:21:22.9664523Z call :libtorch_check "type_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\type_test.exe" 2025-08-26T23:21:22.9665131Z if errorlevel 1 goto fail 2025-08-26T23:21:22.9665356Z ) 2025-08-26T23:21:22.9674083Z 2025-08-26T23:21:22.9674477Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:21:22.9678018Z 2025-08-26T23:21:22.9678573Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:21:22.9680651Z 2025-08-26T23:21:22.9681029Z (base) C:\actions-runner\_work\pytorch\pytorch>if "type_test" == "verify_api_visibility" goto :eof 2025-08-26T23:21:22.9682488Z 2025-08-26T23:21:22.9683347Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\type_test.exe" 2025-08-26T23:21:22.9684280Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\type_test.exe" 2025-08-26T23:21:22.9684714Z 2025-08-26T23:21:22.9685046Z (base) C:\actions-runner\_work\pytorch\pytorch>if "type_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:21:22.9685748Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\type_test.exe" 2025-08-26T23:21:22.9686218Z goto :eof 2025-08-26T23:21:22.9686409Z ) 2025-08-26T23:21:22.9686509Z 2025-08-26T23:21:22.9686851Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/type_test" 2025-08-26T23:21:28.9692507Z Found test times from artifacts 2025-08-26T23:21:29.0370253Z Found test times from artifacts 2025-08-26T23:21:29.0391858Z Running all tests 2025-08-26T23:21:29.0397203Z Running parallel tests on 3 processes 2025-08-26T23:21:29.0397587Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:21:29.0397876Z Serial tests (0): 2025-08-26T23:21:29.0398098Z Parallel tests (1): 2025-08-26T23:21:29.0398323Z cpp/type_test 1/1 2025-08-26T23:21:29.0398545Z Name: excluded (est. time: 0.0min) 2025-08-26T23:21:29.0398808Z Serial tests (0): 2025-08-26T23:21:29.0399010Z Parallel tests (0): 2025-08-26T23:21:29.0400838Z Running cpp/type_test 1/1 ... [2025-08-26 23:21:29.032695] 2025-08-26T23:21:29.0401207Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:21:29.0410799Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\type_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-45f0a5d9e16c44c7.xml', '-x', '--reruns=2'] ... [2025-08-26 23:21:29.032695] 2025-08-26T23:21:29.0412745Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:21:31.2574741Z 2025-08-26T23:21:31.2575643Z cpp/type_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.type_test_1.1_7769725a1b25fe30_.log 2025-08-26T23:21:31.2576464Z 2025-08-26T23:21:35.7690200Z Running cpp/type_test 1/1 ... [2025-08-26 23:21:35.767250] 2025-08-26T23:21:35.7690664Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:21:35.7699251Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\type_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-33e5967185c6aae3.xml', '-x', '--reruns=2'] ... [2025-08-26 23:21:35.767250] 2025-08-26T23:21:39.1366630Z 2025-08-26T23:21:39.1369199Z cpp/type_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.type_test_1.1_3322da49ff1e4882_.log 2025-08-26T23:21:39.1369797Z 2025-08-26T23:21:39.9418646Z Running test batch 'tests to run' cost 10.91 seconds 2025-08-26T23:21:39.9425188Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:21:39.9425722Z Uploading artifacts took 0.00 seconds 2025-08-26T23:21:40.6086850Z 2025-08-26T23:21:40.6087469Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:21:40.6087935Z echo "type_test" failed with exit code 0 2025-08-26T23:21:40.6088264Z goto fail 2025-08-26T23:21:40.6088463Z ) 2025-08-26T23:21:40.6088613Z 2025-08-26T23:21:40.6088933Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:21:40.6089403Z echo "type_test" failed with exit code 0 2025-08-26T23:21:40.6089698Z goto fail 2025-08-26T23:21:40.6089920Z ) 2025-08-26T23:21:40.6090509Z 2025-08-26T23:21:40.6091028Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:21:40.6097471Z 2025-08-26T23:21:40.6097772Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:21:40.6098572Z call :libtorch_check "undefined_tensor_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\undefined_tensor_test.exe" 2025-08-26T23:21:40.6099329Z if errorlevel 1 goto fail 2025-08-26T23:21:40.6099581Z ) 2025-08-26T23:21:40.6108027Z 2025-08-26T23:21:40.6108422Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:21:40.6112063Z 2025-08-26T23:21:40.6112656Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:21:40.6114977Z 2025-08-26T23:21:40.6115363Z (base) C:\actions-runner\_work\pytorch\pytorch>if "undefined_tensor_test" == "verify_api_visibility" goto :eof 2025-08-26T23:21:40.6116274Z 2025-08-26T23:21:40.6116899Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\undefined_tensor_test.exe" 2025-08-26T23:21:40.6117891Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\undefined_tensor_test.exe" 2025-08-26T23:21:40.6118473Z 2025-08-26T23:21:40.6118891Z (base) C:\actions-runner\_work\pytorch\pytorch>if "undefined_tensor_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:21:40.6119706Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\undefined_tensor_test.exe" 2025-08-26T23:21:40.6120242Z goto :eof 2025-08-26T23:21:40.6120461Z ) 2025-08-26T23:21:40.6120569Z 2025-08-26T23:21:40.6120964Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/undefined_tensor_test" 2025-08-26T23:21:46.7778936Z Found test times from artifacts 2025-08-26T23:21:46.8467147Z Found test times from artifacts 2025-08-26T23:21:46.8489472Z Running all tests 2025-08-26T23:21:46.8495607Z Running parallel tests on 3 processes 2025-08-26T23:21:46.8495996Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:21:46.8496512Z Serial tests (0): 2025-08-26T23:21:46.8496825Z Parallel tests (1): 2025-08-26T23:21:46.8497114Z cpp/undefined_tensor_test 1/1 2025-08-26T23:21:46.8497414Z Name: excluded (est. time: 0.0min) 2025-08-26T23:21:46.8497716Z Serial tests (0): 2025-08-26T23:21:46.8497948Z Parallel tests (0): 2025-08-26T23:21:46.8499134Z Running cpp/undefined_tensor_test 1/1 ... [2025-08-26 23:21:46.841193] 2025-08-26T23:21:46.8499568Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:21:46.8508906Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\undefined_tensor_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-e7451399819b9889.xml', '-x', '--reruns=2'] ... [2025-08-26 23:21:46.841193] 2025-08-26T23:21:46.8510775Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:21:49.0804724Z 2025-08-26T23:21:49.0805870Z cpp/undefined_tensor_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.undefined_tensor_test_1.1_29d6c3acd98018d2_.log 2025-08-26T23:21:49.0806647Z 2025-08-26T23:21:53.5115865Z Running cpp/undefined_tensor_test 1/1 ... [2025-08-26 23:21:53.511375] 2025-08-26T23:21:53.5116349Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:21:53.5125665Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\undefined_tensor_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-441f074f822f3d1f.xml', '-x', '--reruns=2'] ... [2025-08-26 23:21:53.511966] 2025-08-26T23:21:56.1412580Z 2025-08-26T23:21:56.1413476Z cpp/undefined_tensor_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.undefined_tensor_test_1.1_6fa5e5945a22489d_.log 2025-08-26T23:21:56.1414425Z 2025-08-26T23:21:56.9620489Z Running test batch 'tests to run' cost 10.11 seconds 2025-08-26T23:21:56.9626874Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:21:56.9627358Z Uploading artifacts took 0.00 seconds 2025-08-26T23:21:57.6430637Z 2025-08-26T23:21:57.6431118Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:21:57.6431615Z echo "undefined_tensor_test" failed with exit code 0 2025-08-26T23:21:57.6432022Z goto fail 2025-08-26T23:21:57.6432231Z ) 2025-08-26T23:21:57.6432376Z 2025-08-26T23:21:57.6432582Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:21:57.6433120Z echo "undefined_tensor_test" failed with exit code 0 2025-08-26T23:21:57.6433539Z goto fail 2025-08-26T23:21:57.6433759Z ) 2025-08-26T23:21:57.6433914Z 2025-08-26T23:21:57.6434085Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:21:57.6440655Z 2025-08-26T23:21:57.6441207Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:21:57.6442125Z call :libtorch_check "verify_api_visibility" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\verify_api_visibility.exe" 2025-08-26T23:21:57.6442873Z if errorlevel 1 goto fail 2025-08-26T23:21:57.6443129Z ) 2025-08-26T23:21:57.6451942Z 2025-08-26T23:21:57.6453471Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:21:57.6456203Z 2025-08-26T23:21:57.6456774Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:21:57.6459372Z 2025-08-26T23:21:57.6459917Z (base) C:\actions-runner\_work\pytorch\pytorch>if "verify_api_visibility" == "verify_api_visibility" goto :eof 2025-08-26T23:21:57.6465975Z 2025-08-26T23:21:57.6466171Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:21:57.6467092Z call :libtorch_check "weakref_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\weakref_test.exe" 2025-08-26T23:21:57.6467837Z if errorlevel 1 goto fail 2025-08-26T23:21:57.6468088Z ) 2025-08-26T23:21:57.6476068Z 2025-08-26T23:21:57.6476480Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:21:57.6480238Z 2025-08-26T23:21:57.6480782Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:21:57.6490954Z 2025-08-26T23:21:57.6491573Z (base) C:\actions-runner\_work\pytorch\pytorch>if "weakref_test" == "verify_api_visibility" goto :eof 2025-08-26T23:21:57.6492021Z 2025-08-26T23:21:57.6492571Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\weakref_test.exe" 2025-08-26T23:21:57.6493526Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\weakref_test.exe" 2025-08-26T23:21:57.6494132Z 2025-08-26T23:21:57.6494447Z (base) C:\actions-runner\_work\pytorch\pytorch>if "weakref_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:21:57.6495201Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\weakref_test.exe" 2025-08-26T23:21:57.6497142Z goto :eof 2025-08-26T23:21:57.6497378Z ) 2025-08-26T23:21:57.6497490Z 2025-08-26T23:21:57.6497853Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/weakref_test" 2025-08-26T23:22:03.7019676Z Found test times from artifacts 2025-08-26T23:22:03.7706025Z Found test times from artifacts 2025-08-26T23:22:03.7728234Z Running all tests 2025-08-26T23:22:03.7734021Z Running parallel tests on 3 processes 2025-08-26T23:22:03.7734390Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:22:03.7734688Z Serial tests (0): 2025-08-26T23:22:03.7734946Z Parallel tests (1): 2025-08-26T23:22:03.7735218Z cpp/weakref_test 1/1 2025-08-26T23:22:03.7735513Z Name: excluded (est. time: 0.0min) 2025-08-26T23:22:03.7735796Z Serial tests (0): 2025-08-26T23:22:03.7736052Z Parallel tests (0): 2025-08-26T23:22:03.7737884Z Running cpp/weakref_test 1/1 ... [2025-08-26 23:22:03.773703] 2025-08-26T23:22:03.7738286Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:22:03.7748123Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\weakref_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-e0bb76095ee6cda9.xml', '-x', '--reruns=2'] ... [2025-08-26 23:22:03.774274] 2025-08-26T23:22:03.7749971Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:22:06.1230329Z 2025-08-26T23:22:06.1231236Z cpp/weakref_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.weakref_test_1.1_8a0f33d9687cb842_.log 2025-08-26T23:22:06.1231937Z 2025-08-26T23:22:10.4656503Z Running cpp/weakref_test 1/1 ... [2025-08-26 23:22:10.465152] 2025-08-26T23:22:10.4656983Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:22:10.4669076Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\weakref_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-f950b6f174b7dbdf.xml', '-x', '--reruns=2'] ... [2025-08-26 23:22:10.466340] 2025-08-26T23:22:13.1112277Z 2025-08-26T23:22:13.1113171Z cpp/weakref_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.weakref_test_1.1_e9d9873aa74643e4_.log 2025-08-26T23:22:13.1113836Z 2025-08-26T23:22:13.9639777Z Running test batch 'tests to run' cost 10.19 seconds 2025-08-26T23:22:13.9646341Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:22:13.9646941Z Uploading artifacts took 0.00 seconds 2025-08-26T23:22:14.6521200Z 2025-08-26T23:22:14.6521845Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:22:14.6522408Z echo "weakref_test" failed with exit code 0 2025-08-26T23:22:14.6522758Z goto fail 2025-08-26T23:22:14.6522965Z ) 2025-08-26T23:22:14.6523085Z 2025-08-26T23:22:14.6523317Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:22:14.6523749Z echo "weakref_test" failed with exit code 0 2025-08-26T23:22:14.6524087Z goto fail 2025-08-26T23:22:14.6524283Z ) 2025-08-26T23:22:14.6524413Z 2025-08-26T23:22:14.6524588Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:22:14.6531435Z 2025-08-26T23:22:14.6531998Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:22:14.6532794Z call :libtorch_check "wrapdim_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\wrapdim_test.exe" 2025-08-26T23:22:14.6533557Z if errorlevel 1 goto fail 2025-08-26T23:22:14.6534397Z ) 2025-08-26T23:22:14.6542241Z 2025-08-26T23:22:14.6542605Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:22:14.6546382Z 2025-08-26T23:22:14.6546934Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:22:14.6549137Z 2025-08-26T23:22:14.6549596Z (base) C:\actions-runner\_work\pytorch\pytorch>if "wrapdim_test" == "verify_api_visibility" goto :eof 2025-08-26T23:22:14.6551768Z 2025-08-26T23:22:14.6552342Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\wrapdim_test.exe" 2025-08-26T23:22:14.6553314Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\wrapdim_test.exe" 2025-08-26T23:22:14.6553755Z 2025-08-26T23:22:14.6554106Z (base) C:\actions-runner\_work\pytorch\pytorch>if "wrapdim_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:22:14.6554839Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\wrapdim_test.exe" 2025-08-26T23:22:14.6555369Z goto :eof 2025-08-26T23:22:14.6555569Z ) 2025-08-26T23:22:14.6555708Z 2025-08-26T23:22:14.6556078Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/wrapdim_test" 2025-08-26T23:22:20.7275960Z Found test times from artifacts 2025-08-26T23:22:20.7956416Z Found test times from artifacts 2025-08-26T23:22:20.8006425Z Running all tests 2025-08-26T23:22:20.8007328Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:22:20.8008182Z Running parallel tests on 3 processes 2025-08-26T23:22:20.8008519Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:22:20.8008862Z Serial tests (0): 2025-08-26T23:22:20.8009083Z Parallel tests (1): 2025-08-26T23:22:20.8009362Z cpp/wrapdim_test 1/1 2025-08-26T23:22:20.8009626Z Name: excluded (est. time: 0.0min) 2025-08-26T23:22:20.8009925Z Serial tests (0): 2025-08-26T23:22:20.8010156Z Parallel tests (0): 2025-08-26T23:22:20.8010495Z Running cpp/wrapdim_test 1/1 ... [2025-08-26 23:22:20.798996] 2025-08-26T23:22:20.8012351Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:22:20.8013618Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\wrapdim_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-9d18f096e54f3237.xml', '-x', '--reruns=2'] ... [2025-08-26 23:22:20.800035] 2025-08-26T23:22:23.1884698Z 2025-08-26T23:22:23.1887245Z cpp/wrapdim_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.wrapdim_test_1.1_7367f3a4a5b8f462_.log 2025-08-26T23:22:23.1888201Z 2025-08-26T23:22:27.5756697Z Running cpp/wrapdim_test 1/1 ... [2025-08-26 23:22:27.575259] 2025-08-26T23:22:27.5757338Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:22:27.5768601Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\wrapdim_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-18e9509b684e631f.xml', '-x', '--reruns=2'] ... [2025-08-26 23:22:27.576447] 2025-08-26T23:22:30.1719744Z 2025-08-26T23:22:30.1720588Z cpp/wrapdim_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.wrapdim_test_1.1_66a29375fcefb994_.log 2025-08-26T23:22:30.1721244Z 2025-08-26T23:22:31.0080789Z Running test batch 'tests to run' cost 10.21 seconds 2025-08-26T23:22:31.0087700Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:22:31.0088282Z Uploading artifacts took 0.00 seconds 2025-08-26T23:22:31.6991219Z 2025-08-26T23:22:31.6991962Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:22:31.6992457Z echo "wrapdim_test" failed with exit code 0 2025-08-26T23:22:31.6992780Z goto fail 2025-08-26T23:22:31.6993009Z ) 2025-08-26T23:22:31.6993123Z 2025-08-26T23:22:31.6994357Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:22:31.6994826Z echo "wrapdim_test" failed with exit code 0 2025-08-26T23:22:31.6995162Z goto fail 2025-08-26T23:22:31.6995358Z ) 2025-08-26T23:22:31.6995468Z 2025-08-26T23:22:31.6995660Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:22:31.7001681Z 2025-08-26T23:22:31.7002011Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-26T23:22:31.7002731Z call :libtorch_check "xla_tensor_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\xla_tensor_test.exe" 2025-08-26T23:22:31.7003406Z if errorlevel 1 goto fail 2025-08-26T23:22:31.7003683Z ) 2025-08-26T23:22:31.7012424Z 2025-08-26T23:22:31.7013052Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:22:31.7016415Z 2025-08-26T23:22:31.7017435Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-26T23:22:31.7019407Z 2025-08-26T23:22:31.7019971Z (base) C:\actions-runner\_work\pytorch\pytorch>if "xla_tensor_test" == "verify_api_visibility" goto :eof 2025-08-26T23:22:31.7020613Z 2025-08-26T23:22:31.7021141Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\xla_tensor_test.exe" 2025-08-26T23:22:31.7022140Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\xla_tensor_test.exe" 2025-08-26T23:22:31.7022974Z 2025-08-26T23:22:31.7023443Z (base) C:\actions-runner\_work\pytorch\pytorch>if "xla_tensor_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-26T23:22:31.7024221Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\xla_tensor_test.exe" 2025-08-26T23:22:31.7024744Z goto :eof 2025-08-26T23:22:31.7024957Z ) 2025-08-26T23:22:31.7025067Z 2025-08-26T23:22:31.7025463Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/xla_tensor_test" 2025-08-26T23:22:37.7155002Z Found test times from artifacts 2025-08-26T23:22:37.7885139Z Found test times from artifacts 2025-08-26T23:22:37.7909204Z Running all tests 2025-08-26T23:22:37.7915721Z Running parallel tests on 3 processes 2025-08-26T23:22:37.7916141Z Name: tests to run (est. time: 0.0min) 2025-08-26T23:22:37.7916462Z Serial tests (0): 2025-08-26T23:22:37.7916694Z Parallel tests (1): 2025-08-26T23:22:37.7916965Z cpp/xla_tensor_test 1/1 2025-08-26T23:22:37.7917263Z Name: excluded (est. time: 0.0min) 2025-08-26T23:22:37.7917539Z Serial tests (0): 2025-08-26T23:22:37.7918018Z Parallel tests (0): 2025-08-26T23:22:37.7919556Z Running cpp/xla_tensor_test 1/1 ... [2025-08-26 23:22:37.791519] 2025-08-26T23:22:37.7920007Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:22:37.7933748Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\xla_tensor_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-c8341b17e99464f5.xml', '-x', '--reruns=2'] ... [2025-08-26 23:22:37.793185] 2025-08-26T23:22:37.7935692Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T23:22:40.0756541Z 2025-08-26T23:22:40.0757538Z cpp/xla_tensor_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.xla_tensor_test_1.1_f7db211ffe2d23c1_.log 2025-08-26T23:22:40.0758219Z 2025-08-26T23:22:44.5212109Z Running cpp/xla_tensor_test 1/1 ... [2025-08-26 23:22:44.520770] 2025-08-26T23:22:44.5212770Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T23:22:44.5221352Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\xla_tensor_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-7ba4a9fec63d9e21.xml', '-x', '--reruns=2'] ... [2025-08-26 23:22:44.521965] 2025-08-26T23:22:47.2335705Z 2025-08-26T23:22:47.2336620Z cpp/xla_tensor_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.xla_tensor_test_1.1_81f8ce4e9b6a4c68_.log 2025-08-26T23:22:47.2337438Z 2025-08-26T23:22:48.1191791Z Running test batch 'tests to run' cost 10.33 seconds 2025-08-26T23:22:48.1198611Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T23:22:48.1199273Z Uploading artifacts took 0.00 seconds 2025-08-26T23:22:48.8434564Z 2025-08-26T23:22:48.8435148Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-26T23:22:48.8435639Z echo "xla_tensor_test" failed with exit code 0 2025-08-26T23:22:48.8435995Z goto fail 2025-08-26T23:22:48.8436219Z ) 2025-08-26T23:22:48.8436360Z 2025-08-26T23:22:48.8436566Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T23:22:48.8437034Z echo "xla_tensor_test" failed with exit code 0 2025-08-26T23:22:48.8437354Z goto fail 2025-08-26T23:22:48.8437572Z ) 2025-08-26T23:22:48.8437682Z 2025-08-26T23:22:48.8437849Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T23:22:48.8459027Z 2025-08-26T23:22:48.8459259Z (base) C:\actions-runner\_work\pytorch\pytorch>goto :eof 2025-08-26T23:22:48.8481789Z + [[ 0 == \1 ]] 2025-08-26T23:22:48.9208040Z + assert_git_not_dirty 2025-08-26T23:22:48.9208428Z + [[ win-vs2022-cpu-py3 != *rocm* ]] 2025-08-26T23:22:48.9208740Z + [[ win-vs2022-cpu-py3 != *xla* ]] 2025-08-26T23:22:48.9326616Z ++ git status --porcelain 2025-08-26T23:22:48.9381200Z ++ grep -v '?? third_party' 2025-08-26T23:23:50.9522083Z ++ true 2025-08-26T23:23:50.9526262Z + git_status= 2025-08-26T23:23:50.9526503Z + [[ -n '' ]] 2025-08-26T23:23:50.9526868Z + echo 'TEST PASSED' 2025-08-26T23:23:50.9527188Z TEST PASSED 2025-08-26T23:23:50.9714220Z ##[group]Run cat test/**/*_toprint.log || true 2025-08-26T23:23:50.9714617Z cat test/**/*_toprint.log || true 2025-08-26T23:23:50.9733659Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T23:23:50.9734128Z env: 2025-08-26T23:23:50.9734310Z GIT_DEFAULT_BRANCH: main 2025-08-26T23:23:50.9734690Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T23:23:50.9735204Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T23:23:50.9735683Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T23:23:50.9736092Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T23:23:50.9736480Z ##[endgroup] 2025-08-26T23:23:51.0506111Z cat: 'test/**/*_toprint.log': No such file or directory 2025-08-26T23:23:51.0611527Z ##[group]Run kill "$MONITOR_SCRIPT_PID" 2025-08-26T23:23:51.0611905Z kill "$MONITOR_SCRIPT_PID" 2025-08-26T23:23:51.0630358Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T23:23:51.0630819Z env: 2025-08-26T23:23:51.0631065Z GIT_DEFAULT_BRANCH: main 2025-08-26T23:23:51.0631466Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T23:23:51.0632036Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T23:23:51.0632559Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T23:23:51.0632978Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T23:23:51.0633325Z MONITOR_SCRIPT_PID: 557 2025-08-26T23:23:51.0633575Z ##[endgroup] 2025-08-26T23:23:51.1491338Z Prepare all required actions 2025-08-26T23:23:51.1491934Z Getting action download info 2025-08-26T23:23:51.3272700Z Download action repository 'seemethere/upload-artifact-s3@v5' (SHA:baba72d0712b404f646cebe0730933554ebce96a) 2025-08-26T23:23:51.6172022Z Download action repository 'actions/upload-artifact@v4' (SHA:ea165f8d65b6e75b540449e92b4886f43607fa02) 2025-08-26T23:23:52.0113842Z ##[group]Run ./.github/actions/upload-test-artifacts 2025-08-26T23:23:52.0114200Z with: 2025-08-26T23:23:52.0114597Z file-suffix: test-default-1-3-windows.4xlarge.nonephemeral_48947911988 2025-08-26T23:23:52.0115047Z s3-bucket: gha-artifacts 2025-08-26T23:23:52.0115376Z env: 2025-08-26T23:23:52.0115623Z GIT_DEFAULT_BRANCH: main 2025-08-26T23:23:52.0116041Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T23:23:52.0116586Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T23:23:52.0117195Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T23:23:52.0117613Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T23:23:52.0117966Z ##[endgroup] 2025-08-26T23:23:52.0220107Z ##[group]Run # -ir => recursive include all files in pattern 2025-08-26T23:23:52.0220528Z # -ir => recursive include all files in pattern 2025-08-26T23:23:52.0220987Z 7z a "test-jsons-$Env:FILE_SUFFIX.zip" -ir'!test\test-reports\*.json' 2025-08-26T23:23:52.0236619Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-26T23:23:52.0237070Z env: 2025-08-26T23:23:52.0237247Z GIT_DEFAULT_BRANCH: main 2025-08-26T23:23:52.0237618Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T23:23:52.0238140Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T23:23:52.0238614Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T23:23:52.0239014Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T23:23:52.0239449Z FILE_SUFFIX: test-default-1-3-windows.4xlarge.nonephemeral_48947911988 2025-08-26T23:23:52.0239870Z ##[endgroup] 2025-08-26T23:23:52.4152673Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-26T23:23:52.4241780Z Finished 2025-08-26T23:23:52.6911414Z 2025-08-26T23:23:52.6911923Z 7-Zip 25.01 (x64) : Copyright (c) 1999-2025 Igor Pavlov : 2025-08-03 2025-08-26T23:23:52.6912251Z 2025-08-26T23:23:52.6912331Z Scanning the drive: 2025-08-26T23:23:52.6912559Z 109 files, 28515 bytes (28 KiB) 2025-08-26T23:23:52.6912733Z 2025-08-26T23:23:52.6913057Z Creating archive: test-jsons-test-default-1-3-windows.4xlarge.nonephemeral_48947911988.zip 2025-08-26T23:23:52.6913498Z 2025-08-26T23:23:52.6913647Z Add new data to archive: 109 files, 28515 bytes (28 KiB) 2025-08-26T23:23:52.6913891Z 2025-08-26T23:23:52.6913895Z 2025-08-26T23:23:52.6913984Z Files read from disk: 109 2025-08-26T23:23:52.6914253Z Archive size: 35751 bytes (35 KiB) 2025-08-26T23:23:52.6914514Z Everything is Ok 2025-08-26T23:23:52.7200695Z ##[group]Run # -ir => recursive include all files in pattern 2025-08-26T23:23:52.7201149Z # -ir => recursive include all files in pattern 2025-08-26T23:23:52.7201717Z 7z a "test-reports-$Env:FILE_SUFFIX.zip" -ir'!test\test-reports\*.xml' -ir'!test\test-reports\*.csv' 2025-08-26T23:23:52.7217757Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-26T23:23:52.7218219Z env: 2025-08-26T23:23:52.7218410Z GIT_DEFAULT_BRANCH: main 2025-08-26T23:23:52.7218804Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T23:23:52.7219323Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T23:23:52.7219810Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T23:23:52.7220216Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T23:23:52.7222235Z FILE_SUFFIX: test-default-1-3-windows.4xlarge.nonephemeral_48947911988 2025-08-26T23:23:52.7222706Z ##[endgroup] 2025-08-26T23:23:53.0678202Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-26T23:23:53.0748374Z Finished 2025-08-26T23:23:53.2638317Z 2025-08-26T23:23:53.2638854Z 7-Zip 25.01 (x64) : Copyright (c) 1999-2025 Igor Pavlov : 2025-08-03 2025-08-26T23:23:53.2639179Z 2025-08-26T23:23:53.2639288Z Scanning the drive: 2025-08-26T23:23:53.2639515Z 322 files, 12627306 bytes (13 MiB) 2025-08-26T23:23:53.2639714Z 2025-08-26T23:23:53.2640067Z Creating archive: test-reports-test-default-1-3-windows.4xlarge.nonephemeral_48947911988.zip 2025-08-26T23:23:53.2641535Z 2025-08-26T23:23:53.2641706Z Add new data to archive: 322 files, 12627306 bytes (13 MiB) 2025-08-26T23:23:53.2641967Z 2025-08-26T23:23:53.2641972Z 2025-08-26T23:23:53.2642066Z Files read from disk: 322 2025-08-26T23:23:53.2642327Z Archive size: 800185 bytes (782 KiB) 2025-08-26T23:23:53.2642620Z Everything is Ok 2025-08-26T23:23:53.2916857Z ##[group]Run # -ir => recursive include all files in pattern 2025-08-26T23:23:53.2917295Z # -ir => recursive include all files in pattern 2025-08-26T23:23:53.2917822Z 7z a "logs-$Env:FILE_SUFFIX.zip" 'usage_log.txt' -ir'!test\test-reports\*.log' 2025-08-26T23:23:53.2933683Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-26T23:23:53.2934132Z env: 2025-08-26T23:23:53.2934321Z GIT_DEFAULT_BRANCH: main 2025-08-26T23:23:53.2934695Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T23:23:53.2935273Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T23:23:53.2935831Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T23:23:53.2936223Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T23:23:53.2936674Z FILE_SUFFIX: test-default-1-3-windows.4xlarge.nonephemeral_48947911988 2025-08-26T23:23:53.2937095Z ##[endgroup] 2025-08-26T23:23:53.6608540Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-26T23:23:53.6660822Z Finished 2025-08-26T23:23:53.9836955Z 2025-08-26T23:23:53.9837483Z 7-Zip 25.01 (x64) : Copyright (c) 1999-2025 Igor Pavlov : 2025-08-03 2025-08-26T23:23:53.9837797Z 2025-08-26T23:23:53.9837879Z Scanning the drive: 2025-08-26T23:23:53.9838107Z 476 files, 17649467 bytes (17 MiB) 2025-08-26T23:23:53.9838282Z 2025-08-26T23:23:53.9838570Z Creating archive: logs-test-default-1-3-windows.4xlarge.nonephemeral_48947911988.zip 2025-08-26T23:23:53.9838983Z 2025-08-26T23:23:53.9839124Z Add new data to archive: 476 files, 17649467 bytes (17 MiB) 2025-08-26T23:23:53.9839426Z 2025-08-26T23:23:53.9839430Z 2025-08-26T23:23:53.9839525Z Files read from disk: 476 2025-08-26T23:23:53.9839759Z Archive size: 1408474 bytes (1376 KiB) 2025-08-26T23:23:53.9840035Z Everything is Ok 2025-08-26T23:23:54.0139785Z ##[group]Run seemethere/upload-artifact-s3@v5 2025-08-26T23:23:54.0140103Z with: 2025-08-26T23:23:54.0140287Z s3-bucket: gha-artifacts 2025-08-26T23:23:54.0140668Z s3-prefix: pytorch/pytorch/17248463647/1/artifact 2025-08-26T23:23:54.0140979Z retention-days: 14 2025-08-26T23:23:54.0141203Z if-no-files-found: warn 2025-08-26T23:23:54.0141445Z path: test-jsons-*.zip 2025-08-26T23:23:54.0141720Z name: artifact 2025-08-26T23:23:54.0141920Z region: us-east-1 2025-08-26T23:23:54.0142145Z env: 2025-08-26T23:23:54.0142332Z GIT_DEFAULT_BRANCH: main 2025-08-26T23:23:54.0142695Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T23:23:54.0143218Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T23:23:54.0143688Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T23:23:54.0144089Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T23:23:54.0144380Z ##[endgroup] 2025-08-26T23:23:54.4597545Z NOTE: s3-prefix specified, ignoring name parameter 2025-08-26T23:23:54.4598020Z With the provided path, there will be 1 file uploaded 2025-08-26T23:23:54.4598538Z Uploading to s3 prefix: pytorch/pytorch/17248463647/1/artifact 2025-08-26T23:23:54.4612593Z Starting upload of test-jsons-test-default-1-3-windows.4xlarge.nonephemeral_48947911988.zip 2025-08-26T23:23:54.6572224Z Finished upload of test-jsons-test-default-1-3-windows.4xlarge.nonephemeral_48947911988.zip 2025-08-26T23:23:54.6813051Z ##[group]Run seemethere/upload-artifact-s3@v5 2025-08-26T23:23:54.6813353Z with: 2025-08-26T23:23:54.6813550Z s3-bucket: gha-artifacts 2025-08-26T23:23:54.6813842Z s3-prefix: pytorch/pytorch/17248463647/1/artifact 2025-08-26T23:23:54.6814205Z retention-days: 14 2025-08-26T23:23:54.6814438Z if-no-files-found: error 2025-08-26T23:23:54.6814717Z path: test-reports-*.zip 2025-08-26T23:23:54.6814993Z name: artifact 2025-08-26T23:23:54.6815188Z region: us-east-1 2025-08-26T23:23:54.6815386Z env: 2025-08-26T23:23:54.6815573Z GIT_DEFAULT_BRANCH: main 2025-08-26T23:23:54.6815947Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T23:23:54.6816490Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T23:23:54.6816967Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T23:23:54.6817371Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T23:23:54.6817650Z ##[endgroup] 2025-08-26T23:23:55.0720461Z NOTE: s3-prefix specified, ignoring name parameter 2025-08-26T23:23:55.0720899Z With the provided path, there will be 1 file uploaded 2025-08-26T23:23:55.0721302Z Uploading to s3 prefix: pytorch/pytorch/17248463647/1/artifact 2025-08-26T23:23:55.0734981Z Starting upload of test-reports-test-default-1-3-windows.4xlarge.nonephemeral_48947911988.zip 2025-08-26T23:23:55.2642592Z Finished upload of test-reports-test-default-1-3-windows.4xlarge.nonephemeral_48947911988.zip 2025-08-26T23:23:55.2893699Z ##[group]Run seemethere/upload-artifact-s3@v5 2025-08-26T23:23:55.2894024Z with: 2025-08-26T23:23:55.2894207Z s3-bucket: gha-artifacts 2025-08-26T23:23:55.2894503Z s3-prefix: pytorch/pytorch/17248463647/1/artifact 2025-08-26T23:23:55.2894809Z retention-days: 14 2025-08-26T23:23:55.2895028Z if-no-files-found: ignore 2025-08-26T23:23:55.2895256Z path: logs-*.zip 2025-08-26T23:23:55.2895448Z name: artifact 2025-08-26T23:23:55.2895637Z region: us-east-1 2025-08-26T23:23:55.2895814Z env: 2025-08-26T23:23:55.2895984Z GIT_DEFAULT_BRANCH: main 2025-08-26T23:23:55.2896350Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T23:23:55.2896882Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T23:23:55.2897352Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T23:23:55.2897747Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T23:23:55.2898028Z ##[endgroup] 2025-08-26T23:23:55.6769636Z NOTE: s3-prefix specified, ignoring name parameter 2025-08-26T23:23:55.6770126Z With the provided path, there will be 1 file uploaded 2025-08-26T23:23:55.6771196Z Uploading to s3 prefix: pytorch/pytorch/17248463647/1/artifact 2025-08-26T23:23:55.6783161Z Starting upload of logs-test-default-1-3-windows.4xlarge.nonephemeral_48947911988.zip 2025-08-26T23:23:55.9138075Z Finished upload of logs-test-default-1-3-windows.4xlarge.nonephemeral_48947911988.zip 2025-08-26T23:23:55.9427241Z ##[group]Run seemethere/upload-artifact-s3@v5 2025-08-26T23:23:55.9427558Z with: 2025-08-26T23:23:55.9427737Z s3-bucket: gha-artifacts 2025-08-26T23:23:55.9428017Z s3-prefix: pytorch/pytorch/17248463647/1/artifact 2025-08-26T23:23:55.9428328Z retention-days: 14 2025-08-26T23:23:55.9428548Z if-no-files-found: ignore 2025-08-26T23:23:55.9428781Z path: debug-*.zip 2025-08-26T23:23:55.9428969Z name: artifact 2025-08-26T23:23:55.9429225Z region: us-east-1 2025-08-26T23:23:55.9429414Z env: 2025-08-26T23:23:55.9429644Z GIT_DEFAULT_BRANCH: main 2025-08-26T23:23:55.9430207Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T23:23:55.9430810Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T23:23:55.9431292Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T23:23:55.9431698Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T23:23:55.9431995Z ##[endgroup] 2025-08-26T23:23:56.3481165Z No files were found with the provided path: debug-*.zip. No artifacts will be uploaded. 2025-08-26T23:23:56.3730944Z Prepare all required actions 2025-08-26T23:23:56.3731562Z Getting action download info 2025-08-26T23:23:56.5088440Z ##[group]Run ./.github/actions/upload-utilization-stats 2025-08-26T23:23:56.5088788Z with: 2025-08-26T23:23:56.5088981Z job_id: 48947911988 2025-08-26T23:23:56.5089353Z job_name: win-vs2022-cpu-py3 / test (default, 1, 3, windows.4xlarge.nonephemeral) 2025-08-26T23:23:56.5089803Z workflow_name: trunk 2025-08-26T23:23:56.5090021Z workflow_run_id: 17248463647 2025-08-26T23:23:56.5090352Z workflow_attempt: 1 2025-08-26T23:23:56.5090583Z env: 2025-08-26T23:23:56.5090772Z GIT_DEFAULT_BRANCH: main 2025-08-26T23:23:56.5091146Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T23:23:56.5091689Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T23:23:56.5092181Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T23:23:56.5092625Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T23:23:56.5092921Z ##[endgroup] 2025-08-26T23:23:56.5166384Z ##[group]Run echo "workflow_id: 17248463647" 2025-08-26T23:23:56.5166709Z echo "workflow_id: 17248463647" 2025-08-26T23:23:56.5167008Z echo "workflow_attempt: 1" 2025-08-26T23:23:56.5167288Z echo "workflow_Name: trunk" 2025-08-26T23:23:56.5167566Z echo "job_id: 48947911988" 2025-08-26T23:23:56.5168035Z echo "job_name: win-vs2022-cpu-py3 / test (default, 1, 3, windows.4xlarge.nonephemeral)" 2025-08-26T23:23:56.5168537Z echo "artifact_prefix: " 2025-08-26T23:23:56.5168822Z python3 --version 2025-08-26T23:23:56.5188021Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T23:23:56.5188531Z env: 2025-08-26T23:23:56.5188723Z GIT_DEFAULT_BRANCH: main 2025-08-26T23:23:56.5189140Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T23:23:56.5189677Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T23:23:56.5190165Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T23:23:56.5190555Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T23:23:56.5190859Z ##[endgroup] 2025-08-26T23:23:56.5397391Z workflow_id: 17248463647 2025-08-26T23:23:56.5397659Z workflow_attempt: 1 2025-08-26T23:23:56.5397873Z workflow_Name: trunk 2025-08-26T23:23:56.5398072Z job_id: 48947911988 2025-08-26T23:23:56.5398440Z job_name: win-vs2022-cpu-py3 / test (default, 1, 3, windows.4xlarge.nonephemeral) 2025-08-26T23:23:56.5399013Z artifact_prefix: 2025-08-26T23:23:56.5542157Z Python 3.9.19 2025-08-26T23:23:56.5658695Z ##[group]Run nick-fields/retry@v3.0.0 2025-08-26T23:23:56.5658985Z with: 2025-08-26T23:23:56.5659155Z shell: bash 2025-08-26T23:23:56.5659359Z timeout_minutes: 5 2025-08-26T23:23:56.5659567Z max_attempts: 5 2025-08-26T23:23:56.5659774Z retry_wait_seconds: 30 2025-08-26T23:23:56.5660294Z command: set -eu python3 -m pip install python-dateutil==2.8.2 boto3==1.35.42 pandas==2.1.3 dataclasses_json==0.6.7 2025-08-26T23:23:56.5660890Z polling_interval_seconds: 1 2025-08-26T23:23:56.5661132Z warning_on_retry: true 2025-08-26T23:23:56.5661376Z continue_on_error: false 2025-08-26T23:23:56.5661605Z env: 2025-08-26T23:23:56.5661773Z GIT_DEFAULT_BRANCH: main 2025-08-26T23:23:56.5662137Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T23:23:56.5662656Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T23:23:56.5663226Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T23:23:56.5663615Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T23:23:56.5663909Z ##[endgroup] 2025-08-26T23:23:57.7097374Z Collecting python-dateutil==2.8.2 2025-08-26T23:23:57.8962977Z Downloading python_dateutil-2.8.2-py2.py3-none-any.whl.metadata (8.2 kB) 2025-08-26T23:23:58.6928660Z Collecting boto3==1.35.42 2025-08-26T23:23:58.6973019Z Downloading boto3-1.35.42-py3-none-any.whl.metadata (6.7 kB) 2025-08-26T23:23:58.8886399Z Collecting pandas==2.1.3 2025-08-26T23:23:58.8940533Z Downloading pandas-2.1.3-cp39-cp39-win_amd64.whl.metadata (18 kB) 2025-08-26T23:23:58.9159523Z Requirement already satisfied: dataclasses_json==0.6.7 in c:\jenkins\miniconda3\lib\site-packages (0.6.7) 2025-08-26T23:23:58.9181467Z Requirement already satisfied: six>=1.5 in c:\jenkins\miniconda3\lib\site-packages (from python-dateutil==2.8.2) (1.17.0) 2025-08-26T23:23:59.5579872Z Collecting botocore<1.36.0,>=1.35.42 (from boto3==1.35.42) 2025-08-26T23:23:59.5632014Z Downloading botocore-1.35.99-py3-none-any.whl.metadata (5.7 kB) 2025-08-26T23:23:59.5705812Z Requirement already satisfied: jmespath<2.0.0,>=0.7.1 in c:\jenkins\miniconda3\lib\site-packages (from boto3==1.35.42) (1.0.1) 2025-08-26T23:23:59.5963589Z Collecting s3transfer<0.11.0,>=0.10.0 (from boto3==1.35.42) 2025-08-26T23:23:59.6002558Z Downloading s3transfer-0.10.4-py3-none-any.whl.metadata (1.7 kB) 2025-08-26T23:23:59.9703745Z Collecting numpy<2,>=1.22.4 (from pandas==2.1.3) 2025-08-26T23:23:59.9770081Z Downloading numpy-1.26.4-cp39-cp39-win_amd64.whl.metadata (61 kB) 2025-08-26T23:24:00.0095795Z ---------------------------------------- 61.0/61.0 kB 3.2 MB/s eta 0:00:00 2025-08-26T23:24:00.0784417Z Collecting pytz>=2020.1 (from pandas==2.1.3) 2025-08-26T23:24:00.0834308Z Downloading pytz-2025.2-py2.py3-none-any.whl.metadata (22 kB) 2025-08-26T23:24:00.1103443Z Collecting tzdata>=2022.1 (from pandas==2.1.3) 2025-08-26T23:24:00.1157355Z Downloading tzdata-2025.2-py2.py3-none-any.whl.metadata (1.4 kB) 2025-08-26T23:24:00.1267999Z Requirement already satisfied: marshmallow<4.0.0,>=3.18.0 in c:\jenkins\miniconda3\lib\site-packages (from dataclasses_json==0.6.7) (3.26.1) 2025-08-26T23:24:00.1275098Z Requirement already satisfied: typing-inspect<1,>=0.4.0 in c:\jenkins\miniconda3\lib\site-packages (from dataclasses_json==0.6.7) (0.9.0) 2025-08-26T23:24:00.1370938Z Requirement already satisfied: urllib3<1.27,>=1.25.4 in c:\jenkins\miniconda3\lib\site-packages (from botocore<1.36.0,>=1.35.42->boto3==1.35.42) (1.26.19) 2025-08-26T23:24:00.1511916Z Requirement already satisfied: packaging>=17.0 in c:\jenkins\miniconda3\lib\site-packages (from marshmallow<4.0.0,>=3.18.0->dataclasses_json==0.6.7) (23.2) 2025-08-26T23:24:00.3338649Z Requirement already satisfied: mypy-extensions>=0.3.0 in c:\jenkins\miniconda3\lib\site-packages (from typing-inspect<1,>=0.4.0->dataclasses_json==0.6.7) (1.1.0) 2025-08-26T23:24:00.3344975Z Requirement already satisfied: typing-extensions>=3.7.4 in c:\jenkins\miniconda3\lib\site-packages (from typing-inspect<1,>=0.4.0->dataclasses_json==0.6.7) (4.12.2) 2025-08-26T23:24:00.3675354Z Downloading python_dateutil-2.8.2-py2.py3-none-any.whl (247 kB) 2025-08-26T23:24:00.3898453Z --------------------------------------- 247.7/247.7 kB 14.8 MB/s eta 0:00:00 2025-08-26T23:24:00.3938162Z Downloading boto3-1.35.42-py3-none-any.whl (139 kB) 2025-08-26T23:24:00.4027081Z ---------------------------------------- 139.2/139.2 kB ? eta 0:00:00 2025-08-26T23:24:00.4079374Z Downloading pandas-2.1.3-cp39-cp39-win_amd64.whl (10.8 MB) 2025-08-26T23:24:00.4914044Z ---------------------------------------- 10.8/10.8 MB 165.0 MB/s eta 0:00:00 2025-08-26T23:24:00.4955290Z Downloading botocore-1.35.99-py3-none-any.whl (13.3 MB) 2025-08-26T23:24:00.5961982Z ---------------------------------------- 13.3/13.3 MB 131.0 MB/s eta 0:00:00 2025-08-26T23:24:00.6011524Z Downloading numpy-1.26.4-cp39-cp39-win_amd64.whl (15.8 MB) 2025-08-26T23:24:00.7227247Z ---------------------------------------- 15.8/15.8 MB 93.8 MB/s eta 0:00:00 2025-08-26T23:24:00.7267279Z Downloading pytz-2025.2-py2.py3-none-any.whl (509 kB) 2025-08-26T23:24:00.7380113Z --------------------------------------- 509.2/509.2 kB 31.2 MB/s eta 0:00:00 2025-08-26T23:24:00.7420339Z Downloading s3transfer-0.10.4-py3-none-any.whl (83 kB) 2025-08-26T23:24:00.7495641Z ---------------------------------------- 83.2/83.2 kB ? eta 0:00:00 2025-08-26T23:24:00.7530444Z Downloading tzdata-2025.2-py2.py3-none-any.whl (347 kB) 2025-08-26T23:24:00.7641912Z ---------------------------------------- 347.8/347.8 kB ? eta 0:00:00 2025-08-26T23:24:02.6466749Z Installing collected packages: pytz, tzdata, python-dateutil, numpy, pandas, botocore, s3transfer, boto3 2025-08-26T23:24:03.2837149Z Attempting uninstall: python-dateutil 2025-08-26T23:24:03.2850550Z Found existing installation: python-dateutil 2.9.0.post0 2025-08-26T23:24:03.2938042Z Uninstalling python-dateutil-2.9.0.post0: 2025-08-26T23:24:03.2963076Z Successfully uninstalled python-dateutil-2.9.0.post0 2025-08-26T23:24:03.3739966Z Attempting uninstall: numpy 2025-08-26T23:24:03.3749544Z Found existing installation: numpy 1.22.3 2025-08-26T23:24:03.5649551Z Uninstalling numpy-1.22.3: 2025-08-26T23:24:03.8708286Z Successfully uninstalled numpy-1.22.3 2025-08-26T23:24:06.4465269Z WARNING: The script f2py.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-26T23:24:06.4466162Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-26T23:24:12.6981683Z Attempting uninstall: botocore 2025-08-26T23:24:12.6989913Z Found existing installation: botocore 1.37.10 2025-08-26T23:24:12.9636224Z Uninstalling botocore-1.37.10: 2025-08-26T23:24:13.0418905Z Successfully uninstalled botocore-1.37.10 2025-08-26T23:24:16.0905096Z Attempting uninstall: s3transfer 2025-08-26T23:24:16.0916379Z Found existing installation: s3transfer 0.11.2 2025-08-26T23:24:16.0988123Z Uninstalling s3transfer-0.11.2: 2025-08-26T23:24:16.1008538Z Successfully uninstalled s3transfer-0.11.2 2025-08-26T23:24:16.1715209Z Attempting uninstall: boto3 2025-08-26T23:24:16.1722717Z Found existing installation: boto3 1.37.10 2025-08-26T23:24:16.1892242Z Uninstalling boto3-1.37.10: 2025-08-26T23:24:16.1943556Z Successfully uninstalled boto3-1.37.10 2025-08-26T23:24:16.4254826Z ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts. 2025-08-26T23:24:16.4255808Z scipy 1.6.3 requires numpy<1.23.0,>=1.16.5, but you have numpy 1.26.4 which is incompatible. 2025-08-26T23:24:16.4256633Z Successfully installed boto3-1.35.42 botocore-1.35.99 numpy-1.26.4 pandas-2.1.3 python-dateutil-2.8.2 pytz-2025.2 s3transfer-0.10.4 tzdata-2025.2 2025-08-26T23:24:16.8535996Z Command completed after 1 attempt(s). 2025-08-26T23:24:16.8687002Z ##[group]Run python3 -m tools.stats.upload_utilization_stats.upload_utilization_stats \ 2025-08-26T23:24:16.8687711Z python3 -m tools.stats.upload_utilization_stats.upload_utilization_stats \ 2025-08-26T23:24:16.8688198Z  --workflow-run-id "17248463647" \ 2025-08-26T23:24:16.8688498Z  --workflow-name "trunk" \ 2025-08-26T23:24:16.8688807Z  --workflow-run-attempt "1" \ 2025-08-26T23:24:16.8689098Z  --job-id "48947911988" \ 2025-08-26T23:24:16.8689550Z  --job-name "win-vs2022-cpu-py3 / test (default, 1, 3, windows.4xlarge.nonephemeral)" \ 2025-08-26T23:24:16.8690033Z  --local-path "" \ 2025-08-26T23:24:16.8690286Z  --artifact-prefix "" 2025-08-26T23:24:16.8709618Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T23:24:16.8710110Z env: 2025-08-26T23:24:16.8710320Z GIT_DEFAULT_BRANCH: main 2025-08-26T23:24:16.8710821Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T23:24:16.8711356Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T23:24:16.8711835Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T23:24:16.8712224Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T23:24:16.8712513Z ##[endgroup] 2025-08-26T23:24:21.2999428Z repo: pytorch/pytorch 2025-08-26T23:24:21.2999824Z Search for test log in s3 bucket: ossci-utilization 2025-08-26T23:24:21.3000378Z Downloading logs-test-default-1-3-windows.4xlarge.nonephemeral_48947911988.zip 2025-08-26T23:24:21.3001128Z extracting usage_log.txt from zip file logs-test-default-1-3-windows.4xlarge.nonephemeral_48947911988.zip 2025-08-26T23:24:21.3001796Z Failed to parse JSON line: Expecting value: line 1 column 1 (char 0) 2025-08-26T23:24:21.3002244Z Converted Log Model: UtilizationMetadata: 2025-08-26T23:24:21.3003594Z UtilizationMetadata(level='metadata', workflow_id='17248463647', job_id='48947911988', workflow_name='trunk', job_name='win-vs2022-cpu-py3 / test (default, 1, 3, windows.4xlarge.nonephemeral)', usage_collect_interval=1.0, data_model_version=1.5, start_at=1756241056, gpu_count=0, cpu_count=16, gpu_type=None, error=None) 2025-08-26T23:24:21.3005083Z [Db Segments] detected pytest cmd: 113, generated segments: 113 2025-08-26T23:24:21.3005484Z [db model] Peek db timeseries 2025-08-26T23:24:21.3005718Z :{ 2025-08-26T23:24:21.3005898Z "created_at": 1756250660, 2025-08-26T23:24:21.3006140Z "type": "utilization", 2025-08-26T23:24:21.3006360Z "tags": [ 2025-08-26T23:24:21.3006530Z "record" 2025-08-26T23:24:21.3006711Z ], 2025-08-26T23:24:21.3006882Z "time_stamp": 1756241056, 2025-08-26T23:24:21.3007128Z "repo": "pytorch/pytorch", 2025-08-26T23:24:21.3007371Z "workflow_id": 17248463647, 2025-08-26T23:24:21.3007605Z "run_attempt": 1, 2025-08-26T23:24:21.3007820Z "job_id": 48947911988, 2025-08-26T23:24:21.3008040Z "workflow_name": "trunk", 2025-08-26T23:24:21.3008454Z "job_name": "win-vs2022-cpu-py3 / test (default, 1, 3, windows.4xlarge.nonephemeral)", 2025-08-26T23:24:21.3008889Z "json_data": "{}" 2025-08-26T23:24:21.3009095Z } 2025-08-26T23:24:21.3009548Z Writing 1 documents to S3 ossci-utilization/util_metadata/v_1.5/pytorch/pytorch/17248463647/1/48947911988/metadata 2025-08-26T23:24:21.3010442Z Done! Finish writing document to S3 ossci-utilization/util_metadata/v_1.5/pytorch/pytorch/17248463647/1/48947911988/metadata 2025-08-26T23:24:21.3011410Z Writing 1898 documents to S3 ossci-utilization/util_timeseries/v_1.5/pytorch/pytorch/17248463647/1/48947911988/time_series 2025-08-26T23:24:21.3012344Z Done! Finish writing document to S3 ossci-utilization/util_timeseries/v_1.5/pytorch/pytorch/17248463647/1/48947911988/time_series 2025-08-26T23:24:21.5199707Z ##[group]Run python3 .github/scripts/parse_ref.py 2025-08-26T23:24:21.5200211Z python3 .github/scripts/parse_ref.py 2025-08-26T23:24:21.5219491Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T23:24:21.5219949Z env: 2025-08-26T23:24:21.5220156Z GIT_DEFAULT_BRANCH: main 2025-08-26T23:24:21.5220621Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T23:24:21.5221160Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T23:24:21.5221638Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T23:24:21.5222058Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T23:24:21.5222369Z ##[endgroup] 2025-08-26T23:24:21.6104441Z Setting output branch=main 2025-08-26T23:24:21.6249196Z ##[group]Run # This step removes PyTorch installed by the test to give a clean slate 2025-08-26T23:24:21.6249842Z # This step removes PyTorch installed by the test to give a clean slate 2025-08-26T23:24:21.6250267Z # to the next job 2025-08-26T23:24:21.6250650Z python3 -mpip uninstall -y torch 2025-08-26T23:24:21.6269277Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T23:24:21.6269727Z env: 2025-08-26T23:24:21.6269922Z GIT_DEFAULT_BRANCH: main 2025-08-26T23:24:21.6270310Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T23:24:21.6270836Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T23:24:21.6271328Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T23:24:21.6271738Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T23:24:21.6272029Z ##[endgroup] 2025-08-26T23:24:22.1411282Z Found existing installation: torch 2.9.0a0+git262640f 2025-08-26T23:24:23.4284479Z Uninstalling torch-2.9.0a0+git262640f: 2025-08-26T23:24:23.6978241Z Successfully uninstalled torch-2.9.0a0+git262640f 2025-08-26T23:24:26.2406652Z Prepare all required actions 2025-08-26T23:24:26.2407124Z Getting action download info 2025-08-26T23:24:26.5060760Z ##[group]Run ./.github/actions/teardown-win 2025-08-26T23:24:26.5061108Z with: 2025-08-26T23:24:26.5061282Z env: 2025-08-26T23:24:26.5061452Z GIT_DEFAULT_BRANCH: main 2025-08-26T23:24:26.5061875Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T23:24:26.5062391Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T23:24:26.5062864Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T23:24:26.5063251Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T23:24:26.5063526Z ##[endgroup] 2025-08-26T23:24:26.5138151Z ##[group]Run .github\scripts\wait_for_ssh_to_drain.ps1 2025-08-26T23:24:26.5138587Z .github\scripts\wait_for_ssh_to_drain.ps1 2025-08-26T23:24:26.5154146Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-26T23:24:26.5154593Z env: 2025-08-26T23:24:26.5154774Z GIT_DEFAULT_BRANCH: main 2025-08-26T23:24:26.5155157Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T23:24:26.5155685Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T23:24:26.5156232Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T23:24:26.5156658Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T23:24:26.5156951Z ##[endgroup] 2025-08-26T23:24:26.8606136Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-26T23:24:26.8675585Z Finished 2025-08-26T23:24:27.0041052Z Holding runner until all ssh sessions have logged out 2025-08-26T23:24:27.0302769Z ##[group]Run .github\scripts\kill_active_ssh_sessions.ps1 2025-08-26T23:24:27.0303217Z .github\scripts\kill_active_ssh_sessions.ps1 2025-08-26T23:24:27.0318699Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-26T23:24:27.0319156Z env: 2025-08-26T23:24:27.0319434Z GIT_DEFAULT_BRANCH: main 2025-08-26T23:24:27.0319824Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T23:24:27.0320399Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T23:24:27.0320919Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T23:24:27.0321325Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T23:24:27.0321610Z ##[endgroup] 2025-08-26T23:24:27.3824528Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-26T23:24:27.3877699Z Finished 2025-08-26T23:24:27.4233227Z ##[group]Run pytorch/test-infra/.github/actions/cleanup-runner@main 2025-08-26T23:24:27.4233613Z env: 2025-08-26T23:24:27.4233797Z GIT_DEFAULT_BRANCH: main 2025-08-26T23:24:27.4234173Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T23:24:27.4234711Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T23:24:27.4235199Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T23:24:27.4235695Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T23:24:27.4236025Z ##[endgroup] 2025-08-26T23:24:27.4306141Z ##[group]Run # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-08-26T23:24:27.4306879Z # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-08-26T23:24:27.4307601Z # Below is the list of commands that could lock $GITHUB_WORKSPACE gathered from sysinternals 2025-08-26T23:24:27.4308134Z # handle tool 2025-08-26T23:24:27.4308468Z $processes = "python", "ninja", "cl", "nvcc", "cmd", "sccache", "git" 2025-08-26T23:24:27.4308902Z Foreach ($process In $processes) { 2025-08-26T23:24:27.4309182Z  Try { 2025-08-26T23:24:27.4310952Z  # https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/stop-process 2025-08-26T23:24:27.4311713Z  Get-Process -Name $process -ErrorAction Stop | Stop-Process -Force 2025-08-26T23:24:27.4312108Z  } 2025-08-26T23:24:27.4312298Z  Catch { 2025-08-26T23:24:27.4312604Z  Write-Output "No leftover $process process, continuing" 2025-08-26T23:24:27.4312981Z  Write-Output $_ 2025-08-26T23:24:27.4313265Z  } 2025-08-26T23:24:27.4313455Z } 2025-08-26T23:24:27.4313678Z  2025-08-26T23:24:27.4314145Z # Try it again https://stackoverflow.com/questions/40585754/powershell-wont-terminate-hung-process 2025-08-26T23:24:27.4314714Z # for hung processes 2025-08-26T23:24:27.4314981Z Foreach ($process In $processes) { 2025-08-26T23:24:27.4315269Z  Try { 2025-08-26T23:24:27.4315655Z  (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process}%'").terminate() 2025-08-26T23:24:27.4316119Z  } 2025-08-26T23:24:27.4316296Z  Catch { 2025-08-26T23:24:27.4316515Z  Write-Output $_ 2025-08-26T23:24:27.4316753Z  } 2025-08-26T23:24:27.4316920Z } 2025-08-26T23:24:27.4317096Z  2025-08-26T23:24:27.4317266Z Try { 2025-08-26T23:24:27.4317502Z  # Print all the processes for debugging 2025-08-26T23:24:27.4317957Z  Wmic Path Win32_Process Get Caption,Processid,Commandline | Format-List 2025-08-26T23:24:27.4318381Z } 2025-08-26T23:24:27.4318553Z Catch { 2025-08-26T23:24:27.4318995Z  # Better to write out whatever exception thrown to help debugging any potential issue 2025-08-26T23:24:27.4319518Z  Write-Output $_ 2025-08-26T23:24:27.4319742Z } 2025-08-26T23:24:27.4335421Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-26T23:24:27.4335879Z env: 2025-08-26T23:24:27.4336145Z GIT_DEFAULT_BRANCH: main 2025-08-26T23:24:27.4336641Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T23:24:27.4337179Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T23:24:27.4337657Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T23:24:27.4338072Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T23:24:27.4338371Z ##[endgroup] 2025-08-26T23:24:27.7777698Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-26T23:24:27.7848332Z Finished 2025-08-26T23:24:27.8800678Z No leftover python process, continuing 2025-08-26T23:24:27.9254322Z Get-Process : Cannot find a process with the name "python". Verify the process name and call the cmdlet again. 2025-08-26T23:24:27.9255038Z At C:\actions-runner\_work\_temp\09c5be6c-ec25-4299-927f-0e8cbbcc35d3.ps1:9 char:5 2025-08-26T23:24:27.9255657Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-26T23:24:27.9256076Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T23:24:27.9256755Z + CategoryInfo : ObjectNotFound: (python:String) [Get-Process], ProcessCommandException 2025-08-26T23:24:27.9257583Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-26T23:24:27.9258175Z 2025-08-26T23:24:27.9270485Z No leftover ninja process, continuing 2025-08-26T23:24:27.9280823Z Get-Process : Cannot find a process with the name "ninja". Verify the process name and call the cmdlet again. 2025-08-26T23:24:27.9281504Z At C:\actions-runner\_work\_temp\09c5be6c-ec25-4299-927f-0e8cbbcc35d3.ps1:9 char:5 2025-08-26T23:24:27.9282073Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-26T23:24:27.9282512Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T23:24:27.9283735Z + CategoryInfo : ObjectNotFound: (ninja:String) [Get-Process], ProcessCommandException 2025-08-26T23:24:27.9284588Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-26T23:24:27.9285205Z 2025-08-26T23:24:27.9296006Z No leftover cl process, continuing 2025-08-26T23:24:27.9305900Z Get-Process : Cannot find a process with the name "cl". Verify the process name and call the cmdlet again. 2025-08-26T23:24:27.9306583Z At C:\actions-runner\_work\_temp\09c5be6c-ec25-4299-927f-0e8cbbcc35d3.ps1:9 char:5 2025-08-26T23:24:27.9307183Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-26T23:24:27.9307626Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T23:24:27.9308098Z + CategoryInfo : ObjectNotFound: (cl:String) [Get-Process], ProcessCommandException 2025-08-26T23:24:27.9308942Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-26T23:24:27.9309551Z 2025-08-26T23:24:27.9317939Z No leftover nvcc process, continuing 2025-08-26T23:24:27.9327925Z Get-Process : Cannot find a process with the name "nvcc". Verify the process name and call the cmdlet again. 2025-08-26T23:24:27.9328602Z At C:\actions-runner\_work\_temp\09c5be6c-ec25-4299-927f-0e8cbbcc35d3.ps1:9 char:5 2025-08-26T23:24:27.9329151Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-26T23:24:27.9329562Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T23:24:27.9330033Z + CategoryInfo : ObjectNotFound: (nvcc:String) [Get-Process], ProcessCommandException 2025-08-26T23:24:27.9330884Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-26T23:24:27.9331562Z 2025-08-26T23:24:27.9339661Z No leftover cmd process, continuing 2025-08-26T23:24:27.9349517Z Get-Process : Cannot find a process with the name "cmd". Verify the process name and call the cmdlet again. 2025-08-26T23:24:27.9350230Z At C:\actions-runner\_work\_temp\09c5be6c-ec25-4299-927f-0e8cbbcc35d3.ps1:9 char:5 2025-08-26T23:24:27.9350893Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-26T23:24:27.9351301Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T23:24:27.9351809Z + CategoryInfo : ObjectNotFound: (cmd:String) [Get-Process], ProcessCommandException 2025-08-26T23:24:27.9352611Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-26T23:24:27.9353200Z 2025-08-26T23:24:27.9360894Z No leftover sccache process, continuing 2025-08-26T23:24:27.9370829Z Get-Process : Cannot find a process with the name "sccache". Verify the process name and call the cmdlet again. 2025-08-26T23:24:27.9371569Z At C:\actions-runner\_work\_temp\09c5be6c-ec25-4299-927f-0e8cbbcc35d3.ps1:9 char:5 2025-08-26T23:24:27.9372127Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-26T23:24:27.9372532Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T23:24:27.9373031Z + CategoryInfo : ObjectNotFound: (sccache:String) [Get-Process], ProcessCommandException 2025-08-26T23:24:27.9374013Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-26T23:24:27.9374654Z 2025-08-26T23:24:27.9382831Z No leftover git process, continuing 2025-08-26T23:24:27.9393622Z Get-Process : Cannot find a process with the name "git". Verify the process name and call the cmdlet again. 2025-08-26T23:24:27.9394295Z At C:\actions-runner\_work\_temp\09c5be6c-ec25-4299-927f-0e8cbbcc35d3.ps1:9 char:5 2025-08-26T23:24:27.9394848Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-26T23:24:27.9395262Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T23:24:27.9395736Z + CategoryInfo : ObjectNotFound: (git:String) [Get-Process], ProcessCommandException 2025-08-26T23:24:27.9396661Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-26T23:24:27.9397283Z 2025-08-26T23:24:27.9870709Z You cannot call a method on a null-valued expression. 2025-08-26T23:24:27.9871466Z At C:\actions-runner\_work\_temp\09c5be6c-ec25-4299-927f-0e8cbbcc35d3.ps1:21 char:5 2025-08-26T23:24:27.9872184Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T23:24:27.9872620Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T23:24:27.9873045Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-26T23:24:27.9873452Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-26T23:24:27.9873753Z 2025-08-26T23:24:28.0038006Z You cannot call a method on a null-valued expression. 2025-08-26T23:24:28.0038563Z At C:\actions-runner\_work\_temp\09c5be6c-ec25-4299-927f-0e8cbbcc35d3.ps1:21 char:5 2025-08-26T23:24:28.0039177Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T23:24:28.0039615Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T23:24:28.0040045Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-26T23:24:28.0040446Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-26T23:24:28.0040741Z 2025-08-26T23:24:28.0186250Z You cannot call a method on a null-valued expression. 2025-08-26T23:24:28.0186793Z At C:\actions-runner\_work\_temp\09c5be6c-ec25-4299-927f-0e8cbbcc35d3.ps1:21 char:5 2025-08-26T23:24:28.0187375Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T23:24:28.0187808Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T23:24:28.0188220Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-26T23:24:28.0188628Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-26T23:24:28.0188918Z 2025-08-26T23:24:28.0333497Z You cannot call a method on a null-valued expression. 2025-08-26T23:24:28.0334038Z At C:\actions-runner\_work\_temp\09c5be6c-ec25-4299-927f-0e8cbbcc35d3.ps1:21 char:5 2025-08-26T23:24:28.0334760Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T23:24:28.0335207Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T23:24:28.0335624Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-26T23:24:28.0336033Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-26T23:24:28.0336335Z 2025-08-26T23:24:28.0486061Z You cannot call a method on a null-valued expression. 2025-08-26T23:24:28.0486663Z At C:\actions-runner\_work\_temp\09c5be6c-ec25-4299-927f-0e8cbbcc35d3.ps1:21 char:5 2025-08-26T23:24:28.0487287Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T23:24:28.0487717Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T23:24:28.0488151Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-26T23:24:28.0488561Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-26T23:24:28.0489003Z 2025-08-26T23:24:28.0635746Z You cannot call a method on a null-valued expression. 2025-08-26T23:24:28.0636280Z At C:\actions-runner\_work\_temp\09c5be6c-ec25-4299-927f-0e8cbbcc35d3.ps1:21 char:5 2025-08-26T23:24:28.0636857Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T23:24:28.0637292Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T23:24:28.0637769Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-26T23:24:28.0638223Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-26T23:24:28.0638514Z 2025-08-26T23:24:28.0782893Z You cannot call a method on a null-valued expression. 2025-08-26T23:24:28.0783456Z At C:\actions-runner\_work\_temp\09c5be6c-ec25-4299-927f-0e8cbbcc35d3.ps1:21 char:5 2025-08-26T23:24:28.0784261Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T23:24:28.0784703Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T23:24:28.0785139Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-26T23:24:28.0785542Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-26T23:24:28.0785832Z 2025-08-26T23:24:28.1715435Z Caption CommandLine ProcessId 2025-08-26T23:24:28.1715950Z 2025-08-26T23:24:28.1716351Z System Idle Process 0 2025-08-26T23:24:28.1716801Z 2025-08-26T23:24:28.1717496Z System 4 2025-08-26T23:24:28.1717887Z 2025-08-26T23:24:28.1718616Z Registry 168 2025-08-26T23:24:28.1719142Z 2025-08-26T23:24:28.1719597Z smss.exe 408 2025-08-26T23:24:28.1719984Z 2025-08-26T23:24:28.1720773Z csrss.exe 528 2025-08-26T23:24:28.1721246Z 2025-08-26T23:24:28.1721851Z csrss.exe 604 2025-08-26T23:24:28.1722248Z 2025-08-26T23:24:28.1723661Z wininit.exe 628 2025-08-26T23:24:28.1724104Z 2025-08-26T23:24:28.1724474Z winlogon.exe winlogon.exe 676 2025-08-26T23:24:28.1724944Z 2025-08-26T23:24:28.1725260Z services.exe 748 2025-08-26T23:24:28.1725681Z 2025-08-26T23:24:28.1726400Z lsass.exe C:\Windows\system32\lsass.exe 768 2025-08-26T23:24:28.1726905Z 2025-08-26T23:24:28.1727517Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s PlugPlay 892 2025-08-26T23:24:28.1728148Z 2025-08-26T23:24:28.1728625Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p 916 2025-08-26T23:24:28.1729194Z 2025-08-26T23:24:28.1729626Z fontdrvhost.exe "fontdrvhost.exe" 940 2025-08-26T23:24:28.1730124Z 2025-08-26T23:24:28.1730699Z fontdrvhost.exe "fontdrvhost.exe" 948 2025-08-26T23:24:28.1731252Z 2025-08-26T23:24:28.1731839Z svchost.exe C:\Windows\system32\svchost.exe -k RPCSS -p 128 2025-08-26T23:24:28.1732392Z 2025-08-26T23:24:28.1733110Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s LSM 460 2025-08-26T23:24:28.1733704Z 2025-08-26T23:24:28.1734207Z svchost.exe C:\Windows\System32\svchost.exe -k termsvcs -s TermService 472 2025-08-26T23:24:28.1734814Z 2025-08-26T23:24:28.1735425Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService 1116 2025-08-26T23:24:28.1736196Z 2025-08-26T23:24:28.1736807Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s EventLog 1264 2025-08-26T23:24:28.1737513Z 2025-08-26T23:24:28.1737821Z dwm.exe "dwm.exe" 1288 2025-08-26T23:24:28.1738279Z 2025-08-26T23:24:28.1738778Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s nsi 1340 2025-08-26T23:24:28.1739385Z 2025-08-26T23:24:28.1740036Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s Dhcp 1368 2025-08-26T23:24:28.1740728Z 2025-08-26T23:24:28.1741202Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s gpsvc 1376 2025-08-26T23:24:28.1741785Z 2025-08-26T23:24:28.1743628Z NVDisplay.Container.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\Display.NvContainer\NVDisplay.Container.exe -s NVDisplay.ContainerLocalSystem -f C:\ProgramData\NVIDIA\NVDisplay.ContainerLocalSystem.log -l 3 -d C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\Display.NvContainer\plugins\LocalSystem -r -p 30000 -cfg NVDisplay.ContainerLocalSystem\LocalSystem /ert 1448 2025-08-26T23:24:28.1745585Z 2025-08-26T23:24:28.1746100Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s NlaSvc 1464 2025-08-26T23:24:28.1746707Z 2025-08-26T23:24:28.1747207Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Schedule 1500 2025-08-26T23:24:28.1747839Z 2025-08-26T23:24:28.1748356Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s netprofm 1572 2025-08-26T23:24:28.1748967Z 2025-08-26T23:24:28.1749677Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s TimeBrokerSvc 1640 2025-08-26T23:24:28.1750448Z 2025-08-26T23:24:28.1750945Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s ProfSvc 1728 2025-08-26T23:24:28.1751548Z 2025-08-26T23:24:28.1752083Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s Themes 1736 2025-08-26T23:24:28.1752671Z 2025-08-26T23:24:28.1753197Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s EventSystem 1744 2025-08-26T23:24:28.1753832Z 2025-08-26T23:24:28.1754303Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s SENS 1852 2025-08-26T23:24:28.1754985Z 2025-08-26T23:24:28.1755545Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p 1888 2025-08-26T23:24:28.1756214Z 2025-08-26T23:24:28.1756736Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s Dnscache 1896 2025-08-26T23:24:28.1757420Z 2025-08-26T23:24:28.1757949Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s ShellHWDetection 2000 2025-08-26T23:24:28.1758589Z 2025-08-26T23:24:28.1759250Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s WinHttpAutoProxySvc 2024 2025-08-26T23:24:28.1760058Z 2025-08-26T23:24:28.1760574Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s FontCache 1496 2025-08-26T23:24:28.1761719Z 2025-08-26T23:24:28.1762306Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetworkFirewall -p 2064 2025-08-26T23:24:28.1762984Z 2025-08-26T23:24:28.1763574Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s LanmanWorkstation 2104 2025-08-26T23:24:28.1764241Z 2025-08-26T23:24:28.1764866Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s UmRdpService 2236 2025-08-26T23:24:28.1765583Z 2025-08-26T23:24:28.1766014Z spoolsv.exe C:\Windows\System32\spoolsv.exe 2372 2025-08-26T23:24:28.1766573Z 2025-08-26T23:24:28.1767091Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UserManager 2392 2025-08-26T23:24:28.1767714Z 2025-08-26T23:24:28.1768240Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s CryptSvc 2504 2025-08-26T23:24:28.1768906Z 2025-08-26T23:24:28.1769492Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s SysMain 2512 2025-08-26T23:24:28.1770201Z 2025-08-26T23:24:28.1770779Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork -p 2528 2025-08-26T23:24:28.1771491Z 2025-08-26T23:24:28.1771973Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Winmgmt 2536 2025-08-26T23:24:28.1772575Z 2025-08-26T23:24:28.1773085Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -s W32Time 2552 2025-08-26T23:24:28.1773701Z 2025-08-26T23:24:28.1774294Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s TrkWks 2560 2025-08-26T23:24:28.1774990Z 2025-08-26T23:24:28.1775504Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s WpnService 2568 2025-08-26T23:24:28.1776142Z 2025-08-26T23:24:28.1776653Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s WinRM 2576 2025-08-26T23:24:28.1777274Z 2025-08-26T23:24:28.1777806Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -s CertPropSvc 2824 2025-08-26T23:24:28.1778443Z 2025-08-26T23:24:28.1778952Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s SessionEnv 2868 2025-08-26T23:24:28.1779544Z 2025-08-26T23:24:28.1780029Z sshd.exe C:\Windows\System32\OpenSSH\sshd.exe 2996 2025-08-26T23:24:28.1780543Z 2025-08-26T23:24:28.1781210Z IpOverUsbSvc.exe "C:\Program Files (x86)\Common Files\Microsoft Shared\Phone Tools\CoreCon\11.0\bin\IpOverUsbSvc.exe" 3020 2025-08-26T23:24:28.1782112Z 2025-08-26T23:24:28.1782791Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\NVWMI\nvWmi64.exe 3040 2025-08-26T23:24:28.1783581Z 2025-08-26T23:24:28.1784088Z svchost.exe C:\Windows\System32\svchost.exe -k smbsvcs -s LanmanServer 3048 2025-08-26T23:24:28.1784712Z 2025-08-26T23:24:28.1785212Z svchost.exe C:\Windows\System32\svchost.exe -k NetSvcs -p -s iphlpsvc 3084 2025-08-26T23:24:28.1786198Z 2025-08-26T23:24:28.1786874Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkServiceNetworkRestricted -p -s PolicyAgent 3552 2025-08-26T23:24:28.1787654Z 2025-08-26T23:24:28.1788261Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s lmhosts 3436 2025-08-26T23:24:28.1789025Z 2025-08-26T23:24:28.1789548Z LogonUI.exe "LogonUI.exe" /flags:0x2 /state0:0xa3a7b855 /state1:0x41c64e6d 4784 2025-08-26T23:24:28.1790168Z 2025-08-26T23:24:28.1792003Z NVDisplay.Container.exe "C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\Display.NvContainer\NVDisplay.Container.exe" -f %ProgramData%\NVIDIA\DisplaySessionContainer%d.log -d C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\Display.NvContainer\plugins\Session -r -l 3 -p 30000 -cfg NVDisplay.ContainerLocalSystem\Session /ert -c 5064 2025-08-26T23:24:28.1793929Z 2025-08-26T23:24:28.1794689Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\NVWMI\nvWmi64.exe -spawnprovider 3680 2025-08-26T23:24:28.1795524Z 2025-08-26T23:24:28.1796090Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s LicenseManager 624 2025-08-26T23:24:28.1796753Z 2025-08-26T23:24:28.1797142Z vds.exe C:\Windows\System32\vds.exe 2836 2025-08-26T23:24:28.1797619Z 2025-08-26T23:24:28.1798208Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNoNetwork -p -s DPS 3908 2025-08-26T23:24:28.1798939Z 2025-08-26T23:24:28.1799593Z MicrosoftEdgeUpdate.exe "C:\Program Files (x86)\Microsoft\EdgeUpdate\MicrosoftEdgeUpdate.exe" /c 4060 2025-08-26T23:24:28.1800333Z 2025-08-26T23:24:28.1800730Z msdtc.exe C:\Windows\System32\msdtc.exe 1412 2025-08-26T23:24:28.1801277Z 2025-08-26T23:24:28.1801942Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s PcaSvc 4140 2025-08-26T23:24:28.1802649Z 2025-08-26T23:24:28.1803250Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s UALSVC 4716 2025-08-26T23:24:28.1804004Z 2025-08-26T23:24:28.1804530Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UsoSvc 4780 2025-08-26T23:24:28.1805128Z 2025-08-26T23:24:28.1805641Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s CDPSvc 4536 2025-08-26T23:24:28.1806260Z 2025-08-26T23:24:28.1807001Z start-amazon-cloudwatch-agent.exe "C:\Program Files\Amazon\AmazonCloudWatchAgent\start-amazon-cloudwatch-agent.exe" 228 2025-08-26T23:24:28.1807901Z 2025-08-26T23:24:28.1809539Z 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 4576 2025-08-26T23:24:28.1811398Z 2025-08-26T23:24:28.1811844Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 3972 2025-08-26T23:24:28.1812675Z 2025-08-26T23:24:28.1813264Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p 3976 2025-08-26T23:24:28.1813933Z 2025-08-26T23:24:28.1814563Z svchost.exe C:\Windows\system32\svchost.exe -k appmodel -p -s StateRepository 132 2025-08-26T23:24:28.1815201Z 2025-08-26T23:24:28.1815694Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 2956 2025-08-26T23:24:28.1816265Z 2025-08-26T23:24:28.1816791Z Runner.Listener.exe "C:\actions-runner\\bin\Runner.Listener.exe" run 3388 2025-08-26T23:24:28.1817396Z 2025-08-26T23:24:28.1817901Z amazon-ssm-agent.exe "C:\Program Files\Amazon\SSM\amazon-ssm-agent.exe" 3416 2025-08-26T23:24:28.1818533Z 2025-08-26T23:24:28.1819045Z ssm-agent-worker.exe "C:\Program Files\Amazon\SSM\ssm-agent-worker.exe" 4476 2025-08-26T23:24:28.1819721Z 2025-08-26T23:24:28.1820145Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 1940 2025-08-26T23:24:28.1820703Z 2025-08-26T23:24:28.1821294Z Runner.Worker.exe "C:\actions-runner\bin\Runner.Worker.exe" spawnclient 2124 2168 4900 2025-08-26T23:24:28.1822042Z 2025-08-26T23:24:28.1822469Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4860 2025-08-26T23:24:28.1823007Z 2025-08-26T23:24:28.1823670Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s DsSvc 3840 2025-08-26T23:24:28.1824358Z 2025-08-26T23:24:28.1824811Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 1436 2025-08-26T23:24:28.1825352Z 2025-08-26T23:24:28.1826199Z powershell.exe "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE" -command ". 'C:\actions-runner\_work\_temp\09c5be6c-ec25-4299-927f-0e8cbbcc35d3.ps1'" 1652 2025-08-26T23:24:28.1827172Z 2025-08-26T23:24:28.1827833Z WMIC.exe "C:\Windows\System32\Wbem\WMIC.exe" Path Win32_Process Get Caption,Processid,Commandline 2368 2025-08-26T23:24:28.1828546Z 2025-08-26T23:24:28.1828550Z 2025-08-26T23:24:28.1828557Z 2025-08-26T23:24:28.2093477Z ##[group]Run nick-fields/retry@v3.0.0 2025-08-26T23:24:28.2093780Z with: 2025-08-26T23:24:28.2094035Z shell: bash 2025-08-26T23:24:28.2094244Z timeout_minutes: 5 2025-08-26T23:24:28.2094453Z max_attempts: 3 2025-08-26T23:24:28.2094678Z retry_wait_seconds: 90 2025-08-26T23:24:28.2095690Z command: set +e set -x if [ -n "${EXTRA_DELETE_DIR}" ]; then # It's ok to fail to clean up the extra directory on Windows as it only contains # the build artifacts and doesn't take up much space, i.e. /c/5053411580/build-results rm -rf "${EXTRA_DELETE_DIR}" || true fi rm -rf ./* 2025-08-26T23:24:28.2096772Z polling_interval_seconds: 1 2025-08-26T23:24:28.2097040Z warning_on_retry: true 2025-08-26T23:24:28.2097267Z continue_on_error: false 2025-08-26T23:24:28.2097501Z env: 2025-08-26T23:24:28.2097687Z GIT_DEFAULT_BRANCH: main 2025-08-26T23:24:28.2098070Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T23:24:28.2098600Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T23:24:28.2099088Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T23:24:28.2099568Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T23:24:28.2099871Z EXTRA_DELETE_DIR: 2025-08-26T23:24:28.2100089Z ##[endgroup] 2025-08-26T23:24:28.3289588Z + '[' -n '' ']' 2025-08-26T23:24:28.3303566Z + rm -rf ./AGENTS.md ./BUCK.oss ./BUILD.bazel ./CITATION.cff ./CMakeLists.txt ./CODEOWNERS ./CODE_OF_CONDUCT.md ./CONTRIBUTING.md ./Dockerfile ./GLOSSARY.md ./LICENSE ./MANIFEST.in ./Makefile ./NOTICE ./README.md ./RELEASE.md ./SECURITY.md ./WORKSPACE ./android ./aten ./aten.bzl ./benchmarks ./binaries ./buckbuild.bzl ./build ./build.bzl ./build_variables.bzl ./c10 ./caffe2 ./cmake ./codex_setup.sh ./defs.bzl ./docker.Makefile ./docs ./functorch ./logs-test-default-1-3-windows.4xlarge.nonephemeral_48947911988.zip ./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 ./scripts ./setup.py ./test ./test-jsons-test-default-1-3-windows.4xlarge.nonephemeral_48947911988.zip ./test-reports ./test-reports-test-default-1-3-windows.4xlarge.nonephemeral_48947911988.zip ./third_party ./tools ./torch ./torchgen ./ubsan.supp ./ufunc_defs.bzl ./usage_log.txt ./version.txt 2025-08-26T23:24:52.4276270Z Command completed after 1 attempt(s). 2025-08-26T23:24:52.4429379Z ##[group]Run handle C:\actions-runner\_work\ 2025-08-26T23:24:52.4429720Z handle C:\actions-runner\_work\ 2025-08-26T23:24:52.4445325Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-26T23:24:52.4445789Z env: 2025-08-26T23:24:52.4445972Z GIT_DEFAULT_BRANCH: main 2025-08-26T23:24:52.4446342Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T23:24:52.4446853Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T23:24:52.4447345Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T23:24:52.4447741Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T23:24:52.4448038Z ##[endgroup] 2025-08-26T23:24:52.7942666Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-26T23:24:52.8020779Z Finished 2025-08-26T23:24:53.1186771Z 2025-08-26T23:24:53.1187180Z Nthandle v5.0 - Handle viewer 2025-08-26T23:24:53.1187527Z Copyright (C) 1997-2022 Mark Russinovich 2025-08-26T23:24:53.1187828Z Sysinternals - www.sysinternals.com 2025-08-26T23:24:53.1188028Z 2025-08-26T23:24:53.1445721Z powershell.exe pid: 4748 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:24:53.1446345Z handle.exe pid: 716 type: File 48: C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:24:53.1446910Z handle.exe pid: 2900 type: File 94: C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:24:53.1447503Z handle64.exe pid: 5280 type: File 50: C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:24:53.1891776Z Post job cleanup. 2025-08-26T23:24:53.2007002Z Post job cleanup. 2025-08-26T23:24:53.6839740Z [command]"C:\Program Files\Git\cmd\git.exe" version 2025-08-26T23:24:53.7066353Z git version 2.50.1.windows.1 2025-08-26T23:24:53.7126882Z Copying 'C:\Users\runneruser\.gitconfig' to 'C:\actions-runner\_work\_temp\a32ac92f-2f89-4e9b-b164-b93467a9590d\.gitconfig' 2025-08-26T23:24:53.7144006Z Temporarily overriding HOME='C:\actions-runner\_work\_temp\a32ac92f-2f89-4e9b-b164-b93467a9590d' before making global git config changes 2025-08-26T23:24:53.7144862Z Adding repository directory to the temporary git global config as a safe directory 2025-08-26T23:24:53.7154942Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add safe.directory C:\actions-runner\_work\pytorch\pytorch 2025-08-26T23:24:53.7409772Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp core\.sshCommand 2025-08-26T23:24:53.7669639Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :\"" 2025-08-26T23:24:54.2339488Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-08-26T23:24:54.2539864Z http.https://github.com/.extraheader 2025-08-26T23:24:54.2588190Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --unset-all http.https://github.com/.extraheader 2025-08-26T23:24:54.2851614Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :\"" 2025-08-26T23:24:54.7211478Z A job completed hook has been configured by the self-hosted runner administrator 2025-08-26T23:24:54.7244656Z ##[group]Run 'C:\actions-runner\jobcompleted.ps1' 2025-08-26T23:24:54.7259597Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-26T23:24:54.7260098Z ##[endgroup] 2025-08-26T23:24:55.0805174Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-26T23:24:55.0874065Z Finished 2025-08-26T23:24:56.6178695Z Cleaning up orphan processes